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

:root {
  --headerpadding: 9px;
  --headerheight: calc(89px + (var(--headerpadding) * 2));
  --headerfixed: 75px;
  --footerstrip: 38px;
  --primary: #FFD06C;
  --secondary: #9F711A;
  --gradient-a: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-b: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #DCDCDC;
  --container: 1280px;
  --containerfluid: 2rem;
}
@media only screen and (max-width: 1366px) {
  :root {
    --homecounterstrip: 75px;
  }
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --headerstrip: 30px;
    --containerfluid: 15px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --mainheader: 65px;
    --headerfixed: 65px;
  }
}
@media only screen and (max-width: 675px) {
  :root {
    --headerstrip: 0px;
  }
}
@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;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Circular";
  font-weight: normal;
  background: var(--black);
}

b {
  font-weight: 600;
}

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

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

svg path {
  transition: 0.5s ease;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@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);
  height: 100%;
  display: block;
  margin: 0 auto;
}

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

h1 {
  font-size: 48px;
  line-height: 1.17;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 40px;
  line-height: 1.05;
}

h3 {
  font-size: 36px;
  line-height: 1.06;
}

.heading h3, .heading h2 {
  font-size: 48px;
  line-height: 1;
  font-family: "Acma";
}
.heading p {
  color: var(--text);
  margin-top: 7px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.heading.h-large h3, .heading.h-large h2 {
  font-size: 64px;
}
.heading.h-medium h3, .heading.h-medium h2 {
  font-size: 40px;
}
.heading.c-white h3, .heading.c-white h2 {
  color: var(--white);
}
.heading.c-white p {
  color: rgba(255, 255, 255, 0.7);
}

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

h5 {
  font-size: 24px;
  line-height: 1.167;
}
@media only screen and (max-width: 1152px) {
  h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

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

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

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

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

.flex {
  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-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;
}
.tab-nav-content .tabs .upper-sec {
  margin-bottom: 1rem;
}

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
.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;
}
.item-md.center figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 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-position: 0% 80%;
  background-size: 75%;
  max-width: 100%;
  width: 100%;
}
.model .close:not(.btn) {
  position: absolute;
  top: 0;
  right: 0;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn) path {
  stroke: var(--black);
}

.btn {
  --height: 45px;
  --padding: 18px;
  width: 146px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  overflow: hidden;
  text-transform: capitalize;
  color: var(--black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s ease;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  background: var(--primary);
  z-index: 1;
  position: relative;
}
.btn::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: var(--gradient-a);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--gradient-b);
}
.btn::before, .btn::after {
  z-index: -1;
  transition: 0.5s ease;
}
.btn::after {
  opacity: 0;
}
.btn:hover::before {
  opacity: 0;
}
.btn:hover::after {
  opacity: 1;
}
.btn:hover path {
  fill: var(--black);
}
.btn.white-border {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn.white-border::before {
  display: none;
}
.btn.white-border:hover {
  border-image-source: var(--gradient-b);
  border-image-repeat: repeat;
  border-image-width: auto;
  border-image-slice: 1;
  color: var(--black);
  border-top-color: var(--gradient-a);
}
.btn.black-border {
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
}
.btn.black-border::before {
  display: none;
}
.btn.black-border:hover {
  border-image-source: var(--gradient-b);
  border-image-repeat: repeat;
  border-image-width: auto;
  border-image-slice: 1;
  color: var(--black);
  border-top-color: var(--gradient-a);
}
.btn.white {
  background: var(--white);
}
.btn.white::before {
  display: none;
}
.btn.line {
  background: transparent;
}
.btn.line::before {
  display: none;
}
.btn.w-100 {
  width: 100%;
}

.btn-btn {
  --arrow: 20px;
  --space: 11px;
  font-size: 14px;
  line-height: 19.28px;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  color: var(--white);
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-right: calc(var(--arrow) + var(--space));
  --arrowwhite: url(../../icon/arrow-right-white.svg);
  --arrowblack: url(../../icon/arrow-right-black.svg);
  --arrowprimary: url(../../icon/arrow-right-primary.svg);
  --arrowsecondary: url(../../icon/arrow-right-secondary.svg);
  --arrowgradient-a: url(../../icon/arrow-right-gradient-a.svg);
}
.btn-btn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  height: var(--arrow);
  width: var(--arrow);
  background-image: var(--arrowwhite);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
  transition: 0.5s ease;
  transform-origin: center right;
}
.btn-btn:hover {
  color: var(--primary);
}
.btn-btn:hover::before {
  background-image: var(--arrowprimary);
  transform: scale(0.8) translateX(-1px);
}
.btn-btn.gradient {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #F5DC8E 0%, #D39029 100%);
}
.btn-btn.gradient::before {
  background-image: var(--arrowgradient-a);
}
.btn-btn.gradient:hover {
  -webkit-text-fill-color: var(--white);
}
.btn-btn.gradient:hover::before {
  background-image: var(--arrowwhite);
}
.btn-btn.black {
  color: var(--black);
}
.btn-btn.black::before {
  background-image: var(--arrowblack);
}
.btn-btn.black:hover {
  color: var(--secondary);
}
.btn-btn.black:hover::before {
  background-image: var(--arrowsecondary);
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 15%;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2217%22%20height%3D%2211%22%20viewBox%3D%220%200%2017%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M15.75%201.875L8.5%209.125L1.25%201.875%22%20stroke%3D%22%23666666%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  background-position: calc(100% - var(--paddingleftright)) 50%;
  background-repeat: no-repeat;
  background-size: auto 15%;
}
.custom-select .current {
  display: block;
  width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-weight: var(--font);
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 10px 20px;
  white-space: break-spaces;
}
@media only screen and (max-width: 420px) {
  .custom-select .list li {
    font-size: 14px;
  }
}
.custom-select .list li.selected {
  background: var(--secondary);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--secondary);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.form {
  --inputsize: 48px;
  --labelbefore: var(--text);
  --labelafter: var(--text);
  --borderbefore: var(--black);
  --borderafter: var(--secondary);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: 500;
  --inputsize: 42px;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
  --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);
}
.form .full {
  grid-column: span var(--item);
}
.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: 0.5px;
  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: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: none;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: #000;
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
  background: var(--labelbackground);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: #000;
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
  background: var(--labelbackground);
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .submit-grp {
  text-align: center;
  margin-top: 23px;
}

.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.85) 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(180deg, rgba(0, 0, 0, 0) 24.5%, rgba(0, 0, 0, 0.85) 100%);
}
.banner .bg {
  height: 100vh;
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  .banner .bg {
    height: 74vh;
  }
}
@media only screen and (max-width: 400px) {
  .banner .bg {
    height: 90vh;
  }
}
.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;
  top: 50%;
  z-index: 1;
}
.banner .banner-wrapper h1, .banner .banner-wrapper p {
  color: var(--white);
}
.banner .banner-wrapper h1 {
  font-size: 64px;
  font-weight: normal;
  line-height: 1;
  font-family: "Acma";
}
@media only screen and (max-width: 767px) {
  .banner .banner-wrapper h1 {
    font-size: 34px;
    line-height: normal;
  }
}
.banner .banner-wrapper p {
  font-size: 18px;
  line-height: 1.34;
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .banner .banner-wrapper p {
    font-size: 16px;
  }
}
.banner .banner-wrapper .scroll-down {
  margin-top: 4rem;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  line-height: 0;
  display: block;
  animation: moveDown 2s ease-in-out infinite alternate;
}
@media only screen and (max-width: 767px) {
  .banner .banner-wrapper .scroll-down {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .banner .banner-wrapper .scroll-down img {
    width: 60%;
  }
}
@keyframes moveDown {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.swiper-nav {
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  .swiper-nav {
    display: none;
  }
}
.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.group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
}
@media only screen and (max-width: 1152px) {
  .swiper-nav.group {
    gap: 0 8px;
  }
}
.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-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.4;
}

.swiper-pagination-bullets {
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-color: #B7B5B5;
  caret-color: transparent;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: #989898;
  opacity: 1;
  caret-color: transparent;
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--black);
}

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

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

.play-btn {
  --btnsize: 56px;
  --border: 2px;
  --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: 50px;
  }
}
@media only screen and (max-width: 675px) {
  .play-btn {
    --btnsize: 45px;
    --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);
}

.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  font-family: "Acma";
  text-align: center;
  font-weight: 800;
}
.website-content h2 {
  font-size: 34px;
  font-weight: 700;
}
.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
  font-weight: 700;
}
.website-content h4 {
  font-size: 22px;
  font-weight: 700;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  font-weight: 700;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.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(--primary);
}
.website-content.website-content-white * {
  color: var(--white);
}

@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.project-col figure, .project-col .figure, .blog-col figure, .blog-col .figure {
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.project-col figure::before, .project-col .figure::before, .blog-col figure::before, .blog-col .figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
}
.project-col figure img, .project-col .figure img, .blog-col figure img, .blog-col .figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.project-col figure:hover::before, .project-col .figure:hover::before, .blog-col figure:hover::before, .blog-col .figure:hover::before {
  animation: shine 0.4s linear;
}

.project-col figure img, .project-col .figure img {
  aspect-ratio: 1.775;
}
.project-col figcaption .fig-top {
  border-bottom: 1px solid var(--gray);
  padding: 16px 21px;
}
.project-col figcaption .fig-top .title {
  font-family: "Acma";
  font-size: 24px;
  line-height: 1.167;
  margin-bottom: 11px;
  color: var(--black);
}
.project-col figcaption .fig-bottom {
  display: flex;
  flex-wrap: wrap;
  --size: 44px;
}
.project-col figcaption .fig-bottom li {
  flex: 0 1 var(--size);
  height: var(--size);
}
.project-col figcaption .fig-bottom li a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.project-col figcaption .fig-bottom li a:hover {
  background: var(--primary);
}
.project-col figcaption .fig-bottom li:first-child {
  flex: 1;
}
.project-col figcaption .fig-bottom li:not(:last-child) {
  border-right: 1px solid var(--gray);
}
.project-col figcaption .fig-bottom li:has(.area) {
  display: flex;
  align-items: center;
  padding: 0 22px;
}
.project-col figcaption .fig-bottom li .area {
  font-size: 14px;
  line-height: 16.87px;
  color: var(--text);
  --arrow: 18px;
  --space: 15px;
  position: relative;
  padding-left: calc(var(--arrow) + var(--space));
}
.project-col figcaption .fig-bottom li .area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  height: var(--arrow);
  width: var(--arrow);
  background-image: url(../../icon/area-gray.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  transition: 0.5s ease;
  transform-origin: center right;
}

.blog-col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background: #000;
}
.blog-col figure, .blog-col .figure {
  flex: 0 1 auto;
  min-height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 32px;
}
.blog-col figure img, .blog-col .figure img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: contain;
  aspect-ratio: 3/1;
}
.blog-col figcaption {
  --padlr: 18px;
  --padtb: 25px;
  --btnheight: 39px;
  --margin: 35px;
  padding: 20px;
  position: relative;
  flex: 1;
}
.blog-col figcaption .blog-title {
  font-family: "Acma";
  font-size: 28px;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-col figcaption .blog-des {
  color: #fff;
  font-size: 16px;
}
.blog-col figcaption span {
  display: block;
  color: #CC9B50;
  padding-top: 12px;
}

.slider-section .upper-sec {
  position: relative;
  margin-bottom: 4.3rem;
}
.slider-section .upper-sec .slider-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  --size: 56px;
  display: flex;
  flex-wrap: wrap;
  width: -moz-max-content;
  width: max-content;
  gap: 8px;
}
.slider-section .upper-sec .slider-nav .swiper-prev, .slider-section .upper-sec .slider-nav .swiper-next {
  width: 46px;
  height: 46px;
  border: 1px solid var(--black);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  position: relative;
  transition: 0.5s ease;
}
.slider-section .upper-sec .slider-nav .swiper-prev::before, .slider-section .upper-sec .slider-nav .swiper-next::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: var(--gradient-a);
}
.slider-section .upper-sec .slider-nav .swiper-prev::before, .slider-section .upper-sec .slider-nav .swiper-next::before {
  z-index: -1;
  opacity: 0;
  transition: 0.5s ease;
}
.slider-section .upper-sec .slider-nav .swiper-prev:hover::before, .slider-section .upper-sec .slider-nav .swiper-next:hover::before {
  opacity: 1;
}
.slider-section .upper-sec .slider-nav .slider-prev img, .slider-section .upper-sec .slider-nav .slider-prev svg {
  transform: scaleX(-1);
}
.slider-section .upper-sec .heading {
  text-align: center;
}

.lctn {
  font-size: 14px;
  line-height: 16.87px;
  color: var(--text);
  --arrow: 20px;
  --space: 5px;
  position: relative;
  padding-left: calc(var(--arrow) + var(--space));
}
.lctn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  height: var(--arrow);
  width: var(--arrow);
  background-image: url(../../icon/location-gradient-a.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  transition: 0.5s ease;
  transform-origin: center right;
}

.common-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 20px;
}
@media only screen and (max-width: 991px) {
  .common-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 18px;
  }
}
@media only screen and (max-width: 675px) {
  .common-grid-wrap {
    grid-template-columns: 100%;
    grid-gap: 10px;
  }
}

.bg-white {
  background: var(--white) !important;
}

.text-black {
  color: var(--black) !important;
}

.relative {
  position: relative;
}

.row {
  display: flex;
}

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

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

.d-content {
  display: contents;
}

.d-block {
  display: block;
}

.justify-center {
  justify-content: center;
}

.m-auto {
  margin: 0 auto;
}

.mt-5 {
  margin-top: 2rem;
}

@media only screen and (max-width: 991px) {
  .Search-Div {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .Search-Div {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }
}
.Search-Div .SearchBtn {
  background: linear-gradient(90deg, #5D4115 0%, #EECE47 100%);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .Search-Div .SearchBtn {
    font-size: 14px;
    height: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .heading {
    text-align: center;
  }
}
.heading h1 {
  font-size: 100px;
  background: linear-gradient(90deg, #9F711A 0%, #FFD06C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Acma";
  text-transform: uppercase;
  display: inline;
}
@media only screen and (max-width: 991px) {
  .heading h1 {
    font-size: 50px;
  }
}

.ViewAll-Btn {
  background: linear-gradient(90deg, #5D4115 0%, #EECE47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
}
.ViewAll-Btn:hover svg {
  transform: translateX(12px);
}

svg {
  transition: 0.4s ease-in-out;
}

.Gradient-Clr {
  font-size: 20px;
  background: linear-gradient(90deg, #5D4115 0%, #CC9B50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}

.text-white {
  color: #fff;
}

.location-menu {
  background: var(--white);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 3px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 0 0 5px 5px;
  margin-top: 0px;
  padding: 15px 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
}
.location-menu ul {
  max-height: 100px;
  overflow-y: auto;
}
.location-menu ul::-webkit-scrollbar {
  width: 2px;
}
.location-menu ul::-webkit-scrollbar-track {
  box-shadow: unset;
  background: #fff;
}
.location-menu ul::-webkit-scrollbar-thumb {
  background: #eece47;
}
.location-menu ul li {
  line-height: normal;
}
.location-menu ul li.not-found {
  padding: 8px 24px;
}
.location-menu ul li a {
  display: block;
  font-size: 14px;
  padding: 8px 24px;
  color: var(--black);
  cursor: pointer;
  caret-color: transparent;
}
.location-menu ul li a:hover {
  background: linear-gradient(90deg, #5D4115 0%, #EECE47 100%);
  color: var(--white);
}

.card {
  width: 100%;
  height: 400px;
  position: relative;
}
.card__side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  backface-visibility: hidden;
  transition: all 0.6s ease;
}
.card__side--front {
  background-size: cover;
  background-position: center;
}
.card__side--front-1 {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.02%, rgba(0, 0, 0, 0.65) 100%), url(../../images/home/service1.png);
}
.card__side--front-2 {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.02%, rgba(0, 0, 0, 0.65) 100%), url(../../images/home/service2.png);
}
.card__side--front-3 {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.02%, rgba(0, 0, 0, 0.65) 100%), url(../../images/home/service3.png);
}
.card__side--front-4 {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.02%, rgba(0, 0, 0, 0.65) 100%), url(../../images/home/service1.png);
}
.card__side h2 {
  height: 100%;
  padding: 1em;
  font-size: 24px;
  font-family: "Circular";
  color: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.card__side a {
  background: var(--white);
  font-size: 16px;
  color: var(--black);
  font-family: "Circular";
  padding: 0.8em 2em;
  border-radius: 25px;
  margin-top: 1rem;
}
.card__side--back {
  color: #FFF;
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background: linear-gradient(90deg, #9F711A 0%, #FFD06C 100%);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotate(0);
}
.card__description {
  padding: 2em;
  text-align: center;
}
@media only screen and (max-width: 551px) {
  .card__description {
    padding: 1rem;
  }
}
.card__description h2 {
  font-size: 24px;
  font-family: "Circular";
  color: var(--black);
  font-weight: 450;
}
.card__description p {
  font-size: 16px;
  font-family: "Circular";
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 2rem;
}

.heading_wrapper {
  text-align: center;
  margin-bottom: 3rem;
}
.heading_wrapper h2 {
  font-size: 60px;
  font-family: "Acma";
  color: rgb(131, 115, 91);
}
@media only screen and (max-width: 1024px) {
  .heading_wrapper h2 {
    font-size: 50px;
  }
}
.heading_wrapper p {
  font-size: 16px;
  font-family: "Circular";
  color: rgb(131, 115, 91);
  margin-top: 1rem;
  max-width: 474px;
  margin: 0 auto;
}

.sticky_action {
  align-items: center;
  gap: 15px;
  position: fixed;
  bottom: 3%;
  left: 3%;
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  .sticky_action {
    display: none;
  }
}
.sticky_action .whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3490196078);
}
.sticky_action .whatsapp img {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  filter: invert(1);
}
.sticky_action .call_action {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3490196078);
}
.sticky_action .call_action img {
  width: 25px;
  height: 25px;
}

.btn-effect {
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
.btn-effect::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171f4b;
  z-index: -1;
  transition: bottom 0.3s ease;
}
.btn-effect:hover {
  background-color: transparent;
  color: #fff;
  transition: bottom 0.3s ease;
}
.btn-effect:hover::before {
  bottom: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--headerheight);
  transition: box-shadow 0s ease, 0.5s ease;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #091b79;
  height: 0;
  z-index: -1;
  transition: 0.5s ease;
}
header.header-fill::before {
  height: 100%;
}
header.header-fixed, header.header-fixed-fill {
  height: var(--headerfixed);
}
header.header-fixed::before, header.header-fixed-fill::before {
  height: var(--headerfixed);
}
header .header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: calc(100% - var(--headerpadding) * 2);
  margin: var(--headerpadding) 0;
}
header .header-wrapper a, header .header-wrapper button {
  font-size: 14px;
  line-height: 19.28px;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  color: var(--white);
  transition: 0.5s ease;
}
header .header-wrapper a:hover, header .header-wrapper button:hover {
  color: var(--primary);
}
header .header-wrapper a:hover path, header .header-wrapper button:hover path {
  fill: var(--primary);
}
header .header-wrapper .colA, header .header-wrapper .colC {
  flex: 1;
}
header .header-wrapper .colB {
  flex: 0 1 144px;
}
header .header-wrapper .colB a, header .header-wrapper .colB img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-wrapper .nav {
  flex: 0 0 44%;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .nav {
    display: none;
  }
}
header .header-wrapper .nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
header .header-wrapper .colC {
  justify-content: flex-end;
}
header .header-wrapper .colC ul li {
  display: inline-block;
  vertical-align: middle;
}
header .header-wrapper .colC ul li:not(:last-child) {
  margin-right: 2rem;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .colC ul li:not(:last-child) {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  header .header-wrapper .colC ul li:nth-child(3) {
    display: none;
  }
}
header .header-wrapper .colC ul a {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
}
header .header-wrapper .ham-btn {
  display: flex;
  align-items: center;
  gap: 23px;
  --border: 2px;
  --background: var(--white);
}
header .header-wrapper .ham-btn:hover {
  --background: var(--primary);
}
header .header-wrapper .ham-btn span {
  display: block;
  width: 53px;
  height: 11px;
  position: relative;
}
header .header-wrapper .ham-btn span::before, header .header-wrapper .ham-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--border);
  background: var(--background);
  transition: 0.5s ease;
}
header .header-wrapper .ham-btn span::before {
  top: 0;
}
header .header-wrapper .ham-btn span::after {
  bottom: 0;
}
header .header-wrapper .property-btn {
  display: inline-flex;
  align-items: center;
  gap: 27px;
}

.ham-pop {
  right: 0;
  max-width: 480px;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.9s ease;
  background: #fff;
  width: 30% !important;
}
.ham-pop::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: url(../../images/home/projects-bg.png) no-repeat;
}
@media only screen and (max-width: 991px) {
  .ham-pop {
    transform: translateX(100%);
  }
}
@media only screen and (max-width: 768px) {
  .ham-pop {
    width: 100% !important;
  }
}
@media only screen and (min-width: 1007px) {
  .ham-pop.ham-animate::after {
    transform: translateY(0%);
  }
}
.ham-pop::after {
  filter: invert(1);
  transition: 2s ease 0.1s;
  background-position: 88% 100%;
  background-size: auto 68%;
}
@media only screen and (min-width: 1007px) {
  .ham-pop::after {
    transform: translateY(0);
  }
}
.ham-pop.is-open {
  transform: translateX(0%);
}
.ham-pop .close path {
  stroke: var(--text);
  stroke-width: 2;
}
.ham-pop .model-body {
  padding: 70px 52px 70px;
  background-position: 100% 100%;
  height: 100%;
  overflow-y: auto;
}
.ham-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: rgba(204, 204, 204, 0.8);
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .ham-pop .model-body {
    padding: 60px 25px 20px;
  }
}
.ham-pop .model-body .ico {
  margin-bottom: 3rem;
}
.ham-pop .model-body .nav-list li:not(:last-child) {
  margin-bottom: 22px;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.ham-pop .model-body .nav-list li a {
  font-size: 32px;
  line-height: 1;
  color: var(--black);
  display: inline-block;
  font-family: "Acma";
  text-transform: uppercase;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list li a {
    font-size: 28px;
  }
}
@media only screen and (max-width: 675px) {
  .ham-pop .model-body .nav-list li a {
    font-size: 24px;
  }
}
.ham-pop .model-body .nav-list li a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}
.ham-pop .model-body .bottom-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 5rem;
}
.ham-pop .model-body .bottom-nav a {
  color: rgba(0, 0, 0, 0.6);
}
.ham-pop .model-body .bottom-list {
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
}
.ham-pop .model-body .bottom-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-a);
}
.ham-pop .model-body .bottom-list .social-icons {
  margin-bottom: 2rem;
}
.ham-pop .model-body .bottom-list .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 15px;
}
.ham-pop .model-body .bottom-list .social-icons a path {
  transition: 0.5s ease;
}
.ham-pop .model-body .bottom-list .social-icons a:hover path {
  fill: var(--secondary);
}

.enquire-pop {
  right: 0;
  max-width: 480px;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.7s ease;
  position: fixed;
  z-index: 9999;
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .enquire-pop {
    width: 100%;
  }
}
.enquire-pop::before {
  z-index: 2;
}
.enquire-pop.is-open {
  transform: translateX(0%);
  width: 30%;
}
@media only screen and (max-width: 675px) {
  .enquire-pop.is-open {
    width: 100%;
  }
}
.enquire-pop .close {
  display: flex;
  align-items: center;
  gap: 0 10px;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .close {
    top: 20px;
    right: 20px;
  }
}
.enquire-pop .close path {
  stroke: var(--black);
}
.enquire-pop .model-body {
  padding: 60px 42px 20px;
  height: 100%;
  overflow-y: auto;
}
.enquire-pop .model-body::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body {
    padding: 40px 25px 50px;
  }
}
.enquire-pop .model-body .title {
  margin-bottom: 35px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body .title {
    margin-bottom: 25px;
  }
}
.enquire-pop .model-body .title .ico {
  display: block;
  margin: 0 auto;
  max-width: 75px;
  margin-bottom: 15px;
}
.enquire-pop .model-body .title .ico svg {
  width: 100%;
  height: auto;
}
.enquire-pop .model-body .title h3 {
  text-align: center;
  font-family: "Acma";
}
.enquire-pop .model-body .title p {
  text-align: center;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  text-transform: capitalize;
  margin-top: 10px;
}
.enquire-pop .model-body .form {
  --bacground: var(--white);
  --label: rgb(0 0 0 / .6);
  --color: var(--text);
  --font: 400;
  --border: var(--pink);
  gap: 18px 0;
}
.enquire-pop .model-body .form .submit-grp .btn {
  --padding: 40px;
}

.video-pop {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9;
  transform: translateY(100%);
  transition: 0.7s ease;
  position: fixed;
  max-width: 100%;
}
.video-pop.is-open {
  transform: translateY(0%);
}
.video-pop .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
}
@media only screen and (max-width: 675px) {
  .video-pop .close-video {
    right: 0px;
  }
}
.video-pop .close-video path {
  stroke: var(--white) !important;
}
.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}
.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 1px solid var(--white);
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--gradient-a);
  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(--black);
  font-size: 14px;
}
.footer-strip ul li a svg {
  width: 20px;
  height: 20px;
}
.footer-strip ul li a svg path {
  fill: var(--black);
}

.footer-2-sec {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
  background: rgb(23, 31, 75);
}
.footer-2-sec .footer2 {
  display: grid;
  grid-template-columns: 50% 50%;
  background-color: inherit;
}
@media only screen and (max-width: 767px) {
  .footer-2-sec .footer2 {
    grid-template-columns: 1fr;
  }
}
.footer-2-sec .contact-info {
  padding-top: 62px;
  padding-bottom: 62px;
}
@media only screen and (max-width: 1230px) {
  .footer-2-sec .contact-info {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-2-sec .contact-info {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
    border-right: none;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-2-sec .contact-info {
    padding: 30px 0;
  }
}
.footer-2-sec .contact-info h2 {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.5019607843);
  margin-top: 40px;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 540px) {
  .footer-2-sec .contact-info h2 {
    font-size: 16px;
    text-align: center;
    line-height: 26px;
    padding: 1rem 20px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer-2-sec .contact-info h2 {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-2-sec .contact-info ul {
    padding-left: 36px;
  }
}
@media only screen and (max-width: 551px) {
  .footer-2-sec .contact-info ul {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 400px) {
  .footer-2-sec .contact-info ul {
    padding-left: 20px;
  }
}
.footer-2-sec .contact-info li {
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 16px;
  padding-top: 15px;
  display: flex;
  align-items: center;
}
.footer-2-sec .contact-info li .btn {
  color: #000;
}
.footer-2-sec .contact-info li:last-child {
  gap: 1rem;
  margin-top: 1rem;
}
.footer-2-sec .contact-info li:last-child a {
  width: 138px;
  height: 40px;
  border-radius: 25px;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .footer-2-sec .contact-info li:last-child a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-2-sec .contact-info li:last-child a {
    font-size: 14px;
    width: 120px;
  }
}
.footer-2-sec .contact-info li:last-child a:last-child {
  background: linear-gradient(90deg, #5D4115 0%, #EECE47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #EECE47;
}
@media only screen and (max-width: 1230px) {
  .footer-2-sec .contact-info li {
    font-size: 22px;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-2-sec .contact-info li {
    font-size: 16px;
  }
}
.footer-2-sec .contact-info li a {
  color: rgba(255, 255, 255, 0.5019607843);
}
.footer-2-sec .contact-info li a img {
  padding-right: 17px;
}
.footer-2-sec .about-company-info {
  padding: 110px 0;
  display: flex;
}
@media only screen and (max-width: 1230px) {
  .footer-2-sec .about-company-info {
    padding: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-2-sec .about-company-info {
    padding: 0px;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    gap: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-2-sec .about-company-info {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 551px) {
  .footer-2-sec .about-company-info {
    padding: 40px;
  }
}
@media only screen and (max-width: 400px) {
  .footer-2-sec .about-company-info {
    padding: 40px 20px;
  }
}
.footer-2-sec .about-company-info .col-A, .footer-2-sec .about-company-info .col-B {
  flex: 1;
}
.footer-2-sec .about-company-info .col-A li, .footer-2-sec .about-company-info .col-B li {
  font-weight: 450;
  font-size: 24px;
  line-height: 30.36px;
  padding-bottom: 30px;
  color: var(--white);
}
@media only screen and (max-width: 1230px) {
  .footer-2-sec .about-company-info .col-A li, .footer-2-sec .about-company-info .col-B li {
    font-size: 22px;
  }
}
@media only screen and (max-width: 540px) {
  .footer-2-sec .about-company-info .col-A li, .footer-2-sec .about-company-info .col-B li {
    padding-bottom: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-2-sec .about-company-info .col-A li, .footer-2-sec .about-company-info .col-B li {
    font-size: 22px;
  }
}
.footer-2-sec .about-company-info .col-A a, .footer-2-sec .about-company-info .col-B a {
  color: var(--white);
  transition: 0.5 ease;
}
.footer-2-sec .about-company-info .col-A a:hover, .footer-2-sec .about-company-info .col-B a:hover {
  padding-left: 10px;
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .footer-2-sec .about-company-info .col-A a, .footer-2-sec .about-company-info .col-B a {
    font-size: 14px;
  }
}

.footer-bottom {
  background: rgb(23, 31, 75);
}
.footer-bottom .footer-bottom-content {
  padding-top: 15px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    padding: 8px 0;
  }
}
.footer-bottom .footer-bottom-content p {
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
  color: #9C9A9A;
}
.footer-bottom .footer-bottom-content .made-by-text {
  display: flex;
  align-items: center;
  color: #9C9A9A !important;
}
@media only screen and (max-width: 540px) {
  .footer-bottom .footer-bottom-content .made-by-text {
    color: #9c9888;
    font-family: "CircularPro";
  }
}
@media only screen and (max-width: 767px) {
  .footer-bottom .footer-bottom-content .made-by-text {
    justify-content: center;
  }
}
.footer-bottom .footer-bottom-content .made-by-text span {
  color: #9C9A9A !important;
  padding-right: 10px;
  font-family: "Circular";
}
.footer-bottom .footer-bottom-content .made-by-text a {
  display: flex;
}

.footer-video {
  position: relative;
  line-height: 0px;
}
.footer-video::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.65) 100%);
}
@media only screen and (max-width: 991px) {
  .footer-video .bg {
    height: 50vh;
  }
}
.footer-video .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-video .content-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
  z-index: 1;
}
.footer-video .content-wrapper h2 {
  font-size: 130px;
  font-family: "Acma";
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .footer-video .content-wrapper h2 {
    font-size: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-video .content-wrapper h2 {
    font-size: 50px;
  }
}/*# sourceMappingURL=header.css.map */