@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.form {
  --inputsize: 42px;
  --labelbefore: var(--secondary);
  --labelafter: var(--secondary);
  --borderbefore: var(--secondary);
  --borderafter: var(--primary);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.hasCalender {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%237E84A3' d='M19 4h-2V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3m1 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-7h16Zm0-9H4V7a1 1 0 0 1 1-1h2v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h2a1 1 0 0 1 1 1Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.form .form-group.hasCalender.hasCalender-white {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'><path fill='%23ffffff' d='M19 4h-2V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3m1 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-7h16Zm0-9H4V7a1 1 0 0 1 1-1h2v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h2a1 1 0 0 1 1 1Z'/></svg>");
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--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: var(--labelbackground);
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  font-weight: 500;
}
.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: #333;
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  font-weight: 500;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: #333;
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  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);
  font-weight: 500;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

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

.daterangepicker {
  font-family: "Zolina" !important;
}
.daterangepicker option.disabled, .daterangepicker td.disabled {
  text-decoration: none !important;
}
.daterangepicker td.active {
  background-color: var(--secondary) !important;
}
.daterangepicker .drp-buttons .btn {
  --height: 30px;
  padding: 0 15px !important;
  font-weight: 400 !important;
  font-size: 12px !important;
}

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

:root {
  --headerpadding: 12px;
  --headerheight: 100px;
  --headerfixed: 60px;
  --footerstrip: 38px;
  --filterstrip: 44px;
  --detailstrip: 40px;
  --primary: #F9EAA1;
  --secondary: #D99C3B;
  --text: rgba(255, 255, 255, 0.7);
  --white: #FFFFFF;
  --black: #000000;
  --gray: #F2F2F2;
  --gradient: linear-gradient(90deg, #D99C3B 0%, #F9EAA1 100%);
  --gradient-b: linear-gradient(90deg, #403F3F 0%, #161515 100%);
  --gradient-c: linear-gradient(90deg, rgba(51, 51, 51, 0.3) 0%, rgba(102, 102, 102, 0.3) 100%);
  --container: 1280px;
  --containerfluid: 2rem;
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
    --headerpadding: 12px;
    --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;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Scandia";
  font-weight: 400;
}

b {
  font-weight: 500;
}

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

select {
  display: none;
}

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

svg path {
  transition: 0.5s ease;
}

.position-relative {
  position: relative;
}

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

.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);
  display: block;
  margin: 0 auto;
}

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

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

h1 {
  font-size: 64px;
  line-height: 1.05;
}
@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, .heading h2 {
  font-size: 60px;
  line-height: 1.349;
  color: var(--black);
  font-family: "Zolina";
}
.heading h3 span, .heading h2 span {
  font-family: "Scandia";
}
.heading.c-white h2, .heading.c-white h3, .heading.c-white p {
  color: var(--white);
}
.heading.c-primary h2, .heading.c-primary h3 {
  color: var(--primary);
}
.heading.h-medium h3, .heading.h-medium h2 {
  font-size: 48px;
}
.heading.h-small h3, .heading.h-small h2 {
  font-size: 36px;
}
.heading.h-small h3 span, .heading.h-small h2 span {
  font-size: 1.3333em;
}
.heading.font-1 h3, .heading.font-1 h2 {
  font-family: "Zolina";
  font-weight: 400;
}
.heading.font-1 h3 span, .heading.font-1 h2 span {
  font-family: "Scandia";
}
.heading h6 {
  font-size: 18px;
  line-height: 1.3023;
  font-weight: 400;
}

.sub-title {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Zolina";
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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 {
  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: none;
}
.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%;
  position: relative;
}
.item-md figure::before, .item-md .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);
  z-index: 1;
}
.item-md figure:hover::before, .item-md .figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.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: 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%);
}

.btn {
  --height: 44px;
  --padding: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  overflow: hidden;
  text-transform: capitalize;
  color: var(--black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  transition: 0.5s ease;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid var(--primary);
  background: var(--primary);
  font-weight: 500;
  border-radius: 30px;
  z-index: 1;
  color: var(--white);
  font-family: "Scandia";
}
.btn.btn-btn {
  border-radius: 5px;
}
.btn path {
  fill: var(--white);
}
.btn.box {
  width: var(--height);
  padding: 0;
  border-radius: 50%;
}
.btn:hover:not(.ho-hover-btn) {
  background: none;
  color: var(--primary);
}
.btn:hover path {
  fill: var(--primary);
}
.btn.small-btn {
  --height: 32px;
  --padding: 10px;
  font-size: 13px;
}
.btn.medium-btn {
  --height: 45px;
}
.btn.red {
  background: #BB0202;
  border-color: #BB0202;
}
.btn.white-border {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
.btn.white-border path {
  fill: var(--white);
}
.btn.white-border:hover:not(.ho-hover-btn) {
  background: var(--white);
  color: var(--black);
}
.btn.white-border:hover:not(.ho-hover-btn) path {
  fill: var(--black);
}
.btn.gradient-border {
  background: none;
  border-color: var(--primary);
  color: var(--primary);
}
.btn.gradient-border path {
  fill: var(--white);
}
.btn.gradient-border:hover:not(.ho-hover-btn) {
  background: var(--white);
  color: var(--black);
}
.btn.gradient-border:hover:not(.ho-hover-btn) path {
  fill: var(--black);
}
.btn.black-border {
  background: none;
  border-color: var(--black);
  color: var(--black);
}
.btn.black-border path {
  fill: var(--black);
}
.btn.black-border:hover:not(.ho-hover-btn) {
  background: var(--black);
  color: var(--white);
}
.btn.black-border:hover:not(.ho-hover-btn) path {
  fill: var(--white);
}
.btn.primary-border {
  background: none;
  border-color: var(--primary);
  color: var(--primary);
}
.btn.primary-border path {
  fill: var(--primary);
}
.btn.primary-border:hover:not(.ho-hover-btn) {
  background: var(--primary);
  color: var(--white);
}
.btn.primary-border:hover:not(.ho-hover-btn) path {
  fill: var(--white);
}
.btn.white {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn.white path {
  fill: var(--black);
}
.btn.white:hover:not(.ho-hover-btn) {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
.btn.white:hover:not(.ho-hover-btn) path {
  fill: var(--white);
}
.btn.gradient {
  background: var(--gradient);
  border-color: var(--gradient);
  color: var(--black);
}
.btn.gradient path {
  fill: var(--black);
}
.btn.gradient:hover:not(.ho-hover-btn) {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
.btn.gradient:hover:not(.ho-hover-btn) path {
  fill: var(--white);
}
.btn.black {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn.black path {
  fill: var(--white);
}
.btn.black:hover:not(.ho-hover-btn) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
}
.btn.black:hover:not(.ho-hover-btn) path {
  fill: var(--black);
}
.btn.w-100 {
  width: 100%;
}

.btn2 {
  --arrowsize: 30px;
  --space: 5px;
  color: var(--secondary);
  position: relative;
  padding-right: calc(var(--arrowsize) + var(--space));
  transition: 0.5s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: "Scandia";
}
.btn2.gradient {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #D99C3B 0%, #F9EAA1 100%);
}
.btn2.gradient:hover {
  -webkit-text-fill-color: var(--white);
}
.btn2.gradient:hover::before {
  background-image: url(../../icon/arrow-next-white.svg);
}
.btn2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  height: 20px;
  width: 20px;
  background-image: url(../../icon/arrow-next-secondary.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
  transition: 0.5s ease;
  transform-origin: center right;
}

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

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
.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: var(--primary);
  border: 1px solid var(--primary);
  transition: 0.5s ease;
}
.swiper-prev.swiper-btn-medium, .swiper-next.swiper-btn-medium {
  --size: 35px;
}
.swiper-prev path, .swiper-next path {
  fill: var(--white);
}
.swiper-prev:hover:not(.swiper-button-disabled), .swiper-next:hover:not(.swiper-button-disabled) {
  background: var(--white);
  border-color: var(--white);
}
.swiper-prev:hover:not(.swiper-button-disabled) path, .swiper-next:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.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: var(--white);
  border-color: var(--white);
}
.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: var(--primary);
  border-color: var(--primary);
}
.swiper-prev.white:hover:not(.swiper-button-disabled) path, .swiper-next.white:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.primary-border, .swiper-next.primary-border {
  border-color: var(--primary);
  background: none;
}
.swiper-prev.primary-border path, .swiper-next.primary-border path {
  fill: var(--primary);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled), .swiper-next.primary-border:hover:not(.swiper-button-disabled) {
  background: var(--primary);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled) path, .swiper-next.primary-border:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.white-border, .swiper-next.white-border {
  border-color: var(--white);
  background: none;
}
.swiper-prev.white-border path, .swiper-next.white-border path {
  fill: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled) path, .swiper-next.white-border:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.swiper-prev.gray-border, .swiper-next.gray-border {
  border-color: var(--primary);
  background: none;
}
.swiper-prev.gray-border path, .swiper-next.gray-border path {
  fill: var(--primary);
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled), .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
  background: var(--gradient);
  border: var(--secondary);
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled) path, .swiper-next.gray-border:hover:not(.swiper-button-disabled) path {
  fill: var(--black);
}
.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: var(--white);
}
.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: 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 * {
  color: var(--white) !important;
}
.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content > :last-child {
  margin-bottom: 0 !important;
}
.website-content span {
  font-family: "Scandia" !important;
}
.website-content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
  font-family: "Zolina";
}
@media only screen and (max-width: 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 520px) {
  .website-content h1 {
    font-size: 30px;
  }
}
.website-content h2 {
  font-size: 34px;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}
.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  font-weight: 500;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 22px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  word-spacing: -0.07em;
  font-weight: 500;
}
.website-content p b, .website-content li b {
  font-weight: 600;
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 30px;
}
.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-medium h2, .website-content.website-content-medium h3, .website-content.website-content-medium h4 {
  margin: 20px 0 18px;
  font-size: 20px;
  font-weight: 500;
}
.website-content.website-content-medium h5, .website-content.website-content-medium h6 {
  font-size: 18px;
  font-weight: 500;
}
.website-content.website-content-medium p, .website-content.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) 0%, rgba(0, 0, 0, 0.95) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 35.5%, #000000 100%);
}
.banner.center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
}
@media only screen and (max-width: 675px) {
  .banner.center-banner .banner-wrapper {
    bottom: 20%;
    translate: none;
    top: auto;
  }
}
.banner .bg {
  height: 100vh;
  line-height: 0;
}
@media only screen and (max-width: 1152px) {
  .banner .bg {
    height: 566px;
  }
}
@media only screen and (max-width: 991px) {
  .banner .bg {
    height: 432px;
  }
}
@media only screen and (max-width: 767px) {
  .banner .bg {
    height: 85vh;
  }
}
.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;
  bottom: 10%;
  z-index: 1;
}
.banner .content.content-white h1, .banner .content.content-white p, .banner .content.content-white h5, .banner .content.content-white h6, .banner .content.content-white h4 {
  color: var(--white);
}
.banner .content.title-l {
  max-width: 656px;
  margin-left: auto;
  margin-right: auto;
}
.banner .content.title-l h1 {
  font-family: Zolina;
  font-size: 70px;
  font-weight: 300;
  line-height: 68px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1366px) {
  .banner .content.title-l h1 {
    font-size: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .banner .content.title-l h1 {
    font-size: 45px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .banner .content.title-l h1 {
    font-size: 35px;
    line-height: 45px;
  }
}
.banner .content.title-l p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 24px;
  font-family: "Scandia";
}
.banner .content.title-m h1 {
  font-size: 60px;
  line-height: 1.349;
}
.banner .content.title-m h1:has(+ *) {
  margin-bottom: 10px;
}
.banner .content h5:has(+ *) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .banner .content h5:has(+ *) {
    margin-bottom: 14px;
  }
}
.banner .content h1 {
  font-size: 48px;
  line-height: normal;
  font-family: "Didot";
}
@media only screen and (max-width: 520px) {
  .banner .content h1 {
    font-size: 32px;
  }
}
.banner .content h1 span {
  font-weight: 400;
  display: block;
  line-height: normal;
  font-family: "Zolina";
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.banner .content h5 {
  font-size: 20px;
  line-height: 1.34;
}
@media only screen and (max-width: 991px) {
  .banner .content h5 {
    font-size: 16px;
  }
}
.banner .content h6 {
  font-size: 18px;
  line-height: 1.44;
  font-weight: 400;
}
.banner .content h4 {
  font-family: "Zolina";
  font-size: 24px;
  font-weight: 500;
  line-height: 1.166;
}
@media only screen and (max-width: 1366px) {
  .banner .content h4 {
    font-size: 22px;
  }
}
.banner .content p {
  font-weight: 500;
}
.banner .scroll-btn {
  --btnsize: 45px;
  height: var(--btnsize);
  width: calc(var(--btnsize) * 0.667);
  border-radius: 20px;
  border: 1px solid var(--white);
  margin-top: 5rem;
}
@media only screen and (max-width: 675px) {
  .banner .scroll-btn {
    --btnsize: 45px;
  }
}
.banner .scroll-btn.black-scroll-btn {
  border-color: var(--black);
}
.banner .scroll-btn.black-scroll-btn span {
  background: var(--black);
}
.banner .scroll-btn span {
  display: block;
  margin: 0 auto;
  width: 2px;
  height: calc(var(--btnsize) * 0.23);
  border-radius: 25%;
  background: var(--white);
  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;
  }
}

.testimonial-col {
  border-radius: 10px;
  overflow: hidden;
}
.testimonial-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 3.28%, rgba(0, 0, 0, 0.7) 97.73%);
}
.testimonial-col figcaption {
  padding: 0 32px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .testimonial-col figcaption {
    padding: 0 15px 25px;
  }
}
.testimonial-col figcaption .inf {
  flex: 1;
  padding-right: 1rem;
  color: var(--white);
}
.testimonial-col figcaption .inf h6 {
  font-size: 20px;
  line-height: 1.302;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .testimonial-col figcaption .inf h6 {
    font-size: 18px;
  }
}
.testimonial-col figcaption .inf p {
  font-size: 14px;
  line-height: 1.3021428571;
}
.testimonial-col figcaption .play-btn {
  flex: 0 1 auto;
}
@media only screen and (max-width: 767px) {
  .testimonial-col figcaption .play-btn {
    --btnsize: 38px;
  }
}

.project-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.project-col:hover figure img {
  transform: scale(1.05);
}
.project-col figure {
  position: relative;
  overflow: hidden;
}
.project-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);
  z-index: 1;
}
.project-col figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.project-col figcaption {
  padding: 0 35px 35px;
}
.project-col figcaption h6, .project-col figcaption p {
  color: var(--white);
}
.project-col figcaption h6 {
  font-family: "Scandia";
  font-size: 36px;
  line-height: normal;
}
.project-col figcaption p {
  margin-top: 2px;
  max-width: 466px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

.service-col .figure {
  display: block;
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.service-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);
  z-index: 1;
}
.service-col .figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.service-col .figure img {
  width: 100%;
  transition: 0.5s ease;
}
.service-col .figure:hover img {
  transform: scale(1.05);
}
.service-col .figcaption {
  padding-top: 25px;
}
.service-col .figcaption .ttl {
  display: block;
  font-family: "Scandia";
  font-size: 36px;
  line-height: normal;
  color: var(--black);
}
.service-col .figcaption .ttl:is(a):hover {
  color: var(--primary);
}
.service-col .figcaption p {
  margin-top: 10px;
  color: var(--text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog-col figcaption .clndr {
  margin-bottom: 20px;
}

.project-nav {
  margin-bottom: 62px;
}
.project-nav li {
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.28;
  color: var(--text);
  position: relative;
  transition: 0.5s ease;
  padding-bottom: 16px;
}
.project-nav li::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(--black);
}
.project-nav li::before {
  top: auto;
  height: 2px;
  width: 0;
  transition: 0.5s ease;
}
.project-nav li:not(:last-child) {
  margin-right: 77px;
}
.project-nav li.active {
  color: var(--black);
}
.project-nav li.active::before {
  width: 100%;
}

.slider-section .upper-sec {
  margin-bottom: 54px;
  position: relative;
}
.slider-section .upper-sec .slider-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.content-about .desc {
  margin: 20px 0 60px;
  max-width: 507px;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  .content-about .desc {
    margin: 0px;
  }
}
.content-about .desc p {
  font-family: "Scandia";
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.content-about .desc p:not(:last-child) {
  margin-bottom: 15px;
}

.property-col {
  --pad-b: 43px;
  --pad-l: 35px;
  --pad-r: 20px;
  --wtspsize: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 1330px) {
  .property-col {
    --pad-b: 30px;
    --pad-l: 20px;
    --pad-r: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .property-col {
    --pad-b: 20px;
    --pad-l: 15px;
    --pad-r: var(--pad-l);
    --wtspsize: 38px;
  }
}
.property-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%);
}
.property-col.property-col-small {
  --pad-b: 35px;
  --pad-l: 22px;
  --pad-r: 18px;
  --wtspsize: 42px;
}
@media only screen and (max-width: 991px) {
  .property-col.property-col-small {
    --pad-b: 20px;
    --pad-l: 15px;
    --pad-r: var(--pad-l);
    --wtspsize: 38px;
  }
}
.property-col.property-col-small figcaption .fig-bottom > *:not(:last-child) {
  margin-right: 8px;
}
.property-col.property-col-small figcaption .fig-bottom .btn {
  font-size: 14px;
  --padding: 18px;
}
.property-col figure, .property-col .figure {
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.property-col figure::before, .property-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);
}
.property-col figure img, .property-col .figure img {
  aspect-ratio: 1.3;
  -o-object-position: right;
     object-position: right;
  width: 100%;
}
.property-col figcaption {
  padding: 0 var(--pad-r) var(--pad-b) var(--pad-l);
  transform: translateY(calc(var(--pad-b) + var(--wtspsize)));
  transition: 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .property-col figcaption {
    transform: none;
    top: 0;
    padding-top: var(--pad-b);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
  }
}
.property-col figcaption .fig-top {
  padding-bottom: var(--pad-b);
  transition: 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-top {
    padding-bottom: 0;
    pointer-events: all;
  }
}
.property-col figcaption .fig-top h6 {
  font-family: "Scandia";
  font-size: 24px;
  line-height: 1.34;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 8px;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-top h6 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  .property-col figcaption .fig-top h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-bottom {
    pointer-events: all;
  }
}
.property-col figcaption .fig-bottom > *:not(:last-child) {
  margin-right: 18px;
}
@media only screen and (max-width: 1330px) {
  .property-col figcaption .fig-bottom > *:not(:last-child) {
    margin-right: 10px;
  }
}
.property-col figcaption .fig-bottom .wtsp-btn {
  --height: var(--wtspsize);
  margin-left: 12px;
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-bottom .wtsp-btn {
    position: absolute;
    margin-left: 0;
    top: var(--pad-b);
    right: var(--pad-l);
    z-index: 2;
  }
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-bottom .wtsp-btn svg, .property-col figcaption .fig-bottom .wtsp-btn img {
    width: 18px;
    height: auto;
  }
}
.property-col figcaption .fig-bottom .wtsp-btn:hover {
  background: #25D366;
  border-color: #25D366;
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-bottom .uzax, .property-col figcaption .fig-bottom .bitu {
    display: none;
  }
}
.property-col:hover figure::before {
  animation: shine 0.4s linear;
}
.property-col:hover figcaption {
  transform: translateY(0);
}
.property-col:hover figcaption .fig-top {
  padding-bottom: 28px;
}
@media only screen and (max-width: 991px) {
  .property-col:hover figcaption .fig-top {
    padding-bottom: 0;
  }
}

.nav-group-tab {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.nav-group-tab .swiper-progress {
  color: var(--white);
  flex: 1;
  padding: 0 21px;
}
.nav-group-tab .swiper-prev, .nav-group-tab .swiper-next {
  flex: 0 1 auto;
}

.lctn {
  font-family: "Scandia";
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: var(--white);
  --arrow: 20px;
  --space: 5px;
  position: relative;
  padding-left: calc(var(--arrow) + var(--space));
}
@media only screen and (max-width: 345px) {
  .lctn {
    font-size: 12px;
  }
}
.lctn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  height: var(--arrow);
  width: var(--arrow);
  background-image: url(../../icon/location-white.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  transition: 0.5s ease;
  transform-origin: center right;
}
.lctn.clndr {
  color: var(--white);
  --arrow: 17px;
  --space: 12px;
}
.lctn.clndr::before {
  background-image: url(../../icon/calender.svg);
}

@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.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);
  }
}
@media only screen and (max-width: 767px) {
  .common-grid-wrap {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px 20px;
  }
}

.common-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 20px;
}
@media only screen and (max-width: 991px) {
  .common-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .common-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px 20px;
  }
}

.property-col::before, .blog-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%);
}
.property-col figure img, .blog-col figure img {
  aspect-ratio: 0.872;
}
.property-col figcaption, .blog-col figcaption {
  padding: 0 35px 42px;
}
@media only screen and (max-width: 1200px) {
  .property-col figcaption, .blog-col figcaption {
    padding: 0 25px 30px;
  }
}
@media only screen and (max-width: 675px) {
  .property-col figcaption, .blog-col figcaption {
    padding: 0 15px 30px;
  }
}
.property-col figcaption h6, .blog-col figcaption h6 {
  font-size: 22px;
  line-height: 1.25;
  color: var(--white);
  font-family: "Scandia";
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .property-col figcaption h6, .blog-col figcaption h6 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  .property-col figcaption h6, .blog-col figcaption h6 {
    font-size: 20px;
  }
}
.property-col:hover figure img, .blog-col:hover figure img {
  transform: scale(1.1);
}

.owl-prev img {
  transform: scaleX(-1);
}

.btn-pro-banner {
  --height: 40px;
  --padding: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  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;
  z-index: 1;
  background: var(--gradient);
  font-family: "Scandia";
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
}

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::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(--black);
}
header::after {
  height: 0;
  transition: 0.5s ease;
  z-index: -1;
}
header .header-wrapper {
  padding: 0 var(--containerfluid);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .header-wrapper .colA, header .header-wrapper .colC {
  display: flex;
  height: 100%;
}
header .header-wrapper .colA {
  flex: 0 1 75px;
  padding: var(--headerpadding) 0;
  transition: 0.5s ease;
}
header .header-wrapper .colA a, header .header-wrapper .colA img {
  height: 100%;
  transition: 0.5s ease;
}
header .header-wrapper .colB {
  flex: 0 1 auto;
  padding-left: 3rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 1200px) {
  header .header-wrapper .colB {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .colB {
    display: none;
  }
}
header .header-wrapper .colB ul li {
  display: inline-block;
  vertical-align: middle;
}
header .header-wrapper .colB ul li:not(:last-child) {
  margin-right: 3rem;
}
@media only screen and (max-width: 1300px) {
  header .header-wrapper .colB ul li:not(:last-child) {
    margin-right: 1.5rem;
  }
}
header .header-wrapper .colB ul li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 1200px) {
  header .header-wrapper .colB ul li a {
    font-size: 16px;
  }
}
header .header-wrapper .colB ul li a:hover {
  color: var(--secondary);
}
header .header-wrapper .colC {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}
header .header-wrapper .colC ul li {
  display: inline-block;
  vertical-align: middle;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
}
header .header-wrapper .colC ul li:not(:last-child) {
  margin-right: 35px;
}
@media only screen and (max-width: 540px) {
  header .header-wrapper .colC ul li:not(:last-child) {
    margin-right: 12px;
    display: none;
  }
}
header .header-wrapper .colC ul li a:not(.btn), header .header-wrapper .colC ul li button:not(.btn) {
  color: inherit;
  font-weight: inherit;
  display: inline-block;
  transition: 0.5s ease;
}
header .header-wrapper .colC ul li a:not(.btn):hover, header .header-wrapper .colC ul li button:not(.btn):hover {
  color: var(--secondary);
}
header .header-wrapper .colC ul li a:not(.btn):hover svg path, header .header-wrapper .colC ul li button:not(.btn):hover svg path {
  fill: var(--secondary);
}
header .header-wrapper .colC ul li a:not(.btn) span, header .header-wrapper .colC ul li button:not(.btn) span {
  font-family: "Scandia";
  font-weight: normal;
}
header .header-wrapper .colC ul li .ham-btn {
  width: 39px;
  height: 22px;
  --border: 2px;
  --background: var(--white);
  border: var(--border) solid var(--background);
  border-left: none;
  border-right: none;
  transition: 0.5s ease;
}
header .header-wrapper .colC ul li .ham-btn:hover {
  --background: var(--primary);
}
header .header-wrapper .colC ul li .hed-wtsp svg path {
  fill: #fff;
}
header .header-wrapper .colC ul li .call-btn svg path {
  fill: #fff;
}
header .header-wrapper .colC ul .enq-right-border {
  border-right: 1.5px solid rgb(255, 255, 255);
  padding-right: 30px;
}

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

.ham-pop {
  right: 0;
  max-width: 500px;
  background-color: var(--white);
  background-image: url(../../images/vector/vector-4.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 85% auto;
  transform: translateX(100%);
  transition: 0.5s ease;
}
.ham-pop.is-open {
  transform: translateX(0%);
}
.ham-pop .close path {
  stroke: var(--text);
  stroke-width: 2;
}
.ham-pop .model-body {
  padding: 54px 45px 30px;
  height: 100%;
  overflow-y: auto;
}
.ham-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .ham-pop .model-body {
    padding: 40px 25px 20px;
  }
}
.ham-pop .model-body .ico {
  max-width: 93px;
  width: 100%;
  margin-bottom: 3rem;
  line-height: 0;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .ico {
    max-width: 70px;
  }
}
.ham-pop .model-body .ico img, .ham-pop .model-body .ico svg {
  width: 100%;
  height: auto;
}
.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.ham-pop .model-body .nav-list > li > a {
  font-size: 36px;
  font-family: "Zolina";
  color: var(--black);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
}
@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);
}
.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ham-pop .model-body .bottom-list .cal-btn-ham {
  color: var(--black);
  font-weight: 600;
}
.ham-pop .model-body .bottom-list .cal-btn-ham:hover {
  color: var(--secondary);
}
.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;
}
@media only screen and (max-width: 767px) {
  .ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
    margin-right: 7px;
  }
}
.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;
  transform: translateX(100%);
  transition: 0.5s ease;
  background-color: var(--white);
  background-image: url(../../images/vector/vector-4.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 85% auto;
}
.enquire-pop.is-open {
  transform: translateX(0%);
}
.enquire-pop .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.enquire-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body {
    padding: 50px 20px 30px;
  }
}
.enquire-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.enquire-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-family: "Zolina";
  text-transform: uppercase;
}
.enquire-pop .model-body .title p {
  color: #333;
  margin-top: 10px;
  font-weight: 500;
}
.enquire-pop .model-body .title p small {
  line-height: 20px;
}
.enquire-pop .model-body .form {
  --gaptb: 15px;
}

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

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

footer {
  background: var(--black) url(../../images/vector/vector-3.svg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0 105px;
}
footer .upper-footer {
  display: grid;
  grid-template-columns: 1fr 111px 1fr;
}
@media only screen and (max-width: 767px) {
  footer .upper-footer {
    display: flex;
    flex-direction: column;
  }
}
footer .upper-footer ul li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
footer .upper-footer ul li a:not(.btn) {
  display: inline-block;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}
footer .upper-footer ul li a:not(.btn):hover {
  color: var(--secondary);
}
footer .upper-footer ul li a:not(.btn):hover path {
  fill: var(--secondary);
}
footer .upper-footer ul li a:not(.btn):has(img, svg) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
footer .upper-footer .colA, footer .upper-footer .colC {
  padding-top: 24px;
}
footer .upper-footer .colA ul li:not(:last-child) {
  margin-right: 45px;
}
@media only screen and (max-width: 767px) {
  footer .upper-footer .colA {
    order: 2;
    text-align: center;
  }
}
footer .upper-footer .colB img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  footer .upper-footer .colB {
    order: 1;
    margin: 0 auto;
    width: 35%;
    margin-bottom: 35px;
  }
}
footer .upper-footer .colC {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  footer .upper-footer .colC {
    text-align: center;
  }
}
footer .upper-footer .colC ul li:not(:last-child) {
  margin-right: 12px;
}
@media only screen and (max-width: 767px) {
  footer .upper-footer .colC {
    order: 3;
  }
}
footer .footer-nav {
  text-align: center;
  margin: 55px 0 60px;
}
footer .footer-nav ul li {
  display: inline-block;
  vertical-align: middle;
}
footer .footer-nav ul li a {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}
footer .footer-nav ul li a:hover {
  color: var(--secondary);
}
footer .footer-nav ul li:not(:last-child) {
  margin-right: 2.5rem;
}
@media only screen and (max-width: 991px) {
  footer .footer-nav ul li:not(:last-child) {
    margin-right: 1.5rem;
  }
}
footer .social-icons {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  footer .social-icons {
    text-align: center;
  }
}
footer .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
footer .social-icons a:not(:last-child) {
  margin-right: 32px;
}
footer .social-icons a:hover path {
  fill: var(--secondary);
}
footer .cprt-msg {
  text-align: center;
  color: #fff;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .cprt-msg p, footer .cprt-msg a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
footer .cprt-msg span {
  margin-left: 5px;
}
footer .cprt-msg span a {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  margin-left: 5px;
}
footer .cprt-msg span img {
  width: 60px;
}
footer .cprt-msg ul {
  margin-right: 1rem;
  border-right: 1px solid #9C9A9A;
  padding-right: 1rem;
  line-height: 1;
}
footer .cprt-msg ul li {
  display: inline-block;
  vertical-align: middle;
}
footer .cprt-msg ul li:not(:last-child) {
  margin-right: 1rem;
}
footer .cprt-msg ul li a {
  color: #9C9A9A;
}
footer .cprt-msg ul li a:hover {
  color: var(--white);
}

.model-body form .form-group label {
  color: #333;
}
.model-body form .form-group::before {
  background: #5e5e5e;
}
.model-body form .form-group input.valid ~ label {
  color: #888;
}
.model-body form .form-group textarea.valid ~ label {
  color: #888;
}
.model-body form .form-group::after {
  background: #5e5e5e;
}
.model-body form .custom-select .current {
  color: #333;
}
.model-body form .custom-select.open .list {
  font-weight: 500;
  text-transform: capitalize;
}/*# sourceMappingURL=header.css.map */