@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
  font-family: "Malking";
  src: url("/assets/fonts/Malking-Regular.woff2") format("woff2"), url("/assets/fonts/Malking-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.primary-btn {
  background: #70E4C2;
  padding: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  color: #09090B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
}

.primary-btn.yellow {
  background: #CDAA85;
}

.primary-btn:hover {
  background: #45D1AB;
}

.primary-btn:hover.yellow {
  background: #B88F66;
}

.primary-btn:active {
  background: #2BA888;
}

.primary-btn:active.yellow {
  background: #967049;
}

.secondary-btn {
  display: flex;
  padding: 16px;
  gap: 8px;
  justify-content: center;
  align-items: center;
  border: 1px solid #18181B;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  color: #09090B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
  background-color: transparent !important;
}

.secondary-btn.white {
  color: #FFF;
  border: 1px solid #FFF;
}

.secondary-btn:hover {
  background-color: #E4E4E7 !important;
}

.secondary-btn:hover.white {
  background-color: #3F3F46 !important;
}

.secondary-btn:active {
  background-color: #A1A1AA !important;
}

.secondary-btn:active.white {
  background-color: #71717A !important;
}

header {
  padding: 5px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 40;
  background: rgba(9, 9, 11, 0.3);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.02), 0px 2px 4px 0px rgba(0, 0, 0, 0.08);

}

header.header-white {
  background: #ffffff;
  transition: background 0.5s ease-in-out;
}

/* nav links turn dark */
header.header-white .nav-link>a {
  color: #18181B;
}

header.header-white .nav-link>a:hover {
  color: #18181B;
  border-bottom-color: #18181B;
}

header.header-white .nav-btn>a:active {
  color: #52525B;
  border-bottom-color: #52525B;
}

header.header-white svg.logo path {
  fill: #000000;
}

header.header-white svg.left path {
  fill: #70E4C2;
}

header .container {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}

header .container ul {
  padding-left: 0;
  margin-bottom: 0;
}

header .logo-container {
  z-index: 999999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile,
.nav-links ul.mobile,
header .logo-container .cta-mobile {
  display: none;
}

.nav-btn {
  flex: none;
  display: flex;
}

#check,
.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
}

.nav-link>a {
  letter-spacing: -0.48px;
  font-weight: 500;
  line-height: 100%;
}

.nav-link>a {
  font-family: "Poppins", sans-serif;
}

#check:checked~.hamburger-menu-container .hamburger-menu div,
.btn-outline-white {
  background-color: transparent;
}

.insights .dropdown .dropdown-inner .inner-col:hover,
.services .dropdown,
.solutions .dropdown .dropdown-inner .inner-col:hover,
header .logo-container img {
  background: #fff;
}

.nav-links {
  flex: 2;
  align-items: center;
  justify-content: flex-end;
  display: flex;
}

.nav-links>ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-link {
  margin-right: 24px;
  padding: 25px 0;
}

.nav-link.insights:hover .drop-down-arrow,
.nav-link.services:hover .drop-down-arrow,
.nav-link.solutions:hover .drop-down-arrow {
  transform: rotate(180deg);
  transition: 0.4s;
}

.nav-link.insights,
.nav-link.services,
.nav-link.solutions {
  cursor: pointer;
}

.nav-link:last-child {
  margin-right: 0;
}

.nav-link>a {
  color: var(--Colors-Neutral-White, #FFF);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid transparent;
}

.nav-link>a:hover {
  color: #D4D4D8;
  border-bottom: 1px solid var(--Colors-Neutral-Neutral-300, #D4D4D8);
}

.nav-link>a:active {
  color: #71717A;
  border-bottom: 1px solid var(--Colors-Neutral-Neutral-500, #71717A);
}

.nav-link>a.primary-btn {
  color: #fff;
}

header .container .cta-desktop a.primary-btn {
  padding: 10px 16px;
}

.services .dropdown {
  max-height: 675px;
  position: absolute;
  top: 100%;
  max-width: 100%;
  width: 100%;
  right: 0;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  border-radius: 13px;
  padding: 32px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.32);
  overflow-y: scroll;
}

.insights .dropdown,
.solutions .dropdown {
  top: 100%;
  max-width: 12rem;
  width: 100%;
  transform: translateY(10px);
  border-radius: 13px;
  padding: 12px 8px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.32);
  background: #fff;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.services .dropdown .dropdown-inner {
  display: flex;
}

.services .dropdown .dropdown-inner .inner-col {
  padding: 40px;
  max-width: 324px;
  width: 100%;
  border-radius: var(--Values-16px, 16px);
  background: rgba(81, 68, 224, 0.08);
}

.services .dropdown .dropdown-inner .inner-col p {
  padding: 12px;
  line-height: 22px;
  cursor: pointer;
  transition: all 0.5s;
}

.tab-content {
  display: none;
  gap: 80px;
  min-height: 397px;
}

.tab-content.active {
  display: flex;
}

.services .dropdown .dropdown-inner .link-list a,
.services .dropdown .dropdown-inner .link-list p.not-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  min-width: 283px;
  border-bottom: 1px solid #E0E0E0;
}

.services .dropdown .dropdown-inner .link-list a:last-of-type,
.services .dropdown .dropdown-inner .link-list p.not-link:last-of-type {
  border-bottom: none;
}

.services .dropdown .dropdown-inner .inner-col .tab-content {
  display: none;
}

.services .dropdown .dropdown-inner .inner-col .tab-content.active {
  display: flex;
}

.services .dropdown .dropdown-inner .inner-col #tab-buttons p.active {
  border-radius: 8px;
  background: var(--white-100, #FFF);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.services .dropdown .dropdown-inner .inner-col .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.insights .dropdown .dropdown-inner .inner-col a img,
.services .dropdown .dropdown-inner .inner-col .top img,
.solutions .dropdown .dropdown-inner .inner-col a img {
  opacity: 0;
}

.available-post .container .job-card-grid .job-detail-card .inner-left,
.services .dropdown .dropdown-inner .inner-col .bottom-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insights .dropdown .dropdown-inner .inner-col a:hover,
.services .dropdown .dropdown-inner .inner-col:hover,
.solutions .dropdown .dropdown-inner .inner-col a:hover {
  background: rgba(81, 68, 224, 0.08);
}

.desktop {
  display: block;
}

.solutions .dropdown {
  right: 34%;
  overflow: hidden;
}

#check,
.searchbox .searchboxlabel {
  top: 50%;
  transform: translateY(-50%);
}

.dropdown-link:hover>.dropdown,
.nav-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hamburger-menu div {
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background-color: #000;
  position: relative;
  z-index: 1001;
  transition: 0.4s;
}

.hamburger-menu div:after,
.hamburger-menu div:before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #000;
  border-radius: 3px;
  transition: 0.4s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  right: 0.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services .dropdown::-webkit-scrollbar {
  width: 10px;
}

.services .dropdown::-webkit-scrollbar-thumb {
  background: #585361;
  border-radius: 24px;
}

@media (max-width: 991px) {
  header {
    background: #FFF;
  }

  header svg.logo path {
    fill: #000000 !important;
  }

  header svg.left path {
    fill: #70E4C2 !important;
  }

  .logo-container {
    width: 100%;
  }

  .dropdown,
  .nav-link {
    opacity: 1;
  }

  .dropdown,
  .nav-btn {
    background-color: #fff;
  }

  .dropdown,
  .nav-btn,
  .nav-link,
  .nav-links,
  .nav-links ul.mobile .next-step {
    width: 100%;
  }

  .hamburger-menu-container {
    display: flex;
  }

  #check,
  .dropdown-link:hover>.dropdown,
  .nav-link:hover>.dropdown,
  .nav-links,
  header .container .logo-container .cta-mobile {
    display: block;
  }

  header .container .cta-desktop {
    display: none;
  }

  .nav-btn {
    position: absolute;
    top: 12px;
    padding-top: 36px;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    transition: 0.4s linear;
    overflow-y: hidden;
    max-height: 0;
    gap: 40px;
  }

  header .container #check:checked~.nav-btn {
    border-radius: 0;
    max-height: 90vh;
    box-shadow: 0 182px 51px 0 rgba(0, 0, 0, 0), 0 117px 47px 0 rgba(0, 0, 0, 0.01), 0 66px 39px 0 rgba(0, 0, 0, 0.05), 0 29px 29px 0 rgba(0, 0, 0, 0.09), 0 7px 16px 0 rgba(0, 0, 0, 0.1);
  }

  .nav-btn.active-submenu .inner {
    max-height: 77vh;
    overflow-y: scroll;
  }

  header .container .logo-container .cta-mobile .primary-btn {
    font-size: 14px;
    margin-right: 16px;
    padding: 10px 16px;
  }

  header .container {
    --bs-gutter-x: 2rem;
    padding: 5px 20px;
  }

  .nav-links {
    flex: none;
  }

  .dropdown,
  .nav-links ul.desktop {
    display: none;
  }

  .nav-links>ul,
  .with-sidebar-box {
    flex-direction: column;
  }

  .dropdown {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    pointer-events: auto;
    padding: 0;
  }

  .nav-links ul.mobile {
    padding: 16px;
    display: flex;
  }

  .nav-links ul.mobile li.nav-link {
    padding: 0;
    margin-right: 0;
  }

  .nav-links ul.mobile li.nav-link:nth-child(4) {
    border-bottom: none;
  }

  .nav-links ul.mobile li.nav-link a {
    color: #18181B;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 8px;
    border-bottom: 1px solid transparent;
  }

  .nav-links ul.mobile li.nav-link a:hover {
    color: #000000;
    background-color: #b8e5d8;
  }


  .nav-links ul.mobile .next-step .top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
  }

  .nav-links ul.mobile .next-step .top a {
    color: var(--Text-Tertiary, #585361);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }

  header .hamburger-menu {
    height: auto;
    width: auto;
  }

  header .logo-container {
    background: #fff;
  }

  .nav-links ul.mobile #services-content .inner {
    overflow-y: scroll;
    max-height: 700px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  header {
    padding: 12px 0;
  }

  header .container {
    --bs-gutter-x: 2rem;
    padding: 0 16px;
  }

  header .hamburger-menu {
    height: auto;
    width: auto;
  }
}

.about-banner {
  background: url(../img//location-banner.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 534px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-story .aboutSwiper {
  width: 100%;
  height: 544px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.brand-story .aboutSwiper .swiper-slide {
  position: relative;
}

.brand-story .aboutSwiper .swiper-pagination {
  right: 16px;
}

.brand-story .aboutSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.brand-story .aboutSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.location-banner,.blog-banner {
  background: url(../img//blog-banner.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 534px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner {
  position: relative;
}

.hero-banner .cursor-nav {
  cursor: pointer;
  position: absolute;
  min-width: 120px;
  height: 120px;
  padding: 0 18px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.1s ease;
  z-index: 20;
  box-shadow: 8px 0 0 0 #70E4C2 inset, 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-banner .cursor-nav svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero-banner .cursor-nav svg path {
  fill: #000;
}

.hero-banner .swiper {
  width: 100%;
  height: 100%;
}

.hero-banner .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: start;
}

.hero-banner .swiper .swiper-slide .container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-banner .swiper .swiper-button-next,
.hero-banner .swiper .swiper-button-prev {
  display: none;
}

.hero-banner .swiper .swiper-pagination {
  bottom: 80px;
}

.hero-banner .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 12px;
  border-radius: 8px;
  background: #FFF;
  opacity: 0.2;
}

.hero-banner .swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-banner:hover .cursor-nav {
  opacity: 1;
}

.swiper-button-next-3,
.swiper-button-prev-3,
.swiper-button-next,
.swiper-button-prev {
  border-radius: 100%;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F0F0F0;
  transition: background 0.3s ease-in-out;
}

.swiper-button-next-3:hover,
.swiper-button-prev-3:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #A8F0DA;
}

.swiper-button-next-3:active,
.swiper-button-prev-3:active,
.swiper-button-next:active,
.swiper-button-prev:active {
  background: #45D1AB;
}

.customer-stories .custom-swiper-outer {
  max-width: 100%;
}

.customer-stories .custom-swiper {
  margin-left: calc(50vw - 580px);
}

.customer-stories .custom-swiper .swiper-slide {
  max-width: 607px;
}

.customer-stories .custom-swiper .swiper-slide .content-col {
  padding: 24px 18px;
  background: #DBF7EE;
}

@media (width < 1050px) {
  .customer-stories .custom-swiper {
    margin-left: calc(61vw - 580px);
  }
}

@media (width < 991px) {
  .customer-stories .custom-swiper {
    margin-left: calc(80vw - 580px);
  }

  .cursor-nav {
    opacity: 0 !important;
  }

  .gallery-cursor {
    opacity: 0 !important;
  }
}

@media (width < 767px) {
  .customer-stories .custom-swiper {
    margin-left: 20px;
    margin-right: 0;
  }

  .customer-stories .custom-swiper .swiper-slide {
    max-width: 360px;
  }
}

.gallery-section {
  cursor: none;
}

.gallery-section .img-div {
  position: relative;
  overflow: hidden;
}

.gallery-section .img-div img {
  display: block;
  width: 100%;
}

.gallery-section .img-div .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.gallery-section .img-div:hover .overlay {
  opacity: 1;
}

.gallery-section .img-div .gallery-cursor {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  z-index: 20;
  pointer-events: auto;
  box-shadow: 8px 0 0 0 #70E4C2 inset, 0 20px 40px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.contact-banner .right-col {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(0deg, var(--Colors-Neutral-Neutral-800, #27272A) 0%, var(--Colors-Neutral-Neutral-800, #27272A) 100%), #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-banner .right-col .overlay {
  position: absolute;
  width: 100%;
  max-height: 122px;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url(../img/visit-today.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.property .propertySwiper .swiper-navigation-icon {
  display: none;
}

a {
  text-decoration: none;
  color: #111;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

a.white {
  color: #fff;
}

a.bold {
  font-weight: 500;
}

a.small {
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

html {
  scroll-behavior: smooth;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

h1 {
  font-family: "Malking", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  color: #09090B;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
}

h1.white {
  color: #FFF;
}

.page-title {
  font-family: "Malking", sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  color: #09090B;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
}

.page-title.white {
  color: #FFF !important;
}

.page-title.bold {
  font-weight: 600;
}

h2 {
  font-family: "Malking", sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  color: #09090B;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
}

h2.white {
  color: #FFF !important;
}

h2.bold {
  font-weight: 600;
}

h2.large {
  font-size: clamp(62px, 5vw, 88px);
  line-height: 100%;
}

h3 {
  font-family: "Malking", sans-serif;
  font-size: clamp(26px, 4vw, 32px);
  color: #000;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
}

h3.white {
  color: #FFF;
}

h3.lightgrey {
  color: #777;
}

h4 {
  font-family: "Malking", sans-serif;
  font-size: clamp(22px, 4vw, 24px);
  color: #1f1f1f;
  font-style: normal;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: -0.44px;
  margin: 0;
}

h4.white {
  color: #fff;
}

h4.darkgrey {
  color: #3F3F46;
}

h4.semibold {
  font-weight: 500;
}

h4.bold {
  font-weight: 600;
}

h4.lightgrey {
  color: #8f8f8f;
}

h4 span.lightgrey {
  color: #8f8f8f;
}

h6 {
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 4vw, 20px);
  color: #09090B;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin: 0;
}

h6.white {
  color: #fff;
}

h6.bold {
  font-weight: 600;
}

p {
  color: #09090B;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}

p.large {
  font-size: 18px;
}

p.darkgrey,
.excerpt-text p {
  color: #3F3F46 !important;
}

p.lightgrey {
  color: #52525B;
}

p.semibold {
  font-weight: 500;
}

p.bold {
  font-weight: 600;
}

p.extrabold {
  font-weight: 700;
}

p.white {
  color: #fff;
}

p.small {
  font-size: 14px;
}

p.xs {
  font-size: 12px;
}

p.grey {
  color: #828282;
}

.danger {
  color: #FF5C5C;
}

.green {
  color: #2BA888;
}

.mt-80 {
  margin-top: 80px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  flex-shrink: 0;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.padding-80-120 {
  padding-top: 80px;
  padding-bottom: 120px;
}

.container {
  max-width: 1336px;
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.form-submit {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 0;
  position: relative;
  z-index: 10;
}

input[type=text],
input[type=email],
input[type=tel] {
  border-radius: 4px;
  border: 1px solid;
  background: #FFF;
  padding: 16px;
  width: 100%;
  max-height: 48px;
  height: 100%;
  border-color: #D1D5DB;
  color: #6B7280;

}

textarea {
  border-radius: 4px;
  border: 1px solid #D1D5DB;
  background: #FFF;
  padding: 16px;
  width: 100%;
  height: 100%;
  border-color: #D1D5DB !important;
  color: #6B7280;

}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea {
  color: #6B7280;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 15px */
  letter-spacing: -0.15px;
}

input[type=submit] {
  background-color: #70E4C2 !important;
  padding: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  color: #09090B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

input[type=submit]:hover {
  background-color: #45D1AB !important;
}

input[type=submit]:active {
  background: #2BA888 !important;
}

.main-form p {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-form p br {
  display: none;
}

.main-form .wpcf7-list-item {
  margin: 0;
}

.main-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-form .wpcf7-spinner {
  display: none;
}

.main-form input[type="checkbox"] {
  height: 20px;
  width: 20px;
  accent-color: #70E4C2;
  color: #FFFFFF;
}

.main-form .wpcf7-list-item-label {
  color: #6B7280;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 14px */
}

@media (width < 991px) {
  .container {
    --bs-gutter-x: 3.75rem;
  }

  .padding-56 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .padding-80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .padding-80-120 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .padding-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .mt-80 {
    margin-top: 60px;
  }
}

@media (width < 767px) {
  .container {
    --bs-gutter-x: 2.5rem;
  }
}

.highlight-word {
  font-weight: 700;
}

#imageModal .main-form,
#eventModal .main-form {
  overflow-y: auto;
  max-height: 95vh;
  max-width: 858px;
  width: 100%;
}

#contactModal .main-form.scrollbar-hide,
#eventModal .main-form.scrollbar-hide {
  max-width: 704px !important;
  width: 100%;
}

#contactModal .modal-inner,
#eventModal .modal-inner {
  border-radius: 16px;
  background: #FFF;
}

#imageModal .custom-modal {
  border-radius: 20px;
  width: 100%;
}

#imageModal .gallery-modal-swiper .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
}

#imageModal .gallery-modal-swiper .swiper-slide .bg-image {
  object-fit: cover;
  height: auto;
  border-radius: 16px;
  height: 80vh;
  min-height: 80%;
  width: 100%;
  padding: 8px;
}

#imageModal .gallery-modal-swiper .swiper-navigation-icon {
  display: none !important;
}

@media (width < 991px) {

  #imageModal,
  #eventModal,
  #contactModal {
    padding: 0 16px;
  }

  #imageModal .custom-modal {
    border-radius: 16px;
  }
}

.faq-section .faq-content p {
  color: #71717A;
}

.faq-section .faq-content ul {
  list-style: disc;
  color: #71717A;

}

.faq-section .faq-content ol {
  list-style: decimal;
  color: #71717A;
}

.faq-section .faq-content ul li,
.faq-section .faq-content ol li {
  overflow: hidden;
  color: #71717A;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.privacy-page {
  h1 {
    margin-bottom: 2rem !important;
  }

  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 1rem 0 !important;
  }

  p {
    color: #09090B;
  }

  a {
    color: #5144e0;
  }
}

.color-blue {
  color: #5144e0;
}

.pagination-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pagination-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 58px;
  background: var(--Container-Neutral-Primary-Hover, #F0F0F0);
  color: #4D4D4D;
}


.pagination-box span.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 19px 24px;
  border-radius: 58px;
  background: var(--Container-Neutral-Primary-Hover, #F0F0F0);

}

.pagination-box span.page-numbers.current {
  color: #FFF;
  background: var(--Primary-Base, #70E4C2);
  cursor: not-allowed;

}

.pagination-box .prev-button,
.pagination-box .next-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  border-radius: 40px;
  background: var(--Container-Neutral-Primary-Hover, #F0F0F0);
  cursor: not-allowed;
	

}

.content-seciton .reading-card {
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.75;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links */
.content-seciton .reading-card a {
  color: #2b59ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}



/* Bold */
.content-seciton .reading-card strong,
.content-seciton .reading-card b {
  font-weight: 600;
}

/* Italic */
.content-seciton .reading-card em,
.content-seciton .reading-card i {
  font-style: italic;
}

/* Spacing for elements */
.content-seciton .reading-card h1,
.content-seciton .reading-card h2,
.content-seciton .reading-card h3,
.content-seciton .reading-card h4,
.content-seciton .reading-card h5,
.content-seciton .reading-card h6,
.content-seciton .reading-card p,
.content-seciton .reading-card ul,
.content-seciton .reading-card ol,
.content-seciton .reading-card blockquote,
.content-seciton .reading-card pre,
.content-seciton .reading-card figure,
.content-seciton .reading-card table,
.content-seciton .reading-card hr,
.content-seciton .reading-card img,
.content-seciton .reading-card .wp-block-heading {
  margin-top: 24px;
  margin-bottom: 12px;
}

/* First child fix */
.content-seciton .reading-card > *:first-child {
  margin-top: 0;
}

/* Paragraph styling */
.content-seciton .reading-card p {
  margin: 8px 0 20px 0;
  line-height: 1.75;
  color: #242424;
}
.content-seciton .reading-card ul,
.content-seciton .reading-card ol {
  padding-left: 1.5rem;
}

.content-seciton .reading-card ul {
  list-style: disc;
}

.content-seciton .reading-card ol {
  list-style: decimal;
}

.content-seciton .reading-card ul li,
.content-seciton .reading-card ol li {
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 8px;
  font-weight: 400;
}

.content-seciton .reading-card li>ul,
.content-seciton .reading-card li>ol {
  margin-top: 6px;
  margin-bottom: 6px;
}

/*# sourceMappingURL=condensed.css.map */