@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:#022f39;
  --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;
}

.img {
  width: 100%;
  max-width: 100%;
}

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: 25px;
  }
}

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: 1366px) {
  h5 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 540px) {
  h5 {
    font-size: 22px;
  }
}

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: #022f39;
}
.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.6117647059);
  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: #022f39;
  border-radius: 30px;
  border-color: #ffffff;
}
.btn-white-rounded:hover {
  background: #022f39;
  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: #022f39;
}

.btn-blue {
  background: #022f39;
  color: #ffffff;
  border-radius: 30px;
  margin-top: 24px;
  font-family: "CircularPro-Book";
  display: inline-flex;
}
.btn-blue:hover {
  background: #00191f;
  color: #ffffff;
}

.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: relative;
  top: 0;
  right: 0;
  top: 25px;
  left: 25px;
  line-height: 0;
  border: 1px solid #d8d8d8;
  padding: 10px;
  border-radius: 50%;
}
@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: #ffffff;
}

.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: var(--primary);
  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: var(--primary);
}
.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);
  }
}

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

.fixed-form {
  padding: 20px 0 15px;
  background: var(--primary);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .fixed-form {
    position: absolute;
    bottom: 0;
  }
}
@media only screen and (max-width: 540px) {
  .fixed-form {
    display: none;
  }
}
.fixed-form .form-grid {
  --item: 5;
  --gaplr: 60px;
}
.fixed-form .form-grid .btn {
  margin-left: auto;
  font-family: "Poppins", serif;
}
.fixed-form .form-grid .btn.btn-white-rounded:hover {
  background: #e6e6e6;
  color: rgb(15, 43, 127);
}
.fixed-form .form-grid.active::after {
  width: 100%;
}
.fixed-form .form-grid::before, .fixed-form .form-grid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.fixed-form .form-grid .form-group::before {
  background: var(--white);
}
.fixed-form .form-grid .form-group::after {
  width: 0;
  background: var(--white);
}
.fixed-form .form-grid .form-group input {
  color: var(--white);
  font-family: "CircularPro-Book";
}
.fixed-form .form-grid .form-group label {
  color: var(--white);
}
.fixed-form .form-grid .form-group label:focus, .fixed-form .form-grid .form-group label.valid {
  outline: none;
}
.fixed-form .form-grid .form-group label:focus ~ label, .fixed-form .form-grid .form-group label.valid ~ label {
  color: var(--white);
}
.fixed-form .form-grid .form-group .current {
  color: red !important;
}

.project-detail-secA {
  padding: 70px 0;
}
@media only screen and (max-width: 1024px) {
  .project-detail-secA {
    padding: 40px 0;
  }
}
.project-detail-secA .container .item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .project-detail-secA .container .item-grid {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secA .container .item-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secA .container .item-grid {
    gap: 15px;
  }
}
.project-detail-secA .container .item-grid .item {
  transition: all 0.3s ease-in-out;
  padding: 30px 10px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .project-detail-secA .container .item-grid .item {
    padding: 10px;
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secA .container .item-grid .item {
    padding: 0;
  }
}
.project-detail-secA .container .item-grid .item .img {
  height: 65px;
  width: 65px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .project-detail-secA .container .item-grid .item .img {
    height: 50px;
    width: 50px;
  }
}
.project-detail-secA .container .item-grid .item .img img {
  width: 100%;
}
.project-detail-secA .container .item-grid .item p {
  padding: 15px 0 0;
  text-align: center;
  color: var(--text);
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .project-detail-secA .container .item-grid .item p {
    font-size: 13px;
  }
}
.project-detail-secA .container .item-grid .item:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.project-detail-secB .heading {
  text-align: center;
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .project-detail-secB .heading {
    padding-bottom: 30px;
  }
}
.project-detail-secB .heading h2 {
  color: var(--primary);
}
.project-detail-secB .card-content {
  display: grid;
  grid-template-columns: 1fr 1fr 510px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .project-detail-secB .card-content {
    grid-template-columns: 1fr 1fr 450px;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secB .card-content {
    grid-template-columns: 1fr;
  }
}
.project-detail-secB .card-content .card-left {
  grid-column: 1/span 2;
}
.project-detail-secB .card-content .card-left img {
  width: 100%;
  height: 100%;
}
.project-detail-secB .card-content .card-right {
  background: var(--light-gray);
  color: var(--black);
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (max-width: 1280px) {
  .project-detail-secB .card-content .card-right {
    padding: 55px;
  }
}
@media only screen and (max-width: 1024px) {
  .project-detail-secB .card-content .card-right {
    padding: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secB .card-content .card-right {
    text-align: center;
    padding: 35px 20px;
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secB .card-content .card-right {
    padding: 25px 0;
  }
}
.project-detail-secB .card-content .card-right h6 {
  font-family: "Optima";
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .project-detail-secB .card-content .card-right h6 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secB .card-content .card-right h6 {
    font-size: 27px;
  }
}
.project-detail-secB .card-content .card-right p:not(ul li p) {
  padding: 25px 0;
}
@media only screen and (max-width: 420px) {
  .project-detail-secB .card-content .card-right p:not(ul li p) {
    padding: 12px 0;
  }
}
.project-detail-secB .card-content .card-right .line {
  width: 60px;
  height: 2px;
  background: var(--primary);
}
@media only screen and (max-width: 768px) {
  .project-detail-secB .card-content .card-right .line {
    margin: 0 auto;
  }
}
.project-detail-secB .card-content .card-right ul {
  margin: 40px 0 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (max-width: 1280px) {
  .project-detail-secB .card-content .card-right ul {
    gap: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secB .card-content .card-right ul {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secB .card-content .card-right ul {
    margin: 25px 0 38px;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secB .card-content .card-right ul {
    margin: 34px 0 38px;
  }
}
.project-detail-secB .card-content .card-right ul li {
  flex: 0 0 calc(50% - 30px);
}
@media only screen and (max-width: 1024px) {
  .project-detail-secB .card-content .card-right ul li {
    flex: 0 0 calc(55% - 30px);
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secB .card-content .card-right ul li {
    flex: 0 0 calc(25% - 30px);
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secB .card-content .card-right ul li {
    flex: 0 0 calc(31% - 30px);
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secB .card-content .card-right ul li {
    flex: 0 0 calc(52% - 30px);
  }
}
.project-detail-secB .card-content .card-right ul li p {
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 540px) {
  .project-detail-secB .card-content .card-right ul li {
    font-size: 14px;
  }
}
.project-detail-secB .card-content .card-right ul li span {
  font-size: 12px;
  color: var(--black);
  opacity: 0.9;
  text-transform: uppercase;
}
@media only screen and (max-width: 540px) {
  .project-detail-secB .card-content .card-right ul li span {
    font-size: 12px;
  }
}
.project-detail-secB .card-content .card-right .btn-brochure {
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .project-detail-secB .card-content .card-right .btn-brochure {
    margin: 0 auto;
  }
}
.project-detail-secB .card-content .card-right .btn-brochure .btn-white {
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
}

.project-detail-secC {
  padding: 70px 0;
}
@media only screen and (max-width: 768px) {
  .project-detail-secC {
    padding: 40px 0;
  }
}
.project-detail-secC .heading {
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .project-detail-secC .heading {
    width: 84%;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secC .heading {
    width: 94%;
  }
}
.project-detail-secC .heading h2 {
  color: var(--primary);
}
.project-detail-secC .heading .tab {
  display: flex;
  justify-content: space-between;
  padding: 35px 0 40px;
  overflow-x: auto;
  margin-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  .project-detail-secC .heading .tab {
    padding: 20px 0 14px;
  }
}
.project-detail-secC .heading .tab li {
  cursor: pointer;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 500;
  text-wrap: nowrap;
  transition: color 0.3s;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  .project-detail-secC .heading .tab li {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secC .heading .tab li {
    padding: 10px 15px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secC .heading .tab li {
    padding: 4px 12px;
  }
}
.project-detail-secC .heading .tab li.active {
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.project-detail-secC .amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 768px) {
  .project-detail-secC .amenities-grid {
    grid-template-columns: 1fr;
  }
}
.project-detail-secC .amenities-grid .item-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.project-detail-secC .amenities-grid .item-content {
  background: var(--primary);
  padding: 7rem 0 4rem 4rem;
}
@media only screen and (max-width: 768px) {
  .project-detail-secC .amenities-grid .item-content {
    padding: 3rem 0 3rem 3rem;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secC .amenities-grid .item-content {
    padding: 3rem;
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secC .amenities-grid .item-content {
    padding: 1.5rem;
  }
}
.project-detail-secC .amenities-grid .item-content h6 {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
}
.project-detail-secC .amenities-grid .item-content ul {
  margin-top: 30px;
}
.project-detail-secC .amenities-grid .item-content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.project-detail-secC .amenities-grid .item-content ul li p {
  color: var(--white);
  opacity: 0.7;
  font-size: 16px;
  font-weight: 300;
}
@media only screen and (max-width: 540px) {
  .project-detail-secC .amenities-grid .item-content ul li p {
    font-size: 14px;
  }
}
.project-detail-secC .amenities-grid .item-content .btn-group {
  margin: 50px 0 0;
  display: flex;
  gap: 1.2rem;
}
@media only screen and (max-width: 420px) {
  .project-detail-secC .amenities-grid .item-content .btn-group {
    margin: 40px 0 0;
    flex-direction: column;
  }
}
.project-detail-secC .amenities-grid .item-content .btn-group .btn {
  border-radius: 50px;
  text-transform: capitalize;
}
.project-detail-secC .amenities-grid .item-content .btn-group .btn-white-rounded {
  color: #000;
  font-family: "Poppins", serif;
}
.project-detail-secC .amenities-grid .item-content .btn-group .btn-white-rounded:hover {
  background: #e0e0e0;
}

.project-detail-secD, .project-detail-secE {
  background: var(--light-gray);
  padding: 65px 0;
}
@media only screen and (max-width: 768px) {
  .project-detail-secD, .project-detail-secE {
    padding: 40px 0;
  }
}
.project-detail-secD .container .heading, .project-detail-secE .container .heading {
  text-align: center;
  width: 46%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .project-detail-secD .container .heading, .project-detail-secE .container .heading {
    width: 65%;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secD .container .heading, .project-detail-secE .container .heading {
    width: 85%;
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secD .container .heading, .project-detail-secE .container .heading {
    width: 100%;
  }
}
.project-detail-secD .container .heading h2, .project-detail-secE .container .heading h2 {
  color: var(--primary);
  margin-bottom: 20px;
}
.project-detail-secD .container .heading p, .project-detail-secE .container .heading p {
  color: var(--text);
  font-size: 14px;
}
.project-detail-secD .container .swiper-wrap, .project-detail-secE .container .swiper-wrap {
  margin-top: 70px;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .project-detail-secD .container .swiper-wrap, .project-detail-secE .container .swiper-wrap {
    margin-top: 40px;
  }
}
.project-detail-secD .container .swiper-wrap .swiper-wrapper .swiper-slide .card, .project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  min-height: 247px;
}
@media only screen and (max-width: 540px) {
  .project-detail-secD .container .swiper-wrap .swiper-wrapper .swiper-slide .card, .project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .card {
    padding: 20px;
  }
}
.project-detail-secD .container .swiper-wrap .swiper-wrapper .swiper-slide .card .card-header, .project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .card .card-header {
  display: flex;
  justify-content: space-between;
}
.project-detail-secD .container .swiper-wrap .swiper-wrapper .swiper-slide .card .card-header svg, .project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .card .card-header svg {
  width: 40px;
  height: 40px;
}
.project-detail-secD .container .swiper-wrap .swiper-wrapper .swiper-slide .card .card-header svg path, .project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .card .card-header svg path {
  fill: var(--primary);
}
.project-detail-secD .container .swiper-wrap .swiper-wrapper .swiper-slide .card .card-header h6, .project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .card .card-header h6 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
}
.project-detail-secD .container .swiper-wrap .swiper-wrapper .swiper-slide .card ul li, .project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .card ul li {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 5px;
  position: relative;
  padding-left: 18px;
}
.project-detail-secD .container .swiper-wrap .swiper-wrapper .swiper-slide .card ul li::before, .project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.project-detail-secD .container .swiper-wrap .swiper-group, .project-detail-secE .container .swiper-wrap .swiper-group {
  position: absolute;
  right: -1%;
  top: 45%;
  z-index: 9999;
}
@media only screen and (max-width: 540px) {
  .project-detail-secD .container .swiper-wrap .swiper-group, .project-detail-secE .container .swiper-wrap .swiper-group {
    display: none;
  }
}
.project-detail-secD .container .swiper-wrap .swiper-group button, .project-detail-secE .container .swiper-wrap .swiper-group button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-detail-secD .container .swiper-wrap .swiper-group button svg, .project-detail-secE .container .swiper-wrap .swiper-group button svg {
  display: inline-block;
}
.project-detail-secD .container .swiper-wrap .swiper-group button svg path[fill], .project-detail-secE .container .swiper-wrap .swiper-group button svg path[fill] {
  fill: var(--white);
}
.project-detail-secD .container .swiper-wrap .swiper-group button svg path[stroke], .project-detail-secE .container .swiper-wrap .swiper-group button svg path[stroke] {
  stroke: var(--stroke);
}
.project-detail-secD .container .btn-brochure, .project-detail-secE .container .btn-brochure {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .project-detail-secD .container .btn-brochure, .project-detail-secE .container .btn-brochure {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secD .container .btn-brochure, .project-detail-secE .container .btn-brochure {
    margin-top: 2rem;
  }
}
.project-detail-secD .container .btn-brochure .btn-white, .project-detail-secE .container .btn-brochure .btn-white {
  background: var(--primary);
  color: var(--white);
}

.project-detail-secE {
  background: #fff;
  padding: 75px 0;
  border-bottom: 1px solid var(--light-gray);
}
@media only screen and (max-width: 768px) {
  .project-detail-secE {
    padding: 40px 0;
  }
}
.project-detail-secE .container .heading {
  text-align: center;
  width: 46%;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .project-detail-secE .container .heading {
    width: 65%;
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secE .container .heading {
    width: 95%;
  }
}
.project-detail-secE .container .heading h2 {
  color: var(--primary);
  margin-bottom: 20px;
}
.project-detail-secE .container .heading p {
  color: var(--text);
  font-size: 14px;
}
.project-detail-secE .container .swiper-wrap {
  margin-top: 70px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .project-detail-secE .container .swiper-wrap {
    margin-top: 40px;
  }
}
.project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .floor .floor-img {
  padding: 20px 65px;
  border: 1px solid var(--gray);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .floor .floor-img {
    padding: 15px 35px;
  }
}
.project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .floor .floor-img img {
  width: 100%;
}
.project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .floor .floor-detail {
  padding: 20px 0;
  text-align: center;
}
.project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .floor .floor-detail h6 {
  font-weight: 500;
}
.project-detail-secE .container .swiper-wrap .swiper-wrapper .swiper-slide .floor .floor-detail p {
  color: var(--black);
  font-size: 14px;
}

.project-detail-secF {
  padding: 60px 0 0;
}
@media only screen and (max-width: 768px) {
  .project-detail-secF {
    padding: 40px 0 0;
  }
}
.project-detail-secF .container .heading {
  text-align: center;
  width: 46%;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .project-detail-secF .container .heading {
    width: 64%;
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secF .container .heading {
    width: 95%;
  }
}
.project-detail-secF .container .heading h2 {
  color: var(--primary);
  margin-bottom: 20px;
}
.project-detail-secF .container .heading p {
  color: var(--text);
  font-size: 14px;
}
.project-detail-secF .container .swiper-wrap {
  margin-top: 70px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .project-detail-secF .container .swiper-wrap {
    margin-top: 40px;
  }
}
.project-detail-secF .container .swiper-wrap .swiper-wrapper .swiper-slide .img img {
  width: 100%;
}
.project-detail-secF .container .swiper-wrap .swiper-group {
  position: absolute;
  right: 15%;
  top: 45%;
  z-index: 1;
}
@media only screen and (max-width: 540px) {
  .project-detail-secF .container .swiper-wrap .swiper-group {
    display: none;
  }
}
.project-detail-secF .container .swiper-wrap .swiper-group button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-detail-secF .container .swiper-wrap .swiper-group button svg {
  transform: rotate(90deg);
}
.project-detail-secF .container .swiper-wrap .swiper-group button svg path {
  stroke: var(--black);
}

.project-detail-secG {
  padding: 60px 0;
}
.project-detail-secG .container .heading {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .project-detail-secG .container .heading {
    width: 60%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secG .container .heading {
    width: 80%;
  }
}
@media only screen and (max-width: 420px) {
  .project-detail-secG .container .heading {
    width: 100%;
  }
}
.project-detail-secG .container .heading h2 {
  color: var(--primary);
}
.project-detail-secG .container .heading p {
  color: var(--text);
  font-size: 14px;
  margin: 20px 0 45px;
}
.project-detail-secG .container .swiper-wrap {
  margin-top: 70px;
  position: relative;
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 1540px) {
  .project-detail-secG .container .swiper-wrap {
    width: 65%;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secG .container .swiper-wrap {
    width: 74%;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secG .container .swiper-wrap {
    width: 100%;
  }
}
.project-detail-secG .container .swiper-wrap .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  border-radius: 15px;
}
.project-detail-secG .container .swiper-wrap .swiper-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 120%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .project-detail-secG .container .swiper-wrap .swiper-group {
    width: 125%;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secG .container .swiper-wrap .swiper-group {
    width: 130%;
    display: none;
  }
}
.project-detail-secG .container .swiper-wrap .swiper-group button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-detail-secG .container .swiper-wrap .swiper-group button svg {
  display: block;
}
.project-detail-secG .container .swiper-wrap .swiper-group button svg path {
  stroke: var(--white);
}
.project-detail-secG .container .swiper-wrap .construction-prev {
  transform: rotate(270deg);
}
.project-detail-secG .container .swiper-wrap .construction-next {
  transform: rotate(90deg);
}
.project-detail-secG .container .swiper-wrap .construction-silder-thumb {
  padding: 20px 0 0;
  width: 80%;
  margin: 0 auto;
}
.project-detail-secG .container .swiper-wrap .construction-silder-thumb .swiper-wrapper .swiper-slide img {
  border-radius: 5px;
  filter: grayscale(100%);
}
.project-detail-secG .container .swiper-wrap .construction-silder-thumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
  filter: none;
}

.project-detail-secH {
  background: var(--light-gray);
  padding: 70px 0;
}
@media only screen and (max-width: 768px) {
  .project-detail-secH {
    padding: 40px 0;
  }
}
.project-detail-secH .container .heading {
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .project-detail-secH .container .heading {
    margin-bottom: 24px;
  }
}
.project-detail-secH .container .heading h2 {
  color: var(--primary);
}
.project-detail-secH .container .toggle {
  width: 60%;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
  border-bottom: 1px solid var(--primary);
}
@media only screen and (max-width: 768px) {
  .project-detail-secH .container .toggle {
    width: 80%;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secH .container .toggle {
    width: 100%;
  }
}
.project-detail-secH .container .toggle .toggle-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0 15px 0;
  cursor: pointer;
  color: var(--primary);
}
@media only screen and (max-width: 768px) {
  .project-detail-secH .container .toggle .toggle-title {
    gap: 20px;
  }
}
.project-detail-secH .container .toggle .toggle-title p {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .project-detail-secH .container .toggle .toggle-title p {
    font-size: 14px;
  }
}
.project-detail-secH .container .toggle .toggle-title .icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.project-detail-secH .container .toggle .toggle-title .icon:before, .project-detail-secH .container .toggle .toggle-title .icon:after {
  content: "";
  position: absolute;
  background: var(--primary);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.project-detail-secH .container .toggle .toggle-title .icon:before {
  width: 2px;
  height: 100%;
}
.project-detail-secH .container .toggle .toggle-title .icon:after {
  width: 100%;
  height: 2px;
}
.project-detail-secH .container .toggle .toggle-inner {
  display: none;
  padding: 0 0 15px 0;
}
.project-detail-secH .container .toggle .toggle-inner p {
  font-size: 14px;
  color: var(--text);
}
.project-detail-secH .container .toggle .toggle-title.active .icon:before {
  display: none;
}

.project-detail-secI {
  padding: 70px 0;
}
@media only screen and (max-width: 768px) {
  .project-detail-secI {
    padding: 40px 0 60px;
  }
}
.project-detail-secI .container .heading {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .project-detail-secI .container .heading {
    margin-bottom: 40px;
  }
}
.project-detail-secI .container .heading h2 {
  color: var(--primary);
}
.project-detail-secI .container .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  background: var(--primary);
}
@media only screen and (max-width: 768px) {
  .project-detail-secI .container .grid {
    grid-template-columns: 1fr;
  }
}
.project-detail-secI .container .grid .map {
  height: 100%;
}
.project-detail-secI .container .grid .map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media only screen and (max-width: 540px) {
  .project-detail-secI .container .grid .map iframe {
    height: 310px;
  }
}
.project-detail-secI .container .grid .map-content {
  padding: 5rem;
}
@media only screen and (max-width: 1024px) {
  .project-detail-secI .container .grid .map-content {
    padding: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secI .container .grid .map-content {
    padding: 3rem 4rem;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secI .container .grid .map-content {
    padding: 1rem;
  }
}
.project-detail-secI .container .grid .map-content .form-grid {
  --item: 1;
  --gaplr: 60px;
}
.project-detail-secI .container .grid .map-content .form-grid .btn {
  margin-left: auto;
}
.project-detail-secI .container .grid .map-content .form-grid .btn.btn-white-rounded:hover {
  background: #e6e6e6;
  color: rgb(15, 43, 127);
}
.project-detail-secI .container .grid .map-content .form-grid.active::after {
  width: 100%;
}
.project-detail-secI .container .grid .map-content .form-grid::before, .project-detail-secI .container .grid .map-content .form-grid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.project-detail-secI .container .grid .map-content .form-grid .form-group::before {
  background: var(--white);
}
.project-detail-secI .container .grid .map-content .form-grid .form-group::after {
  width: 0;
  background: var(--white);
}
.project-detail-secI .container .grid .map-content .form-grid .form-group input {
  color: var(--white);
  font-family: "CircularPro-Book";
}
.project-detail-secI .container .grid .map-content .form-grid .form-group label {
  color: var(--white);
}
.project-detail-secI .container .grid .map-content .form-grid .form-group label:focus, .project-detail-secI .container .grid .map-content .form-grid .form-group label.valid {
  outline: none;
}
.project-detail-secI .container .grid .map-content .form-grid .form-group label:focus ~ label, .project-detail-secI .container .grid .map-content .form-grid .form-group label.valid ~ label {
  color: var(--white);
}
.project-detail-secI .container .grid .map-content .btn-center {
  text-align: left;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .project-detail-secI .container .grid .map-content .btn-center {
    text-align: center;
  }
}
.project-detail-secI .container .grid .map-content .btn-center .btn {
  margin-top: 45px;
  font-family: "Poppins", serif;
}
@media only screen and (max-width: 540px) {
  .project-detail-secI .container .grid .map-content .btn-center .btn {
    margin-top: 14px;
  }
}

footer .prettify {
  margin-bottom: 74px;
}/*# sourceMappingURL=project-detail.css.map */