/* [project]/flextronassemblyhimrav/public_html/public/assets/font/font.css [app-client] (css) */
@font-face {
  font-family: ttrg-bd;
  src: url("../media/TTFirsNeue-Bd.8f56b9d9.woff2") format("woff2"), url("../media/TTFirsNeue-Bd.5f806fb6.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: ttrg;
  src: url("../media/TTFirsNeue-Rg.1f980140.woff2") format("woff2"), url("../media/TTFirsNeue-Rg.bd79aebc.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* [project]/flextronassemblyhimrav/public_html/app/(frontend)/globals.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--text);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: normal;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}

.form .form-group {
  --selectheight: var(--inputsize);
  flex: 0 100%;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  position: relative;
}

.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: "";
  height: var(--borderwidth);
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group:before {
  background: var(--borderbefore);
}

.form .form-group:after {
  background: var(--borderafter);
  width: 0;
}

.form .form-group label {
  font-weight: var(--font);
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: var(--labelbackground);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  transition: all .3s;
  position: absolute;
}

.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize)  - var(--borderwidth));
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  font-family: inherit;
  border-radius: 0 !important;
}

.form .form-group input:focus, .form .form-group textarea:focus, .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: rgba(0, 0, 0, 0);
}

.form .form-group textarea {
  height: var(--textareaheight);
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  padding-right: 15px;
  font-family: inherit;
  line-height: 1.2;
  border-radius: 0 !important;
}

.form .form-group textarea::-webkit-scrollbar {
  background: none;
  width: 2px;
  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 {
  height: calc(var(--textareaheight)  - 13px);
  outline: none;
  margin-top: 13px;
}

.form .form-group select:focus {
  outline: none;
}

.form .form-group select ~ label {
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: all .6s;
  position: absolute;
  translate: 0;
}

.form .form-group select.valid {
  color: var(--color);
}

.form .form-group select.valid ~ label {
  opacity: 1;
}

.form .form-group .error {
  color: red;
  font-size: 12px;
  line-height: normal;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
}

.form .form-group.file-input input[type="file"] {
  opacity: 0;
  z-index: 4;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize)  - var(--borderwidth));
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  position: relative;
}

.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);
  text-overflow: ellipsis;
  background: none;
  width: 80%;
  overflow: hidden;
}

.form .form-group.file-input .file-name:after {
  content: "";
  background: var(--image);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
  right: 0;
}

.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  cursor: pointer;
  max-width: 100%;
  height: var(--inputsize);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  font-family: inherit;
  transition: all .2s ease-in-out;
  display: block;
  position: relative;
}

.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --iconspace: 8px;
}

.custom-select.has-icon:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  left: var(--paddingleftright, 0px);
  width: var(--iconsize);
  background: none;
  background-image: var(--iconurl);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
}

.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: "";
  top: 0;
  right: var(--paddingleftright, 0);
  width: var(--arrow);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
}

.custom-select .current {
  text-overflow: ellipsis;
  width: 100%;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow)  + var(--arrowspace));
  display: block;
  overflow: hidden;
}

.custom-select .current.selected {
  color: var(--color);
}

.custom-select .list {
  text-align: left;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 4;
  pointer-events: none;
  background-color: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  max-height: 180px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .16);
}

.custom-select .list::-webkit-scrollbar {
  background: none;
  width: 4px;
  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 {
  white-space: break-spaces;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.2;
  display: block;
}

.custom-select .list li.selected, .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, .css-b62m3t-container input {
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control {
  background: none !important;
  border: none !important;
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control .css-t3ipsp-control {
  box-shadow: none !important;
  border: none !important;
}

.css-b62m3t-container .css-13cymwt-control .css-hlgwow {
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control .css-hlgwow .css-19bb58m input {
  outline: none !important;
  height: 100% !important;
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

:root {
  --headerpadding: 35px;
  --headerheight: 120px;
  --headerfixed: 82px;
  --footerstrip: 64px;
  --primary: #3107ca;
  --secondary: #3107ca;
  --gradient-a: linear-gradient(90deg, #3b18c6 22.12%, #d3cee6 96.63%);
  --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%, #fff 46.5%, #f6f6f6 100%);
  --arrowsize: 15px;
  --arrow: 25px;
  --space: 11px;
  --text: #666;
  --green: green;
  --white: #fff;
  --black: #000;
  --black-light: #313131;
  --gray: #eaeaea;
  --container: 1280px;
  --containerfluid: 2rem;
}

@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 {
  background: var(--primary);
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb {
  background-color: #ffa319;
  border-radius: 7px;
}

body.overflow-hidden {
  margin-right: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}

body.overflow-hidden header {
  width: calc(100% - 10px);
}

@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-optical-sizing: auto;
  font-family: poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
}

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, .698);
}

.heading h2 {
  font-family: ttrg-bd;
  font-size: 48px;
  line-height: 1.2;
}

.heading p {
  color: var(--black);
  font-family: poppins;
  font-size: 16px;
  line-height: 1.5;
}

.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] {
  cursor: pointer;
  text-decoration: none;
  transition: all .5s;
}

a[href].logo {
  line-height: 0;
  display: block;
}

svg path {
  transition: all .5s;
}

.position-relative {
  position: relative;
}

.lh-normal {
  line-height: normal;
}

.cursor-pointer {
  cursor: pointer !important;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

@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;
  }

  .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);
  margin: 0 auto;
  display: block;
}

.social-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-weight: normal;
}

h1 {
  font-family: ttrg-bd;
  font-size: 64px;
  line-height: 1.05;
}

@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-family: ttrg-bd;
  font-size: 54px;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-family: poppins;
  font-size: 48px;
  line-height: 1.2;
}

.heading:has(h2 ~ h6) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h6) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h6) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h6) h2 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h5) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h5) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h5) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h5) h2 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ p) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ p) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ p) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ p) h2 {
  margin-bottom: 12px;
}

.heading h2 {
  color: var(--black);
  font-family: ttrg-bd;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

@media only screen and (max-width: 1230px) {
  .heading h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 1152px) {
  .heading h2 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 991px) {
  .heading h2 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .heading h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 520px) {
  .heading h2 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 345px) {
  .heading h2 {
    font-size: 24px;
  }
}

.heading h2 span {
  color: var(--primary);
}

.heading h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
}

@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;
  }

  .heading p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 345px) {
  .heading p {
    font-size: 13px;
  }
}

.heading:not(.c-white) h6, .heading:not(.c-white) p {
  color: var(--text);
  font-weight: 500;
}

.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 {
  flex-wrap: wrap;
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.inline-flex {
  --gap: 12px;
  align-items: center;
  gap: 0 var(--gap);
  display: inline-flex;
}

img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  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 {
  -webkit-appearance: none;
  margin: 0;
}

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 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

.tab-nav {
  cursor: default;
}

.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: rgba(0, 0, 0, 0);
}

.tab-nav-content {
  position: relative;
}

.tab-nav-content .tabs:not(.active) {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.item-md {
  display: block;
  position: relative;
}

.item-md:before, .item-md:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md:after {
  content: none;
}

.item-md figure, .item-md .figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.item-md figure img, .item-md figure video, .item-md figure iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.item-md figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md .link-md {
  z-index: 3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md.center-item figcaption {
  top: 50%;
  bottom: auto;
  translate: 0 -50%;
}

.overlay {
  z-index: 5;
  opacity: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, .5);
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}

@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}

.overlay.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.btn {
  --height: 38px;
  --padding: 24px;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  color: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  caret-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all .5s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 540px) {
  .btn {
    --height: 30px;
    --padding: 12px;
    font-size: 14px;
  }
}

.btn:not([class*="border-"]) {
  background: var(--primary);
  position: relative;
}

.btn:not([class*="border-"]):after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--gradient-b);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn:not([class*="border-"]):before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--gradient-a);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn:not([class*="border-"]):before, .btn:not([class*="border-"]):after {
  z-index: -1;
  transition: all .5s;
}

.btn:not([class*="border-"]):after, .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: poppins;
}

.btn.solid-white:before, .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: poppins;
}

.btn.btn-white:before, .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: poppins;
}

.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: poppins;
  transition: all .5s;
}

.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 {
  width: var(--height);
  --padding: 0px !important;
}

.btn.btn-btn {
  border-radius: 5px;
}

.enquire-btn {
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
  padding: 5px 15px;
  transition: all .5s;
}

.enquire-btn:hover {
  color: var(--white);
  background: none;
}

.white-border {
  color: var(--white);
  border: 1px solid var(--white);
  background: none;
  border-radius: 5px;
  padding: 5px 15px;
  transition: all .5s;
}

.white-border:hover {
  background: var(--white);
  color: var(--black);
}

.model {
  z-index: 7;
  background-position: 0 80%;
  background-size: 75%;
  width: 100%;
  max-width: 400px;
  position: fixed;
  top: 0;
  bottom: 0;
}

.model .close {
  cursor: pointer;
}

.model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

.model .close:not(:-moz-any(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

.model .close:not(:is(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

@media only screen and (max-width: 520px) {
  .model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }

  .model .close:not(:-moz-any(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }

  .model .close:not(:is(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }
}

.model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.model .close:not(:-moz-any(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.model .close:not(:is(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item)  - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
  display: grid;
}

.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;
  }

  .btn-div-btm .btn {
    --padding: 12px;
    font-size: 14px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}

.swiper-nav.center-full {
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@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 {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.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);
  background: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .5s;
  display: flex;
}

.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(:-webkit-any(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:-webkit-any(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev:hover:not(:-moz-any(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:-moz-any(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev:hover:not(:is(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:is(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev.no-background, .swiper-next.no-background {
  background: none;
  border: none;
  width: auto;
  height: auto;
  line-height: 0;
  display: block;
}

.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);
  color: var(--secondary);
  background: none;
}

.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);
  color: var(--white);
  background: none;
}

.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);
  color: var(--text);
  background: none;
}

.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: #888;
}

.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: .4;
}

.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  --btnsize: 51px;
  --border: 1px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border: var(--border) solid var(--bordercolor);
  background: none;
  border-radius: 50%;
  position: relative;
}

@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 {
  content: "";
  background: var(--bordercolor);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1.5s ease-out infinite pulse-border;
  display: block;
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translateX(-50%)translateY(-50%);
}

@keyframes pulse-border {
  0% {
    opacity: .5;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1.5);
  }
}

.play-btn:after {
  content: "";
  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);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.website-content > :first-child {
  margin-top: 0 !important;
}

.website-content > :last-child {
  margin-bottom: 0 !important;
}

.website-content h1 {
  text-align: center;
  margin-bottom: 45px;
  font-family: ttrg-bd;
  font-size: 48px;
  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;
  font-weight: 500;
  line-height: 1.21;
}

@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;
  font-weight: 600;
  line-height: 1.3;
}

@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}

.website-content h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.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 {
  color: var(--black);
  font-weight: 600;
}

.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 {
  padding-left: 28px;
  position: relative;
}

@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: "";
  aspect-ratio: 1;
  background: #cfcfcf;
  border-radius: 50%;
  width: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

@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 {
  z-index: 0;
  position: relative;
}

.banner:not(.banner-banner) {
  position: relative;
}

.banner:not(.banner-banner):before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, .95) 100%), linear-gradient(rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, .95) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner.center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
}

.banner.common-banner {
  padding: 90px 0;
}

.banner .bg {
  height: 100vh;
  line-height: 0;
}

@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 {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .banner-wrapper {
  z-index: 3;
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
}

@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 {
  color: var(--black-light);
  font-family: ttrg-bd;
  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 {
  margin-bottom: 30px;
  line-height: 0;
}

.banner .content .ico img {
  width: 68px;
}

.banner .content h1 {
  font-family: ttrg-bd;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

@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 {
  color: var(--text);
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
}

@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 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
}

.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;
  }

  .btn-div-wrap .btn {
    --padding: 10px;
  }
}

.common-grid-wrap {
  grid-gap: 30px 25px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@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%;
  }
}

.slider-section .upper-sec {
  margin-bottom: 4rem;
  position: relative;
}

.slider-section .upper-sec .swiper-nav {
  z-index: 2;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 675px) {
  .slider-section .upper-sec .swiper-nav {
    display: none;
  }
}

.news-col {
  background: var(--white);
  border-radius: 15px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(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) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .ttl {
  color: var(--primary);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(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 .ttl {
  color: var(--primary);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .desc {
  color: var(--black);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(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 .desc {
  color: var(--black);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .date {
  color: var(--text);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(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 .date {
  color: var(--text);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.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;
  position: relative;
  overflow: hidden;
}

.news-col .figure:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 0;
  height: 86%;
  display: block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: skewX(-20deg);
  box-shadow: 0 0 55px 12px #fff;
}

.news-col .figure:hover:before {
  animation: .4s linear shine;
}

.news-col .figure img {
  aspect-ratio: 1.2;
  width: 100%;
  transition: all .5s;
}

.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));
  flex: 1;
  position: relative;
}

.news-col .figcaption .btn-div {
  z-index: 1;
  padding: 0 var(--pdlr) var(--pdb);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.news-col .figcaption .ttl {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}

.news-col .figcaption .desc, .news-col .figcaption .date {
  font-weight: 500;
  transition: all .5s;
}

.news-col .figcaption .desc {
  color: rgba(0, 0, 0, .7);
  margin-bottom: 16px;
}

.news-col .figcaption .date {
  color: var(--primary);
  line-height: 1.375;
}

.product-item:has(.figure:-webkit-any(a):hover, .figcaption .dtl-btn:-webkit-any(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:-moz-any(a):hover, .figcaption .dtl-btn:-moz-any(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:-webkit-any(a):hover, .figcaption .dtl-btn:-webkit-any(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.product-item:has(.figure:-moz-any(a):hover, .figcaption .dtl-btn:-moz-any(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.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 {
  line-height: 0;
  display: block;
}

.product-item .figure img {
  width: 100%;
  transition: all 1s;
}

.product-item .figcaption {
  text-align: center;
  padding-top: 30px;
}

.product-item .figcaption h4 {
  font-size: 32px;
}

.product-item .figcaption h5 {
  font-size: 24px;
}

.product-item .figcaption h4, .product-item .figcaption h5 {
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.167;
}

@media only screen and (max-width: 520px) {
  .breadcrumps {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
  }
}

.breadcrumps li {
  vertical-align: middle;
  display: inline-block;
}

.breadcrumps li a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li a {
    text-overflow: ellipsis;
    font-size: 12px;
  }
}

.breadcrumps li a.active {
  color: var(--black);
}

.breadcrumps li:not(:last-child) {
  padding-right: 20px;
  position: relative;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}

.breadcrumps li:not(:last-child):before {
  content: ">";
  color: var(--text);
  font-family: monospace;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
}

.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: 60px 0 70px;
}

@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;
  }
}

.bg-circle {
  --bgcolor: #fff;
  --bgsize: 30%;
  --top: 50%;
  --right: 10%;
  position: relative;
}

.bg-circle:before {
  top: var(--top);
  right: var(--right);
  content: "";
  z-index: 0;
  width: var(--bgsize);
  aspect-ratio: 1;
  background: var(--bgcolor);
  filter: blur(152.3px);
  position: absolute;
}

.bg-circle .container {
  z-index: 1;
  position: relative;
}

.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: 0 1px 3px 1px rgba(60, 64, 67, .15), 0 1px 2px rgba(60, 64, 67, .3);
}

.over-hidden {
  overflow: hidden;
}

@keyframes blink {
  0% {
    opacity: .5;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: .5;
    transform: scale(.8);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(10px);
  }
}

.sticky {
  z-index: -1;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

/* [project]/flextronassemblyhimrav/public_html/node_modules/react-loading-skeleton/dist/skeleton.css [app-client] (css) */
@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block;
  background-color: var(--base-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: .25rem;
  width: 100%;
  line-height: 1;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.react-loading-skeleton:after {
  content: " ";
  display: var(--pseudo-element-display);
  background-repeat: no-repeat;
  background-image: var(--custom-highlight-background, linear-gradient(90deg, var(--base-color) 0%, var(--highlight-color) 50%, var(--base-color) 100%));
  height: 100%;
  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateX(-100%);
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none;
  }
}

/* [project]/flextronassemblyhimrav/public_html/styles/header.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--text);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: normal;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}

.form .form-group {
  --selectheight: var(--inputsize);
  flex: 0 100%;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  position: relative;
}

.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: "";
  height: var(--borderwidth);
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group:before {
  background: var(--borderbefore);
}

.form .form-group:after {
  background: var(--borderafter);
  width: 0;
}

.form .form-group label {
  font-weight: var(--font);
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: var(--labelbackground);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  transition: all .3s;
  position: absolute;
}

.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize)  - var(--borderwidth));
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  font-family: inherit;
  border-radius: 0 !important;
}

.form .form-group input:focus, .form .form-group textarea:focus, .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: rgba(0, 0, 0, 0);
}

.form .form-group textarea {
  height: var(--textareaheight);
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  padding-right: 15px;
  font-family: inherit;
  line-height: 1.2;
  border-radius: 0 !important;
}

.form .form-group textarea::-webkit-scrollbar {
  background: none;
  width: 2px;
  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 {
  height: calc(var(--textareaheight)  - 13px);
  outline: none;
  margin-top: 13px;
}

.form .form-group select:focus {
  outline: none;
}

.form .form-group select ~ label {
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: all .6s;
  position: absolute;
  translate: 0;
}

.form .form-group select.valid {
  color: var(--color);
}

.form .form-group select.valid ~ label {
  opacity: 1;
}

.form .form-group .error {
  color: #cd0000;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
}

.form .form-group.file-input input[type="file"] {
  opacity: 0;
  z-index: 4;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize)  - var(--borderwidth));
  --filename: "Attach Resume";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  position: relative;
}

.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);
  text-overflow: ellipsis;
  background: none;
  width: 80%;
  overflow: hidden;
}

.form .form-group.file-input .file-name:after {
  content: "";
  background: var(--image);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
  right: 0;
}

.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  cursor: pointer;
  max-width: 100%;
  height: var(--inputsize);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  font-family: inherit;
  transition: all .2s ease-in-out;
  display: block;
  position: relative;
}

.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --iconspace: 8px;
}

.custom-select.has-icon:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  left: var(--paddingleftright, 0px);
  width: var(--iconsize);
  background: none;
  background-image: var(--iconurl);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
}

.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: "";
  top: 0;
  right: var(--paddingleftright, 0);
  width: var(--arrow);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
}

.custom-select .current {
  text-overflow: ellipsis;
  width: 100%;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow)  + var(--arrowspace));
  display: block;
  overflow: hidden;
}

.custom-select .current.selected {
  color: var(--color);
}

.custom-select .list {
  text-align: left;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 4;
  pointer-events: none;
  background-color: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  max-height: 180px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .16);
}

.custom-select .list::-webkit-scrollbar {
  background: none;
  width: 4px;
  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 {
  white-space: break-spaces;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.2;
  display: block;
}

.custom-select .list li.selected, .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, .css-b62m3t-container input {
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control {
  background: none !important;
  border: none !important;
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control .css-t3ipsp-control {
  box-shadow: none !important;
  border: none !important;
}

.css-b62m3t-container .css-13cymwt-control .css-hlgwow {
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control .css-hlgwow .css-19bb58m input {
  outline: none !important;
  height: 100% !important;
}

* {
  scroll-behavior: smooth;
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

:root {
  --headerpadding: 35px;
  --headerheight: 83px;
  --headerfixed: 82px;
  --footerstrip: 64px;
  --primary: #3107ca;
  --secondary: #3107ca;
  --gradient-a: linear-gradient(90deg, #3b18c6 22.12%, #d3cee6 96.63%);
  --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%, #fff 46.5%, #f6f6f6 100%);
  --arrowsize: 17px;
  --arrow: 25px;
  --space: 11px;
  --text: #666;
  --green: green;
  --white: #fff;
  --black: #000;
  --black-light: #313131;
  --gray: #eaeaea;
  --container: 1280px;
  --containerfluid: 2rem;
}

@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 {
  background: var(--primary);
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb {
  background-color: #ffa319;
  border-radius: 7px;
}

body.overflow-hidden {
  margin-right: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}

body.overflow-hidden header {
  width: calc(100% - 10px);
}

@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-optical-sizing: auto;
  font-family: poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
}

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, .698);
}

.heading h2 {
  font-family: ttrg-bd;
  font-size: 48px;
  line-height: 1.2;
}

.heading p {
  color: var(--black);
  font-family: poppins;
  font-size: 16px;
  line-height: 1.5;
}

.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] {
  cursor: pointer;
  text-decoration: none;
  transition: all .5s;
}

a[href].logo {
  line-height: 0;
  display: block;
}

svg path {
  transition: all .5s;
}

.position-relative {
  position: relative;
}

.lh-normal {
  line-height: normal;
}

.cursor-pointer {
  cursor: pointer !important;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

@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;
  }

  .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);
  margin: 0 auto;
  display: block;
}

.social-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-weight: normal;
}

h1 {
  font-family: ttrg-bd;
  font-size: 64px;
  line-height: 1.05;
}

@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-family: ttrg-bd;
  font-size: 54px;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-family: poppins;
  font-size: 48px;
  line-height: 1.2;
}

.heading:has(h2 ~ h6) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h6) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h6) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h6) h2 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h5) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h5) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h5) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h5) h2 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ p) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ p) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ p) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ p) h2 {
  margin-bottom: 12px;
}

.heading h2 {
  color: var(--black);
  font-family: ttrg-bd;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

@media only screen and (max-width: 1230px) {
  .heading h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 1152px) {
  .heading h2 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 991px) {
  .heading h2 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .heading h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 520px) {
  .heading h2 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 345px) {
  .heading h2 {
    font-size: 24px;
  }
}

.heading h2 span {
  color: var(--primary);
}

.heading h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
}

@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;
  }

  .heading p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 345px) {
  .heading p {
    font-size: 13px;
  }
}

.heading:not(.c-white) h6, .heading:not(.c-white) p {
  color: var(--text);
  font-weight: 500;
}

.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 {
  flex-wrap: wrap;
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.inline-flex {
  --gap: 12px;
  align-items: center;
  gap: 0 var(--gap);
  display: inline-flex;
}

img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  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 {
  -webkit-appearance: none;
  margin: 0;
}

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 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

.tab-nav {
  cursor: default;
}

.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: rgba(0, 0, 0, 0);
}

.tab-nav-content {
  position: relative;
}

.tab-nav-content .tabs:not(.active) {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.item-md {
  display: block;
  position: relative;
}

.item-md:before, .item-md:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md:after {
  content: none;
}

.item-md figure, .item-md .figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.item-md figure img, .item-md figure video, .item-md figure iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.item-md figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md .link-md {
  z-index: 3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md.center-item figcaption {
  top: 50%;
  bottom: auto;
  translate: 0 -50%;
}

.overlay {
  z-index: 5;
  opacity: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, .5);
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}

@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}

.overlay.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.btn {
  --height: 38px;
  --padding: 24px;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  color: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  caret-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all .5s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 540px) {
  .btn {
    --height: 30px;
    --padding: 12px;
    font-size: 14px;
  }
}

.btn:not([class*="border-"]) {
  background: var(--primary);
  position: relative;
}

.btn:not([class*="border-"]):after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--gradient-b);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn:not([class*="border-"]):before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--gradient-a);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn:not([class*="border-"]):before, .btn:not([class*="border-"]):after {
  z-index: -1;
  transition: all .5s;
}

.btn:not([class*="border-"]):after, .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: poppins;
}

.btn.solid-white:before, .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: poppins;
}

.btn.btn-white:before, .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: poppins;
}

.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: poppins;
  transition: all .5s;
}

.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 {
  width: var(--height);
  --padding: 0px !important;
}

.btn.btn-btn {
  border-radius: 5px;
}

.enquire-btn {
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
  padding: 5px 15px;
  transition: all .5s;
}

.enquire-btn:hover {
  color: var(--white);
  background: none;
}

.white-border {
  color: var(--white);
  border: 1px solid var(--white);
  background: none;
  border-radius: 5px;
  padding: 5px 15px;
  transition: all .5s;
}

.white-border:hover {
  background: var(--white);
  color: var(--black);
}

.model {
  z-index: 7;
  background-position: 0 80%;
  background-size: 75%;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
}

.model .close {
  cursor: pointer;
}

.model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

.model .close:not(:-moz-any(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

.model .close:not(:is(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

@media only screen and (max-width: 520px) {
  .model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }

  .model .close:not(:-moz-any(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }

  .model .close:not(:is(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }
}

.model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.model .close:not(:-moz-any(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.model .close:not(:is(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item)  - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
  display: grid;
}

.form-grid .full {
  grid-column: span var(--item);
}

.error-form-msg {
  color: red;
  font-size: 12px;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.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;
  }

  .btn-div-btm .btn {
    --padding: 12px;
    font-size: 14px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}

.swiper-nav.center-full {
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@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 {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.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);
  background: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .5s;
  display: flex;
}

.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(:-webkit-any(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:-webkit-any(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev:hover:not(:-moz-any(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:-moz-any(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev:hover:not(:is(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:is(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev.no-background, .swiper-next.no-background {
  background: none;
  border: none;
  width: auto;
  height: auto;
  line-height: 0;
  display: block;
}

.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);
  color: var(--secondary);
  background: none;
}

.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);
  color: var(--white);
  background: none;
}

.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);
  color: var(--text);
  background: none;
}

.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: #888;
}

.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: .4;
}

.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  --btnsize: 51px;
  --border: 1px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border: var(--border) solid var(--bordercolor);
  background: none;
  border-radius: 50%;
  position: relative;
}

@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 {
  content: "";
  background: var(--bordercolor);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1.5s ease-out infinite pulse-border;
  display: block;
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translateX(-50%)translateY(-50%);
}

@keyframes pulse-border {
  0% {
    opacity: .5;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1.5);
  }
}

.play-btn:after {
  content: "";
  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);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.website-content > :first-child {
  margin-top: 0 !important;
}

.website-content > :last-child {
  margin-bottom: 0 !important;
}

.website-content h1 {
  text-align: center;
  margin-bottom: 45px;
  font-family: ttrg-bd;
  font-size: 48px;
  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;
  font-weight: 500;
  line-height: 1.21;
}

@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;
  font-weight: 600;
  line-height: 1.3;
}

@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}

.website-content h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.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 {
  color: var(--black);
  font-weight: 600;
}

.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 {
  padding-left: 28px;
  position: relative;
}

@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: "";
  aspect-ratio: 1;
  background: #cfcfcf;
  border-radius: 50%;
  width: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

@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 {
  z-index: 0;
  position: relative;
}

.banner:not(.banner-banner) {
  position: relative;
}

.banner:not(.banner-banner):before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, .95) 100%), linear-gradient(rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, .95) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner.center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
}

.banner.common-banner {
  padding: 90px 0;
}

.banner .bg {
  height: 100vh;
  line-height: 0;
}

@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 {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .banner-wrapper {
  z-index: 3;
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
}

@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 {
  color: var(--black-light);
  font-family: ttrg-bd;
  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 {
  margin-bottom: 30px;
  line-height: 0;
}

.banner .content .ico img {
  width: 68px;
}

.banner .content h1 {
  font-family: ttrg-bd;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

@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 {
  color: var(--text);
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
}

@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 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
}

.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;
  }

  .btn-div-wrap .btn {
    --padding: 10px;
  }
}

.common-grid-wrap {
  grid-gap: 30px 25px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@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%;
  }
}

.slider-section .upper-sec {
  margin-bottom: 4rem;
  position: relative;
}

.slider-section .upper-sec .swiper-nav {
  z-index: 2;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 675px) {
  .slider-section .upper-sec .swiper-nav {
    display: none;
  }
}

.news-col {
  background: var(--white);
  border-radius: 15px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(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) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .ttl {
  color: var(--primary);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(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 .ttl {
  color: var(--primary);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .desc {
  color: var(--black);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(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 .desc {
  color: var(--black);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .date {
  color: var(--text);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(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 .date {
  color: var(--text);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.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;
  position: relative;
  overflow: hidden;
}

.news-col .figure:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 0;
  height: 86%;
  display: block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: skewX(-20deg);
  box-shadow: 0 0 55px 12px #fff;
}

.news-col .figure:hover:before {
  animation: .4s linear shine;
}

.news-col .figure img {
  aspect-ratio: 1.2;
  width: 100%;
  transition: all .5s;
}

.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));
  flex: 1;
  position: relative;
}

.news-col .figcaption .btn-div {
  z-index: 1;
  padding: 0 var(--pdlr) var(--pdb);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.news-col .figcaption .ttl {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}

.news-col .figcaption .desc, .news-col .figcaption .date {
  font-weight: 500;
  transition: all .5s;
}

.news-col .figcaption .desc {
  color: rgba(0, 0, 0, .7);
  margin-bottom: 16px;
}

.news-col .figcaption .date {
  color: var(--primary);
  line-height: 1.375;
}

.product-item:has(.figure:-webkit-any(a):hover, .figcaption .dtl-btn:-webkit-any(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:-moz-any(a):hover, .figcaption .dtl-btn:-moz-any(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:-webkit-any(a):hover, .figcaption .dtl-btn:-webkit-any(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.product-item:has(.figure:-moz-any(a):hover, .figcaption .dtl-btn:-moz-any(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.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 {
  line-height: 0;
  display: block;
}

.product-item .figure img {
  width: 100%;
  transition: all 1s;
}

.product-item .figcaption {
  text-align: center;
  padding-top: 30px;
}

.product-item .figcaption h4 {
  font-size: 32px;
}

.product-item .figcaption h5 {
  font-size: 24px;
}

.product-item .figcaption h4, .product-item .figcaption h5 {
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.167;
}

@media only screen and (max-width: 520px) {
  .breadcrumps {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
  }
}

.breadcrumps li {
  vertical-align: middle;
  display: inline-block;
}

.breadcrumps li a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li a {
    text-overflow: ellipsis;
    font-size: 12px;
  }
}

.breadcrumps li a.active {
  color: var(--black);
}

.breadcrumps li:not(:last-child) {
  padding-right: 20px;
  position: relative;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}

.breadcrumps li:not(:last-child):before {
  content: ">";
  color: var(--text);
  font-family: monospace;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
}

.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: 60px 0 70px;
}

@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;
  }
}

.bg-circle {
  --bgcolor: #fff;
  --bgsize: 30%;
  --top: 50%;
  --right: 10%;
  position: relative;
}

.bg-circle:before {
  top: var(--top);
  right: var(--right);
  content: "";
  z-index: 0;
  width: var(--bgsize);
  aspect-ratio: 1;
  background: var(--bgcolor);
  filter: blur(152.3px);
  position: absolute;
}

.bg-circle .container {
  z-index: 1;
  position: relative;
}

.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: 0 1px 3px 1px rgba(60, 64, 67, .15), 0 1px 2px rgba(60, 64, 67, .3);
}

.over-hidden {
  overflow: hidden;
}

@keyframes blink {
  0% {
    opacity: .5;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: .5;
    transform: scale(.8);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(10px);
  }
}

.sticky {
  z-index: -1;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.iti--allow-dropdown {
  width: 100%;
}

.iti__selected-country-primary:before {
  content: "*";
  color: rgba(102, 102, 102, .86);
  position: absolute;
  top: 36%;
  left: 40%;
}

header {
  z-index: 5;
  height: var(--headerheight);
  transition: all .5s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

header:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--white);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 768px) {
  header {
    height: 100px;
  }
}

@media only screen and (max-width: 540px) {
  header {
    height: 80px;
  }
}

header:after {
  z-index: -1;
  height: 0;
  transition: all .5s;
  bottom: auto;
}

header .header-wrapper {
  height: 100%;
  padding: 0 var(--containerfluid);
  --elementcolor: var(--white);
  --elementhover: var(--primary);
  gap: 1.5rem;
  transition: all .5s;
  display: flex;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
}

@media only screen and (max-width: 1024px) {
  header .header-wrapper {
    gap: 1rem;
  }
}

@media only screen and (max-width: 991px) {
  header .header-wrapper {
    justify-content: space-between;
    align-items: center;
  }
}

@media only screen and (max-width: 768px) {
  header .header-wrapper {
    gap: 2rem;
  }
}

@media only screen and (max-width: 540px) {
  header .header-wrapper {
    gap: 10rem;
  }
}

@media only screen and (max-width: 400px) {
  header .header-wrapper {
    gap: 6rem;
  }
}

header .header-wrapper .colA, header .header-wrapper .colB, header .header-wrapper .colC {
  height: 100%;
}

header .header-wrapper .colA a.logo {
  padding: var(--headerpadding) 0;
  height: 100%;
}

@media only screen and (max-width: 540px) {
  header .header-wrapper .colA a.logo {
    padding: 10px 0;
  }
}

header .header-wrapper .colA a.logo img {
  height: 100%;
}

@media only screen and (max-width: 768px) {
  header .header-wrapper .colA a.logo img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

header .header-wrapper .colB {
  flex: 1;
  align-items: center;
  gap: 47px;
  display: flex;
}

@media only screen and (max-width: 991px) {
  header .header-wrapper .colB {
    justify-content: end;
  }
}

@media only screen and (max-width: 768px) {
  header .header-wrapper .colB {
    display: none;
  }
}

header .header-wrapper .colB .nav-a {
  justify-content: end;
  display: flex;
}

header .header-wrapper .colB li a {
  color: var(--text);
  font-family: poppins;
  font-size: 16px;
  font-weight: 500;
}

header .header-wrapper ul {
  text-align: center;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

header .header-wrapper ul li {
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  line-height: 1;
  display: flex;
}

header .header-wrapper ul li.hasDropdown {
  position: initial;
}

header .header-wrapper ul li.hasDropdown > a {
  align-items: center;
  padding: 33px 0;
  display: flex;
  position: relative;
}

header .header-wrapper ul li.hasDropdown > a:after {
  content: "";
  background-image: url("/assets/icon/arrow-down-primary.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize)  + var(--space));
  width: var(--arrowsize);
  height: var(--arrowsize);
  transform-origin: center;
  transition: all .5s;
  display: inline-block;
}

header .header-wrapper ul li.hasDropdown > a:before {
  content: "";
  z-index: 1;
  background: #ffa319;
  width: 0%;
  height: 5px;
  transition: all .5s;
  position: absolute;
  bottom: 0%;
  left: 0;
}

header .header-wrapper ul li.hasDropdown:hover > a {
  color: var(--elementhover);
}

header .header-wrapper ul li.hasDropdown:hover > a:after {
  transform: rotate(-180deg);
}

header .header-wrapper ul li.hasDropdown:hover > a:before {
  width: 100%;
}

header .header-wrapper ul li.hasDropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

header .header-wrapper ul li.hasDropdown .dropdown-menu {
  --triangle: 0px;
  top: calc(100% + var(--triangle));
  transform-origin: top;
  opacity: 0;
  background: linear-gradient(#fff 46.63%, #e1d9fb 100%);
  border-top: 1px solid #c5c5c5;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 915px;
  min-width: 915px;
  height: 100%;
  min-height: 380px;
  transition: all .4s;
  position: absolute;
  left: 64%;
  overflow: hidden;
  transform: perspective(2000px)translate3d(0, 0, 50px)rotateX(-90deg)scale3d(.86, .75, 1)translateY(50px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
}

header .header-wrapper ul li.hasDropdown .dropdown-menu:before {
  content: "";
  bottom: calc(100% - var(--triangle) / 2);
  width: var(--triangle);
  height: var(--triangle);
  z-index: -1;
  background: #e3e3e3;
  display: block;
  position: absolute;
  left: 50%;
  transform: rotate(45deg);
}

header .header-wrapper ul li.hasDropdown .dropdown-menu:after {
  content: "";
  z-index: -1;
  background-image: url("/assets/images/home/x-vector.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 160px;
  height: 130px;
  transition: all 1s;
  position: absolute;
  bottom: 0;
  right: 10px;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul {
  -moz-column-gap: 30px;
  text-align: left;
  border-radius: 5px;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 16px 12px;
  display: grid;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li {
  display: block;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li:not(:last-child) {
  margin-bottom: 2px;
  margin-right: 0;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a {
  color: var(--text);
  border-radius: 5px;
  gap: 10px;
  padding: 13px 10px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  overflow: hidden;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a:hover {
  background: var(--primary);
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a:hover figure img {
  filter: brightness(0) invert();
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a:hover .col .title {
  color: var(--white);
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a:hover .col .dec {
  color: rgba(255, 255, 255, .78);
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a figure {
  flex: 0 20%;
  width: 38px;
  height: 38px;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a figure img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all .3s;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a .col {
  flex: 0 80%;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a .col .title {
  color: #000;
  padding-bottom: 7px;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: all .3s;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu ul li a .col .dec {
  color: #666;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  transition: all .3s;
}

header .header-wrapper ul li.hasDropdown .industries-dropdown-menu {
  min-height: -moz-fit-content !important;
  min-height: fit-content !important;
}

header .header-wrapper ul li.hasDropdown .industries-dropdown-menu:after {
  opacity: .3;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu-about {
  justify-content: space-between;
  width: 715px;
  min-width: 715px;
  height: 260px;
  min-height: -moz-fit-content;
  min-height: fit-content;
  display: flex;
  left: 57%;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu-about:after {
  content: none;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu-about ul {
  flex: 0 45%;
  grid-template-columns: repeat(1, 1fr);
}

header .header-wrapper ul li.hasDropdown .dropdown-menu-about ul li a figure {
  position: relative;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu-about ul li a figure img {
  position: absolute;
  top: 0;
  left: 0;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu-about ul li a:hover {
  color: #fff;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu-about figure {
  flex: 0 50%;
  width: 100%;
  height: 100%;
  padding: 20px;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu-about figure img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

header .header-wrapper ul li.hasDropdown .dropdown-menu-industries {
  height: 280px;
  min-height: -moz-fit-content;
  min-height: fit-content;
}

header .header-wrapper ul li a:not(.btn) {
  font-weight: 500;
}

header .header-wrapper ul li a:not(.btn):hover {
  color: var(--elementhover);
}

header .header-wrapper ul li a .svg {
  width: 23px;
  height: 23px;
}

header .header-wrapper ul li a .svg path {
  fill: red;
}

header .header-wrapper ul li .ham_btn {
  --width: 35px;
  --height: 2px;
}

header .header-wrapper ul li .ham_btn span:nth-child(2) {
  transform: translate(-13%);
}

header .header-wrapper ul li .ham_btn span {
  width: var(--width);
  height: var(--height);
  background-color: var(--primary);
  transition: all .5s;
  display: block;
}

header .header-wrapper ul li .ham_btn span:not(:last-child) {
  margin-bottom: 7px;
}

header .header-wrapper ul li .ham_btn:hover span {
  background-color: var(--elementhover);
}

@media only screen and (max-width: 540px) {
  header .header-wrapper ul li .ham_btn {
    width: 35px;
  }
}

header .header-wrapper .nav-a {
  flex: 1;
}

@media only screen and (max-width: 1028px) {
  header .header-wrapper .nav-a {
    display: none !important;
  }
}

header .header-wrapper .nav-a li:not(:last-child) {
  margin-right: 30px;
}

@media only screen and (max-width: 1024px) {
  header .header-wrapper .nav-a li:not(:last-child) {
    margin-right: 20px;
  }
}

header .header-wrapper .colC {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

header .header-wrapper .nav-b li:first-child {
  border-left: 1px solid var(--primary);
  padding-left: 15px;
}

@media only screen and (max-width: 1028px) {
  header .header-wrapper .nav-b li:first-child {
    display: none;
  }
}

header .header-wrapper .nav-b li:first-child a {
  color: var(--primary);
  align-items: center;
  gap: 8px;
  font-weight: 700;
  display: flex;
}

@media only screen and (max-width: 540px) {
  header .header-wrapper .nav-b li:not(:last-child) {
    display: none;
  }
}

header .header-wrapper .nav-b li:last-child {
  display: none;
}

@media only screen and (max-width: 1028px) {
  header .header-wrapper .nav-b li:last-child {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  header.header-fixed {
    box-shadow: 0 2px 8px rgba(99, 99, 99, .2);
  }
}

header.header-fixed, header.header-fit {
  --headerpadding: 14px;
  height: var(--headerfixed);
  transition: all .5s;
}

@media only screen and (max-width: 768px) {
  header.header-fixed, header.header-fit {
    height: 80px;
  }
}

header.header-fixed:after, header.header-fit:after {
  height: 100%;
}

header.header-fit {
  transition: all;
}

header.header-fit:after {
  transition: none;
}

header.header-fit .header-wrapper .colA .logo {
  transition: none !important;
}

header.header-shadow {
  box-shadow: 0 2px 8px rgba(99, 99, 99, .2);
}

footer {
  position: relative;
  overflow: hidden;
}

footer:before {
  content: "";
  z-index: -1;
  background: linear-gradient(#fff 0%, #cabaff 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 540px) {
  footer {
    margin-bottom: var(--footerstrip);
  }
}

footer .main-footer {
  gap: 60px;
  padding: 50px 25px 10px;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  footer .main-footer {
    gap: 0;
  }
}

@media only screen and (max-width: 991px) {
  footer .main-footer {
    flex-direction: column;
  }
}

@media only screen and (max-width: 540px) {
  footer .main-footer {
    padding: 30px 15px 0;
  }
}

footer .main-footer .colA {
  flex-direction: column;
  flex: 0 233px;
  gap: 100px;
  display: flex;
}

@media only screen and (max-width: 991px) {
  footer .main-footer .colA {
    margin: 0 auto 20px;
  }
}

@media only screen and (max-width: 768px) {
  footer .main-footer .colA {
    flex: 0 163px;
    gap: 30px;
  }
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colA {
    margin: 0 auto;
  }
}

footer .main-footer .colA .social-icons {
  justify-content: start;
  align-items: center;
  gap: 8px;
  display: flex;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colA .social-icons {
    justify-content: center;
  }
}

footer .main-footer .colA .social-icons a {
  border: 1px solid #3107ca;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  display: flex;
}

footer .main-footer .colA .social-icons a svg path {
  fill: #3107ca;
}

footer .main-footer .colA .social-icons a:hover {
  cursor: pointer;
  background: #3107ca;
}

footer .main-footer .colA .social-icons a:hover svg path {
  fill: #fff;
}

footer .main-footer .colA img {
  height: -moz-fit-content;
  height: fit-content;
}

@media only screen and (max-width: 991px) {
  footer .main-footer .colA img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%;
  }
}

footer .main-footer .colB {
  flex: 1;
  gap: 20px;
  padding: 0 40px;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  footer .main-footer .colB {
    padding: 0 0 0 40px;
  }
}

@media only screen and (max-width: 991px) {
  footer .main-footer .colB {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB {
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
  }
}

footer .main-footer .colB .list {
  flex: 10%;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list {
    flex: 0 46%;
  }
}

footer .main-footer .colB .list h6 {
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 2px;
  margin-bottom: 22px;
  font-family: poppins;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

footer .main-footer .colB .list ul li {
  margin-bottom: 5px;
}

footer .main-footer .colB .list ul li a {
  color: #232963;
  padding-bottom: 5px;
  font-family: poppins;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  transition: all .5s;
}

footer .main-footer .colB .list ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

footer .main-footer .colB .list:nth-child(2) {
  flex: 1;
}

footer .main-footer .colB .list:nth-child(3) {
  flex: 0 30%;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list:nth-child(3) {
    flex: 1;
    margin-top: 20px;
  }
}

footer .main-footer .colB .list:nth-child(3) ul {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

footer .main-footer .colB .list:nth-child(3) ul li a {
  font-size: 14px;
  font-weight: 600;
}

footer .main-footer .colB .list:nth-child(3) ul li a:hover {
  padding-left: 0;
}

footer .main-footer .colB .list:nth-child(3) ul li:first-child span {
  max-width: 60%;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list:nth-child(3) ul li:first-child span {
    max-width: 100%;
  }
}

footer .main-footer .colB .list:nth-child(3) ul .phone a {
  justify-content: start;
  align-items: center;
  font-family: poppins;
  font-size: 25px;
  font-weight: 600;
  display: flex;
}

footer .main-footer .colB .list:nth-child(3) ul .bottom-btn {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background: #3107ca;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all .5s;
  display: flex;
}

footer .main-footer .colB .list:nth-child(3) ul .bottom-btn:hover {
  background: #ffa319;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list:nth-child(3) ul .bottom-btn {
    padding: 10px 24px;
  }
}

footer .main-footer .colB .list:nth-child(3) a {
  gap: 5px;
  display: flex;
}

footer .main-footer .colB .list:nth-child(3) a svg {
  flex: 0 30px;
}

footer .middle-footer {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 25px 190px;
  display: flex;
}

@media only screen and (max-width: 540px) {
  footer .middle-footer {
    flex-direction: column;
    gap: 5px;
    padding: 30px 25px 80px;
  }
}

footer .middle-footer p {
  color: var(--text);
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (max-width: 540px) {
  footer .middle-footer p {
    text-align: center;
  }
}

footer .middle-footer .pret a {
  color: var(--text);
  align-items: center;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  display: flex;
}

footer .bottom-footer .bg {
  height: 30vh;
}

@media only screen and (max-width: 1024px) {
  footer .bottom-footer .bg {
    height: 20vh;
  }
}

@media only screen and (max-width: 768px) {
  footer .bottom-footer .bg {
    height: 20vh;
  }
}

@media only screen and (max-width: 540px) {
  footer .bottom-footer .bg {
    height: 20vh;
  }
}

footer .bottom-footer .bg .banner-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer .bottom-footer .bg figure {
  height: 100%;
}

footer .bottom-footer .banner {
  overflow: visible;
}

footer .bottom-footer .banner:before {
  background: none;
}

footer .bottom-footer .banner-image {
  justify-content: center;
  align-items: center;
  width: 419px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
}

@media only screen and (max-width: 540px) {
  footer .bottom-footer .banner-image {
    width: 100%;
    height: 100%;
  }
}

.model.ham-pop {
  z-index: 10;
  background: linear-gradient(#d7ccff 2%, #fff 89%);
  max-width: 480px;
  transition: all .5s;
  right: 0;
  transform: translateX(100%);
}

.model.ham-pop nav {
  flex: 1;
}

.model.ham-pop:before {
  content: "";
  aspect-ratio: 1.22;
  transitionc: 1s ease-in-out;
  background: rgba(102, 102, 102, .08);
  width: 224px;
  height: 300px;
  line-height: 0;
  position: absolute;
  top: 95%;
  right: 0;
  transform: translateY(-50%);
  -webkit-mask-image: url("/assets/images/services/service-bg.png");
  mask-image: url("/assets/images/services/service-bg.png");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.model.ham-pop.is-open {
  transform: translateX(0%);
}

.model.ham-pop .close {
  top: 17px;
  right: 22px;
}

.model.ham-pop .close svg {
  width: 18px;
}

.model.ham-pop .close svg path {
  stroke: var(--black) !important;
  stroke-width: 2px !important;
}

.model.ham-pop .model-body {
  flex-direction: column;
  height: calc(100% - 40px);
  margin-top: 40px;
  padding: 0 40px 30px;
  display: flex;
  position: relative;
  overflow-y: auto;
}

.model.ham-pop .model-body::-webkit-scrollbar {
  background: var(--black);
  width: 0;
  height: 0;
}

.model.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}

.model.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0;
}

@media only screen and (max-width: 540px) {
  .model.ham-pop .model-body {
    padding: 0 20px 40px;
  }
}

.model.ham-pop .model-body .icon {
  letter-spacing: 4px;
  color: #000;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
  line-height: 0;
  display: flex;
}

.model.ham-pop .model-body .icon img, .model.ham-pop .model-body .icon svg {
  width: 70px;
  height: auto;
}

.model.ham-pop .model-body .icon img path, .model.ham-pop .model-body .icon svg path {
  fill: #000;
}

.model.ham-pop .model-body .nav-list {
  flex: 1;
  width: 100%;
}

.model.ham-pop .model-body .nav-list .single-menulist {
  color: var(--primary);
  font-family: ttrg-bd;
  font-size: 30px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list .single-menulist:hover {
  color: #ffa319;
}

.model.ham-pop .model-body .nav-list > li {
  cursor: pointer;
}

.model.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
}

.model.ham-pop .model-body .nav-list > li.desktop-non {
  display: none;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown {
  position: relative;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown:hover .title h5 {
  color: #ffa319;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title.active img {
  transform: rotate(90deg);
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title h5 {
  color: var(--primary);
  font-family: ttrg-bd;
  font-size: 30px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title .arrow {
  -o-object-fit: contain;
  object-fit: contain;
  width: 15px;
  height: 15px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title svg {
  width: 16px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham.active {
  opacity: 1;
  pointer-events: auto;
  max-height: 300px;
  padding-top: 10px;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul {
  max-height: 175px;
  padding: 0 10px 10px;
  overflow-y: auto;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul::-webkit-scrollbar {
  background: #fff;
  width: 4px;
  height: 4px;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul::-webkit-scrollbar-track {
  box-shadow: none;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul li:first-child a {
  padding-top: 0;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul li a {
  color: var(--primary);
  padding: 5px 0;
  font-family: ttrg;
  font-size: 16px;
  font-weight: 600;
  transition: all .5s;
  display: block;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul li a:hover {
  color: #ffa319;
}

.model.ham-pop .model-body .nav-list > li > a {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.06;
  display: inline-block;
}

.model.ham-pop .model-body .nav-list > li > a:hover {
  color: #666;
}

.model.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1rem;
  display: flex;
}

.model.ham-pop .model-body .bottom-list .social-icons a {
  vertical-align: middle;
  color: #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  line-height: 0;
  display: inline-flex;
  overflow: hidden;
}

.model.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 4px;
}

.model.ham-pop .model-body .bottom-list .social-icons a:hover img {
  opacity: .5;
  transform: scale(1.1);
}

.model.ham-pop .model-body .bottom-list .social-icons a img {
  filter: invert();
  width: 24px;
  height: 24px;
  transition: all .5s;
}

.enquire-pop {
  background: linear-gradient(#d7ccff 2%, #fff 89%);
  transition: all .5s;
  right: 0;
  transform: translateX(100%);
}

.enquire-pop:before {
  content: "";
  aspect-ratio: 1.22;
  transitionc: 1s ease-in-out;
  background: rgba(102, 102, 102, .08);
  width: 224px;
  height: 300px;
  line-height: 0;
  position: absolute;
  top: 95%;
  right: 0;
  transform: translateY(-50%);
  -webkit-mask-image: url("/assets/images/services/service-bg.png");
  mask-image: url("/assets/images/services/service-bg.png");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.enquire-pop.is-open {
  transform: translateX(0%);
}

.enquire-pop .model-body {
  height: calc(100% - 40px);
  margin-top: 40px;
  padding: 0 35px 30px;
  overflow-y: auto;
}

.enquire-pop .model-body::-webkit-scrollbar {
  background: var(--white);
  width: 3px;
  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 .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
}

.enquire-pop .model-body .title .icon img {
  -o-object-fit: contain;
  object-fit: contain;
}

.enquire-pop .model-body .title h2 {
  color: #3f24a2;
  font-family: ttrg-bd;
  font-size: 34px;
}

.enquire-pop .model-body .title p {
  color: var(--text);
  max-width: 340px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.2;
}

@media only screen and (max-width: 675px) {
  .enquire-pop .model-body .title p {
    max-width: 300px;
    font-size: 14px;
  }
}

.enquire-pop .model-body .form {
  --gaptb: 25px;
  --item: 1;
  --labelbefore: var(--text);
  --labelafter: #000;
  --borderbefore: var(--text);
  --borderafter: #000;
}

.enquire-pop .model-body .btn2 {
  color: var(--white);
  z-index: 1;
  background: #ffa319;
  border-radius: 25px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto auto;
  padding: 8px 34px;
  font-weight: 600;
  transition: all .5s;
}

.enquire-pop .model-body .btn2:hover {
  background: var(--primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .07), 0 2px 4px rgba(0, 0, 0, .07), 0 4px 8px rgba(0, 0, 0, .07), 0 8px 16px rgba(0, 0, 0, .07), 0 16px 32px rgba(0, 0, 0, .07), 0 32px 64px rgba(0, 0, 0, .07);
}

.video-pop {
  z-index: 9;
  background: rgba(0, 0, 0, .48);
  max-width: 100%;
  transition: all .5s;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.video-pop.is-open {
  transform: translateY(0%);
}

.video-pop .close-video {
  background: var(--secondary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .5s;
  display: flex;
  position: absolute;
  top: auto;
  bottom: calc(100% + 20px);
  right: -40px;
}

@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 {
  width: 35%;
  height: 35%;
}

.video-pop .close-video path {
  stroke-width: 2px;
  stroke: var(--white);
}

.video-pop .model-body {
  width: 100%;
  max-width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}

.video-pop .model-body iframe {
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
  background: var(--white);
  width: 100%;
}

.footer-strip {
  z-index: 4;
  background: var(--primary);
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 540px) {
  .footer-strip {
    display: block;
  }
}

.footer-strip ul {
  flex-wrap: wrap;
  display: flex;
}

.footer-strip ul li {
  flex: 1;
}

.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer-strip ul li button {
  width: 100%;
}

.footer-strip ul li a, .footer-strip ul li button {
  color: var(--white);
  height: var(--footerstrip);
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px;
  font-size: 14px;
  display: flex;
}

.footer-strip ul li a svg, .footer-strip ul li button svg {
  width: 20px;
  height: 20px;
}

.footer-strip ul li a svg[stroke], .footer-strip ul li button svg[stroke] {
  stroke: var(--white);
}

.footer-strip ul li a svg[fill], .footer-strip ul li button svg[fill] {
  fill: var(--white);
}

.footer-strip ul li a svg path[stroke], .footer-strip ul li button svg path[stroke] {
  stroke: var(--white);
}

.footer-strip ul li a svg path[fill], .footer-strip ul li button svg path[fill] {
  fill: var(--white);
}

.footer-strip ul li:nth-child(2) {
  display: none;
}

/* [project]/flextronassemblyhimrav/public_html/styles/components/component.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.item.projectCard {
  cursor: pointer;
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  overflow: hidden;
}

.item.projectCard:hover figcaption {
  transform: translateY(0);
}

.item.projectCard:hover figure img {
  transform: scale(1.2);
}

.item.projectCard:before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 100%);
}

.item.projectCard figure img {
  transition: all .5s;
}

.item.projectCard figcaption {
  background-color: var(--white);
  width: 90%;
  right: 0;
  left: unset;
  border-radius: 15px 0 0;
  padding: 25px;
  transition: all .5s;
  transform: translateY(60%);
}

.item.projectCard figcaption h6 {
  padding-bottom: 20px;
  font-family: ttrg-bd;
  font-size: 18px;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  .item.projectCard figcaption h6 {
    font-size: 16px;
  }
}

.item.projectCard figcaption p {
  color: var(--black);
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.2;
}

.item.projectCard .sector {
  z-index: 1;
  align-items: center;
  gap: 15px;
  display: flex;
  position: absolute;
  top: 5%;
  left: 10%;
}

.item.projectCard .sector img {
  width: 35px;
}

.item.projectCard .sector h6 {
  color: var(--white);
  font-family: ttrg-bd;
  font-size: 14px;
  line-height: 1.2;
}

.blogCard {
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
}

.blogCard:before {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 100%) !important;
}

.blogCard:hover figure img {
  transform: scale(1.2);
}

.blogCard figcaption {
  padding: 0 20px 30px;
}

.blogCard figcaption h6 {
  color: var(--white);
  padding-bottom: 10px;
  font-family: ttrg-bd;
  font-size: 20px;
  line-height: 1.2;
}

.blogCard figcaption p {
  color: var(--white);
  font-family: ttrg-bd;
  font-size: 14px;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  .blogCard figcaption p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 540px) {
  .blogCard figcaption p {
    font-size: 16px;
  }
}

.no-record-container {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.no-record-container .not-found {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.no-record-container .not-found img {
  filter: hue-rotate(337deg);
  width: 120px;
}

.no-record-container .not-found h3 {
  color: var(--black);
}

.no-record-container .not-found p {
  color: var(--black);
  padding-bottom: 10px;
}

.page-not-found-container {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.page-not-found-container .not-found {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.page-not-found-container .not-found img {
  filter: hue-rotate(337deg);
  width: 120px;
}

.page-not-found-container .not-found h3 {
  color: var(--black);
}

.page-not-found-container .not-found p {
  color: var(--black);
  padding-bottom: 10px;
}

.global-container {
  text-align: center;
  max-width: 100%;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .global-container {
    margin-top: 50px;
  }
}

.global-container .map-image {
  -o-object-fit: none;
  object-fit: none;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .global-container .map-image {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.global-container .pointer {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation: 2s .2s infinite forwards blink;
  position: absolute;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
  .global-container .pointer {
    width: 8px;
    height: 8px;
  }
}

.global-container .pointer:hover span {
  opacity: 1;
}

.global-container .pointer:before {
  content: "";
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 21px;
  height: 20px;
  padding: 15px;
  position: absolute;
  bottom: -11px;
  left: -12px;
}

@media only screen and (max-width: 768px) {
  .global-container .pointer:before {
    width: 10px;
    height: 10px;
    padding: 10px;
    bottom: -9px;
    left: -9px;
  }
}

.global-container .pointer.point1 {
  top: 40%;
  right: 32%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point1 {
    top: 35%;
    right: 19%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point1 {
    right: 26%;
  }
}

.global-container .pointer.point2 {
  top: 27%;
  right: 22%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point2 {
    top: 10%;
    right: 8%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point2 {
    top: 18%;
    right: 14%;
  }
}

.global-container .pointer.point3 {
  top: 22%;
  right: 40%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point3 {
    top: 6%;
    right: 26%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point3 {
    top: 10%;
    right: 37%;
  }
}

.global-container .pointer.point4 {
  top: 40%;
  right: 45%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point4 {
    top: 31px;
    right: 38%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point4 {
    top: 36%;
    right: 44%;
  }
}

.global-container .pointer.point5 {
  top: 60%;
  right: 42%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point5 {
    top: 60%;
    right: 39%;
  }
}

.global-container .pointer.point6 {
  bottom: 36%;
  left: 35%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point6 {
    bottom: 29%;
    left: 21%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point6 {
    left: 29%;
  }
}

.global-container .pointer.point7 {
  top: 34%;
  left: 28%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point7 {
    top: 16%;
    left: 10%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point7 {
    top: 28%;
    left: 18%;
  }
}

.global-container .pointer span {
  background-color: var(--primary);
  color: var(--white);
  opacity: 0;
  --triangle: 10px;
  border-radius: 5px;
  padding: 4px 20px;
  transition: all .5s;
  position: absolute;
  bottom: 100%;
  left: -100%;
  transform: translate(-30%, -80%);
}

@media only screen and (max-width: 768px) {
  .global-container .pointer span {
    bottom: 60%;
    transform: translate(-38%, -60%);
  }
}

.global-container .pointer span:before {
  content: "";
  top: calc(100% - var(--triangle) / 2);
  width: var(--triangle);
  height: var(--triangle);
  background: var(--primary);
  z-index: -1;
  display: block;
  position: absolute;
  left: 50%;
  transform: rotate(45deg);
}

/* [project]/flextronassemblyhimrav/public_html/node_modules/intl-tel-input/build/css/intlTelInput.css [app-client] (css) */
:root {
  --iti-border-gray: #ccc;
  --iti-text-gray: #999;
  --iti-hover-color: rgba(0, 0, 0, .05);
  --iti-border-color: var(--iti-border-gray);
  --iti-dialcode-color: var(--iti-text-gray);
  --iti-dropdown-bg: white;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 15px;
  --iti-flag-width: 20px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-input-padding: 6px;
  --iti-right-hand-selected-country-padding: calc(var(--iti-spacer-horizontal)  + var(--iti-spacer-horizontal)  + var(--iti-flag-width));
  --iti-selected-country-arrow-padding: calc(var(--iti-arrow-padding)  + var(--iti-arrow-padding)  + var(--iti-flag-width)  + var(--iti-spacer-horizontal)  + var(--iti-arrow-width)  + var(--iti-input-padding));
  --iti-path-flags-1x: url("../media/flags.13cb3e27.webp");
  --iti-path-flags-2x: url("../media/flags@2x.9df36857.webp");
  --iti-path-globe-1x: url("../media/globe.401fe630.webp");
  --iti-path-globe-2x: url("../media/globe@2x.b29cece5.webp");
  --iti-flag-sprite-width: 5762px;
  --iti-flag-sprite-height: 15px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  display: inline-block;
  position: relative;
}

.iti * {
  box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti__a11y-text {
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.iti input.iti__tel-input, .iti input.iti__tel-input[type="text"], .iti input.iti__tel-input[type="tel"] {
  z-index: 0;
  padding-right: var(--iti-right-hand-selected-country-padding);
  margin-right: 0;
  position: relative;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.iti__country-container {
  padding: var(--iti-border-width);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.iti__selected-country {
  z-index: 1;
  height: 100%;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  align-items: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: relative;
}

.iti__selected-country-primary {
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
  align-items: center;
  display: flex;
}

.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
  width: 0;
  height: 0;
}

[dir="rtl"] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}

.iti__dropdown-content {
  background-color: var(--iti-dropdown-bg);
  border-radius: 3px;
}

.iti--inline-dropdown .iti__dropdown-content {
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  position: absolute;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
}

.iti__search-input {
  border-width: 0;
  border-radius: 3px;
  width: 100%;
  padding: 9px 12px;
}

.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}

.iti__country-list {
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: scroll;
}

.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}

.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}

.iti__flag-box {
  width: var(--iti-flag-width);
  display: inline-block;
}

.iti__country {
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
  align-items: center;
  display: flex;
}

.iti__dial-code {
  color: var(--iti-dialcode-color);
}

.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}

.iti__flag-box, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}

[dir="rtl"] .iti__flag-box, [dir="rtl"] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}

.iti--allow-dropdown input.iti__tel-input, .iti--allow-dropdown input.iti__tel-input[type="text"], .iti--allow-dropdown input.iti__tel-input[type="tel"] {
  padding-right: var(--iti-input-padding);
  padding-left: var(--iti-selected-country-arrow-padding);
  margin-left: 0;
}

[dir="rtl"] .iti--allow-dropdown input.iti__tel-input, [dir="rtl"] .iti--allow-dropdown input.iti__tel-input[type="text"], [dir="rtl"] .iti--allow-dropdown input.iti__tel-input[type="tel"] {
  padding-right: var(--iti-selected-country-arrow-padding);
  padding-left: var(--iti-input-padding);
  margin-right: 0;
}

.iti--allow-dropdown .iti__country-container {
  left: 0;
  right: auto;
}

[dir="rtl"] .iti--allow-dropdown .iti__country-container {
  left: auto;
  right: 0;
}

.iti--allow-dropdown .iti__country-container:not(:has( + input[disabled])):not(:has( + input[readonly])):hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__country-container:not(:has( + input[disabled])):not(:has( + input[readonly])):hover button {
  cursor: pointer;
}

.iti--allow-dropdown .iti__country-container:not(:has( + input[disabled])):not(:has( + input[readonly])) .iti__selected-country-primary:hover {
  background-color: var(--iti-hover-color);
}

.iti--allow-dropdown .iti__country-container:not(:has( + input[disabled])):not(:has( + input[readonly])) .iti__selected-country:has( + .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}

.iti .iti__selected-dial-code {
  margin-left: 4px;
}

[dir="rtl"] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}

.iti--container {
  z-index: 1060;
  padding: var(--iti-border-width);
  position: fixed;
  top: -1000px;
  left: -1000px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  padding: var(--iti-mobile-popup-margin);
  background-color: rgba(0, 0, 0, .5);
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.iti--fullscreen-popup .iti__dropdown-content {
  flex-direction: column;
  max-height: 100%;
  display: flex;
  position: relative;
}

.iti--fullscreen-popup .iti__country {
  padding: 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 100px;
  --iti-flag-width: 20px;
  --iti-flag-height: 14px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
  box-shadow: 0 0 1px #888;
}

.iti__np {
  --iti-flag-width: 13px;
}

.iti__va, .iti__ch {
  --iti-flag-width: 15px;
}

.iti__ne, .iti__be {
  --iti-flag-width: 18px;
}

.iti__mc {
  --iti-flag-width: 19px;
}

.iti__zw, .iti__ws, .iti__vg, .iti__uz, .iti__uk, .iti__tv, .iti__to, .iti__tl, .iti__tk, .iti__tj, .iti__tc, .iti__ta, .iti__su, .iti__st, .iti__ss, .iti__si, .iti__sh, .iti__sd, .iti__sc, .iti__sb, .iti__ps, .iti__pn, .iti__ph, .iti__om, .iti__nz, .iti__nu, .iti__nr, .iti__ng, .iti__nf, .iti__nc, .iti__my, .iti__ms, .iti__mp, .iti__mn, .iti__mk, .iti__me, .iti__md, .iti__ly, .iti__lv, .iti__lk, .iti__lc, .iti__kz, .iti__ky, .iti__kw, .iti__kp, .iti__ki, .iti__jo, .iti__jm, .iti__io, .iti__im, .iti__ie, .iti__hu, .iti__hr, .iti__hn, .iti__hm, .iti__gw, .iti__gs, .iti__gi, .iti__gb, .iti__fk, .iti__fj, .iti__et, .iti__er, .iti__eh, .iti__dm, .iti__dg, .iti__cx, .iti__cu, .iti__ck, .iti__cc, .iti__ca, .iti__by, .iti__bs, .iti__bn, .iti__bm, .iti__ba, .iti__az, .iti__au, .iti__as, .iti__am, .iti__ai, .iti__ae, .iti__ac {
  --iti-flag-height: 10px;
}

.iti__us, .iti__um, .iti__py, .iti__mh, .iti__lr, .iti__gu, .iti__fm {
  --iti-flag-height: 11px;
}

.iti__vu, .iti__tt, .iti__sv, .iti__ni, .iti__mx, .iti__lu, .iti__lt, .iti__li, .iti__km, .iti__kg, .iti__je, .iti__ir, .iti__ht, .iti__gy, .iti__gd, .iti__fi, .iti__de, .iti__cv, .iti__cr, .iti__cq, .iti__bz, .iti__bi, .iti__bh, .iti__bg, .iti__bd {
  --iti-flag-height: 12px;
}

.iti__tg, .iti__se, .iti__pw, .iti__pl, .iti__kh, .iti__gt, .iti__ee, .iti__ax, .iti__ar {
  --iti-flag-height: 13px;
}

.iti__xk, .iti__va, .iti__sm, .iti__sj, .iti__pg, .iti__np, .iti__no, .iti__ne, .iti__mc, .iti__is, .iti__il, .iti__ga, .iti__fo, .iti__dk, .iti__ch, .iti__cd, .iti__bv, .iti__be, .iti__al {
  --iti-flag-height: 15px;
}

.iti__qa {
  --iti-flag-height: 8px;
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -22px;
}

.iti__ae {
  --iti-flag-offset: -44px;
}

.iti__af {
  --iti-flag-offset: -66px;
}

.iti__ag {
  --iti-flag-offset: -88px;
}

.iti__ai {
  --iti-flag-offset: -110px;
}

.iti__al {
  --iti-flag-offset: -132px;
}

.iti__am {
  --iti-flag-offset: -154px;
}

.iti__ao {
  --iti-flag-offset: -176px;
}

.iti__aq {
  --iti-flag-offset: -198px;
}

.iti__ar {
  --iti-flag-offset: -220px;
}

.iti__as {
  --iti-flag-offset: -242px;
}

.iti__at {
  --iti-flag-offset: -264px;
}

.iti__au {
  --iti-flag-offset: -286px;
}

.iti__aw {
  --iti-flag-offset: -308px;
}

.iti__ax {
  --iti-flag-offset: -330px;
}

.iti__az {
  --iti-flag-offset: -352px;
}

.iti__ba {
  --iti-flag-offset: -374px;
}

.iti__bb {
  --iti-flag-offset: -396px;
}

.iti__bd {
  --iti-flag-offset: -418px;
}

.iti__be {
  --iti-flag-offset: -440px;
}

.iti__bf {
  --iti-flag-offset: -460px;
}

.iti__bg {
  --iti-flag-offset: -482px;
}

.iti__bh {
  --iti-flag-offset: -504px;
}

.iti__bi {
  --iti-flag-offset: -526px;
}

.iti__bj {
  --iti-flag-offset: -548px;
}

.iti__bl {
  --iti-flag-offset: -570px;
}

.iti__bm {
  --iti-flag-offset: -592px;
}

.iti__bn {
  --iti-flag-offset: -614px;
}

.iti__bo {
  --iti-flag-offset: -636px;
}

.iti__bq {
  --iti-flag-offset: -658px;
}

.iti__br {
  --iti-flag-offset: -680px;
}

.iti__bs {
  --iti-flag-offset: -702px;
}

.iti__bt {
  --iti-flag-offset: -724px;
}

.iti__bv {
  --iti-flag-offset: -746px;
}

.iti__bw {
  --iti-flag-offset: -768px;
}

.iti__by {
  --iti-flag-offset: -790px;
}

.iti__bz {
  --iti-flag-offset: -812px;
}

.iti__ca {
  --iti-flag-offset: -834px;
}

.iti__cc {
  --iti-flag-offset: -856px;
}

.iti__cd {
  --iti-flag-offset: -878px;
}

.iti__cf {
  --iti-flag-offset: -900px;
}

.iti__cg {
  --iti-flag-offset: -922px;
}

.iti__ch {
  --iti-flag-offset: -944px;
}

.iti__ci {
  --iti-flag-offset: -961px;
}

.iti__ck {
  --iti-flag-offset: -983px;
}

.iti__cl {
  --iti-flag-offset: -1005px;
}

.iti__cm {
  --iti-flag-offset: -1027px;
}

.iti__cn {
  --iti-flag-offset: -1049px;
}

.iti__co {
  --iti-flag-offset: -1071px;
}

.iti__cp {
  --iti-flag-offset: -1093px;
}

.iti__cq {
  --iti-flag-offset: -1115px;
}

.iti__cr {
  --iti-flag-offset: -1137px;
}

.iti__cu {
  --iti-flag-offset: -1159px;
}

.iti__cv {
  --iti-flag-offset: -1181px;
}

.iti__cw {
  --iti-flag-offset: -1203px;
}

.iti__cx {
  --iti-flag-offset: -1225px;
}

.iti__cy {
  --iti-flag-offset: -1247px;
}

.iti__cz {
  --iti-flag-offset: -1269px;
}

.iti__de {
  --iti-flag-offset: -1291px;
}

.iti__dg {
  --iti-flag-offset: -1313px;
}

.iti__dj {
  --iti-flag-offset: -1335px;
}

.iti__dk {
  --iti-flag-offset: -1357px;
}

.iti__dm {
  --iti-flag-offset: -1379px;
}

.iti__do {
  --iti-flag-offset: -1401px;
}

.iti__dz {
  --iti-flag-offset: -1423px;
}

.iti__ea {
  --iti-flag-offset: -1445px;
}

.iti__ec {
  --iti-flag-offset: -1467px;
}

.iti__ee {
  --iti-flag-offset: -1489px;
}

.iti__eg {
  --iti-flag-offset: -1511px;
}

.iti__eh {
  --iti-flag-offset: -1533px;
}

.iti__er {
  --iti-flag-offset: -1555px;
}

.iti__es {
  --iti-flag-offset: -1577px;
}

.iti__et {
  --iti-flag-offset: -1599px;
}

.iti__eu {
  --iti-flag-offset: -1621px;
}

.iti__ez {
  --iti-flag-offset: -1643px;
}

.iti__fi {
  --iti-flag-offset: -1665px;
}

.iti__fj {
  --iti-flag-offset: -1687px;
}

.iti__fk {
  --iti-flag-offset: -1709px;
}

.iti__fm {
  --iti-flag-offset: -1731px;
}

.iti__fo {
  --iti-flag-offset: -1753px;
}

.iti__fr {
  --iti-flag-offset: -1775px;
}

.iti__fx {
  --iti-flag-offset: -1797px;
}

.iti__ga {
  --iti-flag-offset: -1819px;
}

.iti__gb {
  --iti-flag-offset: -1841px;
}

.iti__gd {
  --iti-flag-offset: -1863px;
}

.iti__ge {
  --iti-flag-offset: -1885px;
}

.iti__gf {
  --iti-flag-offset: -1907px;
}

.iti__gg {
  --iti-flag-offset: -1929px;
}

.iti__gh {
  --iti-flag-offset: -1951px;
}

.iti__gi {
  --iti-flag-offset: -1973px;
}

.iti__gl {
  --iti-flag-offset: -1995px;
}

.iti__gm {
  --iti-flag-offset: -2017px;
}

.iti__gn {
  --iti-flag-offset: -2039px;
}

.iti__gp {
  --iti-flag-offset: -2061px;
}

.iti__gq {
  --iti-flag-offset: -2083px;
}

.iti__gr {
  --iti-flag-offset: -2105px;
}

.iti__gs {
  --iti-flag-offset: -2127px;
}

.iti__gt {
  --iti-flag-offset: -2149px;
}

.iti__gu {
  --iti-flag-offset: -2171px;
}

.iti__gw {
  --iti-flag-offset: -2193px;
}

.iti__gy {
  --iti-flag-offset: -2215px;
}

.iti__hk {
  --iti-flag-offset: -2237px;
}

.iti__hm {
  --iti-flag-offset: -2259px;
}

.iti__hn {
  --iti-flag-offset: -2281px;
}

.iti__hr {
  --iti-flag-offset: -2303px;
}

.iti__ht {
  --iti-flag-offset: -2325px;
}

.iti__hu {
  --iti-flag-offset: -2347px;
}

.iti__ic {
  --iti-flag-offset: -2369px;
}

.iti__id {
  --iti-flag-offset: -2391px;
}

.iti__ie {
  --iti-flag-offset: -2413px;
}

.iti__il {
  --iti-flag-offset: -2435px;
}

.iti__im {
  --iti-flag-offset: -2457px;
}

.iti__in {
  --iti-flag-offset: -2479px;
}

.iti__io {
  --iti-flag-offset: -2501px;
}

.iti__iq {
  --iti-flag-offset: -2523px;
}

.iti__ir {
  --iti-flag-offset: -2545px;
}

.iti__is {
  --iti-flag-offset: -2567px;
}

.iti__it {
  --iti-flag-offset: -2589px;
}

.iti__je {
  --iti-flag-offset: -2611px;
}

.iti__jm {
  --iti-flag-offset: -2633px;
}

.iti__jo {
  --iti-flag-offset: -2655px;
}

.iti__jp {
  --iti-flag-offset: -2677px;
}

.iti__ke {
  --iti-flag-offset: -2699px;
}

.iti__kg {
  --iti-flag-offset: -2721px;
}

.iti__kh {
  --iti-flag-offset: -2743px;
}

.iti__ki {
  --iti-flag-offset: -2765px;
}

.iti__km {
  --iti-flag-offset: -2787px;
}

.iti__kn {
  --iti-flag-offset: -2809px;
}

.iti__kp {
  --iti-flag-offset: -2831px;
}

.iti__kr {
  --iti-flag-offset: -2853px;
}

.iti__kw {
  --iti-flag-offset: -2875px;
}

.iti__ky {
  --iti-flag-offset: -2897px;
}

.iti__kz {
  --iti-flag-offset: -2919px;
}

.iti__la {
  --iti-flag-offset: -2941px;
}

.iti__lb {
  --iti-flag-offset: -2963px;
}

.iti__lc {
  --iti-flag-offset: -2985px;
}

.iti__li {
  --iti-flag-offset: -3007px;
}

.iti__lk {
  --iti-flag-offset: -3029px;
}

.iti__lr {
  --iti-flag-offset: -3051px;
}

.iti__ls {
  --iti-flag-offset: -3073px;
}

.iti__lt {
  --iti-flag-offset: -3095px;
}

.iti__lu {
  --iti-flag-offset: -3117px;
}

.iti__lv {
  --iti-flag-offset: -3139px;
}

.iti__ly {
  --iti-flag-offset: -3161px;
}

.iti__ma {
  --iti-flag-offset: -3183px;
}

.iti__mc {
  --iti-flag-offset: -3205px;
}

.iti__md {
  --iti-flag-offset: -3226px;
}

.iti__me {
  --iti-flag-offset: -3248px;
}

.iti__mf {
  --iti-flag-offset: -3270px;
}

.iti__mg {
  --iti-flag-offset: -3292px;
}

.iti__mh {
  --iti-flag-offset: -3314px;
}

.iti__mk {
  --iti-flag-offset: -3336px;
}

.iti__ml {
  --iti-flag-offset: -3358px;
}

.iti__mm {
  --iti-flag-offset: -3380px;
}

.iti__mn {
  --iti-flag-offset: -3402px;
}

.iti__mo {
  --iti-flag-offset: -3424px;
}

.iti__mp {
  --iti-flag-offset: -3446px;
}

.iti__mq {
  --iti-flag-offset: -3468px;
}

.iti__mr {
  --iti-flag-offset: -3490px;
}

.iti__ms {
  --iti-flag-offset: -3512px;
}

.iti__mt {
  --iti-flag-offset: -3534px;
}

.iti__mu {
  --iti-flag-offset: -3556px;
}

.iti__mv {
  --iti-flag-offset: -3578px;
}

.iti__mw {
  --iti-flag-offset: -3600px;
}

.iti__mx {
  --iti-flag-offset: -3622px;
}

.iti__my {
  --iti-flag-offset: -3644px;
}

.iti__mz {
  --iti-flag-offset: -3666px;
}

.iti__na {
  --iti-flag-offset: -3688px;
}

.iti__nc {
  --iti-flag-offset: -3710px;
}

.iti__ne {
  --iti-flag-offset: -3732px;
}

.iti__nf {
  --iti-flag-offset: -3752px;
}

.iti__ng {
  --iti-flag-offset: -3774px;
}

.iti__ni {
  --iti-flag-offset: -3796px;
}

.iti__nl {
  --iti-flag-offset: -3818px;
}

.iti__no {
  --iti-flag-offset: -3840px;
}

.iti__np {
  --iti-flag-offset: -3862px;
}

.iti__nr {
  --iti-flag-offset: -3877px;
}

.iti__nu {
  --iti-flag-offset: -3899px;
}

.iti__nz {
  --iti-flag-offset: -3921px;
}

.iti__om {
  --iti-flag-offset: -3943px;
}

.iti__pa {
  --iti-flag-offset: -3965px;
}

.iti__pe {
  --iti-flag-offset: -3987px;
}

.iti__pf {
  --iti-flag-offset: -4009px;
}

.iti__pg {
  --iti-flag-offset: -4031px;
}

.iti__ph {
  --iti-flag-offset: -4053px;
}

.iti__pk {
  --iti-flag-offset: -4075px;
}

.iti__pl {
  --iti-flag-offset: -4097px;
}

.iti__pm {
  --iti-flag-offset: -4119px;
}

.iti__pn {
  --iti-flag-offset: -4141px;
}

.iti__pr {
  --iti-flag-offset: -4163px;
}

.iti__ps {
  --iti-flag-offset: -4185px;
}

.iti__pt {
  --iti-flag-offset: -4207px;
}

.iti__pw {
  --iti-flag-offset: -4229px;
}

.iti__py {
  --iti-flag-offset: -4251px;
}

.iti__qa {
  --iti-flag-offset: -4273px;
}

.iti__re {
  --iti-flag-offset: -4295px;
}

.iti__ro {
  --iti-flag-offset: -4317px;
}

.iti__rs {
  --iti-flag-offset: -4339px;
}

.iti__ru {
  --iti-flag-offset: -4361px;
}

.iti__rw {
  --iti-flag-offset: -4383px;
}

.iti__sa {
  --iti-flag-offset: -4405px;
}

.iti__sb {
  --iti-flag-offset: -4427px;
}

.iti__sc {
  --iti-flag-offset: -4449px;
}

.iti__sd {
  --iti-flag-offset: -4471px;
}

.iti__se {
  --iti-flag-offset: -4493px;
}

.iti__sg {
  --iti-flag-offset: -4515px;
}

.iti__sh {
  --iti-flag-offset: -4537px;
}

.iti__si {
  --iti-flag-offset: -4559px;
}

.iti__sj {
  --iti-flag-offset: -4581px;
}

.iti__sk {
  --iti-flag-offset: -4603px;
}

.iti__sl {
  --iti-flag-offset: -4625px;
}

.iti__sm {
  --iti-flag-offset: -4647px;
}

.iti__sn {
  --iti-flag-offset: -4669px;
}

.iti__so {
  --iti-flag-offset: -4691px;
}

.iti__sr {
  --iti-flag-offset: -4713px;
}

.iti__ss {
  --iti-flag-offset: -4735px;
}

.iti__st {
  --iti-flag-offset: -4757px;
}

.iti__su {
  --iti-flag-offset: -4779px;
}

.iti__sv {
  --iti-flag-offset: -4801px;
}

.iti__sx {
  --iti-flag-offset: -4823px;
}

.iti__sy {
  --iti-flag-offset: -4845px;
}

.iti__sz {
  --iti-flag-offset: -4867px;
}

.iti__ta {
  --iti-flag-offset: -4889px;
}

.iti__tc {
  --iti-flag-offset: -4911px;
}

.iti__td {
  --iti-flag-offset: -4933px;
}

.iti__tf {
  --iti-flag-offset: -4955px;
}

.iti__tg {
  --iti-flag-offset: -4977px;
}

.iti__th {
  --iti-flag-offset: -4999px;
}

.iti__tj {
  --iti-flag-offset: -5021px;
}

.iti__tk {
  --iti-flag-offset: -5043px;
}

.iti__tl {
  --iti-flag-offset: -5065px;
}

.iti__tm {
  --iti-flag-offset: -5087px;
}

.iti__tn {
  --iti-flag-offset: -5109px;
}

.iti__to {
  --iti-flag-offset: -5131px;
}

.iti__tr {
  --iti-flag-offset: -5153px;
}

.iti__tt {
  --iti-flag-offset: -5175px;
}

.iti__tv {
  --iti-flag-offset: -5197px;
}

.iti__tw {
  --iti-flag-offset: -5219px;
}

.iti__tz {
  --iti-flag-offset: -5241px;
}

.iti__ua {
  --iti-flag-offset: -5263px;
}

.iti__ug {
  --iti-flag-offset: -5285px;
}

.iti__uk {
  --iti-flag-offset: -5307px;
}

.iti__um {
  --iti-flag-offset: -5329px;
}

.iti__un {
  --iti-flag-offset: -5351px;
}

.iti__us {
  --iti-flag-offset: -5373px;
}

.iti__uy {
  --iti-flag-offset: -5395px;
}

.iti__uz {
  --iti-flag-offset: -5417px;
}

.iti__va {
  --iti-flag-offset: -5439px;
}

.iti__vc {
  --iti-flag-offset: -5456px;
}

.iti__ve {
  --iti-flag-offset: -5478px;
}

.iti__vg {
  --iti-flag-offset: -5500px;
}

.iti__vi {
  --iti-flag-offset: -5522px;
}

.iti__vn {
  --iti-flag-offset: -5544px;
}

.iti__vu {
  --iti-flag-offset: -5566px;
}

.iti__wf {
  --iti-flag-offset: -5588px;
}

.iti__ws {
  --iti-flag-offset: -5610px;
}

.iti__xk {
  --iti-flag-offset: -5632px;
}

.iti__ye {
  --iti-flag-offset: -5654px;
}

.iti__yt {
  --iti-flag-offset: -5676px;
}

.iti__za {
  --iti-flag-offset: -5698px;
}

.iti__zm {
  --iti-flag-offset: -5720px;
}

.iti__zw {
  --iti-flag-offset: -5742px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  box-shadow: none;
  background-position: 100%;
  background-size: contain;
  height: 19px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }

  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}

/* [project]/flextronassemblyhimrav/public_html/public/assets/css/animate.css [app-client] (css) */
@media (min-width: 1007px) {
  .kmr-animate {
    transition: all 1.5s;
  }

  [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);
  }
}

/*# sourceMappingURL=flextronassemblyhimrav_public_html_c53edc29._.css.map*/