html,
body {
  overflow-x: clip !important;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Jost", sans-serif;
  color: #ffffff;
  font-size: 16px;
  background-color: #121212;
  font-weight: 400;
  line-height: 1.4;
  /* padding-top: 94px; */
}

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

.error-msg {
  position: absolute;
  bottom: -12px;
  background: transparent;
  display: flex;
  line-height: 11px;
  padding: 0 4px;
  background-color: #f00;
  color: #fff;
  font-size: 9px;
}

.overflow-visible {
  overflow: visible !important;
}

a {
  color: #333;
}

a:hover {
  color: #fff;
}

a,
button {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.columns.gap-7 {
  margin-left: -96px !important;
  margin-right: -96px !important;
}

.gap-7>.column {
  padding-left: 96px;
  padding-right: 96px;
}

.columns.gap-6 {
  margin-left: -84px !important;
  margin-right: -84px !important;
}

.gap-6>.column {
  padding-left: 84px;
  padding-right: 84px;
}

.columns.gap-5 {
  margin-left: -72px !important;
  margin-right: -72px !important;
}

.gap-5>.column {
  padding-left: 72px;
  padding-right: 72px;
}

.columns.gap-4 {
  margin-left: -60px !important;
  margin-right: -60px !important;
}

.gap-4>.column {
  padding-left: 60px;
  padding-right: 60px;
}

.columns.gap-3 {
  margin-left: -48px !important;
  margin-right: -48px !important;
}

.gap-3>.column {
  padding-left: 48px;
  padding-right: 48px;
}

.columns.gap-2 {
  margin-left: -36px !important;
  margin-right: -36px !important;
}

.gap-2>.column {
  padding-left: 36px;
  padding-right: 36px;
}

.columns.gap-1 {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

.gap-1>.column {
  padding-left: 24px;
  padding-right: 24px;
}

.is-gap-0 {
  gap: 0 !important;
}

.is-gap-1 {
  gap: 4px !important;
}

.is-gap-2 {
  gap: 8px !important;
}

.is-gap-3 {
  gap: 12px !important;
}

.is-gap-4 {
  gap: 16px !important;
}

.is-gap-5 {
  gap: 24px !important;
}

.is-gap-6 {
  gap: 32px !important;
}

.is-gap-7 {
  gap: 40px !important;
}

.is-gap-8 {
  gap: 48px !important;
}

.is-gap-9 {
  gap: 56px !important;
}

.is-gap-10 {
  gap: 64px !important;
}

/*** Modal CSS ***/
.theme-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  visibility: hidden;
}

.theme-modal.is-active {
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99999;
  background-color: #ffffff30;
  backdrop-filter: blur(6px);
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 600px;
  width: 100%;
  padding: 30px;
  max-height: inherit;
  transition: all 0.3s linear;
  background-color: #121212;
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.modal-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

html.is-active {
  overflow: hidden;
}

html:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
}

html.is-active:before {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal.is-active .theme-modal-card {
  top: 50%;
}

.theme-modal-background {
  background-color: #000;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.theme-modal[style="visibility: visible;"] .theme-modal-card {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
}

.theme-modal[style="visibility: visible;"] .theme-modal-background {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal-card-body {
  border: 0;
  position: relative;
  overflow: visible;
}

.theme-modal-card-body {
  padding: 30px;
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 20%);
}

.close {
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 1;
  border: none;
  background-color: #121212;
  border: 1px solid #ffffff40;
  position: absolute;
  top: -22px;
  right: -22px;
  margin: 0 auto;
  z-index: 10;
  cursor: pointer;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.close:hover {
  background-color: #ffffff;
  color: #C5A66E;
  opacity: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*** End Modal CSS ***/
.columns.row-register {
  margin-bottom: -12px !important;
}

.sticky-bottom-form .col-form .form-control::-webkit-input-placeholder,
.theme-modal .col-form .form-control::-webkit-input-placeholder {
  color: #ffffff;
  font-family: "Jost", sans-serif;
  ;
}

.sticky-bottom-form .col-form .form-control:-ms-input-placeholder,
.theme-modal .col-form .form-control:-ms-input-placeholder {
  color: #fff;
  font-family: "Jost", sans-serif;
  ;
}

.sticky-bottom-form .col-form .form-control::placeholder,
.theme-modal .col-form .form-control::placeholder {
  color: #ffffff;
  font-family: "Jost", sans-serif;
  ;
}

.theme-scrollbar {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.theme-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

ul:last-child {
  margin-bottom: 0;
}

section,
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

.section-title {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1,
.section-title h2 {
  font-size: 60px;
  line-height: 70px;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark a,
.dark p,
.dark span,
.dark small {
  color: #fff;
}

.dark a:hover {
  color: #C5A66E;
}

video,
picture {
  display: block;
}

.container {
  position: relative;
  z-index: 1;
}

.btn {
  position: relative;
  font-family: "Jost", sans-serif;
  ;
  border: 1px solid;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  text-align: center;
  line-height: 22px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn.btn-primary {
  background-color: #121212;
  border-color: #fff;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #C5A66E;
  border-color: #C5A66E;
  color: #ffffff;
}

.btn.btn-primary-outline {
  background-color: transparent;
  border-color: #006cb6;
  color: #006cb6;
}

.btn.btn-primary-outline:hover {
  background-color: #0060a0;
  border-color: #0060a0;
  color: #ffffff;
}

.btn.btn-white {
  background-color: #C5A66E;
  border-color: #fff;
  color: #fff;
}

.btn.btn-white:hover {
  background-color: #121212;
  border-color: #C5A66E;
  color: #C5A66E;
}

.btn.btn-white-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.btn-white-outline:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #0060a0;
}

.col-form {
  position: relative;
}

.col-middle {
  display: table;
  width: 100%;
}

.col-middle-inner {
  display: table-cell;
  vertical-align: middle;
}

button:focus {
  outline: 0;
}

.thankyou-msg {
  font-size: 16px !important;
  color: #fff !important;
  background: 0 0 !important;
}

.thankyou-logo img {
  margin: 30px auto 0;
  height: 100px;
  width: auto;
}

.form-group,
.form-group-wrapper {
  position: relative;
}

.thankyou-block {
  height: 100vh;
}

.thankyou-block h1 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.list-point {
  padding: 0;
}

.list-point li {
  font-weight: 500;
  position: relative;
  list-style: none;
  padding-left: 20px;
}

.list-point li:last-child {
  margin-bottom: 0;
}

.list-point li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #006cb6;
  border-radius: 100%;
  left: 0;
  top: 8px;
}


.arrow-top .splide__arrows {
  top: -130px;
  right: 100px;
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.arrow-top .splide__arrow {
  position: static;
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.arrow-bottom .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.arrow-bottom .splide__arrow {
  position: static;
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide__pagination {
  margin-top: 30px;
}

.splide.pagination .splide__pagination {
  counter-reset: pagination-num;
}

.splide.pagination .splide__pagination__page:before {
  counter-increment: pagination-num;
  content: counter(pagination-num);
}

.splide.pagination .splide__pagination__page.is-active {
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide.pagination .splide__pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: unset;
  font-size: 18px;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  -ms-border-radius: unset;
  -o-border-radius: unset;
}

.splide__arrow svg {
  fill: transparent;
  height: 45px;
  transition: fill 0.2s linear;
  width: 45px;
  -webkit-transition: fill 0.2s linear;
  -moz-transition: fill 0.2s linear;
  -ms-transition: fill 0.2s linear;
  -o-transition: fill 0.2s linear;
}

.splide__arrow:hover:not(:disabled) svg {
  fill: transparent;
}

.splide {
  padding: 0;
}

.splide__slide img {
  width: 100%;
}

.splide__arrow.splide__arrow--prev:disabled,
.splide__arrow.splide__arrow--next:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.splide__arrow {
  width: 70px;
  height: 70px;
  padding: 10px;
  color: #fff;
  background-color: #121212;
  border: 1px solid #C5A66E;
  opacity: 1;
  border-radius: 15px;
}

.splide__arrow:hover {
  background-color: #C5A66E;
  color: #fff;
  opacity: 1 !important;
}

.splide__arrow svg {
  font-size: 24px;
}

.splide__arrow--prev {
  left: 440px;
}

.splide__arrow--next {
  right: 440px;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: #006cb6;
  opacity: 0.5;
}

.splide__pagination__page.is-active {
  transform: none;
  background: #006cb6;
  opacity: 1;
}

.splide__pagination {
  position: static;
  transform: none;
}

.form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 15px 0;
  background-color: transparent;
  border-radius: 0;
  resize: none;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}

.form-control:focus {
  outline: 0;
}

.pl-80 {
  padding-left: 80px !important;
}

.modal-card-body {
  padding: 30px;
}

.col-form label span {
  color: #ff0000;
}

.title-tagline {
  font-size: 24px;
  font-weight: 500;
  margin-top: 15px;
  display: block;
}

header {
  position: fixed;
  z-index: 9999;
  padding: 20px 140px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  -moz-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* box-shadow: 0 1px 3px rgb(0 0 0 / 10%); */
}

#header.sticky {
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 10%);
  box-shadow: 0 0 12px rgb(0 0 0 / 10%);
  backdrop-filter: blur(6px);
}

.theme-menu ul {
  display: flex;
  justify-content: center;
}

.menu-link {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.menu-link.active {
  color: #C5A66E;
}

.theme-logo img {
  width: auto;
  max-height: 70px;
  max-width: 200px;
}

/* .col-header:first-child {
  max-width: 240px;
  padding: 0;
  flex: 0 0 240px;
} */

.menu-item {
  padding: 16px 10px;
}

.theme-padding {
  padding-left: 140px;
  padding-right: 140px;
}

.js-scroll {
  opacity: 0;
}

.scrolled.fade-in {
  animation: 2s ease-in-out both fade-in;
}

.scrolled.fade-in-top {
  animation: 2s ease-in-out both fade-in-top;
}

.scrolled.fade-in-bottom {
  animation: 2s ease-in-out both fade-in-bottom;
}

.scrolled.fade-in-left {
  animation: 2s ease-in-out both fade-in-left;
}

.scrolled.fade-in-right {
  animation: 2s ease-in-out both fade-in-right;
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.zoom-out {
  opacity: 0;
  transition-duration: 3s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.zoom-out.scrolled {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

.zoom-out {
  transition-property: opacity, transform, -webkit-transform;
  transition-timing-function: ease-out;
}

.delay1 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.delay2 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.delay3 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.delay4 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

/* Js Scroll End */
.sticky-btn-enquire {
  position: fixed !important;
  top: 210px;
  right: -104px;
  z-index: 999 !important;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.sticky-btn-enquire:hover {
  color: #fff;
}

#scontactform h3 {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0;
}

.sticky-bottom-form {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 0 0px 15px;
  width: 100%;
  z-index: 999;
  background: #121212;
  max-width: 1344px;
  margin: 0 auto;
  right: 0;
  border: 1px solid rgb(255 255 255 / 60%);
  border-bottom: 0;
}

.sticky-bottom-form .col-form {
  position: relative;
  width: 20%;
  float: left;
  padding: 0 15px;
  margin: 0 0 10px !important;
}

.col-form-title {
  display: none;
}

.sticky-bottom-form .col-form .form-control {
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  line-height: 19px;
}

.copyright-detail p {
  display: inline-block;
}

.captcha-query,
.captcha-sticky-query {
  position: absolute;
  color: white;
  top: 50%;
  letter-spacing: 10px;
  font-size: 14px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#footer {
  padding: 30px 0;
  background-color: #202020;
}

#home #footer {
  padding: 30px 0 80px;
}

.col-copyright:last-child {
  text-align: right;
}

.theme-block-img {
  position: relative;
  overflow: hidden;
}

.project-block-img.theme-block-img:before {
  border-radius: 25px;
  background-color: #121212;
}

.project-block-img img {
  border-radius: 25px;
}

.theme-block-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 1;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-block .theme-block-icon {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 9;
}

.theme-block .theme-block-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.theme-block:hover .theme-block-img:before {
  opacity: 0.3;
}

.theme-block:hover .theme-block-icon {
  opacity: 1;
}

.section-cms {
  min-height: calc(100vh - 161px);
}

.sticky-notice {
  background-color: #b50000;
  position: fixed;
  top: 94px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.sticky-notice span {
  font-size: 12px;
  line-height: 16px;
  display: block;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.counter {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
}

.counter-block h3 {
  font-size: 32px;
  font-weight: 600;
}

.counter-block p {
  margin-top: 6px;
}

/* Accordion Css Start */

.collapse {
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.5, 0, 0.3, 1);
  transition-property: opacity, height;
  will-change: opacity, contents;
}

.collapse:not(.is-active) {
  height: 0;
  opacity: 0;
}

.accordion {}

.accordion .card {
  overflow: hidden;
  margin: -1px -1px 1px;
  background: #f3f3f3;
  border: 1px solid #d9d9d9;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: contents;
  text-align: left;
}

.accordion .card:last-child {
  margin-bottom: -1px;
}

.accordion .card:not(:last-child):not(.is-active) {
  border-bottom-color: transparent;
}

.accordion .card.is-active {
  background: #fff;
}

.accordion .card.is-active+.card {
  border-top-color: transparent;
}

.accordion .accordion-header {
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 16px 0 16px;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.theme-light-bg .accordion-header {
  border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.accordion .accordion-header:hover .icon {
  opacity: 0.8;
}

.accordion .accordion-header.is-active .icon {
  transform: rotateX(180deg);
  opacity: 1;
}

.accordion .accordion-header .icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  opacity: 0.3;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: -0.25rem;
}

.accordion .accordion-content {
  padding: 20px 0 4px;
}

/* Accordion Css End */
.theme-light-bg {
  background-color: #e6f5ff;
}

.theme-bg {
  background-color: #121212;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #f8f8f8;
}

.theme-text {
  color: #006cb6 !important;
}

.white-text {
  color: #fff !important;
}

.call-btn {
  position: fixed;
  bottom: 74px;
  left: 20px;
  width: 40px;
  height: 40px;
  z-index: 888;
  display: block;
  text-align: center;
  border-color: #006cb6;
  background-color: #006cb6;
  animation: theme-pulse 2s infinite;
  border-radius: 100%;
  padding: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.call-btn svg {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 7px;
}

@keyframes theme-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #fff;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.theme-img-animation>picture>img {
  filter: blur(12px);
}

.theme-img-animation.eligibility>picture>img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

.theme-block.theme-img-animation {
  overflow: hidden;
}

.plan-inquire-btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: fit-content;
  opacity: 1;
  visibility: visible;
  z-index: 9;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.sticky-btn-enquire.sticky-brochure {
  top: 380px;
  right: -70px;
}

.scroll-to-top {
  position: fixed;
  bottom: 74px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 89;
  border: 1px solid #C5A66E;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
  background-color: #C5A66E;
  color: #fff;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}

.scroll-to-top:hover {
  background: #fff;
  color: #C5A66E;
  border: 1px solid #C5A66E;
}

.scroll-to-top.showBtn {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.tab-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-list .tab a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 14px 0px;
  border-bottom: 1px solid transparent;
  text-align: center;
  width: 200px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  color: #ffff;
}

.tab-list .tab a:hover,
.tab-list .tab.is-active a {
  border-bottom: 1px solid #C5A66E;
  color: #C5A66E;
}

.stock-image,
.actual-image,
.artistic-impression {
  position: relative;
}

.stock-image::after,
.actual-image::after,
.artistic-impression::after {
  content: "Artistic Impression";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: auto;
  height: auto;
  max-width: fit-content;
  z-index: 9;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-shadow: 1px 1px #000000;
}

.stock-image::after {
  content: "Stock Image";
}

.actual-image::after {
  content: "Actual Image";
}

.tab-list-block {
  margin-bottom: 40px;
}

.social-media {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}

.social-icon {
  position: relative;
  color: #fff;
  background-color: #C5A66E;
  display: block;
  max-width: 40px;
  height: 40px;
  border-radius: 23px;
  transform: scale(1);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.social-icon:hover {
  transform: scale(1.2);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.connectivity-detail {
  padding-left: 100px;
}

.highlight-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.highlight-item:not(:last-child) {
  margin-bottom: 12px;
}

.connectivity-detail .accordion-item.is-active svg path {
  stroke: #006cb6;
}

.connectivity-detail svg {
  width: 36px;
  height: 36px;
}

.list-point li:not(:last-child) {
  margin-bottom: 8px;
}

.section-about-us::before,
.banner-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.2) 46.57%, rgba(18, 18, 18, 0.595217) 66.49%, rgba(18, 18, 18, 0.682729) 76.2%, rgba(18, 18, 18, 0.827797) 90.06%, #121212 100%);
  top: 0;
  left: 0;
  z-index: 1;
}

.sub-title {
  color: #C5A66E;
  display: block;
  font-size: 26px;
  line-height: normal;
}

.about-block {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 60px;
  z-index: 1;
}

.about-img img {
  border-radius: 20px;
}

.gallery-slider {
  position: relative;
}

.gallery-slider::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 100%;
  background: linear-gradient(270deg, #121212 0%, rgba(18, 18, 18, 0.908523) 21.71%, rgba(18, 18, 18, 0) 100%);
  top: 0;
  right: 0;
  z-index: 1;
}

.gallery-slider::after {
  position: absolute;
  content: "";
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #121212 0%, rgba(18, 18, 18, 0.908523) 21.71%, rgba(18, 18, 18, 0) 100%);
  top: 0;
  left: 0;
}

.amenities-block img {
  border-radius: 25px;
}

.amenities-title {
  max-width: fit-content;
  color: #C5A66E;
  margin-top: 10px;
  display: block;
}

.section-connectivity {
  background-image: url(../images/gallery/gallery1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-connectivity::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(18, 18, 18, 0.2) 3.57%, rgb(18 18 18 / 78%) 50.49%, rgb(18 18 18 / 100%) 100.2%, rgba(18, 18, 18, 10.827797) 73.06%, #121212 100%);
  top: 0;
  left: 0;
}

.section-project {
  background-image: url(../images/highlight-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
}

.footer-logo {
  max-width: 190px;
}

.footer-block {
  display: flex;
  align-items: center;
  justify-content: end;
}

.footer-contact {
  padding-right: 30px;
  margin-right: 30px;
  text-align: center;
  border-right: 1px solid #D9D9D9;
}

.footer-contact h5 {
  font-size: 18px;
  text-transform: uppercase;
  color: #C5A66E;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-contact a {
  color: #fff;
}

.footer-contact a:hover {
  color: #C5A66E;
}

.social-icon svg {
  width: 40px;
  height: 40px;
  padding: 5px;
}

.disclaimer-block h6 {
  color: #C5A66E;
  font-weight: bold;
  margin-bottom: 15px;
}

.disclaimer-block {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C5A66E;
}

.footer-warpper {
  margin-bottom: 50px;
}

.thankyou-block {
  background-image: url(../images/highlight-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.project-block-img .theme-block-icon svg {
  position: absolute;
  top: 50%;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%) !important;
  z-index: 9;
  border-radius: 100%;
  animation: theme-pulse 2s infinite;

}

.theme-block .project-block-img svg {
  width: 75px;
  height: 75px;
  color: #fff;
}

.auto-video video {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.login-header-block {
  position: absolute;
  right: 0;
  padding: 40px 100px;
  width: 100%;
  z-index: 2;
}

.login-header li .menu-link {
  font-weight: 400 !important;
  font-size: 16px;
}

.login-header li .login {
  font-weight: 600 !important;
  color: #C5A66E;
}

.login-banner video {
  height: 100vh;
  object-fit: cover;
}

.logo img {
  width: auto;
  height: 80px;
}

.login-contant {
  padding: 150px 0;
  position: absolute;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
}

.logo {
  margin-bottom: 75px;
}

.login-contant .section-title h1 {
  font-size: 30px;
  line-height: 100%;
  font-weight: 600;
  color: #C5A66E;
}

.login-contant .section-title .title-tagline {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  max-width: 570px;
}

.login-detail b {
  color: #fff;
}

.login-detail p {
  color: #7E7E7E;
}

.login-detail {
  max-width: 520px;
}

.login-detail .small-title {
  font-size: 19px;
  line-height: 100%;
}

.password-block {
  margin-top: 75px;
}

.password-wrapper {
  font-size: 16px;
  line-height: 100%;
  color: #C5A66E;
  text-transform: uppercase;
}

.pasword-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.password-block .form-control {
  width: 350px;
}

.pasword-btn svg {
  color: #C5A66E;
}

.pasword-btn {
  position: relative;
  color: #fff;
  background: transparent;
  font-size: 18px;
  overflow: hidden;
  width: fit-content;
  margin-top: 30px;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pasword-btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #C5A66E;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.pasword-btn:hover:before {
  width: 100%;
}

.login-banner::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #121212;
  background: linear-gradient(80deg, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0) 100%);
}

.section-about-us.login {
  min-height: 100vh;
}

.about-block.login {
  position: relative;
  padding: 0;
}
.section-canvas {
  position: relative;
}

.section-canvas::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #000000B2;
  z-index:1;
}

/*.canvas-detail {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  -webkit-transform: translateY(-50%);*/
/*  -moz-transform: translateY(-50%);*/
/*  -ms-transform: translateY(-50%);*/
/*  -o-transform: translateY(-50%);*/
/*  left: 0;*/
/*}*/

.canvas-list li:not(:last-child) {
  margin-bottom: 10px;
}

.canvas-desc p {
  font-size: 18px;
  margin: 60px 0;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.canvas-list li {
  font-size: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}


.custom-select option{
    background-color: #000;
    color:#fff;
}


.canvas-bg-img:after{
    content:"";
    position:absolute;
    inset:10px;
    border:1px solid #fff;
    width:calc(100% - 20px);
    height:calc(100% - 20px);
    z-index:3;
}

.canvas-bg-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.canvas-detail{
    position:relative;
    z-index:9;
}

.video-block{
    margin-bottom:40px;
}

.video-block video{
    height: 500px;
    max-width: fit-content;
    margin: 0 auto;
}

.video-block .theme-block{
    max-width:890px;
    margin:0 auto;
}

.views-video-block .theme-block-img:before{
    background-color:#000;
}

.views-video-block .theme-block:hover .theme-block-img:before{
    opacity:0.6;
}