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

:root {
  --headerheight: 100px;
  --headerfixed: 75px;
  --projectdetailstrip: 60px;
  --footerstrip: 70px;
  --blue: #1E0F44;
  --green: #8DCE66;
  --purple: #6E1EC4;
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray1: #CCCCCC;
  --gray2: #E3D0FD;
  --gray3: #E9E9E9;
  --container: 1280px;
  --containerfluid: 2rem;
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 1007px) {
  :root {
    --headerheight: 75px;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
  }
}
@media only screen and (max-width: 675px) {
  :root {
    --headerheight: 80.88px;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--text);
}
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, body.overflow-hidden .home-banner {
  width: calc(100% - 10px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header, body.overflow-hidden .home-banner {
    width: 100%;
  }
}

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

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

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}

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

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

h1 {
  font-size: 64px;
  line-height: 1.09375;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 58px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 54px;
  line-height: 1.2;
}

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

.heading h3 {
  font-size: 48px;
  line-height: 1.1;
  font-family: "Optima";
  text-transform: capitalize;
}
@media only screen and (max-width: 1024px) {
  .heading h3 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .heading h3 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 520px) {
  .heading h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 320px) {
  .heading h3 {
    font-size: 28px;
  }
}
.heading.medium h3 {
  font-size: 36px;
}
@media only screen and (max-width: 675px) {
  .heading.medium h3 {
    font-size: 34px;
  }
}
.heading .sub-heading {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .heading .sub-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 675px) {
  .heading .sub-heading {
    font-size: 14px;
  }
}

h4 {
  font-size: 36px;
  line-height: 1.28;
}

h5 {
  font-size: 28px;
  line-height: 1.15;
}

h6 {
  font-size: 20px;
}

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

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

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

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

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
}
.item-md figure img, .item-md figure video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s ease;
}
.item-md::before, .item-md::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.item-md::after {
  content: none;
}
.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;
}

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

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 520px;
  width: 100%;
}
.model .close {
  position: absolute;
  top: 0;
  right: 0;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 520px) {
  .model .close {
    top: 20px;
    right: 20px;
  }
}
.model .close path {
  stroke: var(--black);
}

.uppercase {
  text-transform: uppercase;
}

.text-12 {
  font-size: 12px;
  line-height: 24px;
}

.text-14 {
  font-size: 14px;
  line-height: 26px;
}

.font-100 {
  font-weight: 100;
}

.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-700 {
  font-weight: 700;
}

.font-900 {
  font-weight: 900;
}

.optima {
  font-family: "Optima";
}

.btn {
  --height: 43px;
  --padding: 22px;
  display: inline-block;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  background: var(--white);
  overflow: hidden;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--white);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s ease;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .btn {
    --padding: 16px;
    letter-spacing: 0.8px;
  }
}
.btn:hover {
  background: none;
  color: var(--white);
}
.btn.black {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.btn.black:hover {
  background: none;
  color: var(--black);
}
.btn.w-100 {
  width: 100%;
}

.form {
  --inputsize: 42px;
  --color: var(--black);
  --labelbefore: var(--black);
  --labelafter: rgb(0 0 0 / .5);
  --borderbefore: var(--black);
  --borderafter: var(--secondary);
  --borderwidth: 1px;
  --font: 500;
  --textareaheight: 86px;
  --paddingleftright: 0px;
  --item: 2;
  --gaplr: 19px;
  --gaptb: 20px;
  display: grid;
  grid-template-columns: repeat(var(--item), 1fr);
  gap: var(--gaptb) var(--gaplr);
}
.form .full {
  grid-column-start: 1;
  grid-column-end: calc(var(--item) + 1);
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: 0;
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: calc(var(--inputsize) - var(--borderwidth));
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input {
  height: var(--inputsize);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label {
  line-height: 0px;
  font-size: 14px;
  color: var(--labelafter);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 15px;
  height: calc(var(--textareaheight) - 15px);
}
.form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  top: 0;
  font-size: 14px;
  translate: 0 -50%;
  color: var(--labelafter);
}
.form .form-group textarea ~ label {
  top: 0;
  translate: 0 0;
}
.form .submit-grp {
  text-align: center;
  margin-top: 32px;
}

.banner {
  position: relative;
  position: relative;
}
.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: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.69) 100%);
}
.banner::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: linear-gradient(179.94deg, rgba(0, 0, 0, 0) 0.05%, rgba(0, 0, 0, 0.41) 76.85%);
}
@media (max-height: 700px) {
  .banner.banner2 .bg {
    height: 500px;
  }
}
.banner.banner2 .banner-wrapper {
  top: auto;
  translate: 0 0;
  bottom: 3rem;
}
.banner .bg {
  height: 700px;
  line-height: 0;
}
@media (max-height: 700px) {
  .banner .bg {
    height: 435px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner .bg {
    height: 430px;
  }
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  top: 55%;
  translate: 0 -50%;
}
@media only screen and (max-width: 1024px) {
  .banner .banner-wrapper {
    top: auto;
    translate: 0 0;
    bottom: 19%;
  }
}
.banner .content h1 {
  font-size: 48px;
  color: var(--white);
  font-family: "Optima";
}
@media only screen and (max-width: 1024px) {
  .banner .content h1 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 675px) {
  .banner .content h1 {
    font-size: 35px;
  }
}
.banner .content p {
  color: var(--white);
  font-size: 18px;
}

.swiper-slide {
  height: auto;
}

.swiper-nav.in-title {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0 16px;
}
.swiper-nav.in-title .swiper-prev, .swiper-nav.in-title .swiper-next {
  --btn: 50px;
  height: var(--btn);
  width: var(--btn);
  border: 1px solid var(--black);
  transition: 0.5s ease;
}
.swiper-nav.in-title .swiper-prev path, .swiper-nav.in-title .swiper-next path {
  transition: 0.5s ease;
}
.swiper-nav.in-title .swiper-prev:hover, .swiper-nav.in-title .swiper-next:hover {
  background: var(--black);
}
.swiper-nav.in-title .swiper-prev:hover path, .swiper-nav.in-title .swiper-next:hover path {
  fill: var(--white);
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  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-prev svg, .swiper-prev img {
  transform: scaleX(-1);
}

.swiper-prev.disabled, .swiper-next.disabled {
  opacity: 0.4;
  cursor: no-drop;
}

.container-fluid, .header-wrapper {
  height: 100%;
}

.header-wrapper .colA, .header-wrapper .colB, .header-wrapper .colC {
  height: 100%;
  display: flex;
  align-items: center;
}

.website-content h1 {
  font-size: 56px;
  margin-bottom: 45px;
  text-align: center;
}
@media only screen and (max-width: 365px) {
  .website-content h1 {
    font-size: 32px;
    margin-bottom: 35px;
  }
}
.website-content h2 {
  font-size: 40px;
}
@media only screen and (max-width: 991px) {
  .website-content h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 22px;
  }
}
.website-content h3 {
  font-size: 36px;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.website-content h4 {
  font-size: 22px;
}
.website-content h5 {
  font-size: 20px;
}
.website-content h6 {
  font-size: 18px;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 32px 0 22px;
}
.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 20px;
}
.website-content ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}
.website-content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}
.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.website-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
}

.play-btn {
  --btnsize: 60px;
  --border: 1px;
  --bordercolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
}
.play-btn::before {
  width: 101%;
  height: 101%;
  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: calc(var(--btnsize) * 0.25);
  height: calc(var(--btnsize) * 0.25);
  background: url(../../icon/play.png) no-repeat;
  background-size: 100% auto;
  background-position: 50% 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
  height: var(--headerheight);
  transition: 0.6s ease;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--black);
  z-index: -1;
  height: 0;
  transition: 0.6s ease;
}
header.header-fixed {
  height: var(--headerfixed);
}
header.header-fixed::before {
  height: var(--headerfixed);
}
header.header-fixed .colA {
  padding: 12px 0;
}
@media only screen and (max-width: 1007px) {
  header.header-fixed .colA {
    padding: 5px 0;
  }
}
header .header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper {
    justify-content: space-between;
    padding: 8px 0;
  }
}
header .header-wrapper .colA {
  flex: 0 1 90px;
  transition: 0.6s ease;
}
header .header-wrapper .colA .logo {
  height: 100%;
  transition: 0.6s ease;
}
header .header-wrapper .colA img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.6s ease;
}
header .header-wrapper .colB {
  flex: 1;
  gap: 0 35px;
  padding-left: 4rem;
  padding-right: 2rem;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .colB {
    display: none;
  }
}
header .header-wrapper .colB > li {
  display: inline-block;
  vertical-align: middle;
}
header .header-wrapper .colB > li > a {
  color: var(--white);
  line-height: 1.4;
  text-transform: capitalize;
  transition: 0.5s ease;
}
header .header-wrapper .colB > li > a:hover {
  opacity: 0.6;
}
header .header-wrapper .colB > li.hasDropdown {
  position: relative;
  --triangle: 8px;
}
header .header-wrapper .colB > li.hasDropdown > a {
  padding-right: 25px;
  background: url(../../icon/arrow-down-white.svg) no-repeat;
  background-position: 100% 50%;
}
header .header-wrapper .colB > li.hasDropdown:hover .dropDownMenu {
  opacity: 1;
  pointer-events: all;
}
header .header-wrapper .colB > li.hasDropdown .dropDownMenu {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  width: 230px;
  opacity: 0;
  pointer-events: none;
  padding-top: 10px;
}
header .header-wrapper .colB > li.hasDropdown .dropDownMenu ul {
  position: relative;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
header .header-wrapper .colB > li.hasDropdown .dropDownMenu ul::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  translate: -50% 0;
  width: 0;
  height: 0;
  border-left: var(--triangle) solid transparent;
  border-right: var(--triangle) solid transparent;
  border-bottom: var(--triangle) solid var(--white);
}
header .header-wrapper .colB > li.hasDropdown .dropDownMenu ul li a {
  display: block;
  padding: 6px 20px;
  color: var(--black);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.2px;
  transition: 0.5s ease;
}
header .header-wrapper .colB > li.hasDropdown .dropDownMenu ul li a:hover {
  background: var(--black);
  color: var(--white);
}
@media only screen and (max-width: 1007px) {
  header .header-wrapper .colC {
    display: none;
  }
}
header .header-wrapper .colC .call {
  display: none;
  color: var(--white);
  padding-right: 2rem;
  font-size: 14px;
}
header .header-wrapper .ham-btn {
  display: none;
  height: 28px;
  width: 50px;
  --lineheight: 2px;
  --linewidth2: 35px;
  --linewidth3: 30px;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1007px) {
  header .header-wrapper .ham-btn {
    display: flex;
  }
}
header .header-wrapper .ham-btn:hover span {
  width: 100% !important;
}
header .header-wrapper .ham-btn span {
  display: block;
  height: var(--lineheight);
  background: var(--white);
  transition: 0.7s ease;
}
header .header-wrapper .ham-btn span:nth-child(1) {
  width: 100%;
}
header .header-wrapper .ham-btn span:nth-child(2) {
  width: 70%;
}
header .header-wrapper .ham-btn span:nth-child(3) {
  width: 60%;
}

footer {
  background: var(--black);
  background-size: cover;
  padding: 50px 0 75px;
}
@media only screen and (max-width: 1007px) {
  footer {
    padding: 40px 0 50px;
  }
}
@media only screen and (max-width: 520px) {
  footer {
    padding: 40px 0 calc(var(--footerstrip) + 20px);
  }
}
footer .footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .footer-wrapper ul li {
  display: inline-block;
  vertical-align: middle;
}
footer .footer-wrapper ul li a:not(.btn) {
  text-transform: capitalize;
  color: var(--white);
  transition: 0.5s ease;
}
footer .footer-wrapper ul li a:not(.btn):hover {
  opacity: 0.6;
}
footer .footer-wrapper .colA {
  flex: 0 1 75px;
}
@media only screen and (max-width: 1152px) {
  footer .footer-wrapper .colA {
    flex: 0 1 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  footer .footer-wrapper .colA img {
    max-width: 105px;
  }
}
footer .footer-wrapper .colB {
  flex: 1;
  padding-left: 4rem;
}
@media only screen and (max-width: 1230px) {
  footer .footer-wrapper .colB {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 1152px) {
  footer .footer-wrapper .colB {
    padding-left: 0;
  }
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .colB {
    flex: 0 1 100%;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 3rem;
  }
}
footer .footer-wrapper .colB li:not(:last-child) {
  margin-right: 22px;
}
@media only screen and (max-width: 1230px) {
  footer .footer-wrapper .colB li:not(:last-child) {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .colB li:not(:last-child) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .colB li a {
    padding: 5px 0;
    display: inline-block;
  }
}
footer .footer-wrapper .colC {
  flex: 0 1 auto;
  cursor: default;
}
@media only screen and (max-width: 675px) {
  footer .footer-wrapper .colC {
    flex: 0 1 100%;
    text-align: center;
  }
}
footer .footer-wrapper .colC li a {
  color: rgba(255, 255, 255, 0.8) !important;
}
footer .footer-wrapper .colC li.social-icons {
  margin-left: 32px;
}
@media only screen and (max-width: 1230px) {
  footer .footer-wrapper .colC li.social-icons {
    margin-left: 25px;
  }
}
footer .footer-wrapper .colC li.social-icons a {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}
footer .footer-wrapper .colC li.social-icons a:not(:last-child) {
  margin-right: 15px;
}
footer .footer-wrapper .colC li.social-icons a path {
  transition: 0.5s ease;
}
footer .footer-wrapper .colD {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 0 18px;
  padding-left: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  footer .footer-wrapper .colD {
    padding-left: 20px;
    gap: 0 12px;
  }
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .colD {
    flex: 0 1 100%;
    justify-content: center;
    padding-left: 0;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 520px) {
  footer .footer-wrapper .colD {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 520px) {
  footer .footer-wrapper .colD li {
    flex: 1;
  }
}
footer .footer-wrapper .colD li:has(.get-in-touch) {
  display: none;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper .colD li:has(.get-in-touch) {
    display: block;
  }
}
@media only screen and (max-width: 520px) {
  footer .footer-wrapper .colD li a {
    width: 100%;
    text-align: center;
  }
}
footer .footer-wrapper .colE {
  flex: 0 1 100%;
  text-align: center;
  margin-top: 40px;
}
footer .footer-wrapper .colE p, footer .footer-wrapper .colE span {
  color: var(--white);
  font-size: 14px;
  line-height: 24px;
}
footer .footer-wrapper .colE span, footer .footer-wrapper .colE a {
  display: inline-block;
  vertical-align: middle;
}
footer .footer-wrapper .colE a {
  margin-left: 4px;
  line-height: 0;
}

.enquire-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.7s ease;
}
.enquire-pop.is-open {
  transform: translateX(0%);
}
.enquire-pop .model-body {
  padding: 70px 70px 50px;
  overflow-y: auto;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body {
    padding: 85px 40px 50px;
  }
}
@media only screen and (max-width: 520px) {
  .enquire-pop .model-body {
    padding: 85px 20px 50px;
  }
}
@media only screen and (max-width: 320px) {
  .enquire-pop .model-body {
    padding: 65px 15px 50px;
  }
}
.enquire-pop .model-body .title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body .title {
    margin-bottom: 25px;
  }
}
.enquire-pop .model-body .title h3 {
  text-align: center;
  color: var(--black);
  font-size: 36px;
  font-family: "Optima";
}
.enquire-pop .model-body .form {
  --item: 1;
}

.video-pop {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  transform: translateY(100%);
  transition: 0.7s ease;
  max-width: 100%;
}
.video-pop.is-open {
  transform: translateY(0);
}
.video-pop .close-video {
  top: 30px;
  right: 30px;
}
.video-pop .close-video img {
  filter: invert(1);
}
.video-pop iframe {
  border: 0;
  display: block;
  margin: auto;
  width: 90%;
  height: 80%;
  position: relative;
  top: 50%;
  translate: 0 -50%;
}

.ham-pop {
  right: 0;
  transform: translateX(100%);
  transition: 1s ease;
  background: var(--white) url(../../images/bg1.svg) no-repeat;
  background-position: 100% 90%;
  background-size: 50%;
}
.ham-pop.is-open {
  transform: translateX(0%);
}
.ham-pop .model-body {
  padding: 5rem 3rem 0;
}
@media only screen and (max-width: 520px) {
  .ham-pop .model-body {
    padding: 4rem 2rem 0;
  }
}
.ham-pop .model-body .nav-list {
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 365px) {
  .ham-pop .model-body .nav-list {
    padding-bottom: 32px;
    margin-bottom: 28px;
  }
}
.ham-pop .model-body .nav-list li:not(:last-child) {
  margin-bottom: 35px;
}
.ham-pop .model-body .nav-list li a {
  font-size: 32px;
  line-height: 1;
  font-family: "Optima";
  color: var(--black);
  text-transform: uppercase;
}
@media only screen and (max-width: 520px) {
  .ham-pop .model-body .nav-list li a {
    font-size: 30px;
  }
}
.ham-pop .model-body .nav-list li a:hover {
  opacity: 0.9;
}
.ham-pop .model-body .btm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ham-pop .model-body .btm-nav li a {
  color: var(--black);
}
.ham-pop .model-body .btm-nav li.social-icons a {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}
.ham-pop .model-body .btm-nav li.social-icons a:not(:last-child) {
  margin-right: 15px;
}
@media only screen and (max-width: 520px) {
  .ham-pop .model-body .btm-nav li.social-icons a:not(:last-child) {
    margin-right: 8px;
  }
}
.ham-pop .model-body .btm-nav li.social-icons a path {
  transition: 0.5s ease;
  fill: var(--black);
}
.ham-pop .model-body .btm-nav li.social-icons a:hover path {
  fill: var(--black);
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--black);
  display: none;
}
@media only screen and (max-width: 520px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(192, 149, 89, 0.5);
}
.footer-strip ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  color: var(--white);
}
.footer-strip ul li a img {
  width: 21px;
  filter: invert(1) brightness(5);
}/*# sourceMappingURL=header.css.map */