html,
body {
  overflow-x: clip !important;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Montserrat", sans-serif;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.hover-arrow:hover {
  cursor: url(../images/icon/slider-arrow.svg) 10 10, auto;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-5 {
  z-index: 5;
}

::selection {
  background-color: #393185;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.error-msg {
  position: absolute;
  bottom: -15px;
  background: transparent;
  display: flex;
  line-height: 15px;
  padding: 0 4px;
  background-color: #f00;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.overflow-visible {
  overflow: visible !important;
}

a {
  color: #555;
}

a:hover {
  color: #393185;
}

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 !important;
}

.order-2 {
  order: 2 !important;
}

.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;
}

.max-w-300 {
  max-width: 300px !important;
}

.max-w-400 {
  max-width: 400px !important;
}

.max-w-500 {
  max-width: 500px !important;
}

.max-w-600 {
  max-width: 600px !important;
}

.max-w-700 {
  max-width: 700px !important;
}

.max-w-800 {
  max-width: 800px !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;
  backdrop-filter: blur(20px);
}

.theme-modal.is-active {
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99999;
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 1100px;
  width: 100%;
  padding: 60px;
  max-height: inherit;
  transition: all 0.3s linear;
  background-color: #EDECF5;
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 10px;
}

.modal-title {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Frank Ruhl Libre", serif;
  color: #000;
  margin-bottom: 30px;
}

html.is-active {
  overflow: hidden;
}

html:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #8d8c93;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
}

html.is-active:before {
  opacity: 0.7;
  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 {
  background-color: transparent;
}

.close {
  color: #fff;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 1;
  border: 1px solid #ffffff10;
  background-color: transparent;
  position: absolute;
  top: 20px;
  right: 20px;
  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;
  border-radius: 10px;
}

.close svg {
  width: 100%;
  height: 100%;
  stroke-width: 1;
}

.close:hover {
  background-color: #ffffff;
  color: #393185;
  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: -16px -12px !important;
}

.col-form .form-control::-webkit-input-placeholder,
.theme-modal .col-form .form-control::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #555;
}

.col-form .form-control:-ms-input-placeholder,
.theme-modal .col-form .form-control:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #555;
}

.col-form .form-control::placeholder,
.theme-modal .col-form .form-control::placeholder {
  font-family: "Montserrat", sans-serif;
  color: #555;
}

.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;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, #393185 0%, #722e85 100%);
}

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: 50px;
  position: relative;
  z-index: 2;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1,
.section-title h2 {
  margin: 0;
  position: relative;
  display: inline-block;
  font-family: "Frank Ruhl Libre", serif;
}

h1 {
  font-size: 100px;
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #393185;
}

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,
.dark svg {
  color: #fff;
}

.dark a:hover {
  color: #a79ecd !important;
}

.dark h2 {
  color: #a79ecd;
}

video,
picture {
  display: block;
}

.container {
  position: relative;
  z-index: 1;
}

.btn {
  position: relative;
  font-family: "Montserrat", sans-serif;
  border: 1px solid;
  display: inline-block;
  padding: 12px 80px;
  font-size: 15px;
  text-align: center;
  line-height: 22px;
  font-weight: 500;
  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;
  border-radius: 100px;
}

.btn.btn-primary {
  background-color: #393185;
  border-color: #393185;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #2a2463;
  border-color: #2a2463;
  color: #ffffff;
}

.btn.btn-primary-outline {
  background-color: transparent;
  border-color: #393185;
  color: #393185;
}

.btn.btn-primary-outline:hover {
  background-color: #2a2463;
  border-color: #2a2463;
  color: #ffffff;
}

.btn.btn-white {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 0, 0, 0.2);
  color: #252525;
}

.btn.btn-white:hover {
  background-color: #393185;
  border-color: #393185;
  color: #fff;
}

.btn.btn-white-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.btn-white-outline:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #2a2463;
}

.btn.btn-secondary {
  background-color: #252525;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 400;
}

.btn.btn-secondary:hover {
  background-color: #393185;
}

.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;
  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 {
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #393185;
  font-family: "Frank Ruhl Libre", serif;
}

.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: #555;
  border-radius: 100%;
  left: 0;
  top: 8px;
}

.arrow-bottom .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.arrow-bottom .splide__arrow {
  position: static;
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.arrow-top .splide__arrows {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 9;
}

.arrow-top .splide__arrow {
  position: static;
  transform: unset;
}

.arrow-top {
  position: relative;
  z-index: 9;
}

.theme-border {
  border: 1px solid #d2cde7;
}

.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: 40px;
  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 {
  pointer-events: none;
  opacity: 0.5;
  filter: grayscale(1);
  background-color: #d2cde7;
}

.splide__arrow {
  width: 45px;
  height: 45px;
  padding: 10px;
  color: #393185;
  background-color: #d2cde7;
  border: 1px solid #d2cde7;
  opacity: 1;
  filter: grayscale(0);
}

.splide__arrow:hover {
  background-color: #722e85;
  color: #fff;
  opacity: 1;
  border-color: #722e85;
}

.splide__arrow svg {
  font-size: 24px;
}

.splide__arrow--prev {
  left: 60px;
}

.splide__arrow--next {
  right: 60px;
}

.splide__arrow svg path {
  stroke: #393185;
  -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;
}

.splide__arrow:hover svg path {
  stroke: #fff;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: #393185;
  opacity: 0.5;
}

.splide__pagination__page.is-active {
  transform: none;
  background: #393185;
  opacity: 1;
}

.splide__pagination {
  position: static;
  transform: none;
}

.form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 16px 0;
  background-color: transparent;
  resize: none;
  color: #555;
  font-size: 16px;
  border-bottom: 1px solid rgba(78, 78, 78, 0.2);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-family: "Montserrat", sans-serif;
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #000000 !important;
  caret-color: #000000;
}

.form-control:focus {
  outline: 0;
}

.pl-80 {
  padding-left: 80px !important;
}

.modal-card-body {
  padding: 30px;
}

.title-tagline {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  display: block;
}

header {
  position: absolute;
  z-index: 9999;
  padding: 10px 250px;
  width: 100%;
  top: 0;
  left: 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;
}

#header.sticky {
  position: fixed;
  animation: slide-down 1s !important;
  background: linear-gradient(90deg, #06041fcf 0%, #290833cf 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.theme-menu ul {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.menu-link.active {
  color: #ffffff;
}

.theme-logo img {
  width: auto;
  height: 100px;
}

.col-header:first-child,
.col-header:last-child {
  flex: 0 0 200px;
}

.theme-padding {
  padding-left: 250px;
  padding-right: 250px;
}

.js-scroll {
  opacity: 0;
}

.scrolled.fade-in {
  animation: 1.5s ease-in-out both fade-in;
  -webkit-animation: 1.5s ease-in-out both fade-in;
}

.scrolled.fade-in-top {
  animation: 1.5s ease-in-out both fade-in-top;
  -webkit-animation: 1.5s ease-in-out both fade-in-top;
}

.scrolled.fade-in-bottom {
  animation: 1.5s ease-in-out both fade-in-bottom;
  -webkit-animation: 1.5s ease-in-out both fade-in-bottom;
}

.scrolled.fade-in-left {
  animation: 1.5s ease-in-out both fade-in-left;
  -webkit-animation: 1.5s ease-in-out both fade-in-left;
}

.scrolled.fade-in-right {
  animation: 1.5s ease-in-out both fade-in-right;
  -webkit-animation: 1.5s 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: -44px;
  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: #393185;
  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;
  font-size: 16px;
  background: #ffffff;
}

.col-copyright:last-child {
  text-align: right;
}

.theme-block-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.theme-block-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 1;
  opacity: 0.5;
  -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(-180%);
  -ms-transform: translateY(-180%);
  -o-transform: translateY(-180%);
  -webkit-transform: translateY(-180%);
  transform: translateY(-180%);
  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.7;
  height: 100%;
}

.theme-block:hover .theme-block-icon {
  opacity: 1;
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.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-block,
.counter {
  display: flex;
  gap: 6px;
  align-items: center;
}

.counter-block h3 {
  color: #393185;
  font-family: "Frank Ruhl Libre";
  font-size: 44px;
  line-height: 1;
}

.counter-block p {
  color: #252525;
}

/* 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 .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-left: 1px solid #393185;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0 30px 0 10px;
  color: #555;
  text-decoration: none;
  font-size: 17px;
  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: 10px 0 0 10px;
}

.title-icon-accordion .accordion-content {
  padding: 15px 0 0 80px;
  font-size: 15px;
  border-top: 1px solid #A79ECD30;
  margin-top: 15px;
}

.accordion-item:not(:last-child) {
  margin-bottom: 25px;
}

.accordion-header:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon/plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -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;
}

.accordion-header.is-active:before {
  background-image: url(../images/icon/minus.svg);
}

/* Accordion Css End */
.theme-light-bg {
  background-color: #e6f5ff;
}

.theme-bg {
  background-color: #edecf5;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #f8f8f8;
}

.theme-text {
  color: #393185 !important;
}

a.secondary-text,
.secondary-text {
  color: #252525 !important;
}

a.secondary-text:hover,
a.theme-text {
  color: #722e85 !important;
}

a.theme-text:hover {
  color: #000 !important;
}

.white-text {
  color: #fff !important;
}

.has-text-black {
  color: #000 !important;
}

.call-btn {
  position: fixed;
  bottom: 74px;
  left: 20px;
  width: 40px;
  height: 40px;
  z-index: 888;
  display: block;
  text-align: center;
  border-color: #393185;
  background-color: #393185;
  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 rgb(29 87 163);
  }

  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: 100px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 89;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
  background-color: #722e85;
  color: #fff;
  border-radius: 100%;
  border: 1px solid #ffffff30;
  -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: #393185;
}

.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: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-list .tab a {
  position: relative;
  display: block;
  line-height: 1;
  text-align: center;
  background: transparent;
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  padding-bottom: 10px;
}

.tab-list .tab a:hover,
.tab-list .tab.is-active a {
  color: #393185;
}

.ai-generated-image,
.representative-image,
.stock-image,
.actual-image,
.artistic-impression {
  position: relative;
}

.ai-generated-image::after,
.representative-image::after,
.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;
  line-height: 1;
  font-weight: 500;
  text-shadow: 1px 1px #000000;
  font-family: "Frank Ruhl Libre", serif;
}

.img-tag-left .ai-generated-image::after,
.img-tag-left .representative-image::after,
.img-tag-left .stock-image::after,
.img-tag-left .actual-image::after,
.img-tag-left .artistic-impression::after {
  right: unset;
  left: 10px;
}

.tag-vertical.ai-generated-image::after,
.tag-vertical.representative-image::after,
.tag-vertical.stock-image::after,
.tag-vertical.actual-image::after,
.tag-vertical.artistic-impression::after {
  transform-origin: center center;
  writing-mode: vertical-rl;
  right: 5px;
  transform: translateX(-50%) scale(-1);
  -webkit-transform: translateX(-50%) scale(-1);
  -moz-transform: translateX(-50%) scale(-1);
  -ms-transform: translateX(-50%) scale(-1);
  -o-transform: translateX(-50%) scale(-1);
}

.stock-image::after {
  content: "Stock Image";
}

.actual-image::after {
  content: "Actual Image";
}

.representative-image::after {
  content: "Representative Image";
}

.ai-generated-image::after {
  content: "AI Generated Image";
}

.tab-list-block {
  margin-bottom: 40px;
}

.social-media {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  position: relative;
  color: #252525;
  display: flex;
  width: 28px;
  height: auto;
  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);
}

.amenities-icon img {
  max-width: 60px;
  margin: 0 auto 12px;
}

.amenities-block {
  text-align: center;
  padding: 12px 0;
}

.amenities-col {
  width: 20%;
  flex: 0 0 auto;
}

.connectivity-detail {
  padding-left: 100px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #33333333;
  padding-top: 12px;
}

.highlight-item:not(:last-child) {
  margin-bottom: 12px;
}

.connectivity-detail .accordion-item.is-active svg path {
  stroke: #393185;
}

.connectivity-detail svg {
  width: 36px;
  height: 36px;
}

.list-point li:not(:last-child) {
  margin-bottom: 10px;
}

.main-slider-with-video .banner-image video,
.main-slider-with-video .banner-image img {
  aspect-ratio: 2/1.05;
  object-fit: cover;
}

.header-dropdown-content {
  position: absolute;
  background-color: #fff;
  width: 280px;
  border-radius: 10px;
  padding: 10px 0;
  left: -40px;
  border: 1px solid #d2cde760;
  top: 140%;
  opacity: 0;
  visibility: hidden;
  -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;
}

.header-dropdown-btn svg {
  -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;
}

.dropdown-active .header-dropdown-btn svg {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.header-dropdown-btn {
  border-radius: 100px;
  background: rgba(114, 46, 133, 0.5);
  padding: 10px 30px;
  width: fit-content;
  font-weight: 500;
}

.dropdown-active .header-dropdown-content {
  opacity: 1;
  visibility: visible;
  top: 110%;
}

.header-dropdown-link {
  display: flex;
  padding: 12px 24px;
  gap: 16px;
  align-items: center;
}

.header-dropdown-link img {
  width: 24px;
  height: 24px;
}

.header-dropdown-content li:not(:last-child) {
  border-bottom: 1px solid #d2cde7;
}

.banner-image:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.banner-image {
  position: relative;
}

.banner-detail .section-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  left: 0;
  right: 0;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.banner-detail .section-title span {
  font-size: 40px;
  display: block;
  font-family: "Frank Ruhl Libre", serif;
  margin-top: 15px;
}

#main-slider .splide__arrows {
  display: flex;
  position: absolute;
  bottom: 25%;
  gap: 10px;
  right: 0;
  left: 0;
  justify-content: center;
}

#main-slider .splide__arrow {
  position: static;
  transform: unset;
}

.project-configuration-item h4 {
  color: #393185;
  font-size: 80px;
  line-height: 1;
  font-family: "Frank Ruhl Libre", serif;
}

.project-configuration-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 100px;
  margin-right: 100px;
  border-right: 1px solid #555;
  width: fit-content;
}

.project-configuration-item span {
  color: #252525;
  letter-spacing: 0.64px;
}

.copyright-text {
  color: #555;
  font-size: 12px;
  font-weight: 500;
  margin-top: 30px;
  display: block;
  text-align: right;
  padding-right: 30px;
}

.our-philosophy-detail h3 {
  font-size: 90px;
  line-height: 1;
  color: #7e71b1;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 50px;
}

.our-philosophy-detail span {
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.our-philosophy-detail span,
.our-philosophy-detail p {
  font-size: 18px;
}

.our-philosophy-detail {
  min-height: 280px;
}

.legacy-img-with-tooltip {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  margin-bottom: 40px;
}

.legacy-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.legacy-img img {
  margin: 0 auto;
  width: auto;
  height: 270px;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  background-color: #fff;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

.legacy-img {
  position: relative;
  padding-top: 60px;
  margin-top: 15px;
  transform-origin: bottom;
  -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;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.legacy-img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 1px;
  margin: 0 auto;
  height: 100%;
  border-left: 1px dotted #000;
  opacity: 0;
}

.legacy-tooltip h6 {
  color: #393185;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
}

.legacy-progress span {
  color: #252525;
  font-size: 20px;
  font-weight: 600;
  display: block;
}

#our-legacy-slider .is-active.is-visible .legacy-img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.legacy-tooltip {
  opacity: 0;
}

#our-legacy-slider .is-active.is-visible .legacy-img img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

#our-legacy-slider .is-active.is-visible .legacy-img:before,
#our-legacy-slider .is-active.is-visible .legacy-tooltip {
  opacity: 1;
}

.legacy-img:before,
.legacy-tooltip {
  -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;
}

span.progress-round small {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #555;
  border-radius: 100%;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  opacity: 0.2;
}

.progress-round {
  padding: 9px;
  border: 1px solid #0000000a;
  width: fit-content;
  border-radius: 100%;
  margin: 20px auto 0;
  position: relative;
}

.progress-round:before,
.progress-round:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 140%;
  width: 500px;
  height: 1px;
  background-color: #d9d9d9;
}

.legacy-progress {
  position: relative;
}

.progress-round:after {
  left: unset;
  right: 140%;
}

#our-legacy-slider .is-active.is-visible .progress-round small {
  background-color: #393185;
  opacity: 1;
}

#our-legacy-slider .is-active.is-visible .progress-round {
  opacity: 1;
  border: 1px solid #00000020;
}

.theme-element {
  position: absolute;
}

.element-top-left {
  top: 0;
  left: 0;
}

.element-top-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.element-bottom-center {
  bottom: 0;
  left: 0;
  right: 0;
}

.element-top-right {
  top: 0;
  right: 0;
}

.element-bottom-left {
  bottom: 0;
  left: 0;
}

.element-bottom-right {
  bottom: 0;
  right: 0;
}

.legacy-element {
  max-width: 500px;
  transform: translateX(40%);
  top: 50px;
}

.theme-radius {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.tab-list .tab.is-active a {
  font-weight: 500;
}

.tab-list .tab a:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 5px;
  height: 5px;
  background-color: #393185;
  border-radius: 100%;
  opacity: 0;
}

.tab-list .tab.is-active a:before {
  opacity: 1;
}

.block-title h5 {
  color: #252525;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 5px;
}

.block-title {
  margin-top: 16px;
}

.block-title-text li {
  font-size: 15px;
}

.block-title-text {
  display: flex;
  flex-wrap: wrap;
}

.block-title-text li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #d2cde7;
}

.tag {
  --r: 14px;
  position: absolute;
  top: 0;
  background: #393185;
  border-right: var(--r) solid #00000000;
  clip-path: polygon(0 0, 0 100%, 100% 100%, calc(100% - var(--r)) 50%, 100% 0);
  padding: 10px 20px;
  line-height: 1;
  font-size: 14px;
  color: #fff;
  border-radius: 10px 0 0 0;
}

.project-block {
  position: relative;
}

.project-block:before {
  position: absolute;
  content: "";
  top: 0;
  right: -40px;
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
}

.theme-form {
  border-radius: 10px;
  border: 1px solid rgba(78, 78, 78, 0.2);
  padding: 50px;
  background-color: #fff;
}

.theme-half-right-element {
  max-width: 400px;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}

.theme-half-left-element {
  max-width: 280px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.theme-form.contact-us-form {
  margin-left: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.form-label {
  color: #393185;
  font-size: 17px;
  font-weight: 700;
}

.column.col-register {
  padding: 16px 12px !important;
}

/* Footer Styles */
.footer-top {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 50px;
}

.footer-col.footer-address {
  width: 25%;
  flex: 0 0 auto;
}

.footer-item h6 {
  color: #393185;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-address p,
.footer-contact p {
  margin: 6px 0;
  line-height: 1.6;
}

.footer-links li:not(:last-child) {
  margin-bottom: 10px;
}

.copyright-bar {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.copyright-bar small {
  font-size: 14px;
}

.footer-menu li:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.project-tab-content .column {
  padding: 25px 40px !important;
}

.project-tab-content .columns {
  margin: -25px -40px !important;
}

.counter-block {
  gap: 20px;
}

.pc-counter-wrapper .column {
  padding: 0 40px !important;
  margin-bottom: 40px;
}

.pc-counter-wrapper .columns {
  margin: 0 -40px -40px !important;
}

.pc-counter-wrapper .column:nth-child(odd) {
  border-right: 1px solid #555;
}

.theme-overlay:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000099;
}

.vission-mission-detail {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 60%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.arrow-white .splide__arrow {
  background-color: transparent;
  border: 1px solid #a79ecd;
}

.arrow-white .splide__arrow svg path {
  stroke: #fff;
}

.arrow-white .splide__arrow:hover {
  background-color: #722e85;
  border: 1px solid #722e85;
}

picture.achievements-img img {
  height: 220px;
  width: auto;
  margin: 0 auto;
}

.achievements-desc {
  border-top: 1px solid #d6d6d6;
  padding-top: 20px;
  margin-top: 20px;
  padding-bottom: 20px;
  height: 100%;
}

.achievements-desc h5 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 20px;
  color: #000;
  /* text-transform: uppercase; */
  margin-bottom: 10px;
}

.achievements-desc p {
  font-size: 14px;
}

.achievements-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #edecf5;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.footer-menu a.active,
.footer-links a.active {
  font-weight: 600;
}

.section-careers .container {
  max-width: 950px !important;
}

.banner-overlay-light::before {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 100%);
}

.opportunity-item {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opportunity-title {
  font-size: 18px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d7d7d7;
  text-align: center;
}

.opportunity-list h6 {
  color: #4f4f4f;
  font-size: 16px;
  margin-bottom: 2px;
}

.opportunity-list span {
  color: #000;
  font-size: 16px;
  word-wrap: break-word;
}

.opportunity-list {
  gap: 30px;
}

.opportunity-list li {
  width: calc(33.33% - 20px);
}

.opportunity-cols .column {
  padding: 20px !important;
}

.opportunity-cols .columns {
  margin: -20px !important;
}

.event-gallery-item picture:before {
  background: linear-gradient(180deg,
      rgba(57, 49, 133, 0) 0%,
      rgba(57, 49, 133, 0.75) 100%);
}

.event-gallery-item picture {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}

.event-gallery-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
}

.event-gallery-item:not(:last-child) {
  margin-bottom: 24px;
}

.event-gallery-grid img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.event-gallery-second-grid .event-gallery-grid img {
  aspect-ratio: 2/1.15;
}

.event-gallery-second-grid .event-gallery-item:last-child img {
  aspect-ratio: 1 / 1.425;
}

.section-bg-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.careers-title-with-tagline .column:last-child {
  width: 270px;
  flex: 0 0 auto;
}

.file-upload label,
.file-upload {
  cursor: pointer;
  resize: none;
}

.file-upload-select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.file-select-button,
.file-select-button svg {
  position: relative;
  width: 20px;
  height: 20px;
}

.file-upload [type="file"] {
  display: none;
}

.careers-form .column {
  padding: 20px;
}

.careers-form .columns {
  margin: -20px !important;
}

.future-dev-card {
  background-color: #d2cde7;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  aspect-ratio: 1/1;
}

.future-dev-card h3 {
  font-size: 24px;
  color: #252525;
  margin-bottom: 8px;
}

.future-development-grid .column {
  padding: 40px;
}

.future-development-grid .columns {
  margin: -40px !important;
}

.border-accordian .tab-list-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.border-accordian .accordion-header {
  border-left: 0;
  padding: 20px 40px 20px 20px;
  text-transform: uppercase;
}

.border-accordian .accordion-header h6 {
  font-size: 18px;
}

.border-accordian .accordion-item {
  border-bottom: 1px solid rgb(37 37 37 / 10%);
  margin-bottom: 0 !important;
}

.accordion-content .list-point {
  margin-top: 20px;
}

.border-accordian .accordion-content .list-point li:not(:last-child) {
  margin-bottom: 6px;
}

.border-accordian .accordion-content .list-point:not(:last-child) {
  margin-bottom: 20px;
}

.border-accordian .accordion .accordion-content {
  padding: 20px;
  font-size: 15px;
  border-top: 1px solid rgb(37 37 37 / 10%);
}

/* Custom Checkbox Container */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  padding-bottom: 5px;
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-container .checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #555;
  transition: all 0.3s ease;
}

.checkbox-container input:checked~.checkmark {
  background-color: #393185;
  border-color: #393185;
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container .checkbox-label {
  font-size: 14px;
}

/* Custom Checkbox Container */
.lets-talk-title svg {
  display: flex;
}

.lets-talk-title {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.lets-talk-title span {
  line-height: 1;
}

.lets-talk-item:not(:last-child) {
  margin-bottom: 30px;
}

.lets-talk-desc a {
  display: flex;
  width: fit-content;
}

.lets-talk-desc {
  max-width: 460px;
}

.blog-title h3 a,
.blog-title h3 {
  color: #252525;
  font-size: 22px;
}

.read-more-blog {
  margin-top: 3px;
}

.section-blog-img {
  margin-bottom: 15px;
}

.section-blog-items:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.section-blog-items img {
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.page-without-banner header {
  position: fixed;
  background: linear-gradient(90deg, #06041fcf 0%, #290833cf 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.page-without-banner {
  padding-top: 100px;
}

.line-height-1 {
  line-height: 1;
}

.blog-item:not(:last-child) {
  margin-bottom: 50px;
}

.blog-item b {
  color: #252525;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.border-list-point li:not(:last-child) {
  margin-bottom: 15px;
}

.border-list-point li {
  border-left: 1px solid #393185;
  padding-left: 12px;
}

.blog-item h5 {
  font-family: "Frank Ruhl Libre", serif;
  color: #252525;
  margin-bottom: 20px;
  font-size: 30px;
}

.border-list-point:not(:last-child) {
  margin-bottom: 20px;
}

.section-achievements .section-title {
  margin-bottom: 50px !important;
}

#achievements-slider .splide__arrows {
  top: -100px;
}

.projects-properties-menu {
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 15;
  gap: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
  background-color: #ffffff9c;
  backdrop-filter: blur(10px);
}

.project-page-logo {
  width: fit-content;
  flex: 0 0 auto;
  border: 1px solid #D3C4AB;
  padding: 5px;
}

.project-page-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.project-menu-main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.project-menu-main:after,
.project-menu-main:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, rgb(255 255 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 9;
  opacity: 0;
}

#project-menu {
  white-space: nowrap;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.project-menu-item:not(:last-child) {
  margin-right: 50px;
}

.project-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  -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;
  color: #252525;
  font-weight: 400;
  font-size: 16px;
}

.project-menu-main:after {
  left: unset;
  right: 0;
  background: linear-gradient(280deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.project-detail-page header {
  position: absolute !important;
  backdrop-filter: unset !important;
  -webkit-backdrop-filter: unset !important;
}

.project-menu-item.active .project-menu-link {
  font-weight: 600;
}

.highlight-item img {
  flex: 0 0 45px;
  height: 45px;
  width: auto;
}

.project-highlights .column {
  margin-bottom: 30px !important;
}

.project-highlights .columns {
  margin-bottom: -30px !important;
}

.img-inner-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  width: calc(100% - 60px);
}

.b-t-gradient-overlay.theme-overlay:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.title-icon-accordion .accordion-header {
  justify-content: start;
  gap: 20px;
  text-transform: uppercase;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 18px;
  font-weight: 700;
  color: #252525;
  border-left: 0;
  padding-left: 0;
}

.accordion-icon {
  width: 60px;
  flex: 0 0 auto;
  border-right: 1px solid #A79ECD30;
}

.title-icon-accordion .accordion-item {
  border-bottom: 1px solid #A79ECD30;
  padding-bottom: 15px;
}

.title-icon-accordion .accordion-item:not(:last-child) {
  margin-bottom: 15px;
}

.connectivity-item {
  display: flex;
  justify-content: space-between;
  color: #252525;
}

.connectivity-item:not(:last-child) {
  margin-bottom: 8px;
}

.accordion-icon img {
  width: 40px;
}

.closeYbox {
  background-color: #000000;
}

.yBoxFrame {
  background-color: #252525;
}

.closeYbox::after,
.closeYbox::before {
  background-color: #fff;
  width: 51%;
}

.video-block .theme-block-img:before {
  opacity: 0.5;
  height: 100%;
  background-color: #000;
}

.video-block .theme-block-icon {
  opacity: 1;
  width: 50px;
  height: 50px;
  transform: translateY(-50%) !important;
  -webkit-transform: translateY(-50%) !important;
  -moz-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  -o-transform: translateY(-50%) !important;
}

.video-block .theme-block-icon svg {
  width: 100%;
  height: 100%;
}

.about-dev-logo img{
  max-width: 200px;
}

.about-dev-logo {
  display: flex;
  gap: 30px;
  justify-content: end;
  flex-direction: row-reverse;
}

.project-rera-cols .column:last-child {
  max-width: 300px;
}

.project-rera-cols .column:first-child {
  border-right: 1px solid #722E8530;
}

.project-rera-cols .column {
  padding: 0 40px;
}

.project-rera-cols .columns {
  margin: 0 -40px !important;
}

.qr-img {
  max-width: 150px;
  margin: 0 auto;
}

.rera-detail span {
  text-align: center;
  display: block;
  margin-top: 40px;
  font-size: 15px;
}

.modal-element {
  left: 0;
  margin: 0 auto;
  max-width: 800px;
  bottom: 50%;
  transform: translateY(50%);
  opacity: 0.3;
}

.rera-detail a {
  word-break: break-all;
}

.sub-title-line {
  position: absolute;
  font-size: 10px;
  bottom: 10px;
  right: 10px;
  color: #252525;
}

.achievements-desc small {
    color: #393185;
    font-weight: bold;
    font-size: 16px;
}

.disclaimer-block h6{
color: #393185;
font-size: 20px;
margin-bottom: 12px;
font-weight: 600;
}

#project-ready-to-move-slider .splide__arrows{
    display:none;
}