/*!**********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./styles/header/header.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--black);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.has-icon input {
  --iconsize: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0px)) 50%;
  padding-right: calc(var(--paddingleftright, 0px) + var(--iconsize, 0px) + var(--paddingleftright, 0px));
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: var(--labelbackground);
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group textarea:focus {
  outline: none;
}
.form .form-group input.valid, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input.valid ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group input:not(.no-focus):focus, .form .form-group textarea:not(.no-focus):focus {
  outline: none;
}
.form .form-group input:not(.no-focus):focus ~ label, .form .form-group textarea:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group input[readonly], .form .form-group textarea[readonly] {
  caret-color: transparent;
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .form-group .error {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  color: red;
  line-height: normal;
  font-size: 12px;
}
.form .form-group.file-input input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize) - var(--borderwidth));
  position: relative;
  --filename: "Attach Resume*";
  --image: "/assets/icon/clip-gray.svg";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: calc(var(--inputsize) - var(--borderwidth));
}
.form .form-group.file-input .file-name::before, .form .form-group.file-input .file-name::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.form .form-group.file-input .file-name::before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize) - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}
.form .form-group.file-input .file-name::after {
  content: "";
  right: 0;
  background: var(--image);
  background-repeat: no-repeat;
  z-index: 1;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
}
.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--inputsize);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --iconspace: 8px;
}
.custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.custom-select.has-icon::after {
  left: var(--paddingleftright, 0px);
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon .current {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright, 0);
  bottom: 0;
  width: var(--arrow);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.custom-select .current {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 4;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: break-spaces;
  font-size: 14px;
}
.custom-select .list li.selected {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.css-b62m3t-container {
  height: 100% !important;
}
.css-b62m3t-container input {
  height: 100% !important;
}
.css-b62m3t-container .css-13cymwt-control {
  height: 100% !important;
  background: none !important;
  border: none !important;
}
.css-b62m3t-container .css-13cymwt-control .css-t3ipsp-control {
  border: none !important;
  box-shadow: none !important;
}
.css-b62m3t-container .css-13cymwt-control .css-hlgwow {
  height: 100% !important;
}
.css-b62m3t-container .css-13cymwt-control .css-hlgwow .css-19bb58m input {
  height: 100% !important;
  outline: none !important;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerpadding: 20px;
  --headerheight: 80px;
  --headerfixed: 65px;
  --footerstrip: 66px;
  --primary: #FF682C;
  --secondary: #C1302B;
  --gradient-a: linear-gradient(90deg, #C1302B 0%, #FF682C 100%);
  --gradient-b: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-c: linear-gradient(270deg, #D8D8D8 0%, #EBEBEB 50%, #C5C5C5 100%);
  --gradient-d: linear-gradient(360deg, #E6E6E6 0%, #C6C6C6 100%);
  --gradient-e: linear-gradient(180deg, #E5E5E5 0%, #FFFFFF 46.5%, #F6F6F6 100%);
  --arrowsize: 15px;
  --arrow: 25px;
  --space: 11px;
  --text: #666666;
  --green: green;
  --white: #FFFFFF;
  --black: #000000;
  --black-light: #313131;
  --gray: #EAEAEA;
  --container: 95%;
  --containerfluid: 2rem;
}
@media only screen and (max-width: 768px) {
  :root {
    --headerpadding: 25px;
    height: 100px;
  }
}
@media only screen and (max-width: 540px) {
  :root {
    --headerpadding: 5px;
    --headerheight: 70px;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --headerfixed: 50px;
  }
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
  }
}
@media only screen and (max-width: 320px) {
  :root {
    --containerfluid: 10px;
  }
}

body::-webkit-scrollbar {
  width: 6px;
  background: var(--white);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background: var(--gradient-a);
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 6px;
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 6px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-weight: normal;
}

b {
  font-weight: 500;
}

p {
  color: var(--text);
}

small {
  font-size: 14px;
  line-height: 22px;
  display: block;
}

.svg path {
  transition: none;
}
.svg path[stroke], .svg path[fill=none] {
  stroke: currentColor;
}
.svg path[fill] {
  fill: currentColor;
}

.gray-bg {
  background: #EAEAEA;
}
.gray-bg .heading p {
  color: rgba(0, 0, 0, 0.6980392157);
}

.heading h2 {
  font-size: 48px;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.heading p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}

.primary-bg {
  background: var(--primary);
}

.c-primary {
  color: var(--primary);
}

.c-text {
  color: var(--text);
}

.c-red {
  color: red;
}

.c-green, .green-color {
  color: #13bb75 !important;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

select {
  display: none;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
  color: var(--black);
}
a[href].logo {
  display: block;
  line-height: 0;
}

svg path {
  transition: 0.5s ease;
}

.position-relative {
  position: relative;
}

.lh-normal {
  line-height: normal;
}

.cursor-pointer {
  cursor: pointer !important;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);
}
@media only screen and (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  display: block;
  margin: 0 auto;
}

.social-icons {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  color: #000;
}

h1 {
  font-size: 64px;
  line-height: 1.05;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 58px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 54px;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 48px;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.heading:has(h2 ~ h6) h3, .heading:has(h2 ~ h6) h2, .heading:has(h3 ~ h6) h3, .heading:has(h3 ~ h6) h2, .heading:has(h2 ~ h5) h3, .heading:has(h2 ~ h5) h2, .heading:has(h3 ~ h5) h3, .heading:has(h3 ~ h5) h2, .heading:has(h2 ~ p) h3, .heading:has(h2 ~ p) h2, .heading:has(h3 ~ p) h3, .heading:has(h3 ~ p) h2 {
  margin-bottom: 12px;
}
.heading h3, .heading h2 {
  font-size: 48px;
  line-height: 1.25;
  color: var(--black);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-weight: 600;
}
@media only screen and (max-width: 1230px) {
  .heading h3, .heading h2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1152px) {
  .heading h3, .heading h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .heading h3, .heading h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .heading h3, .heading h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .heading h3, .heading h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 345px) {
  .heading h3, .heading h2 {
    font-size: 24px;
  }
}
.heading h3 span, .heading h2 span {
  color: var(--primary);
}
.heading h6 {
  font-size: 18px;
  line-height: 1.34;
  font-weight: 500;
}
@media only screen and (max-width: 520px) {
  .heading h6 {
    font-size: 16px;
  }
}
.heading h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.29;
}
@media only screen and (max-width: 520px) {
  .heading h5 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 520px) {
  .heading p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 345px) {
  .heading p {
    font-size: 13px;
  }
}
.heading.lh-1 h3, .heading.lh-1 h2 {
  line-height: 1;
}
.heading.h-medium h2, .heading.h-medium h3 {
  font-size: 36px;
}
@media only screen and (max-width: 991px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 24px;
  }
}
.heading.h-small h2, .heading.h-small h3 {
  font-size: 20px;
  line-height: 25.8px;
}
.heading.c-white > *:not(.btn) {
  color: var(--white);
}

h4 {
  font-size: 36px;
  line-height: 1.28;
}

h5 {
  font-size: 24px;
  line-height: 1.167;
}
@media only screen and (max-width: 1152px) {
  h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.inline-flex {
  --gap: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0 var(--gap);
}

img, video {
  width: 100%;
  object-fit: cover;
  max-width: 100%;
}

button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  font-family: inherit;
  font-size: inherit;
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.item-md {
  position: relative;
  display: block;
  position: relative;
}
.item-md::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.item-md::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.item-md::before, .item-md::after {
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figure, .item-md .figure {
  display: block;
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
.item-md figure img, .item-md figure video, .item-md figure iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.item-md.center-item figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}
@media only screen and (max-width: 540px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
}

.btn-btn {
  display: inline-block;
  --height: 38px;
  --padding: 20px;
  height: var(--height);
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .btn-btn {
    --height: 32px;
  }
}
@media only screen and (max-width: 540px) {
  .btn-btn {
    --padding: 10px;
  }
}
.btn-btn:hover::before {
  opacity: 0;
}
.btn-btn:hover span {
  transform: translate(0, 0);
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--black);
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: 0;
  transition: 1.5s ease;
}
.btn-btn span {
  border: 1px solid var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0 var(--padding);
  height: 100%;
  line-height: var(--height);
  width: 100%;
  color: var(--black);
  border-radius: 25px;
  background: #fff;
  transform: translate(-7px, -5px);
  position: relative;
  transition: 0.7s ease;
  transition-delay: 0s;
}

a.btn {
  color: var(--white);
}

.btn {
  --height: 38px;
  --padding: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  overflow: hidden;
  color: var(--white);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s ease;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  border-radius: 5px;
  z-index: 1;
  font-weight: 500;
}
@media only screen and (max-width: 540px) {
  .btn {
    font-size: 14px;
    --height: 30px;
    --padding: 12px;
  }
}
.btn:not([class*=border-]) {
  background: var(--primary);
  position: relative;
}
.btn:not([class*=border-])::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--gradient-b);
}
.btn:not([class*=border-])::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--gradient-a);
}
.btn:not([class*=border-])::before, .btn:not([class*=border-])::after {
  z-index: -1;
  transition: 0.5s ease;
}
.btn:not([class*=border-])::after {
  opacity: 0;
}
.btn:not([class*=border-]):hover::before {
  opacity: 0;
}
.btn:not([class*=border-]):hover::after {
  opacity: 1;
}
.btn[class*=border-] {
  border: 1px solid;
}
.btn.solid-white {
  background: var(--white);
  color: var(--black);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.btn.solid-white::before {
  content: "";
  display: none;
}
.btn.solid-white::after {
  content: "";
  display: none;
}
.btn svg path[stroke] {
  stroke: currentColor;
}
.btn svg path[fill] {
  fill: currentColor;
}
.btn.btn-white {
  background: var(--white);
  color: var(--black);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.btn.btn-white::before {
  display: none;
}
.btn.btn-white::after {
  display: none;
}
.btn.btn-white:hover {
  background: var(--gradient-a);
  color: var(--white);
}
.btn.border-gray {
  border-color: var(--text);
  color: var(--text);
}
.btn.border-black {
  border-color: var(--black);
  color: var(--black);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.btn.border-black:hover {
  background: var(--gradient-a);
  border-color: var(--primary);
  color: var(--white);
}
.btn.sqr-radius {
  border-radius: 5px;
}
.btn.border-white {
  border-color: var(--white);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  transition: 0.5s ease;
}
.btn.border-white:hover {
  background: var(--gradient-a);
  border-color: var(--primary);
  color: var(--white);
}
.btn.btn-lrg {
  --height: 48px;
}
@media only screen and (max-width: 540px) {
  .btn.btn-lrg {
    --height: 30px;
  }
}
.btn.btn-wide {
  --padding: 36px;
}
.btn.w-100 {
  width: 100%;
}
.btn.btn-box {
  --padding: 0px !important;
  width: var(--height);
}
.btn.btn-btn {
  border-radius: 5px;
}

.enquire-btn {
  background: var(--white);
  padding: 5px 15px;
  border-radius: 5px;
  border: 1px solid var(--white);
  transition: 0.5s ease;
}
.enquire-btn:hover {
  background: transparent;
  color: var(--white);
}

.white-border {
  background: transparent;
  padding: 5px 15px;
  border-radius: 5px;
  color: var(--white);
  border: 1px solid var(--white);
  transition: 0.5s ease;
}
.white-border:hover {
  background: var(--white);
  color: var(--black);
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
}
.model .close {
  cursor: pointer;
}
.model .close:not(.btn, .close-video, .not-ab) {
  position: absolute;
  top: 0;
  right: 0;
  top: 25px;
  right: 25px;
  line-height: 0;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn, .close-video, .not-ab) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn, .close-video, .not-ab) path {
  stroke: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  grid-gap: var(--gaptb) var(--gaplr);
  gap: var(--gaptb) var(--gaplr);
}
.form-grid .full {
  grid-column: span var(--item);
}

.btn-div-btm > *:not(:last-child) {
  margin-right: 14px;
}
@media only screen and (max-width: 675px) {
  .btn-div-btm > *:not(:last-child) {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 675px) {
  .btn-div-btm .btn {
    --padding: 12px;
    font-size: 14px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}
.swiper-nav button {
  box-shadow: 3px 2px 0px #000;
}
.swiper-nav button:hover {
  background: var(--primary);
}
.swiper-nav button:hover .svgg svg path {
  stroke: #fff;
}
@media only screen and (max-width: 768px) {
  .swiper-nav {
    display: none;
  }
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 540px) {
  .swiper-nav.center-full {
    display: none;
  }
}
.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.swiper-nav.hide-btn-no-loop .swiper-prev.swiper-button-disabled, .swiper-nav.hide-btn-no-loop .swiper-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.swiper-nav.swiper-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.swiper-prev svg, .swiper-prev img, .certificate-prev svg, .certificate-prev img {
  transform: scaleX(-1);
}

.swiper-prev, .swiper-next {
  --size: 45px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  transition: 0.5s ease;
  color: var(--white);
}
.swiper-prev:not(.no-background) path[stroke], .swiper-prev:not(.no-background) path[fill=none], .swiper-next:not(.no-background) path[stroke], .swiper-next:not(.no-background) path[fill=none] {
  stroke: currentColor;
}
.swiper-prev:not(.no-background) path[fill], .swiper-next:not(.no-background) path[fill] {
  fill: currentColor;
}
.swiper-prev:hover:not(.swiper-button-disabled, .no-background), .swiper-next:hover:not(.swiper-button-disabled, .no-background) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.swiper-prev.no-background, .swiper-next.no-background {
  height: auto;
  width: auto;
  display: block;
  background: none;
  border: none;
  line-height: 0;
}
.swiper-prev.no-background:hover, .swiper-next.no-background:hover {
  background: none;
}
.swiper-prev.white, .swiper-next.white {
  background: var(--white);
  border-color: var(--white);
  color: var(--secondary);
}
.swiper-prev.white:hover:not(.swiper-button-disabled), .swiper-next.white:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.swiper-prev.secondary-border, .swiper-next.secondary-border {
  border-color: var(--secondary);
  background: none;
  color: var(--secondary);
}
.swiper-prev.secondary-border:hover:not(.swiper-button-disabled), .swiper-next.secondary-border:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  color: var(--white);
}
.swiper-prev.white-border, .swiper-next.white-border {
  border-color: var(--white);
  background: none;
  color: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: var(--white);
  color: var(--secondary);
}
.swiper-prev.gray-border, .swiper-next.gray-border {
  border-color: var(--text);
  background: none;
  color: var(--text);
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled), .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.swiper-prev.gray-arrow, .swiper-next.gray-arrow {
  color: #888888;
}
.swiper-prev.black-arrow, .swiper-next.black-arrow {
  color: var(--black);
}
.swiper-prev.black-arrow:hover:not(.swiper-button-disabled), .swiper-next.black-arrow:hover:not(.swiper-button-disabled) {
  color: var(--secondary);
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.4;
}
.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.4;
}

.play-btn {
  --btnsize: 51px;
  --border: 1px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
@media only screen and (max-width: 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}
@media only screen and (max-width: 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content > :last-child {
  margin-bottom: 0 !important;
}
.website-content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-weight: normal;
}
@media only screen and (max-width: 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 520px) {
  .website-content h1 {
    font-size: 30px;
    font-weight: bold;
  }
}
.website-content h2 {
  font-size: 34px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}
.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 22px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media only screen and (max-width: 520px) {
  .website-content p, .website-content li {
    font-size: 14px;
  }
}
.website-content p b, .website-content li b {
  font-weight: 600;
  color: var(--black);
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 30px;
}
.website-content ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}
.website-content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}
.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.website-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #CFCFCF;
}
@media only screen and (max-width: 520px) {
  .website-content ul li::before {
    width: 6px;
  }
}
.website-content.website-content-medium h2, .website-content.website-content-medium h3, .website-content.website-content-medium h4 {
  margin: 20px 0 18px;
  font-size: 20px;
  font-weight: 500;
}
.website-content.website-content-medium h5, .website-content.website-content-medium h6 {
  font-size: 18px;
  font-weight: 500;
}
.website-content.website-content-medium p, .website-content.website-content-medium ul {
  margin-bottom: 20px;
}

[data-video], [data-model], [data-scrollTo] {
  cursor: pointer;
}

.mt-hdr {
  margin-top: var(--headerheight);
}

.mt-hdrfix {
  margin-top: var(--headerfixed);
}

.banner {
  position: relative;
  z-index: 0;
}
.banner:not(.banner-banner) {
  position: relative;
}
.banner:not(.banner-banner)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner:not(.banner-banner)::before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, 0.95) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, 0.95) 100%);
}
.banner.center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
}
.banner.common-banner {
  padding: 90px 0;
}
.banner .bg {
  line-height: 0;
  height: 100vh;
}
@media only screen and (max-width: 1152px) {
  .banner .bg {
    height: 520px;
  }
}
@media only screen and (max-width: 520px) {
  .banner .bg {
    height: 320px;
  }
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15%;
  z-index: 3;
}
@media only screen and (max-width: 520px) {
  .banner .banner-wrapper {
    bottom: 18%;
  }
}
.banner .content.content-white > *:not(.btn) {
  color: var(--white);
}
.banner .content.content-font2 h1 {
  font-family: "Manrope", sans-serif;
  color: var(--black-light);
  font-weight: 600;
  line-height: 1.25;
}
.banner .content.ttl-m h1 {
  font-size: 36px;
}
.banner .content.f-semibold h1 {
  font-weight: 600;
}
.banner .content .ico {
  line-height: 0;
  margin-bottom: 30px;
}
.banner .content .ico img {
  width: 68px;
}
.banner .content h1 {
  font-size: 48px;
  line-height: 1.25;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-weight: 600;
}
@media only screen and (max-width: 1152px) {
  .banner .content h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .banner .content h1 {
    font-size: 34px;
  }
}
.banner .content h1:has(~ *) {
  margin-bottom: 10px;
}
.banner .content p {
  font-weight: 500;
}
@media only screen and (max-width: 520px) {
  .banner .content p {
    font-size: 14px;
  }
}
.banner .content p:has(~ *) {
  margin-bottom: 10px;
}
.banner .content h6 {
  font-size: 18px;
  line-height: 1.34;
  color: var(--text);
  margin-top: 12px;
  font-weight: 500;
}
@media only screen and (max-width: 520px) {
  .banner .content h6 {
    font-size: 14px;
  }
}
.banner .content h6:has(~ *) {
  margin-bottom: 10px;
}
.banner .content h4 {
  font-size: 24px;
}
.banner .content h4:has(~ *) {
  margin-bottom: 10px;
}
.banner .content h5 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 10px;
}
.banner .content h5:has(~ *) {
  margin-bottom: 10px;
}

.swiper-pagination-bullets {
  --swiper-pagination-bullet-size: 13px;
  --swiper-pagination-color: var(--primary);
}

.btn-div-wrap > *:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (max-width: 675px) {
  .btn-div-wrap > *:not(:last-child) {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 675px) {
  .btn-div-wrap .btn {
    --padding: 10px;
  }
}

.common-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 25px;
}
@media only screen and (max-width: 991px) {
  .common-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 675px) {
  .common-grid-wrap {
    grid-template-columns: 100%;
  }
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.grid-9 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}

.grid-10 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.grid-11 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.slider-section .upper-sec {
  position: relative;
  margin-bottom: 4rem;
}
.slider-section .upper-sec .swiper-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media only screen and (max-width: 675px) {
  .slider-section .upper-sec .swiper-nav {
    display: none;
  }
}

.news-col {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure::before {
  animation: shine 0.4s linear;
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .ttl {
  color: var(--primary);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .desc {
  color: var(--black);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .date {
  color: var(--text);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}
.news-col .figure {
  line-height: 0;
  display: block;
  overflow: hidden;
  position: relative;
}
.news-col .figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.news-col .figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.news-col .figure img {
  width: 100%;
  aspect-ratio: 1.2;
  transition: 0.5s ease;
}
.news-col .figcaption {
  --pdt: 18px;
  --pdlr: 24px;
  --pdb: 35px;
  --btnsize: 40px;
  --btnmargin: 27px;
  padding: var(--pdt) var(--pdlr) calc(var(--pdb) + var(--btnmargin) + var(--btnsize));
  position: relative;
  flex: 1 1;
}
.news-col .figcaption .btn-div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 var(--pdlr) var(--pdb);
}
.news-col .figcaption .ttl {
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 10px;
}
.news-col .figcaption .desc, .news-col .figcaption .date {
  font-weight: 500;
  transition: 0.5s ease;
}
.news-col .figcaption .desc {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
}
.news-col .figcaption .date {
  color: var(--primary);
  line-height: 1.375;
}

.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}
.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}
.product-item .figure {
  display: block;
  line-height: 0;
}
.product-item .figure img {
  width: 100%;
  transition: 1s ease;
}
.product-item .figcaption {
  padding-top: 30px;
  text-align: center;
}
.product-item .figcaption h4 {
  font-size: 32px;
}
.product-item .figcaption h5 {
  font-size: 24px;
}
.product-item .figcaption h4, .product-item .figcaption h5 {
  line-height: 1.167;
  font-weight: 600;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 520px) {
  .breadcrumps {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
  }
}
.breadcrumps li {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumps li a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li a {
    font-size: 12px;
    text-overflow: ellipsis;
  }
}
.breadcrumps li a.active {
  color: var(--black);
}
.breadcrumps li:not(:last-child) {
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}
.breadcrumps li:not(:last-child)::before {
  content: ">";
  position: absolute;
  left: 100%;
  top: 50%;
  translate: 0 -50%;
  font-size: 12px;
  font-family: monospace;
  color: var(--text);
}
.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

.sec-pad {
  padding: 70px 0 90px;
}
@media only screen and (max-width: 991px) {
  .sec-pad {
    padding: 60px 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .sec-pad {
    padding: 50px 0 70px;
  }
}
@media only screen and (max-width: 540px) {
  .sec-pad {
    padding: 40px 0 50px;
  }
}

.sec-padd-all {
  padding: 70px 40px 90px;
}
@media only screen and (max-width: 991px) {
  .sec-padd-all {
    padding: 60px 30px 80px;
  }
}
@media only screen and (max-width: 768px) {
  .sec-padd-all {
    padding: 50px 25px 65px;
  }
}
@media only screen and (max-width: 540px) {
  .sec-padd-all {
    padding: 30px 20px 50px;
  }
}

.bg-circle {
  position: relative;
  --bgcolor: rgb(256 256 256);
  --bgsize: 30%;
  --top: 50%;
  --right: 10%;
}
.bg-circle::before {
  top: var(--top);
  right: var(--right);
  content: "";
  position: absolute;
  z-index: 0;
  width: var(--bgsize);
  aspect-ratio: 1;
  background: var(--bgcolor);
  filter: blur(152.3000030518px);
}
.bg-circle .container {
  position: relative;
  z-index: 1;
}

.common-slider-1 .swiper {
  max-width: calc(100% - 45px);
}
@media only screen and (max-width: 540px) {
  .common-slider-1 .swiper {
    max-width: 100%;
  }
}

.swiper-prev.has-shadow, .swiper-next.has-shadow {
  box-shadow: 0px 1px 3px 1px rgba(60, 64, 67, 0.1490196078), 0px 1px 2px 0px rgba(60, 64, 67, 0.3019607843);
}

.over-hidden {
  overflow: hidden;
}

@keyframes blink {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.highlight {
  color: var(--primary);
}

.error_msg {
  color: #ef1111;
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 14px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--headerheight);
  background-color: #fff;
  border-bottom: 1px solid var(--black);
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--white);
}
@media only screen and (max-width: 540px) {
  header {
    background-color: #fff;
  }
}
header::after {
  bottom: auto;
  height: 0;
  z-index: -1;
  transition: 0.5s ease;
}
header .header-wrapper {
  height: 100%;
  display: flex;
  padding: 0 var(--containerfluid);
  transition: 0.5s ease;
  --elementcolor: var(--black);
  --elementhover: var(--primary);
  gap: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  header .header-wrapper {
    gap: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  header .header-wrapper {
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  header .header-wrapper {
    gap: 2rem;
  }
}
@media only screen and (max-width: 540px) {
  header .header-wrapper {
    gap: 0;
  }
}
header .header-wrapper .colA, header .header-wrapper .colB {
  height: 100%;
}
header .header-wrapper .colA {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  padding: var(--headerpadding) 15px var(--headerpadding) 0;
}
header .header-wrapper .colA a.logo {
  padding-right: 20px;
  border-right: 1px solid #000;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .colA a.logo {
    border-right: none;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 540px) {
  header .header-wrapper .colA a.logo {
    padding: 5px 0;
  }
}
header .header-wrapper .colA a.logo img {
  height: 100%;
}
@media only screen and (max-width: 768px) {
  header .header-wrapper .colA a.logo img {
    object-fit: contain;
  }
}
header .header-wrapper .colA .solutions_ul {
  text-align: center;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-left: 15px;
  transition: 0.5s ease;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .colA .solutions_ul {
    display: none;
  }
}
header .header-wrapper .colA .solutions_ul > li {
  display: inline-block;
  vertical-align: middle;
  max-width: 100px;
  text-align: left;
  line-height: 1;
  padding: var(--headerpadding) 0;
}
header .header-wrapper .colA .solutions_ul > li.header_menu > a {
  position: relative;
}
header .header-wrapper .colA .solutions_ul > li.header_menu > a::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -36px;
  background: var(--gradient-a);
  opacity: 0;
}
header .header-wrapper .colA .solutions_ul > li.header_menu > a::after {
  transition: 0.5s ease;
  content: "";
  background-image: url(/assets/icon/arrow-down-black.svg);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 50%;
  background-size: var(--arrowsize) auto;
  padding-left: calc(var(--arrowsize) + var(--space));
  position: absolute;
  right: -55px;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  top: 0;
}
header .header-wrapper .colA .solutions_ul > li.header_menu.active > a::before {
  opacity: 1;
}
header .header-wrapper .colA .solutions_ul > li.header_menu.active > a::after {
  transform: rotate(180deg);
}
header .header-wrapper .colA .solutions_ul > li.header_menu.active .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu {
  position: absolute;
  background: white;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
  width: 100%;
  max-width: calc(var(--container) - 2px);
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap {
  height: 80vh;
  width: 100%;
  --leftwidth: 25%;
  --ulpadding: 15px 10px 20px;
  border-top: 1px solid #000;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md {
  flex: 1 1;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #F0F0F0;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul {
  width: var(--leftwidth);
  height: 100%;
  overflow-x: auto;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li {
  width: 100%;
  padding: 10px 20px;
  text-align: left;
  cursor: pointer;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li:hover {
  background: var(--gradient-a);
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li:hover a {
  color: var(--white);
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li.active {
  background: var(--gradient-a);
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li.active a {
  color: var(--white);
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li.active .col-sub-menu {
  display: block;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li > a {
  display: block;
  padding: 5px 0 3px;
  color: var(--text);
  font-size: 16px;
  position: relative;
  transition: 0.5s ease;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li .col-sub-menu {
  position: absolute;
  top: 0;
  left: var(--leftwidth);
  width: calc(100% - var(--leftwidth));
  height: 80vh;
  background-color: var(--white);
  padding: 40px 30px;
  transition: 0.5s ease;
  display: none;
  border-bottom: 1px solid #000;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li .col-sub-menu .col-subgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  transition: 0.5s ease;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li .col-sub-menu .col-subgrid .subsubcategory {
  width: 100%;
  padding: var(--ulpadding);
  border: 1px solid var(--black);
  text-align: center;
  border-radius: 5px;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li .col-sub-menu .col-subgrid .subsubcategory img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
header .header-wrapper .colA .solutions_ul > li.header_menu .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul > .subcat-li .col-sub-menu .col-subgrid .subsubcategory p {
  color: var(--black);
}
header .header-wrapper .colB {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: end;
}
header .header-wrapper .colB > ul {
  text-align: center;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .colB > ul {
    gap: 20px;
  }
}
header .header-wrapper .colB > ul > li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
header .header-wrapper .colB > ul > li:first-child {
  transition: 0.5s ease;
  border-right: 1px solid var(--black);
  padding-right: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  header .header-wrapper .colB > ul > li:first-child {
    display: none;
  }
}
@media only screen and (max-width: 540px) {
  header .header-wrapper .colB > ul > li:nth-last-child(2) {
    display: none;
  }
}
header .header-wrapper .colB > ul > li.hasDropdown {
  position: relative;
}
@media only screen and (max-width: 768px) {
  header .header-wrapper .colB > ul > li.hasDropdown {
    display: none;
  }
}
header .header-wrapper .colB > ul > li.hasDropdown > a, header .header-wrapper .colB > ul > li.hasDropdown img {
  transition: 0.5s ease;
}
header .header-wrapper .colB > ul > li.hasDropdown > a::after, header .header-wrapper .colB > ul > li.hasDropdown img::after {
  transition: 0.5s ease;
  content: "";
  background-image: url(/assets/icon/arrow-down-black.svg);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 15%;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize) + var(--space));
}
header .header-wrapper .colB > ul > li.hasDropdown:hover > a {
  color: var(--elementhover);
  position: relative;
}
header .header-wrapper .colB > ul > li.hasDropdown:hover > a::after {
  transform: rotate(90deg);
}
header .header-wrapper .colB > ul > li.hasDropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
header .header-wrapper .colB > ul > li.hasDropdown .dropdown-menu {
  --triangle: 10px;
  position: absolute;
  top: calc(100% + var(--triangle));
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
  width: 100%;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
header .header-wrapper .colB > ul > li.hasDropdown .dropdown-menu::before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 0;
  width: var(--triangle);
  height: var(--triangle);
  background: #fff;
  transform: rotate(45deg);
  z-index: -1;
}
header .header-wrapper .colB > ul > li.hasDropdown .dropdown-menu ul {
  background: #fff;
  padding: 16px 12px;
  box-shadow: rgba(0, 0, 0, 0.03) -2px 6px 2px 3px;
  border-radius: 5px;
  text-align: left;
  white-space: nowrap;
}
header .header-wrapper .colB > ul > li.hasDropdown .dropdown-menu ul li {
  display: block;
}
header .header-wrapper .colB > ul > li.hasDropdown .dropdown-menu ul li:not(:last-child) {
  margin-right: 0;
  margin-bottom: 2px;
}
header .header-wrapper .colB > ul > li.hasDropdown .dropdown-menu ul li a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--black);
  padding: 10px 14px;
  border-radius: 5px;
  overflow: hidden;
  cursor: default;
}
header .header-wrapper .colB > ul > li.hasDropdown .dropdown-menu ul li a img {
  width: 20px;
  object-fit: cover;
}
header .header-wrapper .colB > ul > li.hasDropdown .dropdown-menu ul li a span {
  display: block;
  width: 24px;
  line-height: 0;
}
header .header-wrapper .colB > ul > li a:not(.btn) {
  color: var(--elementcolor);
  font-weight: 500;
}
header .header-wrapper .colB > ul > li a:not(.btn):hover {
  color: var(--elementhover);
}
header .header-wrapper .colB > ul > li a .svg, header .header-wrapper .colB > ul > li a img {
  width: 25px;
  height: 25px;
}
header .header-wrapper .colB > ul > li .ham-btn {
  --width: 40px;
  --height: 4px;
  text-align: -webkit-right;
}
header .header-wrapper .colB > ul > li .ham-btn span {
  display: block;
  width: var(--width);
  height: var(--height);
  background-color: #000;
  transition: 0.5s ease;
}
header .header-wrapper .colB > ul > li .ham-btn span:not(:last-child) {
  margin-bottom: 5px;
}
header .header-wrapper .colB > ul > li .ham-btn span:nth-child(2) {
  width: calc(var(--width) * 0.7);
}
header .header-wrapper .colB > ul > li .ham-btn span:last-child {
  width: calc(var(--width) * 0.5);
}
header .header-wrapper .colB > ul > li .ham-btn:hover span:nth-child(2), header .header-wrapper .colB > ul > li .ham-btn:hover span:last-child {
  width: 100%;
}
header .header-wrapper .nav-a {
  flex: 1 1;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .nav-a {
    display: none;
  }
}
header .header-wrapper .nav-a li:not(:last-child) {
  margin-right: 40px;
}
header .header-wrapper .colC {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
}
header .header-wrapper .nav-b li:first-child {
  border-right: 1px solid var(--white);
  padding-right: 15px;
}
@media only screen and (max-width: 768px) {
  header .header-wrapper .nav-b li:first-child {
    display: none;
  }
}
header .header-wrapper .nav-b li:first-child a {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 540px) {
  header .header-wrapper .nav-b li:not(:last-child) {
    display: none;
  }
}
header .header-wrapper .nav-b li:not(:last-child) {
  margin-right: 17px;
}

header.header-fixed {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 5px 2px;
}
@media only screen and (max-width: 768px) {
  header.header-fixed {
    box-shadow: none;
    border-bottom: 1px solid #000;
  }
}
header.header-fixed, header.header-fit {
  transition: 0.5s ease;
  --headerpadding: 14px;
  height: var(--headerfixed);
}
@media only screen and (max-width: 768px) {
  header.header-fixed, header.header-fit {
    height: 60px;
  }
}
header.header-fixed::after, header.header-fit::after {
  height: 100%;
}
@media only screen and (max-width: 991px) {
  header.header-fixed .header-wrapper .colA, header.header-fit .header-wrapper .colA {
    padding: 8px 15px 8px 0;
  }
}
header.header-fit {
  transition: 0s;
}
header.header-fit::after {
  transition: none;
}
header.header-fit .header-wrapper .colA .logo {
  transition: none !important;
}
header.header-shadow {
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
}

footer .container {
  padding-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  footer .container {
    padding: 0 0 20px 0;
  }
}
footer .upper-footer {
  border-bottom: 1px solid #000;
}
footer .upper-footer .nav-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .nav-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
footer .upper-footer .nav-list li.hasDropdown {
  cursor: pointer;
  flex: 1 1;
  position: relative;
  padding: 10px 5px 10px 20px;
  border-right: 1px solid #000;
  border-top: 1px solid var(--black);
}
footer .upper-footer .nav-list li.hasDropdown:nth-child(4n) {
  border-right: none;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .nav-list li.hasDropdown {
    padding: 10px 5px 10px 10px;
    border-right: none;
  }
}
footer .upper-footer .nav-list li.hasDropdown:last-child {
  border-right: none;
  border-bottom: none;
}
footer .upper-footer .nav-list li.hasDropdown:first-child {
  border-left: none;
}
footer .upper-footer .nav-list li.hasDropdown .plus-icon {
  position: absolute;
  right: 20px;
  top: 22px;
  --sizeplus: 17px;
  height: var(--sizeplus);
  width: var(--sizeplus);
}
footer .upper-footer .nav-list li.hasDropdown .plus-icon.active::after {
  transform: rotate(0deg);
  opacity: 0;
}
footer .upper-footer .nav-list li.hasDropdown .plus-icon::before, footer .upper-footer .nav-list li.hasDropdown .plus-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: 0.5s ease;
}
footer .upper-footer .nav-list li.hasDropdown .plus-icon::after {
  transform: rotate(90deg);
}
footer .upper-footer .nav-list li.hasDropdown > a {
  font-size: 16px;
  font-weight: 700;
}
footer .upper-footer .nav-list li.hasDropdown .footer-dropdown-menu {
  max-height: 0px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
footer .upper-footer .nav-list li.hasDropdown .footer-dropdown-menu.active {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}
footer .upper-footer .nav-list li.hasDropdown .footer-dropdown-menu ul {
  padding: 10px 0 10px 5px;
}
footer .upper-footer .nav-list li.hasDropdown .footer-dropdown-menu ul li {
  font-size: 15px;
  transition: 0.5s ease;
}
footer .upper-footer .nav-list li.hasDropdown .footer-dropdown-menu ul li:hover {
  padding-left: 5px;
}
footer .upper-footer .nav-list li.hasDropdown .footer-dropdown-menu ul li:hover a {
  color: var(--black);
}
footer .upper-footer .nav-list li.hasDropdown .footer-dropdown-menu ul li a {
  color: var(--text);
  transition: 0.5s ease;
}
footer .main-footer {
  padding: 50px 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  footer .main-footer {
    align-items: start;
  }
}
@media only screen and (max-width: 991px) {
  footer .main-footer {
    padding: 50px 25px;
  }
}
@media only screen and (max-width: 768px) {
  footer .main-footer {
    padding: 40px 25px;
    gap: 25px;
  }
}
@media only screen and (max-width: 540px) {
  footer .main-footer {
    padding: 30px 0px;
  }
}
footer .main-footer .colA {
  flex: 0 1 20%;
}
@media only screen and (max-width: 540px) {
  footer .main-footer .colA {
    display: none;
  }
}
footer .main-footer .colA img {
  width: 170px;
}
@media only screen and (max-width: 991px) {
  footer .main-footer .colA img {
    height: 100%;
    object-fit: contain;
  }
}
footer .main-footer .colB {
  flex: 1 1;
  display: flex;
  padding: 0 40px;
}
@media only screen and (max-width: 768px) {
  footer .main-footer .colB {
    padding: 0 0 0 10px;
  }
}
@media only screen and (max-width: 540px) {
  footer .main-footer .colB {
    padding: 0;
    flex-direction: column;
    gap: 25px;
  }
}
footer .main-footer .colB .list {
  flex: 1 1;
}
@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list:first-child {
    border-bottom: 1px solid var(--black);
    padding-bottom: 30px;
  }
}
footer .main-footer .colB .list h6 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
}
footer .main-footer .colB .list > ul.connect li {
  margin-bottom: 15px;
}
@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list > ul:not(.connect) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
footer .main-footer .colB .list > ul > li {
  display: flex;
  gap: 10px;
}
footer .main-footer .colB .list > ul > li a {
  font-size: 16px;
  color: var(--text);
  transition: 0.5s ease;
  padding-bottom: 5px;
  flex: 0 1 100%;
}
footer .main-footer .colB .list > ul > li a:hover {
  color: var(--black);
  padding-left: 5px;
}
footer .main-footer .colB .list > ul > li svg {
  width: 30px;
  height: 35px;
}
footer .main-footer .colC {
  flex: 0 1 20%;
}
@media only screen and (max-width: 991px) {
  footer .main-footer .colC {
    flex: 0 1 100%;
  }
}
footer .main-footer .colC .social-icons {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  footer .main-footer .colC .social-icons {
    justify-content: center;
  }
}
footer .bottom-footer {
  padding: 20px 25px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  footer .bottom-footer {
    flex-direction: column;
    gap: 10px;
  }
}
@media only screen and (max-width: 540px) {
  footer .bottom-footer {
    margin-bottom: var(--footerstrip);
  }
}
footer .bottom-footer .pret a {
  display: flex;
  align-items: center;
  color: var(--text);
}
footer .bottom-footer .pret a img {
  width: 80px;
  padding-left: 10px;
}

.ham-pop {
  right: 0;
  max-width: 480px;
  background: #fff;
  transform: translateX(100%);
  transition: 0.5s ease;
}
.ham-pop.is-open {
  transform: translateX(0%);
}
.ham-pop .close path {
  stroke-width: 2 !important;
}
.ham-pop .model-body {
  padding: 75px 0px 30px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.ham-pop .model-body::-webkit-scrollbar {
  width: 6px;
  background: var(--white);
  height: 6px;
}
.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.ham-pop .model-body .ico {
  max-width: 70px;
  margin-bottom: 55px;
  line-height: 0;
}
.ham-pop .model-body .ico img, .ham-pop .model-body .ico svg {
  width: 100%;
  height: auto;
}
.ham-pop .model-body .nav-list {
  flex: 1 1;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown {
  position: relative;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .more_down {
  position: absolute;
  right: 50px;
  top: 10px;
  rotate: 90deg;
  transition: 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .ham-pop .model-body .nav-list > li.hamhasDropdown .more_down {
    right: 25px;
  }
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .more_down.active {
  rotate: 0deg;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu {
  max-height: 0;
  opacity: 0;
  padding: 0px 40px;
  pointer-events: none;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu {
    padding: 0 25px;
  }
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu::-webkit-scrollbar {
  display: none;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu.active {
  max-height: 90vh;
  padding: 10px 40px;
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 768px) {
  .ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu.active {
    padding: 10px 25px;
  }
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown {
  position: relative;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .plus-icon {
  position: absolute;
  right: 0;
  top: 18px;
  --sizeplus: 20px;
  height: var(--sizeplus);
  width: var(--sizeplus);
}
@media only screen and (max-width: 768px) {
  .ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .plus-icon {
    top: 8px;
  }
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .plus-icon.active::before {
  transform: rotate(0);
  opacity: 0;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .plus-icon::before, .ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .plus-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0px -50%;
  left: 0px;
  right: 0px;
  height: 2px;
  width: 100%;
  background: var(--black);
  transition: 0.5s;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .plus-icon::before {
  transform: rotate(90deg);
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .subsubmenu {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .subsubmenu.active {
  max-height: 300px;
  opacity: 1;
  pointer-events: auto;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .subsubmenu ul {
  padding: 0 10px;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li.subHasDropdown .subsubmenu ul a {
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li > a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding: 5px;
  color: var(--text);
  transition: 0.5s ease;
}
.ham-pop .model-body .nav-list > li.hamhasDropdown .hamsubmenu ul > li > a:hover {
  color: var(--black);
}
.ham-pop .model-body .nav-list > li > a {
  font-size: 28px;
  line-height: 1.06;
  padding: 10px 40px;
  color: var(--black);
  display: block;
  font-weight: 600;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list > li > a {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .ham-pop .model-body .nav-list > li > a {
    font-size: 24px;
    padding: 10px 20px;
  }
}
.ham-pop .model-body .nav-list > li > a:hover {
  color: var(--primary);
  padding-left: 45px;
}
@media only screen and (max-width: 768px) {
  .ham-pop .model-body .nav-list > li > a:hover {
    padding-left: 30px;
  }
}
.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding: 1rem 40px 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 540px) {
  .ham-pop .model-body .bottom-list {
    padding: 1rem 20px 0;
  }
}
.ham-pop .model-body .bottom-list .social-icons a {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  color: var(--text);
}
.ham-pop .model-body .bottom-list .social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--gradient-a);
}
.ham-pop .model-body .bottom-list .social-icons a::before {
  border-radius: 50%;
  transform: scale(1.5);
  z-index: -1;
  opacity: 0;
  transition: 0.2s ease;
}
.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 4px;
}
.ham-pop .model-body .bottom-list .social-icons a svg {
  width: 24px;
  height: 24px;
}
.ham-pop .model-body .bottom-list .social-icons a svg path {
  transition: none;
}
.ham-pop .model-body .bottom-list .social-icons a svg path[stroke], .ham-pop .model-body .bottom-list .social-icons a svg path[fill=none] {
  stroke: currentColor;
}
.ham-pop .model-body .bottom-list .social-icons a svg path[fill] {
  fill: currentColor;
}
.ham-pop .model-body .bottom-list .social-icons a:hover {
  color: var(--white);
}
.ham-pop .model-body .bottom-list .social-icons a:hover::before {
  transition: 0.5s ease;
  opacity: 1;
  transform: scale(1);
}

.enquire-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: #fff;
}
.enquire-pop.is-open {
  transform: translateX(0%);
}
.enquire-pop .model-body {
  margin-top: 60px;
  padding: 0px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.enquire-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.enquire-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.enquire-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-weight: 500;
}
.enquire-pop .model-body .title p {
  color: var(--text);
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body .title p {
    font-size: 14px;
    max-width: 300px;
  }
}
.enquire-pop .model-body .form {
  --gaptb: 20px;
  --item: 1;
}
.enquire-pop .model-body .btn-btn {
  margin: 20px auto 0;
}

.career-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: #fff;
}
.career-pop.is-open {
  transform: translateX(0%);
}
.career-pop .model-body {
  margin-top: 60px;
  padding: 0px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.career-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.career-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.career-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .career-pop .model-body {
    padding: 70px 20px 30px;
  }
}
.career-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.career-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-weight: 500;
}
.career-pop .model-body .title p {
  color: var(--text);
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 675px) {
  .career-pop .model-body .title p {
    font-size: 14px;
    max-width: 300px;
  }
}
.career-pop .model-body .form {
  --gaptb: 20px;
  --gaplr: 15px;
  --item: 2;
}
.career-pop .model-body .btn-btn {
  margin: 20px auto 0;
}

.video-pop {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 9;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.video-pop.is-open {
  transform: translateY(0%);
}
.video-pop .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
@media only screen and (max-width: 675px) {
  .video-pop .close-video {
    right: 0;
  }
}
.video-pop .close-video:hover {
  background: var(--primary);
}
.video-pop .close-video svg {
  height: 35%;
  width: 35%;
}
.video-pop .close-video path {
  stroke-width: 2;
  stroke: var(--white);
}
.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}
.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
  background: var(--white);
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: var(--gradient-a);
  display: none;
}
@media only screen and (max-width: 540px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-strip ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  color: var(--white);
  font-size: 14px;
  height: var(--footerstrip);
}
.footer-strip ul li a svg {
  width: 20px;
  height: 20px;
}
.footer-strip ul li a svg[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg[fill] {
  fill: var(--white);
}
.footer-strip ul li a svg path[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg path[fill] {
  fill: var(--white);
}

.privacy-secA .container {
  border-top: 1px solid #000;
}

.thankyou {
  border-top: 1px solid #000;
}
.thankyou .container {
  height: 80vh;
}
.thankyou .container .content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.thankyou .container .content .icon {
  width: 80px;
  height: 80px;
}
.thankyou .container .content .icon img {
  height: 100%;
}
.thankyou .container .content h2 {
  padding-bottom: 10px;
}
.thankyou .container .content p {
  max-width: 600px;
  margin: 0 auto;
}/*# sourceMappingURL=header.css.map */
/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./styles/components/components.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.service-col {
  padding: 20px 25px;
  text-align: center;
  border: 1px solid var(--text);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .service-col {
    padding: 10px 15px;
  }
}
.service-col::before {
  content: "";
  width: 0%;
  height: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gradient-a);
  border-radius: 0 5px 0 0;
  transition: 0.5s ease;
  z-index: -1;
}
.service-col:hover::before {
  width: 100%;
  height: 100%;
}
.service-col:hover img {
  filter: invert(1);
}
.service-col:hover p {
  color: var(--white);
}
.service-col img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  transition: 1s ease;
}
@media only screen and (max-width: 540px) {
  .service-col img {
    width: 35px;
    height: 35px;
  }
}
.service-col p {
  color: var(--black);
  line-height: 1.1;
  transition: 1s ease;
}

.summery-detail-content .col {
  --padlr: 0;
  transition: 0.5s ease;
}
.summery-detail-content .col.active .title .outer-circle {
  background: var(--gradient-a);
  border: none;
}
.summery-detail-content .col.active .title h6 {
  color: var(--black);
}
.summery-detail-content .col.active .title .ico {
  --bgcolor: var(--white);
}
.summery-detail-content .col.active .title .ico::after {
  transform: scaleY(0);
}
.summery-detail-content .col.active article {
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
}
.summery-detail-content .col .title {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  padding: 10px 20px 10px 0;
  margin-left: -20px;
  gap: 20px;
  cursor: pointer;
  transition: 0.5s ease;
}
.summery-detail-content .col .title h6 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  flex: 1 1;
  color: var(--text);
  padding-right: 1rem;
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col .title h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 345px) {
  .summery-detail-content .col .title h6 {
    font-size: 14px;
  }
}
.summery-detail-content .col .title .outer-circle {
  border: 1px solid var(--black);
  border-radius: 50%;
  background-color: var(--white);
  padding: 10px;
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col .title .outer-circle {
    padding: 7px;
  }
}
.summery-detail-content .col .title .ico {
  flex: 0 1 auto;
  --size: 18px;
  --border: 2px;
  --bgcolor: var(--black);
  height: var(--size);
  width: var(--size);
  position: relative;
}
.summery-detail-content .col .title .ico::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
.summery-detail-content .col .title .ico::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col .title .ico {
    --size: 14px;
  }
}
.summery-detail-content .col .title .ico::before, .summery-detail-content .col .title .ico::after {
  transition: 0.5s ease;
}
.summery-detail-content .col .title .ico::before {
  top: calc(var(--size) / 2 - var(--border) / 2);
  bottom: auto;
  height: var(--border);
  width: 100%;
}
.summery-detail-content .col .title .ico::after {
  left: calc(var(--size) / 2);
  translate: -50% 0;
  right: auto;
  width: var(--border);
  height: 100%;
}
.summery-detail-content .col article {
  position: relative;
  background: var(--white);
  border-top: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  border-radius: 0 0 5px 5px;
}
.summery-detail-content .col article .content-desc {
  padding: 0px 10px 0px 40px;
}
.summery-detail-content .col article .content-desc p, .summery-detail-content .col article .content-desc ul, .summery-detail-content .col article .content-desc h2, .summery-detail-content .col article .content-desc h3, .summery-detail-content .col article .content-desc h4, .summery-detail-content .col article .content-desc h5, .summery-detail-content .col article .content-desc h6 {
  margin-bottom: 16px;
}
.summery-detail-content .col article .content-desc *:not(button) {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}
.summery-detail-content .col article .content-desc h1, .summery-detail-content .col article .content-desc h2, .summery-detail-content .col article .content-desc h3, .summery-detail-content .col article .content-desc h4, .summery-detail-content .col article .content-desc h5, .summery-detail-content .col article .content-desc h6, .summery-detail-content .col article .content-desc b {
  color: var(--black);
  font-weight: 500;
}
.summery-detail-content .col article .content-desc ul {
  padding-left: 20px;
}
.summery-detail-content .col article .content-desc ul li {
  list-style: none;
}
.summery-detail-content .col article .content-desc ul li::before {
  background-color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col article .content-desc ul li {
    font-size: 14px;
  }
}
.summery-detail-content .col article .content-desc ul li:not(:last-child) {
  margin-bottom: 5px;
}
@media only screen and (max-width: 540px) {
  .summery-detail-content .col article .content-desc p {
    font-size: 14px;
  }
}

.col-3d {
  --borderwidth: 27px;
  --bordercolor: #000;
  --borderheight: 1px;
  position: relative;
  overflow: hidden;
  padding: 0 0 var(--borderwidth) var(--borderwidth);
}
@media only screen and (max-width: 540px) {
  .col-3d {
    --borderwidth: 15px;
  }
}
.col-3d:hover .card-wrap {
  transform: translate(0, 0);
}
.col-3d:hover .card-wrap::before, .col-3d:hover .card-wrap::after {
  width: 0;
}
.col-3d:hover .card-wrap::before {
  left: 0;
}
.col-3d:hover .card-wrap::after {
  right: 0;
}
.col-3d::before, .col-3d::after {
  content: "";
  position: absolute;
  bottom: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--bordercolor);
  transition: 0.5s ease;
}
.col-3d::before {
  width: calc(100% - var(--borderwidth));
  height: var(--borderheight);
  top: 0;
  right: 0;
}
.col-3d::after {
  height: calc(100% - var(--borderwidth));
  width: var(--borderheight);
  top: 0;
  right: 0;
}
.col-3d .card-wrap {
  transform: translate(calc(var(--borderwidth) * -1), var(--borderwidth));
  position: relative;
  transition: 0.5s ease;
}
.col-3d .card-wrap::before, .col-3d .card-wrap::after {
  content: "";
  position: absolute;
  bottom: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: var(--borderheight);
  height: 100%;
  background: var(--bordercolor);
  transform: rotate(45deg);
  transform-origin: bottom;
  transition: 0.5s ease;
}
.col-3d .card-wrap::before {
  left: 0;
}
.col-3d .card-wrap::after {
  right: 0;
}
.col-3d .card-wrap .card {
  position: relative;
}
.col-3d .card-wrap .card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: var(--borderheight);
  height: 100%;
  background: var(--bordercolor);
  transform: rotate(45deg);
  transform-origin: bottom;
}
.col-3d .card-wrap .card .figure {
  display: block;
  line-height: 0;
  overflow: hidden;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 8% 100%, 0% 86%, 0 0);
          clip-path: polygon(100% 0%, 100% 100%, 8% 100%, 0% 86%, 0 0);
  position: relative;
}
.col-3d .card-wrap .card .figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.col-3d .card-wrap .card .figure img {
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  line-height: 0;
}
.col-3d .card-wrap .card figcaption {
  position: absolute;
  bottom: 10%;
  padding: 0 40px 20px;
}
@media only screen and (max-width: 540px) {
  .col-3d .card-wrap .card figcaption {
    padding: 0 10px 20px;
  }
}
.col-3d .card-wrap .card figcaption p {
  font-size: 18px;
  color: var(--white);
  line-height: 1.2;
  font-weight: 800;
}
@media only screen and (max-width: 540px) {
  .col-3d .card-wrap .card figcaption p {
    font-size: 16px;
  }
}

.col-3d-right {
  --borderwidth: 90px;
  --bordercolor: #000;
  --borderheight: 1px;
  position: relative;
  overflow: hidden;
  padding: 0 var(--borderwidth) var(--borderwidth) 0;
}
.col-3d-right:hover .card-wrap {
  transform: translate(0, 0);
}
.col-3d-right:hover .card-wrap::before, .col-3d-right:hover .card-wrap::after {
  width: 0;
}
.col-3d-right:hover .card-wrap::before {
  left: 0;
}
.col-3d-right:hover .card-wrap::after {
  right: 0;
}
.col-3d-right::before, .col-3d-right::after {
  content: "";
  position: absolute;
  bottom: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--bordercolor);
  transition: 0.5s ease;
}
.col-3d-right::before {
  width: calc(100% - var(--borderwidth));
  height: var(--borderheight);
  top: 0;
  left: 0;
}
.col-3d-right::after {
  height: calc(100% - var(--borderwidth));
  width: var(--borderheight);
  top: 0;
  left: 0;
}
.col-3d-right .card-wrap {
  transform: translate(var(--borderwidth), var(--borderwidth));
  position: relative;
  transition: 0.5s ease;
}
.col-3d-right .card-wrap::before, .col-3d-right .card-wrap::after {
  content: "";
  position: absolute;
  bottom: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: var(--borderheight);
  height: 100%;
  background: var(--bordercolor);
  transform: rotate(316deg);
  transform-origin: bottom;
  transition: 0.5s ease;
}
.col-3d-right .card-wrap::before {
  left: 0;
}
.col-3d-right .card-wrap::after {
  right: 0;
}
.col-3d-right .card-wrap .card {
  position: relative;
}
.col-3d-right .card-wrap .card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: var(--borderheight);
  height: 100%;
  background: var(--bordercolor);
  transform: rotate(314deg);
  transform-origin: bottom;
}
.col-3d-right .card-wrap .card .figure {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.col-3d-right .card-wrap .card .figure img, .col-3d-right .card-wrap .card .figure video {
  width: 100%;
  transition: 0.5s ease;
  line-height: 0;
}

.formComWrapper .flex {
  align-items: center;
  gap: 100px;
}
@media only screen and (max-width: 991px) {
  .formComWrapper .flex {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .formComWrapper .flex {
    flex-direction: column;
    gap: 0;
  }
}
.formComWrapper .flex .colA {
  flex: 0 1 40%;
  display: flex;
  justify-content: center;
}
.formComWrapper .flex .colA .form-3d {
  width: 350px;
  height: 500px;
  --borderwidth: 54px;
}
@media only screen and (max-width: 991px) {
  .formComWrapper .flex .colA .form-3d {
    --borderwidth: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .formComWrapper .flex .colA .form-3d {
    width: 200px;
    height: 400px;
  }
}
@media only screen and (max-width: 540px) {
  .formComWrapper .flex .colA .form-3d {
    width: 150px;
    height: 300px;
    --borderwidth: 40px;
  }
}
.formComWrapper .flex .colA .form-3d:hover .card-wrap::before, .formComWrapper .flex .colA .form-3d:hover .card-wrap::after {
  width: var(--borderheight);
}
.formComWrapper .flex .colA .form-3d .card-wrap, .formComWrapper .flex .colA .form-3d .card, .formComWrapper .flex .colA .form-3d .figure, .formComWrapper .flex .colA .form-3d video {
  width: 100%;
  height: 100%;
}
.formComWrapper .flex .colA .form-3d .card-wrap {
  transform: translate(var(--borderwidth), calc(var(--borderwidth) * 0.3));
}
.formComWrapper .flex .colA .form-3d .card-wrap::before, .formComWrapper .flex .colA .form-3d .card-wrap::after {
  transform: rotate(286deg);
}
.formComWrapper .flex .colA .form-3d .card-wrap .card::before {
  transform: rotate(287deg);
}
.formComWrapper .flex .colA .form-3d video {
  filter: grayscale(1);
}
.formComWrapper .flex .colB {
  flex: 1 1;
}
.formComWrapper .flex .colB .title {
  padding: 40px 0;
}
@media only screen and (max-width: 768px) {
  .formComWrapper .flex .colB .title {
    padding: 0 0 30px;
    text-align: center;
  }
}
.formComWrapper .flex .colB .title h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  max-width: 297px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .formComWrapper .flex .colB .title h2 {
    max-width: 100%;
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .formComWrapper .flex .colB .title h2 {
    font-size: 24px;
    padding: 0 15px 5px;
  }
}
.formComWrapper .flex .colB .title p {
  color: var(--black);
}

.form-grid {
  --item: 2;
  --gaplr: 20px;
  --gaptb: 20px;
  --textareaheight: 60px;
}
@media only screen and (max-width: 768px) {
  .form-grid {
    --item: 1;
  }
}
.form-grid.full_width {
  --item: 1;
}
.form-grid .btn-wrap {
  margin-top: 20px;
}
.form-grid .btn-wrap button {
  border-radius: 5px;
}

.description-section .flex {
  border-bottom: 1px solid var(--black);
}
@media only screen and (max-width: 768px) {
  .description-section .flex {
    padding: 0;
    flex-direction: column;
  }
}
.description-section .flex .colA {
  padding: 40px 50px 40px 40px;
  border-right: 1px solid var(--black);
  flex: 0 1 60%;
}
@media only screen and (max-width: 991px) {
  .description-section .flex .colA {
    padding: 30px 30px 30px 0;
  }
}
@media only screen and (max-width: 768px) {
  .description-section .flex .colA {
    border-right: none;
    flex: 0 1 100%;
    padding: 30px;
    border-bottom: 1px solid var(--black);
  }
}
@media only screen and (max-width: 540px) {
  .description-section .flex .colA {
    padding: 20px;
  }
}
.description-section .flex .colA .content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
  font-weight: 700;
  font-weight: normal;
  margin: 10px 0;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 520px) {
  .description-section .flex .colA .content h1 {
    font-size: 30px;
    font-weight: bold;
  }
}
.description-section .flex .colA .content h2 {
  font-size: 34px;
  margin: 10px 0;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h2 {
    font-size: 24px;
  }
}
.description-section .flex .colA .content h3 {
  font-size: 28px;
  line-height: 1.21;
  margin: 10px 0;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h3 {
    font-size: 22px;
  }
}
.description-section .flex .colA .content h4 {
  font-size: 24px;
  margin: 10px 0;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h4 {
    font-size: 20px;
  }
}
.description-section .flex .colA .content h5 {
  font-size: 20px;
  line-height: 1.3;
  margin: 10px 0;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content h5 {
    font-size: 18px;
  }
}
.description-section .flex .colA .content h6 {
  font-size: 18px;
  line-height: 1.3;
  margin: 10px 0;
  font-weight: 600;
}
.description-section .flex .colA .content p, .description-section .flex .colA .content li {
  color: var(--text);
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media only screen and (max-width: 520px) {
  .description-section .flex .colA .content p, .description-section .flex .colA .content li {
    font-size: 14px;
  }
}
.description-section .flex .colA .content p b, .description-section .flex .colA .content li b {
  font-weight: 600;
  color: var(--black);
}
.description-section .flex .colA .content a {
  color: var(--black);
}
.description-section .flex .colA .content a:hover {
  text-decoration: underline;
}
.description-section .flex .colA .content ul {
  padding-left: 10px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content ul {
    margin-bottom: 10px;
    padding-left: 10px;
  }
}
.description-section .flex .colA .content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .description-section .flex .colA .content ul li {
    padding-left: 20px;
  }
}
.description-section .flex .colA .content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.description-section .flex .colA .content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}
@media only screen and (max-width: 520px) {
  .description-section .flex .colA .content ul li::before {
    width: 6px;
  }
}
.description-section .flex .colA .content p {
  padding-bottom: 15px;
  color: var(--black);
}
.description-section .flex .colB {
  padding: 60px 50px;
  flex: 1 1;
}
@media only screen and (max-width: 991px) {
  .description-section .flex .colB {
    padding: 40px 0 40px 25px;
  }
}
@media only screen and (max-width: 768px) {
  .description-section .flex .colB {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 540px) {
  .description-section .flex .colB {
    padding: 30px 20px;
  }
}
.description-section .flex .colB .heading {
  text-align: center;
  padding-bottom: 20px;
}
.description-section .flex .colB .heading h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 540px) {
  .description-section .flex .colB .heading h2 {
    font-size: 24px;
    margin-bottom: 4px;
  }
}
.description-section .flex .colB .heading p {
  color: var(--text);
}
.description-section .flex .colB .DescForm {
  --item: 1;
}
.description-section .flex .colB .DescForm .btn-wrap {
  text-align: center;
}

.sol-itemCard {
  padding: 50px 30px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .sol-itemCard {
    padding: 40px 20px;
  }
}
.sol-itemCard:hover .hover-item {
  transform: translateY(0);
}
.sol-itemCard h5 {
  font-weight: 700;
  text-align: center;
  margin: 0 auto 30px;
}
.sol-itemCard figure {
  width: 100%;
  height: 100%;
}
.sol-itemCard figure img {
  object-fit: contain;
}
.sol-itemCard .hover-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-a);
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px 30px;
  transform: translateY(100%);
  transition: 0.7s ease;
}
@media only screen and (max-width: 991px) {
  .sol-itemCard .hover-item {
    padding: 40px 20px;
  }
}
.sol-itemCard .hover-item h5 {
  font-weight: 700;
  text-align: center;
  margin: 0 auto 30px;
  color: var(--white);
}
.sol-itemCard .hover-item p {
  color: var(--white);
  text-align: center;
}
.sol-itemCard .hover-item .btn-btn {
  margin: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
.sol-itemCard .hover-item .btn-btn:hover span {
  transform: translate(0);
}
.sol-itemCard .hover-item .btn-btn::before {
  background-color: var(--white);
}
.sol-itemCard .hover-item .btn-btn span {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--white);
  transform: translate(-4px, -3px);
}

.additional-slider .swiper-slide.bordernone .sol-itemCard {
  border-right: none;
}

.additional-services .container {
  padding-bottom: 0;
}
.additional-services .heading {
  position: relative;
  border-bottom: 1px solid var(--black);
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .additional-services .heading {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 540px) {
  .additional-services .heading {
    padding-bottom: 80px;
  }
}
.additional-services .heading h2 {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .additional-services .heading h2 {
    max-width: 370px;
  }
}
@media only screen and (max-width: 540px) {
  .additional-services .heading h2 {
    max-width: 280px;
  }
}
.additional-services .heading .swiper-nav {
  position: absolute;
  right: 5%;
  top: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .additional-services .heading .swiper-nav {
    top: 60%;
  }
}
@media only screen and (max-width: 540px) {
  .additional-services .heading .swiper-nav {
    right: 50%;
    transform: translateX(50%);
  }
}
.additional-services .heading .swiper-nav button {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 50%;
}
.additional-services .heading .swiper-nav button svg {
  vertical-align: middle;
  width: 30px;
  height: 30px;
}

.service-item {
  background-color: #F5F5F5;
  border: 1px solid var(--text);
  border-radius: 10px;
  padding: 30px 20px;
  display: flex;
  gap: 20px;
}
.service-item img {
  width: 45px;
  height: 45px;
}
.service-item .content {
  text-align: left;
}
.service-item .content h6 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
}
.service-item .content p {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.7px;
  color: var(--text);
  padding-bottom: 15px;
}
.service-item .content .more_a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}
.service-item .content .more_a svg {
  transition: 0.5s ease;
}
.service-item .content .more_a:hover svg {
  transform: translateX(5px);
}

.modal1_1 {
  position: fixed;
  z-index: 99999;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7411764706);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center1_1 {
  z-index: 1000;
  padding: 30px;
  border-radius: 10px;
  filter: alpha(opacity=100);
  text-align: center;
}
.center1_1 p {
  font-size: 12px;
  line-height: 20px;
  margin-top: 18px;
  text-transform: uppercase;
}
.center1_1 img {
  width: 100%;
  max-width: 120px;
}/*# sourceMappingURL=components.css.map */
/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/

/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./public/assets/css/animate.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
@media (min-width: 1007px) {
    .kmr-animate{transition: 1.5s ease}

    [data-animate][data-animate][data-animate-duration="50"],body[data-animate-duration="50"] [data-animate]{
        transition-duration:50ms
    }
    [data-animate][data-animate][data-animate-delay="50"],body[data-animate-delay="50"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="50"].kmr-animate,body[data-animate-delay="50"] [data-animate].kmr-animate{
        transition-delay:50ms
    }
    [data-animate][data-animate][data-animate-duration="100"],body[data-animate-duration="100"] [data-animate]{
        transition-duration:.1s
    }
    [data-animate][data-animate][data-animate-delay="100"],body[data-animate-delay="100"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="100"].kmr-animate,body[data-animate-delay="100"] [data-animate].kmr-animate{
        transition-delay:.1s
    }
    [data-animate][data-animate][data-animate-duration="150"],body[data-animate-duration="150"] [data-animate]{
        transition-duration:.15s
    }
    [data-animate][data-animate][data-animate-delay="150"],body[data-animate-delay="150"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="150"].kmr-animate,body[data-animate-delay="150"] [data-animate].kmr-animate{
        transition-delay:.15s
    }
    [data-animate][data-animate][data-animate-duration="200"],body[data-animate-duration="200"] [data-animate]{
        transition-duration:.2s
    }
    [data-animate][data-animate][data-animate-delay="200"],body[data-animate-delay="200"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="200"].kmr-animate,body[data-animate-delay="200"] [data-animate].kmr-animate{
        transition-delay:.2s
    }
    [data-animate][data-animate][data-animate-duration="250"],body[data-animate-duration="250"] [data-animate]{
        transition-duration:.25s
    }
    [data-animate][data-animate][data-animate-delay="250"],body[data-animate-delay="250"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="250"].kmr-animate,body[data-animate-delay="250"] [data-animate].kmr-animate{
        transition-delay:.25s
    }
    [data-animate][data-animate][data-animate-duration="300"],body[data-animate-duration="300"] [data-animate]{
        transition-duration:.3s
    }
    [data-animate][data-animate][data-animate-delay="300"],body[data-animate-delay="300"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="300"].kmr-animate,body[data-animate-delay="300"] [data-animate].kmr-animate{
        transition-delay:.3s
    }
    [data-animate][data-animate][data-animate-duration="350"],body[data-animate-duration="350"] [data-animate]{
        transition-duration:.35s
    }
    [data-animate][data-animate][data-animate-delay="350"],body[data-animate-delay="350"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="350"].kmr-animate,body[data-animate-delay="350"] [data-animate].kmr-animate{
        transition-delay:.35s
    }
    [data-animate][data-animate][data-animate-duration="400"],body[data-animate-duration="400"] [data-animate]{
        transition-duration:.4s
    }
    [data-animate][data-animate][data-animate-delay="400"],body[data-animate-delay="400"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="400"].kmr-animate,body[data-animate-delay="400"] [data-animate].kmr-animate{
        transition-delay:.4s
    }
    [data-animate][data-animate][data-animate-duration="450"],body[data-animate-duration="450"] [data-animate]{
        transition-duration:.45s
    }
    [data-animate][data-animate][data-animate-delay="450"],body[data-animate-delay="450"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="450"].kmr-animate,body[data-animate-delay="450"] [data-animate].kmr-animate{
        transition-delay:.45s
    }
    [data-animate][data-animate][data-animate-duration="500"],body[data-animate-duration="500"] [data-animate]{
        transition-duration:.5s
    }
    [data-animate][data-animate][data-animate-delay="500"],body[data-animate-delay="500"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="500"].kmr-animate,body[data-animate-delay="500"] [data-animate].kmr-animate{
        transition-delay:.5s
    }
    [data-animate][data-animate][data-animate-duration="550"],body[data-animate-duration="550"] [data-animate]{
        transition-duration:.55s
    }
    [data-animate][data-animate][data-animate-delay="550"],body[data-animate-delay="550"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="550"].kmr-animate,body[data-animate-delay="550"] [data-animate].kmr-animate{
        transition-delay:.55s
    }
    [data-animate][data-animate][data-animate-duration="600"],body[data-animate-duration="600"] [data-animate]{
        transition-duration:.6s
    }
    [data-animate][data-animate][data-animate-delay="600"],body[data-animate-delay="600"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="600"].kmr-animate,body[data-animate-delay="600"] [data-animate].kmr-animate{
        transition-delay:.6s
    }
    [data-animate][data-animate][data-animate-duration="650"],body[data-animate-duration="650"] [data-animate]{
        transition-duration:.65s
    }
    [data-animate][data-animate][data-animate-delay="650"],body[data-animate-delay="650"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="650"].kmr-animate,body[data-animate-delay="650"] [data-animate].kmr-animate{
        transition-delay:.65s
    }
    [data-animate][data-animate][data-animate-duration="700"],body[data-animate-duration="700"] [data-animate]{
        transition-duration:.7s
    }
    [data-animate][data-animate][data-animate-delay="700"],body[data-animate-delay="700"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="700"].kmr-animate,body[data-animate-delay="700"] [data-animate].kmr-animate{
        transition-delay:.7s
    }
    [data-animate][data-animate][data-animate-duration="750"],body[data-animate-duration="750"] [data-animate]{
        transition-duration:.75s
    }
    [data-animate][data-animate][data-animate-delay="750"],body[data-animate-delay="750"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="750"].kmr-animate,body[data-animate-delay="750"] [data-animate].kmr-animate{
        transition-delay:.75s
    }
    [data-animate][data-animate][data-animate-duration="800"],body[data-animate-duration="800"] [data-animate]{
        transition-duration:.8s
    }
    [data-animate][data-animate][data-animate-delay="800"],body[data-animate-delay="800"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="800"].kmr-animate,body[data-animate-delay="800"] [data-animate].kmr-animate{
        transition-delay:.8s
    }
    [data-animate][data-animate][data-animate-duration="850"],body[data-animate-duration="850"] [data-animate]{
        transition-duration:.85s
    }
    [data-animate][data-animate][data-animate-delay="850"],body[data-animate-delay="850"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="850"].kmr-animate,body[data-animate-delay="850"] [data-animate].kmr-animate{
        transition-delay:.85s
    }
    [data-animate][data-animate][data-animate-duration="900"],body[data-animate-duration="900"] [data-animate]{
        transition-duration:.9s
    }
    [data-animate][data-animate][data-animate-delay="900"],body[data-animate-delay="900"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="900"].kmr-animate,body[data-animate-delay="900"] [data-animate].kmr-animate{
        transition-delay:.9s
    }
    [data-animate][data-animate][data-animate-duration="950"],body[data-animate-duration="950"] [data-animate]{
        transition-duration:.95s
    }
    [data-animate][data-animate][data-animate-delay="950"],body[data-animate-delay="950"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="950"].kmr-animate,body[data-animate-delay="950"] [data-animate].kmr-animate{
        transition-delay:.95s
    }
    [data-animate][data-animate][data-animate-duration="1000"],body[data-animate-duration="1000"] [data-animate]{
        transition-duration:1s
    }
    [data-animate][data-animate][data-animate-delay="1000"],body[data-animate-delay="1000"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1000"].kmr-animate,body[data-animate-delay="1000"] [data-animate].kmr-animate{
        transition-delay:1s
    }
    [data-animate][data-animate][data-animate-duration="1050"],body[data-animate-duration="1050"] [data-animate]{
        transition-duration:1.05s
    }
    [data-animate][data-animate][data-animate-delay="1050"],body[data-animate-delay="1050"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1050"].kmr-animate,body[data-animate-delay="1050"] [data-animate].kmr-animate{
        transition-delay:1.05s
    }
    [data-animate][data-animate][data-animate-duration="1100"],body[data-animate-duration="1100"] [data-animate]{
        transition-duration:1.1s
    }
    [data-animate][data-animate][data-animate-delay="1100"],body[data-animate-delay="1100"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1100"].kmr-animate,body[data-animate-delay="1100"] [data-animate].kmr-animate{
        transition-delay:1.1s
    }
    [data-animate][data-animate][data-animate-duration="1150"],body[data-animate-duration="1150"] [data-animate]{
        transition-duration:1.15s
    }
    [data-animate][data-animate][data-animate-delay="1150"],body[data-animate-delay="1150"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1150"].kmr-animate,body[data-animate-delay="1150"] [data-animate].kmr-animate{
        transition-delay:1.15s
    }
    [data-animate][data-animate][data-animate-duration="1200"],body[data-animate-duration="1200"] [data-animate]{
        transition-duration:1.2s
    }
    [data-animate][data-animate][data-animate-delay="1200"],body[data-animate-delay="1200"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1200"].kmr-animate,body[data-animate-delay="1200"] [data-animate].kmr-animate{
        transition-delay:1.2s
    }
    [data-animate][data-animate][data-animate-duration="1250"],body[data-animate-duration="1250"] [data-animate]{
        transition-duration:1.25s
    }
    [data-animate][data-animate][data-animate-delay="1250"],body[data-animate-delay="1250"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1250"].kmr-animate,body[data-animate-delay="1250"] [data-animate].kmr-animate{
        transition-delay:1.25s
    }
    [data-animate][data-animate][data-animate-duration="1300"],body[data-animate-duration="1300"] [data-animate]{
        transition-duration:1.3s
    }
    [data-animate][data-animate][data-animate-delay="1300"],body[data-animate-delay="1300"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1300"].kmr-animate,body[data-animate-delay="1300"] [data-animate].kmr-animate{
        transition-delay:1.3s
    }
    [data-animate][data-animate][data-animate-duration="1350"],body[data-animate-duration="1350"] [data-animate]{
        transition-duration:1.35s
    }
    [data-animate][data-animate][data-animate-delay="1350"],body[data-animate-delay="1350"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1350"].kmr-animate,body[data-animate-delay="1350"] [data-animate].kmr-animate{
        transition-delay:1.35s
    }
    [data-animate][data-animate][data-animate-duration="1400"],body[data-animate-duration="1400"] [data-animate]{
        transition-duration:1.4s
    }
    [data-animate][data-animate][data-animate-delay="1400"],body[data-animate-delay="1400"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1400"].kmr-animate,body[data-animate-delay="1400"] [data-animate].kmr-animate{
        transition-delay:1.4s
    }
    [data-animate][data-animate][data-animate-duration="1450"],body[data-animate-duration="1450"] [data-animate]{
        transition-duration:1.45s
    }
    [data-animate][data-animate][data-animate-delay="1450"],body[data-animate-delay="1450"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1450"].kmr-animate,body[data-animate-delay="1450"] [data-animate].kmr-animate{
        transition-delay:1.45s
    }
    [data-animate][data-animate][data-animate-duration="1500"],body[data-animate-duration="1500"] [data-animate]{
        transition-duration:1.5s
    }
    [data-animate][data-animate][data-animate-delay="1500"],body[data-animate-delay="1500"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1500"].kmr-animate,body[data-animate-delay="1500"] [data-animate].kmr-animate{
        transition-delay:1.5s
    }
    [data-animate][data-animate][data-animate-duration="1550"],body[data-animate-duration="1550"] [data-animate]{
        transition-duration:1.55s
    }
    [data-animate][data-animate][data-animate-delay="1550"],body[data-animate-delay="1550"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1550"].kmr-animate,body[data-animate-delay="1550"] [data-animate].kmr-animate{
        transition-delay:1.55s
    }
    [data-animate][data-animate][data-animate-duration="1600"],body[data-animate-duration="1600"] [data-animate]{
        transition-duration:1.6s
    }
    [data-animate][data-animate][data-animate-delay="1600"],body[data-animate-delay="1600"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1600"].kmr-animate,body[data-animate-delay="1600"] [data-animate].kmr-animate{
        transition-delay:1.6s
    }
    [data-animate][data-animate][data-animate-duration="1650"],body[data-animate-duration="1650"] [data-animate]{
        transition-duration:1.65s
    }
    [data-animate][data-animate][data-animate-delay="1650"],body[data-animate-delay="1650"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1650"].kmr-animate,body[data-animate-delay="1650"] [data-animate].kmr-animate{
        transition-delay:1.65s
    }
    [data-animate][data-animate][data-animate-duration="1700"],body[data-animate-duration="1700"] [data-animate]{
        transition-duration:1.7s
    }
    [data-animate][data-animate][data-animate-delay="1700"],body[data-animate-delay="1700"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1700"].kmr-animate,body[data-animate-delay="1700"] [data-animate].kmr-animate{
        transition-delay:1.7s
    }
    [data-animate][data-animate][data-animate-duration="1750"],body[data-animate-duration="1750"] [data-animate]{
        transition-duration:1.75s
    }
    [data-animate][data-animate][data-animate-delay="1750"],body[data-animate-delay="1750"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1750"].kmr-animate,body[data-animate-delay="1750"] [data-animate].kmr-animate{
        transition-delay:1.75s
    }
    [data-animate][data-animate][data-animate-duration="1800"],body[data-animate-duration="1800"] [data-animate]{
        transition-duration:1.8s
    }
    [data-animate][data-animate][data-animate-delay="1800"],body[data-animate-delay="1800"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1800"].kmr-animate,body[data-animate-delay="1800"] [data-animate].kmr-animate{
        transition-delay:1.8s
    }
    [data-animate][data-animate][data-animate-duration="1850"],body[data-animate-duration="1850"] [data-animate]{
        transition-duration:1.85s
    }
    [data-animate][data-animate][data-animate-delay="1850"],body[data-animate-delay="1850"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1850"].kmr-animate,body[data-animate-delay="1850"] [data-animate].kmr-animate{
        transition-delay:1.85s
    }
    [data-animate][data-animate][data-animate-duration="1900"],body[data-animate-duration="1900"] [data-animate]{
        transition-duration:1.9s
    }
    [data-animate][data-animate][data-animate-delay="1900"],body[data-animate-delay="1900"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1900"].kmr-animate,body[data-animate-delay="1900"] [data-animate].kmr-animate{
        transition-delay:1.9s
    }
    [data-animate][data-animate][data-animate-duration="1950"],body[data-animate-duration="1950"] [data-animate]{
        transition-duration:1.95s
    }
    [data-animate][data-animate][data-animate-delay="1950"],body[data-animate-delay="1950"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="1950"].kmr-animate,body[data-animate-delay="1950"] [data-animate].kmr-animate{
        transition-delay:1.95s
    }
    [data-animate][data-animate][data-animate-duration="2000"],body[data-animate-duration="2000"] [data-animate]{
        transition-duration:2s
    }
    [data-animate][data-animate][data-animate-delay="2000"],body[data-animate-delay="2000"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2000"].kmr-animate,body[data-animate-delay="2000"] [data-animate].kmr-animate{
        transition-delay:2s
    }
    [data-animate][data-animate][data-animate-duration="2050"],body[data-animate-duration="2050"] [data-animate]{
        transition-duration:2.05s
    }
    [data-animate][data-animate][data-animate-delay="2050"],body[data-animate-delay="2050"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2050"].kmr-animate,body[data-animate-delay="2050"] [data-animate].kmr-animate{
        transition-delay:2.05s
    }
    [data-animate][data-animate][data-animate-duration="2100"],body[data-animate-duration="2100"] [data-animate]{
        transition-duration:2.1s
    }
    [data-animate][data-animate][data-animate-delay="2100"],body[data-animate-delay="2100"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2100"].kmr-animate,body[data-animate-delay="2100"] [data-animate].kmr-animate{
        transition-delay:2.1s
    }
    [data-animate][data-animate][data-animate-duration="2150"],body[data-animate-duration="2150"] [data-animate]{
        transition-duration:2.15s
    }
    [data-animate][data-animate][data-animate-delay="2150"],body[data-animate-delay="2150"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2150"].kmr-animate,body[data-animate-delay="2150"] [data-animate].kmr-animate{
        transition-delay:2.15s
    }
    [data-animate][data-animate][data-animate-duration="2200"],body[data-animate-duration="2200"] [data-animate]{
        transition-duration:2.2s
    }
    [data-animate][data-animate][data-animate-delay="2200"],body[data-animate-delay="2200"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2200"].kmr-animate,body[data-animate-delay="2200"] [data-animate].kmr-animate{
        transition-delay:2.2s
    }
    [data-animate][data-animate][data-animate-duration="2250"],body[data-animate-duration="2250"] [data-animate]{
        transition-duration:2.25s
    }
    [data-animate][data-animate][data-animate-delay="2250"],body[data-animate-delay="2250"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2250"].kmr-animate,body[data-animate-delay="2250"] [data-animate].kmr-animate{
        transition-delay:2.25s
    }
    [data-animate][data-animate][data-animate-duration="2300"],body[data-animate-duration="2300"] [data-animate]{
        transition-duration:2.3s
    }
    [data-animate][data-animate][data-animate-delay="2300"],body[data-animate-delay="2300"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2300"].kmr-animate,body[data-animate-delay="2300"] [data-animate].kmr-animate{
        transition-delay:2.3s
    }
    [data-animate][data-animate][data-animate-duration="2350"],body[data-animate-duration="2350"] [data-animate]{
        transition-duration:2.35s
    }
    [data-animate][data-animate][data-animate-delay="2350"],body[data-animate-delay="2350"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2350"].kmr-animate,body[data-animate-delay="2350"] [data-animate].kmr-animate{
        transition-delay:2.35s
    }
    [data-animate][data-animate][data-animate-duration="2400"],body[data-animate-duration="2400"] [data-animate]{
        transition-duration:2.4s
    }
    [data-animate][data-animate][data-animate-delay="2400"],body[data-animate-delay="2400"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2400"].kmr-animate,body[data-animate-delay="2400"] [data-animate].kmr-animate{
        transition-delay:2.4s
    }
    [data-animate][data-animate][data-animate-duration="2450"],body[data-animate-duration="2450"] [data-animate]{
        transition-duration:2.45s
    }
    [data-animate][data-animate][data-animate-delay="2450"],body[data-animate-delay="2450"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2450"].kmr-animate,body[data-animate-delay="2450"] [data-animate].kmr-animate{
        transition-delay:2.45s
    }
    [data-animate][data-animate][data-animate-duration="2500"],body[data-animate-duration="2500"] [data-animate]{
        transition-duration:2.5s
    }
    [data-animate][data-animate][data-animate-delay="2500"],body[data-animate-delay="2500"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2500"].kmr-animate,body[data-animate-delay="2500"] [data-animate].kmr-animate{
        transition-delay:2.5s
    }
    [data-animate][data-animate][data-animate-duration="2550"],body[data-animate-duration="2550"] [data-animate]{
        transition-duration:2.55s
    }
    [data-animate][data-animate][data-animate-delay="2550"],body[data-animate-delay="2550"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2550"].kmr-animate,body[data-animate-delay="2550"] [data-animate].kmr-animate{
        transition-delay:2.55s
    }
    [data-animate][data-animate][data-animate-duration="2600"],body[data-animate-duration="2600"] [data-animate]{
        transition-duration:2.6s
    }
    [data-animate][data-animate][data-animate-delay="2600"],body[data-animate-delay="2600"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2600"].kmr-animate,body[data-animate-delay="2600"] [data-animate].kmr-animate{
        transition-delay:2.6s
    }
    [data-animate][data-animate][data-animate-duration="2650"],body[data-animate-duration="2650"] [data-animate]{
        transition-duration:2.65s
    }
    [data-animate][data-animate][data-animate-delay="2650"],body[data-animate-delay="2650"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2650"].kmr-animate,body[data-animate-delay="2650"] [data-animate].kmr-animate{
        transition-delay:2.65s
    }
    [data-animate][data-animate][data-animate-duration="2700"],body[data-animate-duration="2700"] [data-animate]{
        transition-duration:2.7s
    }
    [data-animate][data-animate][data-animate-delay="2700"],body[data-animate-delay="2700"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2700"].kmr-animate,body[data-animate-delay="2700"] [data-animate].kmr-animate{
        transition-delay:2.7s
    }
    [data-animate][data-animate][data-animate-duration="2750"],body[data-animate-duration="2750"] [data-animate]{
        transition-duration:2.75s
    }
    [data-animate][data-animate][data-animate-delay="2750"],body[data-animate-delay="2750"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2750"].kmr-animate,body[data-animate-delay="2750"] [data-animate].kmr-animate{
        transition-delay:2.75s
    }
    [data-animate][data-animate][data-animate-duration="2800"],body[data-animate-duration="2800"] [data-animate]{
        transition-duration:2.8s
    }
    [data-animate][data-animate][data-animate-delay="2800"],body[data-animate-delay="2800"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2800"].kmr-animate,body[data-animate-delay="2800"] [data-animate].kmr-animate{
        transition-delay:2.8s
    }
    [data-animate][data-animate][data-animate-duration="2850"],body[data-animate-duration="2850"] [data-animate]{
        transition-duration:2.85s
    }
    [data-animate][data-animate][data-animate-delay="2850"],body[data-animate-delay="2850"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2850"].kmr-animate,body[data-animate-delay="2850"] [data-animate].kmr-animate{
        transition-delay:2.85s
    }
    [data-animate][data-animate][data-animate-duration="2900"],body[data-animate-duration="2900"] [data-animate]{
        transition-duration:2.9s
    }
    [data-animate][data-animate][data-animate-delay="2900"],body[data-animate-delay="2900"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2900"].kmr-animate,body[data-animate-delay="2900"] [data-animate].kmr-animate{
        transition-delay:2.9s
    }
    [data-animate][data-animate][data-animate-duration="2950"],body[data-animate-duration="2950"] [data-animate]{
        transition-duration:2.95s
    }
    [data-animate][data-animate][data-animate-delay="2950"],body[data-animate-delay="2950"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="2950"].kmr-animate,body[data-animate-delay="2950"] [data-animate].kmr-animate{
        transition-delay:2.95s
    }
    [data-animate][data-animate][data-animate-duration="3000"],body[data-animate-duration="3000"] [data-animate]{
        transition-duration:3s
    }
    [data-animate][data-animate][data-animate-delay="3000"],body[data-animate-delay="3000"] [data-animate]{
        transition-delay:0
    }
    [data-animate][data-animate][data-animate-delay="3000"].kmr-animate,body[data-animate-delay="3000"] [data-animate].kmr-animate{
        transition-delay:3s
    }
    [data-animate][data-animate][data-animate-easing=linear],body[data-animate-easing=linear] [data-animate]{
        transition-timing-function:cubic-bezier(.25,.25,.75,.75)
    }
    [data-animate][data-animate][data-animate-easing=ease],body[data-animate-easing=ease] [data-animate]{
        transition-timing-function:ease
    }
    [data-animate][data-animate][data-animate-easing=ease-in],body[data-animate-easing=ease-in] [data-animate]{
        transition-timing-function:ease-in
    }
    [data-animate][data-animate][data-animate-easing=ease-out],body[data-animate-easing=ease-out] [data-animate]{
        transition-timing-function:ease-out
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out],body[data-animate-easing=ease-in-out] [data-animate]{
        transition-timing-function:ease-in-out
    }
    [data-animate][data-animate][data-animate-easing=ease-in-back],body[data-animate-easing=ease-in-back] [data-animate]{
        transition-timing-function:cubic-bezier(.6,-.28,.735,.045)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-back],body[data-animate-easing=ease-out-back] [data-animate]{
        transition-timing-function:cubic-bezier(.175,.885,.32,1.275)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-back],body[data-animate-easing=ease-in-out-back] [data-animate]{
        transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-sine],body[data-animate-easing=ease-in-sine] [data-animate]{
        transition-timing-function:cubic-bezier(.47,0,.745,.715)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-sine],body[data-animate-easing=ease-out-sine] [data-animate]{
        transition-timing-function:cubic-bezier(.39,.575,.565,1)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-sine],body[data-animate-easing=ease-in-out-sine] [data-animate]{
        transition-timing-function:cubic-bezier(.445,.05,.55,.95)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-quad],body[data-animate-easing=ease-in-quad] [data-animate]{
        transition-timing-function:cubic-bezier(.55,.085,.68,.53)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-quad],body[data-animate-easing=ease-out-quad] [data-animate]{
        transition-timing-function:cubic-bezier(.25,.46,.45,.94)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-quad],body[data-animate-easing=ease-in-out-quad] [data-animate]{
        transition-timing-function:cubic-bezier(.455,.03,.515,.955)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-cubic],body[data-animate-easing=ease-in-cubic] [data-animate]{
        transition-timing-function:cubic-bezier(.55,.085,.68,.53)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-cubic],body[data-animate-easing=ease-out-cubic] [data-animate]{
        transition-timing-function:cubic-bezier(.25,.46,.45,.94)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-cubic],body[data-animate-easing=ease-in-out-cubic] [data-animate]{
        transition-timing-function:cubic-bezier(.455,.03,.515,.955)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-quart],body[data-animate-easing=ease-in-quart] [data-animate]{
        transition-timing-function:cubic-bezier(.55,.085,.68,.53)
    }
    [data-animate][data-animate][data-animate-easing=ease-out-quart],body[data-animate-easing=ease-out-quart] [data-animate]{
        transition-timing-function:cubic-bezier(.25,.46,.45,.94)
    }
    [data-animate][data-animate][data-animate-easing=ease-in-out-quart],body[data-animate-easing=ease-in-out-quart] [data-animate]{
        transition-timing-function:cubic-bezier(.455,.03,.515,.955)
    }
    [data-animate^=fade][data-animate^=fade]{
        opacity:0;
        transition-property:opacity,transform
    }
    [data-animate^=fade][data-animate^=fade].kmr-animate{
        opacity:1;
        transform:translateZ(0)
    }
    [data-animate=fade-up]{
        transform:translate3d(0,100px,0)
    }
    [data-animate=fade-down]{
        transform:translate3d(0,-100px,0)
    }
    [data-animate=fade-right]{
        transform:translate3d(-100px,0,0)
    }
    [data-animate=fade-left]{
        transform:translate3d(100px,0,0)
    }
    [data-animate=fade-up-right]{
        transform:translate3d(-100px,100px,0)
    }
    [data-animate=fade-up-left]{
        transform:translate3d(100px,100px,0)
    }
    [data-animate=fade-down-right]{
        transform:translate3d(-100px,-100px,0)
    }
    [data-animate=fade-down-left]{
        transform:translate3d(100px,-100px,0)
    }
    [data-animate^=zoom][data-animate^=zoom]{
        opacity:0;
        transition-property:opacity,transform
    }
    [data-animate^=zoom][data-animate^=zoom].kmr-animate{
        opacity:1;
        transform:translateZ(0) scale(1)
    }
    [data-animate=zoom-in]{
        transform:scale(.6)
    }
    [data-animate=zoom-in-up]{
        transform:translate3d(0,100px,0) scale(.6)
    }
    [data-animate=zoom-in-down]{
        transform:translate3d(0,-100px,0) scale(.6)
    }
    [data-animate=zoom-in-right]{
        transform:translate3d(-100px,0,0) scale(.6)
    }
    [data-animate=zoom-in-left]{
        transform:translate3d(100px,0,0) scale(.6)
    }
    [data-animate=zoom-out]{
        transform:scale(1.2)
    }
    [data-animate=zoom-out-up]{
        transform:translate3d(0,100px,0) scale(1.2)
    }
    [data-animate=zoom-out-down]{
        transform:translate3d(0,-100px,0) scale(1.2)
    }
    [data-animate=zoom-out-right]{
        transform:translate3d(-100px,0,0) scale(1.2)
    }
    [data-animate=zoom-out-left]{
        transform:translate3d(100px,0,0) scale(1.2)
    }
    [data-animate^=slide][data-animate^=slide]{
        transition-property:transform
    }
    [data-animate^=slide][data-animate^=slide].kmr-animate{
        transform:translateZ(0)
    }
    [data-animate=slide-up]{
        transform:translate3d(0,100%,0)
    }
    [data-animate=slide-down]{
        transform:translate3d(0,-100%,0)
    }
    [data-animate=slide-right]{
        transform:translate3d(-100%,0,0)
    }
    [data-animate=slide-left]{
        transform:translate3d(100%,0,0)
    }
    [data-animate^=flip][data-animate^=flip]{
        -webkit-backface-visibility:hidden;
                backface-visibility:hidden;
        transition-property:transform
    }
    [data-animate=flip-left]{
        transform:perspective(2500px) rotateY(-100deg)
    }
    [data-animate=flip-left].kmr-animate{
        transform:perspective(2500px) rotateY(0)
    }
    [data-animate=flip-right]{
        transform:perspective(2500px) rotateY(100deg)
    }
    [data-animate=flip-right].kmr-animate{
        transform:perspective(2500px) rotateY(0)
    }
    [data-animate=flip-up]{
        transform:perspective(2500px) rotateX(-100deg)
    }
    [data-animate=flip-up].kmr-animate{
        transform:perspective(2500px) rotateX(0)
    }
    [data-animate=flip-down]{
        transform:perspective(2500px) rotateX(100deg)
    }
    [data-animate=flip-down].kmr-animate{
        transform:perspective(2500px) rotateX(0)
    }
}
