html,
body {
  overflow-x: clip !important;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Urbanist", sans-serif;
  color: #606060;
  font-size: 16px;
  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: #606060;
}

a:hover {
  color: #006cb6;
}

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: #ffffff30;
  backdrop-filter: blur(8px);
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 700px;
  width: 100%;
  padding: 30px;
  max-height: inherit;
  transition: all 0.3s linear;
  background-color: #00104f;
  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: #293c93;
  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: #006cb6;
  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,
.project-form-wrapper .col-form .form-control::-webkit-input-placeholder {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.sticky-bottom-form .col-form .form-control:-ms-input-placeholder,
.theme-modal .col-form .form-control:-ms-input-placeholder,
.project-form-wrapper .col-form .form-control:-ms-input-placeholder {
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.sticky-bottom-form .col-form .form-control::placeholder,
.theme-modal .col-form .form-control::placeholder,
.project-form-wrapper .col-form .form-control::placeholder {
  color: #ffffff;
  font-family: "Montserrat", 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: 50px;
  position: relative;
  z-index: 2;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1,
.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  line-height: 60px;
  color: #00104f;
  margin: 0;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.section-title h1 {
  color: #fff;
  font-size: 70px;
  line-height: 80px;
}

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: #006cb6;
}

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: 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: #006cb6;
  border-color: #006cb6;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #0060a0;
  border-color: #0060a0;
  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: #ffffff;
  border-color: #ffffff;
  color: #006cb6;
}

.btn.btn-white:hover {
  background-color: #3e8d61;
  border-color: #eeeeee;
  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: #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: #293c93 !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: #293c93;
  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-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: 45px;
  height: 45px;
  padding: 10px;
  color: #fff;
  background-color: #293c93;
  border: 1px solid #293c93;
  opacity: 1;
}

.splide__arrow:hover {
  background-color: #fff;
  color: #293c93;
  opacity: 1;
}

.splide__arrow svg {
  font-size: 24px;
}

.splide__arrow--prev {
  left: 60px;
}

.splide__arrow--next {
  right: 60px;
}

.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: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

header {
  position: fixed;
  z-index: 9999;
  padding: 12px 200px;
  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%); */
  -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 {
  background-color: #ffffff;
  -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%);
  -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-menu ul {
  display: flex;
  justify-content: end;
}

.menu-link {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.menu-link.active {
  color: #293c93;
}

.theme-logo img {
  width: auto;
  max-height: 70px;
  max-width: 220px;
}

.col-header:first-child {
  max-width: 240px;
  padding: 0;
  flex: 0 0 240px;
}

.menu-item {
  padding: 16px 10px;
}

.theme-padding {
  padding-left: 200px;
  padding-right: 200px;
}

.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: -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: #006cb6;
  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: #ffffff;
  border-top: 1px solid #60606033;
}

.section-title h2 {
  display: block;
}

#home #footer {
  padding: 30px 0 30px;
}

.col-copyright:last-child {
  text-align: right;
}

.theme-block-img {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.theme-block-img:before {
  /* content: ""; */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 32px;
  background: #4f7a87;
  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;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
}

.theme-block .theme-block-icon {
  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%);
  z-index: 9;
  border-radius: 100%;
  animation: theme-pulse 2s infinite;
}

.theme-block .theme-block-icon svg {
  width: 75px;
  height: 75px;
  color: #fff;
}

.theme-block:hover .theme-block-img:before {
  opacity: 0.5;
}

.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: #1b1b1b;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-top: 1px solid #60606033;
  border-bottom: unset;
}

.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: 0px 0 20px;
}

/* Accordion Css End */
.theme-light-bg {
  background-color: #e6f5ff;
}

.theme-bg {
  background-color: #006cb6;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #f8f8f8;
}

.theme-text {
  color: #006cb6 !important;
}

.theme-text-black {
  color: #1b1b1b !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 !important;
  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: 84px;
  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: #fff;
  color: #293c93;
  border-radius: 100%;
  border: 1px solid #293c93;
  -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: #293c93;
  color: #fff;
}

.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: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  background-color: #07313a1a;
  border-radius: 50px;
  width: fit-content;
}

.tab-list .tab a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 14px 24px;
  /* border: 1px solid #c3c3c3; */
  text-align: center;
  /* width: 200px; */
  background: transparent;
  cursor: pointer;
  user-select: none;
  border-radius: 50px;
}

.tab-list .tab a:hover,
.tab-list .tab.is-active a {
  background: #07313a;
  /* border: 1px solid #07313A; */
  color: #ffffff;
}

.stock-image,
.actual-image,
.artistic-impression {
  position: relative;
}

.stock-image-left::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;
  font-weight: 600;
  text-shadow: 1px 1px #000000;
}

.stock-image-left::after {
  content: "Stock Image";
  right: 0;
  left: 10px;
}

.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;
}

.social-icon {
  position: relative;
  color: #fff;
  height: 30px;
  width: 30px;
  display: block;
  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;
  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;
}

.about-us-img img {
  border-radius: 0 0 0 30px;
}

.hover-yellow {
  border: 1px solid #f0bd1b33;
}

.hover-blue {
  border: 1px solid #293c9333;
}

.hover-green {
  border: 1px solid #3e8d6133;
}

.hover-red {
  border: 1px solid #eb212733;
}

.hover-yellow:hover {
  background-color: #f0bd1b0d;
  -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: 1px solid transparent;
}

.hover-blue:hover {
  background-color: #293c930d;
  -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: 1px solid transparent;
}

.hover-green:hover {
  background-color: #3e8d610d;
  -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: 1px solid transparent;
}

.hover-red:hover {
  background-color: #eb21270d;
  -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: 1px solid transparent;
}

.blue-text {
  color: #293c93;
}

.yellow-text {
  color: #f0bd1b;
}

.green-text {
  color: #3e8d61;
}

.red-text {
  color: #eb2127;
}

.project-block,
.about-block {
  max-width: 670px;
}

.project-block {
  margin-left: auto;
}

.project-img img {
  border-radius: 0 30px 30px 0;
}

.card-icon {
  max-width: fit-content;
  margin-bottom: 80px;
}

.pillars-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 26px 20px;
  max-width: 360px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  -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;
}

.card-content span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.element-right-hover,
.element-right {
  position: absolute;
  width: fit-content;
  right: -50px;
  top: 0;
  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;
}

.element-right-hover {
  display: none;
  -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;
}

.pillars-card:hover .element-right {
  display: none;
  -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;
}

.pillars-card:hover .element-right-hover {
  display: block;
  -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;
}

.banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
}

.banner-element {
  width: fit-content;
  margin: 0 auto;
}

.banner-image {
  position: relative;
  overflow: hidden;
}

.banner-image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000066;
}

.footer-logo {
  max-width: fit-content;
}

.footer-col-detail {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-col:last-child {
  flex: 0 0 35%;
}

.columns.is-variable.is-8 {
  --columnGap: 2rem;
}

.footer-col.office-col {
  max-width: 340px;
}

.footer-col.contact-col {
  max-width: 180px;
}

.row-footer span {
  color: #1b1b1b;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.footer-container {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #1b1b1b;
}

.footer-menu {
  display: flex;
  justify-content: end;
  gap: 30px;
}

.line {
  position: relative;
}

.line::before {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00000061;
  height: 100%;
  width: 2px;
}

.order-2 {
  order: 2;
}

.insomenu-bars {
  top: 50%;
  right: 200px;
  margin: 0;
  display: inline-block;
  height: 40px;
  width: 40px;
  position: absolute;
  z-index: 444;
  cursor: pointer;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.insomenu-bars span,
.insomenu-bars span:after,
.insomenu-bars span:before {
  width: 30px;
  border-radius: 0;
  -webkit-transition: -webkit-transform ease 0.15s;
  transition: -webkit-transform ease 0.15s;
  transition: transform ease 0.15s;
  transition: transform ease 0.15s, -webkit-transform ease 0.15s;
  position: absolute;
  left: inherit;
  right: 0;
  margin: 0 auto;
  height: 2px;
  background-color: #fff;
}

.insomenu-bars span:before {
  top: -8px;
}

.insomenu-active .insomenu-bars span,
.insomenu-active .insomenu-bars span:after,
.insomenu-active .insomenu-bars span:before {
  opacity: 1;
}

.insomenu-bars span {
  top: 50%;
  display: block;
  margin-top: -2px;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.insomenu-bars span:after,
.insomenu-bars span:before {
  display: block;
  content: "";
}

.insomenu-bars span:before {
  top: -8px;
  -webkit-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.insomenu-bars span:after {
  bottom: -8px;
  width: 30px;
  -webkit-transition: bottom 0.1s 0.14s ease,
    -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease,
    -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease,
    transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease,
    transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.insomenu-active .insomenu-bars span {
  -webkit-transition-delay: 0.14s;
  transition-delay: 0.14s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.insomenu-active .insomenu-bars span:before {
  top: 0;
  -webkit-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  opacity: 1;
  width: 25px;
  background-color: #28438c;
}

.insomenu-active .insomenu-bars span:after {
  bottom: 0;
  transition: bottom 0.1s ease,
    -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 25px;
  background-color: #28438c;
}

.insomenu-active .insomenu-bars span {
  width: 25px;
}

.insomenu-active .menu-creative,
.insomenu-active .our-offices-item:first-child {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.insomenu-active .our-offices-item:last-child {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.theme-menu {
  position: fixed;
  background-color: #ffffff;
  color: #fff;
  width: 100%;
  right: -400px;
  padding: 0;
  padding: 100px 60px 60px 60px !important;
  margin-top: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  opacity: 0;
  transition: all 1s ease-out;
  pointer-events: none;
  overflow-y: auto;
  border-left: 1px solid #d5d5d5;
}

.insomenu-active .theme-menu {
  opacity: 1;
  pointer-events: all;
  right: 0;
}

.theme-menu ul li {
  padding: 20px 0;
  border-bottom: 1px solid #d5d5d5;
}

.menu-item {
  line-height: 32px;
}

.theme-menu ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sticky-btn-enquire {
  z-index: 888 !important;
}

.theme-menu ul {
  flex-direction: column;
  justify-content: start;
}

.desktop-menu {
  padding-right: 60px;
  gap: 30px;
}

.footer-element {
  width: 110px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.mt-50 {
  margin-bottom: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.arrow-btn {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 20px;
  border: 1px solid #00104f;
  width: fit-content;
  border-radius: 5px;
  position: relative;
}

/* .arrow-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  background-color: #28438c94;
  left: 0;
  right: 0;
  margin: auto;
  -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;
} */

.arrow-btn.yellow::before {
  background-color: #f0be1ba9;
}

.arrow-btn:hover::before {
  width: 100%;
  height: 100%;
  color: #fff !important;
  -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;
  z-index: -1;
}

.arrow-btn:hover {
  background-color: #00104f;
}

.arrow-btn span {
  color: #000;
  -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;
}

.arrow-btn:hover svg path {
  stroke: #fff !important;
  -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;
}

.arrow-btn:hover span {
  color: #fff;
  -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;
}

.arrow-btn.yellow:hover svg path {
  stroke: #000;
  -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;
}

.arrow-btn.yellow:hover span {
  color: #000;
  -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 .insomenu-bars span,
#header.sticky .insomenu-bars span:after,
#header.sticky .insomenu-bars span:before {
  background-color: #293c93;
}

.desktop-menu a {
  color: #fff;
}

#header.sticky .desktop-menu a {
  color: #606060;
}

.normal-logo {
  display: none;
}

#header.sticky .normal-logo {
  display: block;
}

#header.sticky .white-logo {
  display: none;
}

.fill-header .normal-logo {
  display: block;
}

.fill-header .white-logo {
  display: none;
}

.fill-header .desktop-menu a {
  color: #000;
}

.fill-header .white-logo {
  display: none;
}

.fill-header .insomenu-bars span,
.fill-header .insomenu-bars span:after,
.fill-header .insomenu-bars span:before {
  background-color: #293c93;
}

.fill-header header {
  background-color: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
}

.project-form-wrapper {
  background: #293c93;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.project-form-wrapper-tagline {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.about-us-block {
  display: flex;
  height: 100%;
}

.about-us-block.has-text-centered.about-us-block-desc {
  flex-direction: column;
  justify-content: center;
}

.about-us-block.about-us-block-1 {
  align-items: end;
  min-height: 600px;
}

.about-us-block.about-us-block-3 {
  justify-content: right;
}

.about-us-block-1 .about-us-page-img img {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.about-us-block-3 .about-us-page-img img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.theme-btn {
  display: inline-block;
  position: relative;
  border: 1px solid #00104f;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 16px;
  line-height: normal;
  background-color: #00104f;
  color: #fff;
  border-radius: 5px;
}

.theme-btn:hover {
  background-color: transparent;
  color: #00104f;
}

.theme-video-block .theme-block-img:before {
  background: #00000080;
  opacity: 1 !important;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
}

.theme-block-img img {
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
}

.vision-img img,
.mission-img img {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.vision-block {
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 16px;
  padding: 40px;
}

.vision-block.yellow-bg {
  background-color: #f0bd1b14;
}

.vision-block.yellow-bg .section-title h2 {
  color: #f0bd1b;
}

.vision-block.blue-bg {
  background-color: #293c9314;
}

.vision-block.blue-bg .section-title h2 {
  color: #293c93;
}

.leadership-block {
  max-width: 800px;
  margin: 0 auto;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  text-align: center;
  background-color: #fffffff0;
  padding: 80px;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}

.leadership-block .arrow-btn {
  margin: 0 auto;
}

.leadership-block .arrow-btn:hover {
  background-color: #00104f;
}

.leadership-desc {
  margin-bottom: 50px;
}

.expertise-img img {
  width: auto;
  height: 60px;
  margin: 0 auto 10px;
}

.expertise-desc p {
  max-width: 315px;
  margin: 0 auto;
}

.col-expertise:not(:last-child) {
  border-right: 1px solid #606060;
}

.col-vision-mission:nth-child(3).order-2 {
  order: unset;
}

.connect-details a {
  display: block;
  text-decoration: underline;
  margin-bottom: 5px;
  padding-bottom: 2px;
}

.social-icon svg {
  width: 30px;
  height: 30px;
}

.about-us-page-img {
  position: relative;
  height: fit-content;
}

.our-leaders-block {
  display: flex;
  align-items: center;
  position: relative;
}

.columns.is-variable.is-9 {
  --columnGap: 50px;
}

.leaders-author-desc {
  font-size: 18px;
  margin-top: 24px;
  max-width: 400px;
}

.leaders-quotes svg {
  width: 90px;
  height: 80px;
}

.leaders-author h5 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.leaders-author h6 {
  font-size: 16px;
  font-weight: 600;
}

.leaders-author {
  margin-top: 32px;
}

.our-leaders-img picture img {
  height: auto;
  width: 100%;
  max-width: inherit;
}

.section-our-leaders:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: #293c93;
}

.section-our-leaders .column:nth-child(even) .our-leaders-img {
  order: 2;
}

.section-our-leaders .column:nth-child(even) {
  text-align: right;
}

.section-our-leaders .column:nth-child(even) .leaders-author-desc {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}

.core-leaders-img {
  border-radius: 24px;
  border: 1px solid rgba(41, 60, 147, 0.24);
  overflow: hidden;
  position: relative;
}

.core-leaders-desc h5 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}

.core-leaders-desc h6 {
  font-size: 16px;
  font-weight: 600;
}

.core-leaders-desc {
  margin-top: 10px;
}

.our-story-block h6 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.our-story-list li {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.col-our-story:nth-child(even) .our-story-blank-block {
  order: 2;
}

.col-our-story:nth-child(even) .our-story-block {
  justify-content: end;
}

.our-story-list {
  display: flex;
  flex-direction: column;
}

.our-story-list .our-story-block::after,
.our-story-list .our-story-block::before {
  position: absolute;
  content: "";
}

.our-story-list .our-story-block::before {
  width: 15px;
  height: 15px;
  top: -6px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.our-story-list .our-story-block::after {
  background-color: #ebebeb;
  width: calc(100% - 35px);
  left: 25px;
  top: 0;
  height: 3px;
}

.col-our-story:nth-child(even) .our-story-list .our-story-block {
  padding-bottom: 30px;
}

.col-our-story:nth-child(odd) .our-story-list .our-story-block {
  padding-top: 30px;
}

.blue-block-card h6 {
  color: #293c93;
}

.red-block-card h6 {
  color: #eb2127;
}

.yellow-block-card h6 {
  color: #f0bd1b;
}

.green-block-card h6 {
  color: #4caf50;
}

.blue-block-card .our-story-block::before {
  background-color: #293c93;
}

.red-block-card .our-story-block::before {
  background-color: #eb2127;
}

.yellow-block-card .our-story-block::before {
  background-color: #f0bd1b;
}

.green-block-card .our-story-block::before {
  background-color: #4caf50;
}

.col-our-story:nth-child(even) .our-story-block::after {
  bottom: -3px;
  top: unset;
}

.col-our-story:nth-child(even) .our-story-block::before {
  top: unset;
  bottom: -9px;
}

.leaders-img-sandeepa {
  width: 75%;
}

.leaders-img-srikanth {
  width: 55%;
}

.blog-title h3 {
  font-size: 22px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-title h3 a {
  color: #1b1b1b !important;
}

.section-blog-img img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

.section-blog-detail {
  padding: 24px;
}

small.theme-date {
  color: #606060;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.blog-detail-desc {
  color: #606060;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.know-more-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 12px;
}

.know-more-link svg {
  display: flex;
  transform: rotate(-45deg);
}

.know-more-link a:hover {
  background-color: #fff;
  color: #000;
}

.theme-overlay:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000066;
}

.single-post-blog-banner-img img {
  aspect-ratio: 11/4;
  object-fit: cover;
}

.theme-card-desc:not(:last-child) {
  margin-bottom: 40px;
}

.theme-card-title-and-desc:not(:last-child) {
  margin-bottom: 30px;
}

.theme-card-title-and-desc h3 {
  font-size: 24px;
  color: #1b1b1b;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.theme-card-title-and-desc h3:before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 28px;
  height: 20px;
  background-image: url(../images/element/element.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.section-blog-items {
  border: 1px solid #ebebeb;
}

.first-row-blog .section-blog-items {
  display: flex;
  align-items: center;
}

.first-row-blog .section-blog-img,
.first-row-blog .section-blog-detail {
  flex: 0 0 auto;
  width: 50%;
}

.first-row-blog .section-blog-detail {
  padding: 50px;
}

.project-detail-page .theme-menu-wrapper {
  display: none;
}

/* .project-detail-page .col-header:last-child {
  max-width: 60px;
  padding: 0;
  flex: 0 0 60px;
} */

.project-detail-page .desktop-menu {
  justify-content: center !important;
  padding: 0 30px;
}

.pd-img-title {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 12px;
  color: #000;
  font-weight: 500;
}

.pd-ovireview-logo {
  max-width: fit-content;
  margin-bottom: 50px;
}

.pd-section-title {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.pd-section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 46px;
  color: #1b1b1b;
  margin: 0;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.pd-sub-title {
  color: #aa8e55;
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pd-banner-enquire {
  background-color: #ff8800;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border: unset;
}

.pd-banner-enquire:hover {
  background-color: #07313a;
  color: #fff;
}

.pd-enquire {
  background-color: #ff8800;
  color: #fff;
  position: fixed;
  padding: 12px 24px;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  z-index: 99;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transition: all 0.5s ease;
}

.plans-btn.pd-enquire {
  background-color: #4f7a87;
  position: relative;
  right: unset;
  bottom: unset;
  display: block;
  width: fit-content;
  margin: 0 auto;
  margin-top: 30px;
}

.pd-enquire:hover {
  background-color: #07313a;
  color: #fff;
}

.pd-element {
  right: 0;
  bottom: 0;
  width: fit-content;
  position: absolute;
  z-index: -1;
  opacity: 0.2;
}

.pd-bg-offwhite {
  background-color: #fafafa;
}

.pd-highlight-block img {
  max-width: fit-content;
  margin: 0 auto 10px;
}

.pd-highlight-block {
  margin: 0 auto;
  padding: 0 50px;
}

.pd-highlight-block::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #606060;
}

.pd-highlight-block h6 {
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 600;
}

.project-detail-page .splide__arrow {
  width: 55px;
  height: 45px;
  padding: 16px;
  color: #4f7a87;
  background-color: #fff;
  border: 1px solid #4f7a87;
  opacity: 1;
  opacity: 0.5;
}

.project-detail-page .splide__arrow:hover {
  background-color: #4f7a87;
  color: #fff;
}

.project-detail-page .arrow-bottom .splide__arrows {
  gap: 0;
  margin-top: 50px;
}

.project-detail-page .splide__arrow.splide__arrow--prev {
  border-radius: 20px 0px 0px 20px;
  border-right: unset;
}

.project-detail-page .splide__arrow.splide__arrow--next {
  border-radius: 0px 20px 20px 0px;
}

.section-pd-key-highlights::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 19%;
  height: 100%;
  background-color: #ffffff40;
  z-index: 2;
  backdrop-filter: blur(3px);
}

/* .section-pd-key-highlights::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 17%;
  height: 100%;
  background: linear-gradient(90deg, rgba(250, 250, 250, 1) 30%, rgb(250 250 250 / 92%) 100%);
  z-index: 2;
} */

.pd-amenitie-items-inner img {
  max-width: fit-content;
  margin: 0 auto 10px;
}

.pd-amenitie-items-inner {
  padding: 0 50px;
  border-right: 1px solid #606060;
  height: 100%;
}

.pd-amenitie-items {
  display: flex;
  flex-direction: column;
  gap: 50px;
  height: 100%;
}

.pd-amenitie-items-inner h6 {
  color: #07313a;
  font-size: 16px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.pd-amenitie-items-inner span {
  font-size: 14px;
}

.pd-rera-no {
  text-align: center;
  background-color: #aa8e55;
  width: 100%;
  color: #fff;
  padding: 10px 20px;
}

.pd-visit-block {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 50px 100px;
  border-radius: 20px;
  align-items: center;
  border: 1px solid #ffffff1a;
  color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.visit-btn {
  padding: 15px 30px;
  background-color: #fff;
  border: unset;
  border: 1px solid #fff;
  font-size: 16px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.section-pd-visit-book {
  background-color: #4f7a87;
}

.pd-visit-block h5 {
  font-size: 22px;
  font-weight: 500;
}

.pd-faq-inner {
  max-width: 940px;
}

.pd-faq-block {
  display: flex;
  justify-content: space-between;
}

.pd-about-logo {
  width: fit-content;
}

.pd-btn {
  padding: 15px 20px;
  background-color: #4f7a87;
  border-radius: 50px;
  color: #fff;
}

.pd-btn:hover {
  background-color: #fff;
  color: #4f7a87;
}

.specifications-block {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  padding: 10px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #ffffff1a;
  -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;
}

.specifications-block span {
  color: #fff;
  font-weight: 600;
}

.specifications-block img {
  width: auto;
  height: 50px;
}

.specifications-block:hover {
  background: #4f7a8780;
  -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;
}

.section-pd-specifications {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/project-detail/pd-specifications/specifications-bg.webp);
}

.section-pd-specifications::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #07313aeb;
}

/* .no-webp .section-pd-specifications{
  background-image: url(../images/project-detail/pd-specifications/specifications-bg.jpg);
}
.webp .section-pd-specifications{
  background-image: url(../images/project-detail/pd-specifications/specifications-bg.webp);
} */
.dark {
  color: #fff !important;
}

.specifications-col {
  width: 20%;
  flex: 0 0 20%;
  position: relative;
}

/* .specifications-block:hover .specifications-block-inner {
  top: 90px;
  opacity: 1;
  visibility: visible;
  -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;
} */

/* .specifications-block-inner {
  display: none;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.specifications-block-inner {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 5;
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  width: max-content;
  max-width: 530px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: none;
}

.specifications-block.active+.specifications-block-inner {
  display: block;
}

.specifications-block-inner::before {
  position: absolute;
  content: "";
  top: -18px;
  left: 40px;
  width: 25px;
  height: 25px;
  background-color: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.specifications-block-inner.left-align {
  left: auto;
  right: 0;
}

.specifications-block-inner.left-align::before {
  left: auto;
  right: 40px;
} */

.specifications-block-inner {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 5;
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  width: max-content;
  max-width: 530px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: none;
  margin-top: 10px;
}

.specifications-block.active .specifications-block-inner {
  display: block;
}

.specifications-block-inner::before {
  position: absolute;
  content: "";
  top: -18px;
  left: 40px;
  width: 25px;
  height: 25px;
  background-color: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.specifications-block-inner.left-align {
  left: auto;
  right: 0;
}

.specifications-block-inner.left-align::before {
  left: auto;
  right: 40px;
}

.specifications-block-inner b {
  color: #000;
}

.specifications-block-inner p {
  margin-bottom: 10px;
}

.specifications-cols {
  justify-content: center;
}

.section-pd-specifications {
  padding-bottom: 200px !important;
  overflow: visible;
  z-index: 11;
}

.pd-gallery-item .theme-block .theme-block-icon svg,
.pd-gallery-item .theme-block .theme-block-icon {
  width: 40px;
  height: 40px;
}

.arrow-top .splide__arrows {
  position: absolute;
  top: -60px;
  right: 200px;
  display: flex;
}

.arrow-top .splide__arrow {
  position: static;
  transform: unset;
}

.plans-tab .tab-list {
  justify-content: center;
  margin: 0 auto;
}

#pd-plans-slider2 .theme-block-img,
#pd-plans-slider .theme-block-img {
  border: 1px solid #00000033;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

#pd-plans-slider2,
#pd-plans-slider {
  max-width: 800px;
  margin: 0 auto;
}

.pd-plans-title {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-plans-title span {
  color: #1b1b1b;
  font-weight: 600;
}

.pd-advantage-icon {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #606060;
}

.pd-advantage-title {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #606060;
}

.pd-location-content {
  /* max-width: 530px; */
  /* margin-left: 150px; */
}

.pd-advantage-slider.arrow-top .splide__arrows {
  position: absolute;
  top: 20px;
  right: 0px;
  display: flex;
}

.pd-list-point.list-point li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-image: url(../images/element/point.svg) !important;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: unset;
  background-color: unset;
  left: 0;
  top: 6px;
}

.pd-advantage-title h5 {
  color: #07313a;
  font-size: 18px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.pd-banner-element {
  max-width: 420px;
}

.pd-banner-content {
  position: absolute;
  left: 150px;
  top: 50%;
  transform: translateY(-50%);
}

#pd-main-slider .splide__pagination {
  bottom: 20px;
  position: absolute;
}

#pd-main-slider .splide__pagination__page.is-active {
  background: #ff8800;
}

#pd-main-slider .splide__pagination__page {
  background: #ffffff80;
}

.pd-enquire.pd-banner-enquire {
  right: 0;
  left: 0;
  width: fit-content;
  margin: 0 auto;
  bottom: -30px;
}

.theme-btn.pd-theme-btn {
  background-color: #07313a;
  color: #fff;
}

.theme-btn.pd-theme-btn:hover {
  background-color: transparent;
  border: 1px solid #fff;
}

.visit-btn:hover {
  background-color: transparent;
  color: #fff !important;
}

.pd-plan-block {
  max-width: fit-content;
  margin: 0 auto;
}

.close-model {
  position: absolute;
  top: 10px;
  right: 10px;
}

.core-leaders-detile .theme-modal-card {
  max-width: 700px;
}

.core-leader-desc {
  color: #fff;
}

.core-leader-desc h5 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.core-leader-desc span {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.core-leaders-card {
  max-width: fit-content;
  margin: 0 auto;
}

.pd-enquire.pd-enquire-show {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.pd-banner-title {
  text-align: center;
  position: relative;
}

.pd-banner-title::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 2px;
  height: 500px;
  left: 0;
  right: 0;
  top: 120%;
  margin: 0 auto;
}

.pd-banner-title::after {
  position: absolute;
  content: "";
  width: 120%;
  height: 120%;
  right: 50%;
  bottom: 110%;
  border: 2px solid #ddd;
  border-radius: 0 300px 0 0;
  border-bottom: 0;
  border-left: 0;
}

.plans-btn {
  text-align: center;
  margin: 30px auto 0;
  display: block;
  width: fit-content;
}

.specifications-block-inner p:last-child {
  margin-bottom: 0;
}

.project-av {
  max-width: 600px;
}

.pd-banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 200px;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 60%;
  justify-content: space-between;
}

.pd-banner-sub-title span {
  font-size: 26px;
  color: #fff;
  text-transform: capitalize;
}

.pd-banner-sub-title small {
  font-size: 38px;
}

.mobile-show {
  display: none;
}

.banner-enquire {
  background-color: #ff8800;
  color: #fff;
  display: block;
  padding: 12px 24px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  width: fit-content;
  transition: all 0.5s ease;
  margin-top: 15px;
}

.banner-enquire:hover {
  background-color: #07313a;
  color: #fff;
}

.pd-plan-block-inner {
  backdrop-filter: blur(5px);
  border: 1px solid #00000033;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.pd-plan-block-inner img {
  filter: blur(12px);
}

.expertise-block-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 490px;
}

.expertise-block-inner img {
  max-width: fit-content;
}

.expertise-block-inner h6 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.expertise-wrapper {
  max-width: 720px;
  margin-left: auto;
}

.expertise-block-inner:not(:last-child) {
  margin-bottom: 30px;
}

.partner-cols .column {
  width: 20%;
  flex: 0 auto;
  margin-bottom: 50px;
}

.partner-cols {
  margin-bottom: -50px !important;
}

.partner-logo img {
  max-width: fit-content;
  margin: 0 auto;
}

.partner-name h5 {
  font-size: 16px;
  font-weight: 700;
}

.partner-name {
  min-height: 50px;
  display: block;
  margin-bottom: 40px;
  position: relative;
}

.partner-name::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 40px;
  left: 0;
  right: 0;
  top: 90%;
  background-color: #606060;
  margin: 0 auto;
}

.santhusta-expertise img {
  border-radius: 0 30px 30px 0;
}

.project-99::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 30px;
  background: radial-gradient(50.86% 229.19% at 50% 51.78%,
      rgba(0, 0, 0, 0) 11.65%,
      rgba(0, 0, 0, 0.7) 100%);
}

.project-99-block {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  height: 80%;
  justify-content: space-between;
}

.project-99-details img {
  max-width: 90px;
  margin-bottom: 15px;
}

.project-99-details span {
  font-size: 28px;
  line-height: normal;
}

.project-99-details small {
  font-size: 38px;
}

.arrow-right {
  position: absolute;
  bottom: 80px;
  right: 80px;
  border-color: #fff;
}

.arrow-right span {
  color: #fff;
}

.arrow-right svg path {
  stroke: #fff !important;
}

.arrow-right:hover span {
  color: #fff !important;
}

.arrow-right:hover svg path {
  stroke: #fff !important;
}

.project-99bg img {
  border-radius: 30px;
}
.image-modal .theme-modal-card {
  max-width: 1020px;
}