@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerpadding: 30px;
  --headerheight: 100px;
  --headerfixed: 100px;
  --footerstrip: 38px;
  --filterstrip: 44px;
  --detailstrip: 40px;
  --primary:rgba(15, 43, 127, 1);
  --secondary: rgba(237, 241, 255, 1);
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #cfcfcf;
  --light-gray: rgba(235, 235, 235, 1);
  --container: 1750px;
  --containerfluid: 5rem;
}
@media only screen and (max-width: 1280px) {
  :root {
    --containerfluid: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 2rem;
    --headerpadding: 2px;
    --headerheight: 75px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --headerheight: 78px;
  }
}
@media only screen and (max-width: 540px) {
  :root {
    --headerfixed: 65px;
    --headerheight: 65px;
  }
}
@media only screen and (max-width: 320px) {
  :root {
    --containerfluid: 10px;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 10px;
}
@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-size: 16px;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

b {
  font-weight: 500;
}

small {
  font-size: 14px;
  line-height: 22px;
  display: block;
}

select {
  display: none;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}
@media only screen and (max-width: 768px) {
  a[href].logo {
    width: 160px;
  }
}
@media only screen and (max-width: 420px) {
  a[href].logo {
    width: 110px;
  }
}

svg path {
  transition: 0.5s ease;
}

.position-relative {
  position: relative;
}

.c-primary {
  color: var(--primary);
}

.container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1366px) {
  .container {
    max-width: 94%;
  }
}
@media only screen and (max-width: 540px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  display: block;
  margin: 0 auto;
}

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

h1, h2, h4, h5 {
  font-weight: normal;
  text-transform: uppercase;
  font-family: "Optima";
  color: var(--black);
}

h3, h6 {
  font-weight: normal;
  text-transform: capitalize;
}

p, span, ul li, button, a {
  font-family: "Poppins", serif;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  p, span, ul li, button, a {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 540px) {
  p, span, ul li, button, a {
    font-size: 12px;
  }
}

img {
  max-width: 100%;
}

.sub-heading h3 {
  text-transform: capitalize;
}

h1 {
  font-size: 150px;
  line-height: 0.8;
  font-family: "Optima";
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 135px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 100px;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 540px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-size: 48px;
  line-height: 1.15;
}
@media only screen and (max-width: 1280px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 540px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 40px;
  line-height: 1.2;
  font-family: "Optima";
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  h3 {
    font-size: 26px;
  }
}

h4 {
  font-size: 36px;
  line-height: 1.3;
  font-family: "Poppins", serif;
}
@media only screen and (max-width: 1024px) {
  h4 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 540px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 32px;
  line-height: 1.2;
}
@media only screen and (max-width: 1280px) {
  h5 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  h5 {
    font-size: 24px;
  }
}

h6 {
  font-size: 24px;
  line-height: 1.4;
  font-family: "Poppins", serif;
}
@media only screen and (max-width: 991px) {
  h6 {
    font-size: 20px;
    line-height: 1.2;
  }
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

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

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

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

.item-md {
  position: relative;
  display: block;
  position: relative;
}
.item-md::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.item-md::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--primary);
}
.item-md::before, .item-md::after {
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figure, .item-md .figure {
  display: block;
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
.item-md figure img, .item-md figure video, .item-md figure iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.item-md.center-item figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 6;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 6;
  }
}
@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
}

.btn {
  --height: 45px;
  --padding: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--height);
  padding: 0 var(--padding);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media only screen and (max-width: 1280px) {
  .btn {
    --height: 40px;
    --padding: 20px;
    font-size: 13px;
  }
}
.btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform: rotate(224deg);
  width: 20px;
  height: 20px;
}
.btn:hover svg {
  transform: rotate(224deg) translateY(3px);
}

.btn-white-rounded {
  background: #ffffff;
  color: rgb(15, 43, 127);
  border-radius: 30px;
  border-color: #ffffff;
}
.btn-white-rounded:hover {
  background: rgb(15, 43, 127);
  color: #ffffff;
  border-color: rgb(15, 43, 127);
}

.btn-white-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-white-outline:hover {
  background: #ffffff;
  color: #000;
}

.btn-white {
  background: #ffffff;
  color: #000;
  border-radius: 0;
  border-color: #ffffff;
  text-transform: capitalize;
}
.btn-white:hover {
  background: rgb(15, 43, 127);
  color: #ffffff;
  border-color: rgb(15, 43, 127);
}

.btn-blue {
  background: rgb(15, 43, 127);
  color: #ffffff;
  border-radius: 30px;
  border-color: #ffffff;
  margin-top: 24px;
}
.btn-blue:hover {
  background: rgb(9.6126760563, 27.5563380282, 81.3873239437);
  color: #ffffff;
  border-color: rgb(9.6126760563, 27.5563380282, 81.3873239437);
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: #ffffff;
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
}
.model .close:not(.btn, .close-video) {
  position: absolute;
  top: 0;
  right: 0;
  top: 25px;
  right: 25px;
  line-height: 0;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn, .close-video) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn, .close-video) path {
  stroke: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
@media only screen and (max-width: 540px) {
  .form-grid {
    --gaptb: 16px;
  }
}
.form-grid .full {
  grid-column: span var(--item);
}

.btn-div-btm > *:not(:last-child) {
  margin-right: 14px;
}
@media only screen and (max-width: 675px) {
  .btn-div-btm > *:not(:last-child) {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 675px) {
  .btn-div-btm .btn {
    --padding: 12px;
    font-size: 14px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}
.swiper-nav.hide-btn-no-loop .swiper-prev.swiper-button-disabled, .swiper-nav.hide-btn-no-loop .swiper-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.swiper-nav.swiper-group {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 11px;
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.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.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev svg, .swiper-prev img {
  transform: scaleX(-1);
}

.swiper-prev, .swiper-next {
  --size: 45px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(15, 43, 127);
  border: 1px solid rgb(15, 43, 127);
  transition: 0.5s ease;
}
.swiper-prev.swiper-btn-medium, .swiper-next.swiper-btn-medium {
  --size: 35px;
}
.swiper-prev path, .swiper-next path {
  fill: #ffffff;
}
.swiper-prev:hover:not(.swiper-button-disabled), .swiper-next:hover:not(.swiper-button-disabled) {
  background: #ffffff;
  border-color: #ffffff;
}
.swiper-prev:hover:not(.swiper-button-disabled) path, .swiper-next:hover:not(.swiper-button-disabled) path {
  fill: rgb(15, 43, 127);
}
.swiper-prev.no-background, .swiper-next.no-background {
  height: auto;
  width: auto;
  display: block;
  background: none;
  border: none;
  line-height: 0;
}
.swiper-prev.no-background path, .swiper-next.no-background path {
  fill: initial;
}
.swiper-prev.no-background:hover, .swiper-next.no-background:hover {
  background: none;
}
.swiper-prev.has-shadow, .swiper-next.has-shadow {
  box-shadow: 0px 0px 4.8px 0px rgba(0, 0, 0, 0.2509803922);
}
.swiper-prev.white, .swiper-next.white {
  background: #ffffff;
  border-color: #ffffff;
}
.swiper-prev.white path, .swiper-next.white path {
  fill: var(--black);
}
.swiper-prev.white:hover:not(.swiper-button-disabled), .swiper-next.white:hover:not(.swiper-button-disabled) {
  background: rgb(15, 43, 127);
  border-color: rgb(15, 43, 127);
}
.swiper-prev.white:hover:not(.swiper-button-disabled) path, .swiper-next.white:hover:not(.swiper-button-disabled) path {
  fill: #ffffff;
}
.swiper-prev.primary-border, .swiper-next.primary-border {
  border-color: rgb(15, 43, 127);
  background: none;
}
.swiper-prev.primary-border path, .swiper-next.primary-border path {
  fill: rgb(15, 43, 127);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled), .swiper-next.primary-border:hover:not(.swiper-button-disabled) {
  background: rgb(15, 43, 127);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled) path, .swiper-next.primary-border:hover:not(.swiper-button-disabled) path {
  fill: #ffffff;
}
.swiper-prev.white-border, .swiper-next.white-border {
  border-color: #ffffff;
  background: none;
}
.swiper-prev.white-border path, .swiper-next.white-border path {
  fill: #ffffff;
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: #ffffff;
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled) path, .swiper-next.white-border:hover:not(.swiper-button-disabled) path {
  fill: rgb(15, 43, 127);
}
.swiper-prev.gray-border, .swiper-next.gray-border {
  border-color: #828282;
  background: none;
}
.swiper-prev.gray-border path, .swiper-next.gray-border path {
  fill: #828282;
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled), .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
  background: rgb(15, 43, 127);
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled) path, .swiper-next.gray-border:hover:not(.swiper-button-disabled) path {
  fill: #ffffff;
}
.swiper-prev.black-border, .swiper-next.black-border {
  border-color: var(--black);
  background: none;
}
.swiper-prev.black-border path, .swiper-next.black-border path {
  fill: var(--black);
}
.swiper-prev.black-border:hover:not(.swiper-button-disabled), .swiper-next.black-border:hover:not(.swiper-button-disabled) {
  background: var(--black);
  border-color: var(--black);
}
.swiper-prev.black-border:hover:not(.swiper-button-disabled) path, .swiper-next.black-border:hover:not(.swiper-button-disabled) path {
  fill: #ffffff;
}
.swiper-prev.swiper-btn-large, .swiper-next.swiper-btn-large {
  --size: 59px;
}
@media only screen and (max-width: 991px) {
  .swiper-prev.swiper-btn-large, .swiper-next.swiper-btn-large {
    --size: 48px;
  }
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.4;
}
.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  --btnsize: 51px;
  --border: 1px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
@media only screen and (max-width: 1024px) {
  .play-btn {
    --btnsize: 40px;
  }
}
@media only screen and (max-width: 675px) {
  .play-btn {
    --btnsize: 35px;
    --border: 1px;
  }
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}
.play-btn p, .play-btn ul {
  margin-bottom: 30px;
}
.play-btn ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .play-btn ul {
    padding-left: 10px;
  }
}
.play-btn ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .play-btn ul li {
    padding-left: 20px;
  }
}
.play-btn ul li:not(:last-child) {
  margin-bottom: 6px;
}
.play-btn ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(15, 43, 127);
}
.play-btn.website-content-medium h2, .play-btn.website-content-medium h3, .play-btn.website-content-medium h4 {
  margin: 20px 0 18px;
  font-size: 20px;
  font-weight: 500;
}
.play-btn.website-content-medium h5, .play-btn.website-content-medium h6 {
  font-size: 18px;
  font-weight: 500;
}
.play-btn.website-content-medium p, .play-btn.website-content-medium ul {
  margin-bottom: 20px;
}

.kmr-animate {
  transition: 1.2s ease;
}

[data-video], [data-model] {
  cursor: pointer;
}

.banner {
  position: relative;
}
.banner:not(.banner-banner) {
  position: relative;
}
.banner:not(.banner-banner)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner:not(.banner-banner)::before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.5607843137) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 5;
}
.banner:not(.banner-banner).center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
  z-index: 10;
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner).center-banner .banner-wrapper {
    bottom: 20%;
    translate: none;
    top: auto;
  }
}
.banner:not(.banner-banner) .bg {
  height: 100vh;
  line-height: 0;
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner) .bg {
    height: 417px;
  }
}
.banner:not(.banner-banner) .bg video, .banner:not(.banner-banner) .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner:not(.banner-banner) .home-bannerImg-slider {
  height: 100%;
}
.banner:not(.banner-banner) .home-bannerImg-slider .swiper {
  height: 100%;
}
.banner:not(.banner-banner) .home-bannerImg-slider .swiper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner:not(.banner-banner) .home-bannerImg-slider .swiper .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}
.banner:not(.banner-banner) .swiper-pagination {
  bottom: 14%;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .banner:not(.banner-banner) .swiper-pagination {
    bottom: 18%;
  }
}
@media only screen and (max-width: 540px) {
  .banner:not(.banner-banner) .swiper-pagination {
    bottom: 8%;
  }
}
.banner:not(.banner-banner) .swiper-pagination .swiper-pagination-bullet {
  background: #fff !important;
  width: 12px;
  height: 12px;
}
.banner:not(.banner-banner) .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.banner:not(.banner-banner) .content.content-white h1, .banner:not(.banner-banner) .content.content-white p, .banner:not(.banner-banner) .content.content-white h5, .banner:not(.banner-banner) .content.content-white h6, .banner:not(.banner-banner) .content.content-white h4 {
  color: #ffffff;
}
.banner:not(.banner-banner) .content.title-l h1 {
  font-size: 128px;
  line-height: normal;
}
@media only screen and (max-width: 1366px) {
  .banner:not(.banner-banner) .content.title-l h1 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner) .content.title-l h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 360px) {
  .banner:not(.banner-banner) .content.title-l h1 {
    font-size: 48px;
  }
}
.banner:not(.banner-banner) .content.title-l h1 span {
  font-size: 0.25em;
}
.banner:not(.banner-banner) .content.title-m h1 {
  font-size: 60px;
  line-height: 1.349;
}
@media only screen and (max-width: 1152px) {
  .banner:not(.banner-banner) .content.title-m h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .banner:not(.banner-banner) .content.title-m h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner) .content.title-m h1 {
    font-size: 38px;
  }
}
.banner:not(.banner-banner) .content.title-m h1:has(+ *) {
  margin-bottom: 10px;
}
.banner:not(.banner-banner) .content h5:has(+ *) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .banner:not(.banner-banner) .content h5:has(+ *) {
    margin-bottom: 14px;
  }
}
.banner:not(.banner-banner) .content h1 {
  font-size: 48px;
  line-height: normal;
}
@media only screen and (max-width: 520px) {
  .banner:not(.banner-banner) .content h1 {
    font-size: 32px;
  }
}
.banner:not(.banner-banner) .content h1 span {
  font-weight: 400;
  display: block;
  line-height: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.banner:not(.banner-banner) .content h5 {
  font-size: 20px;
  line-height: 1.34;
}
@media only screen and (max-width: 991px) {
  .banner:not(.banner-banner) .content h5 {
    font-size: 16px;
  }
}
.banner:not(.banner-banner) .content h6 {
  font-size: 18px;
  line-height: 1.44;
  font-weight: 400;
}
.banner:not(.banner-banner) .content h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.166;
}
@media only screen and (max-width: 1366px) {
  .banner:not(.banner-banner) .content h4 {
    font-size: 22px;
  }
}
.banner:not(.banner-banner) .content p {
  font-weight: 500;
}
.banner:not(.banner-banner) .scroll-btn {
  --btnsize: 45px;
  height: var(--btnsize);
  width: calc(var(--btnsize) * 0.667);
  border-radius: 20px;
  border: 1px solid #ffffff;
  margin-top: 5rem;
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner) .scroll-btn {
    --btnsize: 36px;
    margin-top: 2rem;
  }
}
.banner:not(.banner-banner) .scroll-btn.black-scroll-btn {
  border-color: var(--black);
}
.banner:not(.banner-banner) .scroll-btn.black-scroll-btn span {
  background: var(--black);
}
.banner:not(.banner-banner) .scroll-btn span {
  display: block;
  margin: 0 auto;
  width: 2px;
  height: calc(var(--btnsize) * 0.23);
  border-radius: 25%;
  background: #ffffff;
  animation: scroll 2.2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.video-pop, .profile-pop1, .profile-pop2, .profile-pop3 {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 999999;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.video-pop.is-open, .profile-pop1.is-open, .profile-pop2.is-open, .profile-pop3.is-open {
  transform: translateY(0%);
}
.video-pop .close-video, .profile-pop1 .close-video, .profile-pop2 .close-video, .profile-pop3 .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgb(15, 43, 127);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .video-pop .close-video, .profile-pop1 .close-video, .profile-pop2 .close-video, .profile-pop3 .close-video {
    right: 0;
  }
}
.video-pop .close-video:hover, .profile-pop1 .close-video:hover, .profile-pop2 .close-video:hover, .profile-pop3 .close-video:hover {
  background: rgb(15, 43, 127);
}
.video-pop .close-video svg, .profile-pop1 .close-video svg, .profile-pop2 .close-video svg, .profile-pop3 .close-video svg {
  height: 35%;
  width: 35%;
}
.video-pop .close-video path, .profile-pop1 .close-video path, .profile-pop2 .close-video path, .profile-pop3 .close-video path {
  stroke-width: 2;
  stroke: #ffffff;
}
.video-pop .model-body, .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 675px) {
  .video-pop .model-body, .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    max-width: 95%;
  }
}
.video-pop .model-body iframe, .profile-pop1 .model-body iframe, .profile-pop2 .model-body iframe, .profile-pop3 .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid #ffffff;
}

.profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
}
@media only screen and (max-width: 1366px) {
  .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    max-width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    max-width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    padding: 18px;
  }
}
@media only screen and (max-width: 540px) {
  .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    max-width: 92%;
  }
}
.profile-pop1 .model-body .profile-content-wrap, .profile-pop2 .model-body .profile-content-wrap, .profile-pop3 .model-body .profile-content-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 45px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap, .profile-pop2 .model-body .profile-content-wrap, .profile-pop3 .model-body .profile-content-wrap {
    gap: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .profile-pop1 .model-body .profile-content-wrap, .profile-pop2 .model-body .profile-content-wrap, .profile-pop3 .model-body .profile-content-wrap {
    grid-template-columns: 1fr;
  }
}
.profile-pop1 .model-body .profile-content-wrap .close-video, .profile-pop2 .model-body .profile-content-wrap .close-video, .profile-pop3 .model-body .profile-content-wrap .close-video {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 35px;
  height: 35px;
}
@media only screen and (max-width: 540px) {
  .profile-pop1 .model-body .profile-content-wrap .close-video, .profile-pop2 .model-body .profile-content-wrap .close-video, .profile-pop3 .model-body .profile-content-wrap .close-video {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 420px) {
  .profile-pop1 .model-body .profile-content-wrap .close-video, .profile-pop2 .model-body .profile-content-wrap .close-video, .profile-pop3 .model-body .profile-content-wrap .close-video {
    right: -12px;
    top: -12px;
  }
}
.profile-pop1 .model-body .profile-content-wrap .profile-image, .profile-pop2 .model-body .profile-content-wrap .profile-image, .profile-pop3 .model-body .profile-content-wrap .profile-image {
  overflow: hidden;
  border-radius: 10px;
}
.profile-pop1 .model-body .profile-content-wrap .profile-image img, .profile-pop2 .model-body .profile-content-wrap .profile-image img, .profile-pop3 .model-body .profile-content-wrap .profile-image img {
  width: 100%;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-name {
  padding-bottom: 20px;
  border-bottom: 1px solid #d7d7d7;
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-name {
    font-size: 18px;
  }
}
.profile-pop1 .model-body .profile-content-wrap .profile-details h6, .profile-pop2 .model-body .profile-content-wrap .profile-details h6, .profile-pop3 .model-body .profile-content-wrap .profile-details h6 {
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details h6, .profile-pop2 .model-body .profile-content-wrap .profile-details h6, .profile-pop3 .model-body .profile-content-wrap .profile-details h6 {
    font-size: 15px;
  }
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .social-media, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details .social-media, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media {
    margin-top: 4px;
  }
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .social-media li, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media li, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media li {
  background: var(--primary);
  padding: 8px;
  border-radius: 50%;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .social-media li svg, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media li svg, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media li svg {
  width: 20px;
  height: 20px;
  display: block;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .social-media li svg path, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media li svg path, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media li svg path {
  fill: var(--white);
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content {
  height: 255px;
  overflow-y: scroll;
  margin-top: 20px;
  padding-right: 18px;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar {
  width: 4px;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-track, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-track, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb {
  background-color: rgba(15, 43, 127, 0.4509803922);
  border-radius: 4px;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb:hover, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb:hover, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb:hover {
  background-color: darkred;
  scrollbar-color: rgba(198, 255, 227, 0.5411764706);
  scrollbar-width: thin;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content p, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content p, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content p, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content p, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content p {
    font-size: 12px;
    line-height: 18px;
  }
}

.sticky-action-bar {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sticky-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: var(--primary);
    justify-content: space-between;
    align-items: center;
  }
  .sticky-action-bar > div {
    display: flex;
    flex: 1;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
    border-top: 1px solid rgba(133, 133, 133, 0.5);
  }
  .sticky-action-bar > div a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
  }
  .sticky-action-bar > div a svg {
    width: 20px;
    height: 20px;
  }
  .sticky-action-bar > div a svg path {
    fill: var(--white);
  }
  .sticky-action-bar > div a p {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
  }
  .sticky-action-bar > div:nth-child(2) {
    border-left: 1px solid rgba(133, 133, 133, 0.5);
    border-right: 1px solid rgba(133, 133, 133, 0.5);
  }
}

.arrow-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  transform: rotate(224deg);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 420px) {
  .arrow-btn {
    width: 35px;
    height: 35px;
  }
}
@media only screen and (max-width: 420px) {
  .arrow-btn svg {
    width: 18px;
    height: 18px;
  }
  .arrow-btn svg path {
    stroke: var(--primary);
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  transition: all 0.5s ease;
  height: var(--headerheight);
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgb(15, 43, 127);
}
header::after {
  height: 0;
  transition: height 0.5s ease;
  z-index: -1;
}
header .header-wrapper {
  padding: 0 var(--containerfluid);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 540px) {
  header .header-wrapper {
    padding: 0 18px;
  }
}
@media only screen and (max-width: 420px) {
  header .header-wrapper {
    padding: 0 12px;
  }
}
header .header-wrapper .colA, header .header-wrapper .colB {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 45px;
}
@media only screen and (max-width: 1280px) {
  header .header-wrapper .colA, header .header-wrapper .colB {
    gap: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  header .header-wrapper .colA, header .header-wrapper .colB {
    gap: 20px;
  }
}
header .header-wrapper .colA {
  transition: transform 0.5s ease;
}
header .header-wrapper .colB ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
}
@media only screen and (max-width: 1280px) {
  header .header-wrapper .colB ul {
    gap: 22px;
  }
}
@media only screen and (max-width: 1024px) {
  header .header-wrapper .colB ul {
    gap: 15px;
  }
}
header .header-wrapper .colB ul li {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
@media only screen and (max-width: 675px) {
  header .header-wrapper .colB ul li:has(.enqr-btn, .call-anr) {
    display: none;
  }
}
header .header-wrapper .colB ul li a:not(.btn), header .header-wrapper .colB ul li button:not(.btn) {
  color: inherit;
  font-weight: inherit;
  display: inline-block;
  transition: color 0.5s ease;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 1280px) {
  header .header-wrapper .colB ul li a:not(.btn), header .header-wrapper .colB ul li button:not(.btn) {
    font-size: 14px;
  }
}
header .header-wrapper .colB ul li .ham-btn {
  width: 50px;
  height: 15px;
  --border: 2px;
  --background: var(--white);
  border: var(--border) solid var(--background);
  border-left: none;
  border-right: none;
  margin-left: 6px;
  transition: border-color 0.5s ease;
}
header .header-wrapper .colB .menu-social-icon {
  gap: 30px;
}
@media only screen and (max-width: 1280px) {
  header .header-wrapper .colB .menu-social-icon {
    gap: 20px;
  }
}
header .header-wrapper .colB .menu-social-icon li:not(:last-child) {
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
}
header .header-wrapper .colB .menu-social-icon li:not(:last-child) a svg {
  display: block;
}
header .header-wrapper .colB .menu-social-icon li:not(:last-child) a svg path {
  fill: var(--white);
  transition: fill 0.3s ease;
}
@media only screen and (max-width: 768px) {
  header .header-wrapper .colB .menu-social-icon li:not(:last-child) {
    display: none;
  }
}
header .header-wrapper .colB .menu-social-icon li:not(:last-child):hover {
  background: var(--primary);
  border-color: var(--primary);
}
header .header-wrapper .colB .menu-social-icon li:not(:last-child):hover a svg path {
  fill: var(--white);
}
header.header-fixed {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header.header-fixed .colB .menu-social-icon li:not(:last-child) {
  border-color: var(--white);
}
header.header-fixed .colB .menu-social-icon li:not(:last-child) a svg path {
  fill: var(--white);
}
header.header-fixed .colB .menu-social-icon li:not(:last-child):hover {
  background: var(--white);
}
header.header-fixed .colB .menu-social-icon li:not(:last-child):hover a svg path {
  fill: var(--primary);
}
@media only screen and (max-width: 768px) {
  header.header-fixed .colB .menu-social-icon li:not(:last-child) {
    display: none;
  }
}
header.header-fixed .colB .btn-white-rounded:hover {
  background: #e0e0e0;
  color: var(--primary);
}

header.header-fixed {
  height: var(--headerfixed);
  --headerpadding: 10px;
}
@media only screen and (max-width: 675px) {
  header.header-fixed {
    --headerpadding: 12px;
  }
}
header.header-fixed::after {
  height: 100%;
}
header.header-fixed .header-wrapper .colA .logo img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(236deg) brightness(103%) contrast(101%);
}
header.header-fixed .header-wrapper .colB ul li .ham-btn:hover {
  --background: var(--gray);
}
header.header-black .header-wrapper .colA .logo {
  position: relative;
}
header.header-black .header-wrapper .colA .logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: url(../../images/logo-black.svg);
}
header.header-black .header-wrapper .colA .logo::before {
  background-size: 100% 100%;
  transition: 0s ease;
}
header.header-black .header-wrapper .colB ul li a:not(.btn), header.header-black .header-wrapper .colB ul li button:not(.btn) {
  color: var(--black);
}
header.header-black .header-wrapper .colB ul li a:not(.btn):hover, header.header-black .header-wrapper .colB ul li button:not(.btn):hover {
  color: rgb(15, 43, 127);
}
header.header-black .header-wrapper .colB ul li .ham-btn {
  --background: var(--black);
}
header.header-black .header-wrapper .colB ul li .ham-btn:hover {
  --background: var(--primary);
}
header.header-black.header-fixed .header-wrapper .colA .logo::before {
  display: none;
}
header.header-black.header-fixed .header-wrapper .colB ul li a:not(.btn), header.header-black.header-fixed .header-wrapper .colB ul li button:not(.btn) {
  color: #ffffff;
}
header.header-black.header-fixed .header-wrapper .colB ul li a:not(.btn):hover, header.header-black.header-fixed .header-wrapper .colB ul li button:not(.btn):hover {
  color: rgb(15, 43, 127);
}
header.header-black.header-fixed .header-wrapper .colB ul li .ham-btn {
  --background: var(--white);
}
header.header-black.header-fixed .header-wrapper .colB ul li .ham-btn:hover {
  --background: var(--primary);
}

.ham-pop.model {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background-image: url(../../images/eon7-stroke.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 85% auto;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 9999;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .ham-pop.model {
    background-position: 100% 100%;
  }
}
@media only screen and (max-width: 768px) {
  .ham-pop.model {
    background-position: 100% 92%;
  }
}
.ham-pop.model.is-open {
  transform: translateX(0%);
}
.ham-pop.model .close path {
  stroke: var(--text);
  stroke-width: 2;
}
.ham-pop.model .model-body {
  padding: 100px 45px 30px;
  height: 100%;
  overflow-y: auto;
}
.ham-pop.model .model-body::-webkit-scrollbar {
  width: 3px;
  background: #ffffff;
  height: 3px;
}
.ham-pop.model .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.ham-pop.model .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .ham-pop.model .model-body {
    padding: 40px 25px 20px;
  }
}
@media only screen and (max-width: 520px) {
  .ham-pop.model .model-body {
    padding: 82px 20px 72px;
  }
}
.ham-pop.model .model-body .ico {
  max-width: 93px;
  width: 100%;
  margin-bottom: 2rem;
  line-height: 0;
}
@media only screen and (max-width: 1366px) {
  .ham-pop.model .model-body .ico {
    max-width: 70px;
  }
}
.ham-pop.model .model-body .ico img, .ham-pop.model .model-body .ico svg {
  width: 100%;
  height: auto;
}
.ham-pop.model .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 25px;
}
@media only screen and (max-width: 1366px) {
  .ham-pop.model .model-body .nav-list > li:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 520px) {
  .ham-pop.model .model-body .nav-list > li:not(:last-child) {
    font-size: 14px;
  }
}
.ham-pop.model .model-body .nav-list > li > a {
  font-size: 36px;
  color: var(--black);
  text-transform: uppercase;
  display: inline-block;
  font-family: "Optima";
  font-weight: 500;
}
@media only screen and (max-width: 1366px) {
  .ham-pop.model .model-body .nav-list > li > a {
    font-size: 25px;
  }
}
@media only screen and (max-width: 675px) {
  .ham-pop.model .model-body .nav-list > li > a {
    font-size: 24px;
  }
}
.ham-pop.model .model-body .nav-list > li > a:hover {
  color: rgb(15, 43, 127);
}
.ham-pop.model .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ham-pop.model .model-body .bottom-list .cal-btn-ham {
  color: var(--black);
}
@media only screen and (max-width: 520px) {
  .ham-pop.model .model-body .bottom-list .cal-btn-ham {
    font-size: 14px;
    font-weight: 500;
  }
}
.ham-pop.model .model-body .bottom-list .cal-btn-ham:hover {
  color: rgb(15, 43, 127);
}
.ham-pop.model .model-body .bottom-list .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
.ham-pop.model .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 15px;
}
@media only screen and (max-width: 520px) {
  .ham-pop.model .model-body .bottom-list .social-icons a:not(:last-child) {
    margin-right: 10px;
  }
}
.ham-pop.model .model-body .bottom-list .social-icons a path {
  transition: 0.5s ease;
  fill: rgb(15, 43, 127);
}

.enquire-pop.model {
  right: 0;
  top: 0;
  right: 0;
  width: 100%;
  background-image: url(../../images/eon7-stroke.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 85% auto;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 9999;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .enquire-pop.model {
    background-position: 100% 100%;
  }
}
@media only screen and (max-width: 768px) {
  .enquire-pop.model {
    background-position: 100% 92%;
  }
}
.enquire-pop.model.is-open {
  transform: translateX(0%);
}
.enquire-pop.model .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.enquire-pop.model .model-body::-webkit-scrollbar {
  width: 3px;
  background: #ffffff;
  height: 3px;
}
.enquire-pop.model .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-pop.model .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop.model .model-body {
    padding: 50px 20px 30px;
  }
}
.enquire-pop.model .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.enquire-pop.model .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-family: "Optima";
}
.enquire-pop.model .model-body .title p {
  color: var(--text);
  margin-top: 10px;
}
.enquire-pop.model .model-body .title p small {
  line-height: 20px;
}
.enquire-pop.model .model-body .form {
  --gaptb: 15px;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown {
  border-radius: 4px;
  cursor: pointer;
  padding: 20px 20px 20px 0px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s ease-in-out;
  line-height: 1.2;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown.open {
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown.open::before {
  transform: rotate(-90deg);
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright);
  bottom: 0;
  width: 15px;
  background-image: url(../../icon/arrow-down-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 0.3s ease-in-out;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown span {
  font-weight: normal;
  color: var(--text);
}
.enquire-pop.model .model-body .form .services-dropdown .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: white;
  z-index: 100;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  padding: 0 20px;
  height: 135px;
}
.enquire-pop.model .model-body .form .services-dropdown .dropdown-list label {
  display: block;
  padding: 10px 0;
  position: relative;
  pointer-events: auto;
  cursor: pointer;
}
.enquire-pop.model .model-body .form .services-dropdown .dropdown-list label input {
  height: auto;
  width: auto;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown.open .dropdown-list {
  display: block;
}
.enquire-pop.model .model-body .form .services-dropdown .selected-values {
  font-weight: bold;
  color: #333;
}
.enquire-pop.model .model-body .form .services-dropdown .placeholder {
  color: #aaa;
}

.video-pop {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 9;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.video-pop.is-open {
  transform: translateY(0%);
}
.video-pop .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgb(15, 43, 127);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .video-pop .close-video {
    right: 0;
  }
}
.video-pop .close-video:hover {
  background: rgb(15, 43, 127);
}
.video-pop .close-video svg {
  height: 35%;
  width: 35%;
}
.video-pop .close-video path {
  stroke-width: 2;
  stroke: #ffffff;
}
.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}
.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid #ffffff;
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgb(15, 43, 127);
  display: none;
}
@media only screen and (max-width: 675px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-strip ul li a {
  display: block;
  text-align: center;
  color: #ffffff;
  height: var(--footerstrip);
  line-height: var(--footerstrip);
}

.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--text);
  --borderbefore: #b7b7b7;
  --borderafter: var(--primary);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.hasCalender {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%237E84A3' d='M19 4h-2V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3m1 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-7h16Zm0-9H4V7a1 1 0 0 1 1-1h2v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h2a1 1 0 0 1 1 1Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.form .form-group.hasCalender.hasCalender-white {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'><path fill='%23ffffff' d='M19 4h-2V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3m1 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-7h16Zm0-9H4V7a1 1 0 0 1 1-1h2v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h2a1 1 0 0 1 1 1Z'/></svg>");
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--black);
}
.form .form-group::after {
  width: 0;
  background: var(--black);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--black);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: var(--labelbackground);
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  font-family: "Poppins", serif;
}
.form .form-group input[type=checkbox] {
  accent-color: black;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: rgb(15, 43, 127);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .form-group.file-input input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize) - var(--borderwidth));
  position: relative;
  --filename: "Choose file";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url(../../images/vector/black-clip.svg) no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: calc(var(--inputsize) - var(--borderwidth));
}
.form .form-group.file-input .file-name::before, .form .form-group.file-input .file-name::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.form .form-group.file-input .file-name::before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize) - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}
.form .form-group.file-input .file-name::after {
  content: "";
  right: 0;
  background: var(--image);
  background-repeat: no-repeat;
  z-index: 1;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  --iconpath: url(../../icon/location-primary.svg);
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --iconspace: 8px;
}
.custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgb(15, 43, 127);
}
.custom-select.has-icon::after {
  left: var(--paddingleftright, 0px);
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon .current {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.custom-select .current {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: break-spaces;
  font-size: 14px;
}
.custom-select .list li.selected {
  background: rgb(15, 43, 127);
  color: #ffffff;
}
.custom-select .list li.selected:hover {
  background: rgb(15, 43, 127);
  color: #ffffff;
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.on-mobile {
  display: inline-block !important;
}
@media only screen and (max-width: 768px) {
  .on-mobile {
    display: none !important;
  }
}/*# sourceMappingURL=header.css.map */