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

footer {
  background: var(--primary);
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  footer {
    margin-bottom: 63px;
    padding: 30px 0;
  }
}
footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}
@media only screen and (max-width: 420px) {
  footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
footer .footer-grid .footer-column p {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
}
footer .footer-grid .footer-column a, footer .footer-grid .footer-column span {
  color: var(--white);
  font-size: 14px;
  margin: 0 0 4px;
  display: block;
  opacity: 0.7;
}
footer .footer-grid .footer-column.logo img {
  max-width: 150px;
  height: auto;
}
footer .footer-grid .footer-column.contact .address a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  footer .footer-grid .footer-column.contact .address a {
    gap: 12px;
  }
}
footer .footer-grid .footer-column.contact .address a svg {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
}
@media only screen and (max-width: 768px) {
  footer .footer-grid .footer-column.contact .address a svg {
    width: 24px;
    height: 24px;
  }
}
footer .footer-grid .footer-column.contact .address a svg path {
  stroke: var(--white);
  opacity: 1;
}
footer .footer-grid .footer-column.contact .address a span {
  display: inline;
  opacity: 0.8;
  color: var(--white);
  margin: 0;
}
footer .footer-grid .footer-column.contact .be_partner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 35px;
}
footer .footer-grid .footer-column.contact .be_partner .btn-white {
  display: flex;
  align-items: center;
  width: auto;
  opacity: 1;
  color: var(--primary);
  margin: 0;
}
footer .footer-grid .footer-column.contact .be_partner .btn-white:hover {
  background: #e0e0e0;
}

.prettify {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.31);
}
@media only screen and (max-width: 420px) {
  .prettify {
    flex-direction: column;
    gap: 15px;
  }
}
.prettify .left {
  display: flex;
  width: 70%;
  gap: 14px;
}
@media only screen and (max-width: 420px) {
  .prettify .left {
    width: 100%;
    justify-content: center;
  }
}
.prettify .left p {
  color: var(--white);
  font-size: 14px;
  opacity: 0.7;
}
.prettify .left img {
  width: 60px;
}
@media only screen and (max-width: 420px) {
  .prettify .right {
    margin: 0 auto;
  }
}
.prettify .right a {
  padding-left: 8px;
  display: inline-block;
}
@media only screen and (max-width: 420px) {
  .prettify .right a {
    margin: 0 auto;
  }
}
.prettify .right a svg path {
  fill: var(--white);
}/*# sourceMappingURL=footer.css.map */