@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
.hfont, .sectionHead, .banner .statSection .statCard h3, h1, h2, h3, h4, h5.h6 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

.bfont, .banner .statSection .statCard h6, .banner .container.h-100vh h1 span, body {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
}

body {
  font-optical-sizing: auto;
  font-weight: 400;
  color: #565656;
  background-color: #efede6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5.h6 {
  font-optical-sizing: auto;
  font-style: normal;
}

.text_blue-1 {
  color: #1c8ebc;
}

.text_blue-2 {
  color: #589ec6;
}

.text_blue-3 {
  color: #7faecf;
}

.text_blue-4 {
  color: #a3c2da;
}

.text_green-1 {
  color: #4bbd98;
}

.text_green-2 {
  color: #72c7a9;
}

.text_green-3 {
  color: #94d0ba;
}

.text_green-4 {
  color: #b3dbcb;
}

.text_white {
  color: #efede6;
}

.text_black {
  color: #1B1F3B;
}

.text_tcolor-d {
  color: #565656;
}

.text_tcolor-l {
  color: #aaa;
}

.text-justify {
  text-align: justify;
}

#mainNav {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1040;
}
#mainNav::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translateY(-100%);
  background-color: #fff;
  transition: 0.5s transform ease;
}
#mainNav::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 100%;
  z-index: -2;
  background-color: #1B1F3B;
  transform: translateY(-100%);
  background: radial-gradient(at top center, rgba(0, 0, 0, 0.1), transparent 70%);
  transition: 0.5s transform ease;
}
#mainNav .logo {
  height: 100px;
  width: auto;
  transition: 0.5s cubic-bezier(0.68, 0.7, 0.29, 1.17);
  transition-property: height, filter;
  filter: drop-shadow(0 0 2px #efede6);
}
#mainNav .navButton, #mainNav .navClose, #mainNav .closeNav {
  display: none;
}
#mainNav .container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  transition: 0.5s padding ease;
}
#mainNav .navLink {
  display: inline-block;
  padding: 0px 0;
  transition: 0.5s ease;
  border-radius: 0 0 20px 0;
  background-color: transparent;
  transition-property: padding, background-color;
}
#mainNav .navCollapse {
  margin-left: auto;
}
#mainNav .navList {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
#mainNav .langSelector {
  position: relative;
  color: #1B1F3B;
}
#mainNav .langSelector .selectedLang {
  padding: 5px 10px;
  background-color: #b3dbcb;
  position: relative;
  border-radius: 17px;
  cursor: pointer;
}
#mainNav .langSelector .selectedLang::after {
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  font-size: 12px;
  display: inline-block;
  margin-left: 10px;
  transform: rotatez(180deg);
  transition: 0.3s transform ease;
}
#mainNav .langSelector .langDropdown {
  position: absolute;
  background-color: #a3c2da;
  width: 200px;
  padding: 10px;
  right: 0;
  top: calc(100% + 5px);
  border-radius: 17px;
  transition: 0.3s opacity ease;
}
#mainNav .langSelector .langDropdown div {
  padding: 5px 10px;
  cursor: pointer;
}
#mainNav .langSelector .langDropdown div.active {
  font-weight: 700;
}
#mainNav .langSelector:not(.active) .selectedLang::after {
  transform: rotatez(0deg);
}
#mainNav .langSelector:not(.active) .langDropdown {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
#mainNav.scrolled::after, #mainNav.scrolled::before {
  transform: translateY(0);
}
#mainNav.scrolled .logo {
  height: 60px;
  filter: brightness(1) invert(0);
}
#mainNav.scrolled .link.white {
  color: #1B1F3B;
}
#mainNav.scrolled .container {
  padding-top: 0px;
  padding-bottom: 0px;
}
#mainNav.scrolled .navLink {
  padding: 5px 0;
  background-color: #fff;
}

@keyframes slideInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.banner {
  position: relative;
  z-index: 1;
  background-color: #1B1F3B;
}
.banner .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  box-sizing: border-box;
  opacity: 0.6;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.banner .imgWrapper {
  position: relative;
  border-radius: 0 0 200px 200px;
  overflow: hidden;
}
.banner .imgWrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: #4bbd98;
}
.banner .imgWrapper img {
  border-radius: 0 0 200px 200px;
  position: relative;
  z-index: 2;
  animation: slideInUp 1s ease forwards;
}
.banner .container {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  color: #efede6;
}
.banner .container.h-100vh h1 {
  font-size: 80px;
  margin-bottom: 20px;
  text-shadow: 0 0 100px #1B1F3B;
}
.banner .container.h-100vh h1 span {
  font-size: 20px;
  display: block;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.banner .container.h-100vh p {
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 0 0 100px #1B1F3B;
}
.banner .statSection {
  background: linear-gradient(0deg, #efede6, transparent);
  position: relative;
  z-index: 2;
}
.banner .statSection .statCard {
  padding: 30px;
  border-radius: 35px;
  color: #1B1F3B;
  background-color: #efede6;
}
.banner .statSection .statCard .statDiv {
  padding: 10px;
}
.banner .statSection .statCard h6 {
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.banner .statSection .statCard h3 {
  margin-bottom: 10px;
}
.banner .statSection .statCard p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1;
}

.bigText {
  font-size: 64px;
}
.bigText span {
  color: #aaa;
}
.bigText.black {
  color: #1B1F3B;
}
.bigText.black span {
  color: #4bbd98;
}
.bigText.white {
  color: #efede6;
}
.bigText.white span {
  color: #1c8ebc;
}
.bigText.green {
  color: #4bbd98;
}
.bigText.green span {
  color: #1B1F3B;
}
.bigText.blue {
  color: #1c8ebc;
}
.bigText.blue span {
  color: #efede6;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.freedomImage img {
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
}
.freedomImage .side-image:nth-child(1) {
  z-index: 4;
}
.freedomImage .side-image:nth-child(2) {
  z-index: 3;
}
.freedomImage .side-image:nth-child(3) {
  z-index: 2;
}
.freedomImage .side-image:nth-child(4) {
  z-index: 1;
}
.freedomImage .side-image:nth-child(5) {
  z-index: 0;
}

.mainBtn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  transition-property: background-color, border-color, color;
}
.mainBtn.solid {
  border: 1px solid;
}
.mainBtn.solid.blue {
  background-color: #1c8ebc;
  border-color: #1c8ebc;
  color: #efede6;
}
.mainBtn.solid.blue:hover {
  background-color: #589ec6;
  border-color: #589ec6;
  color: #efede6;
}
.mainBtn.solid.green {
  background-color: #4bbd98;
  border-color: #4bbd98;
  color: #1B1F3B;
}
.mainBtn.solid.green:hover {
  background-color: #72c7a9;
  border-color: #72c7a9;
  color: #1B1F3B;
}
.mainBtn.solid.white {
  background-color: #efede6;
  border-color: #efede6;
  color: #1B1F3B;
}
.mainBtn.solid.white:hover {
  background-color: #aaa;
  border-color: #aaa;
  color: #1B1F3B;
}
.mainBtn.solid.black {
  background-color: #1B1F3B;
  border-color: #1B1F3B;
  color: #efede6;
}
.mainBtn.solid.black:hover {
  background-color: #565656;
  border-color: #565656;
  color: #efede6;
}
.mainBtn.outline {
  border: 1px solid;
  background: transparent;
}
.mainBtn.outline.blue {
  border-color: #1c8ebc;
  color: #1c8ebc;
}
.mainBtn.outline.blue:hover {
  border-color: #589ec6;
  background-color: #589ec6;
  color: #1B1F3B;
}
.mainBtn.outline.green {
  border-color: #4bbd98;
  color: #4bbd98;
}
.mainBtn.outline.green:hover {
  border-color: #72c7a9;
  background-color: #72c7a9;
  color: #1B1F3B;
}
.mainBtn.outline.white {
  border-color: #efede6;
  color: #efede6;
}
.mainBtn.outline.white:hover {
  border-color: #efede6;
  background-color: #efede6;
  color: #1B1F3B;
}
.mainBtn.outline.black {
  border-color: #1B1F3B;
  color: #1B1F3B;
}
.mainBtn.outline.black:hover {
  border-color: #1B1F3B;
  background-color: #1B1F3B;
  color: #efede6;
}
.mainBtn.soft {
  color: #1B1F3B;
  transition: 0.2s box-shadow ease;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1), -5px -5px 5px #fff, inset -2px -2px 2px rgba(0, 0, 0, 0.1), inset 2px 2px 2px #fff;
}
.mainBtn.soft:hover {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.06), -5px -5px 5px #fff, inset -2px -2px 2px rgba(0, 0, 0, 0.06), inset 2px 2px 2px #fff;
}
.mainBtn.soft:active {
  box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.06), 2px 2px 2px #fff, inset 2px 2px 2px rgba(0, 0, 0, 0.06), inset -2px -2px 2px #fff;
}
.mainBtn.anim-icon i {
  margin-left: -20px;
  opacity: 0;
  transition: 0.3s ease;
  transition-property: opacity, margin-left;
}
.mainBtn.anim-icon:hover i {
  margin-left: 10px;
  opacity: 1;
}

.bg-light-subtle {
  background-color: #f5f5f5 !important;
}

.sectionHead {
  margin-bottom: 15px;
}
.sectionHead.dark {
  color: #1B1F3B;
}
.sectionHead.light {
  color: #efede6;
}

.h-100vh {
  min-height: 100svh;
}

#whyText .word {
  overflow: hidden;
}

.link {
  line-height: 1.5;
  text-decoration: none;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100%/0px 1px no-repeat;
  transition: 0.3s background-size ease;
  background-position-x: right;
}
.link:hover {
  background-size: 100% 1px;
  background-position-x: left;
}
.link.blue {
  color: #1c8ebc;
}
.link.green {
  color: #4bbd98;
}
.link.black {
  color: #1B1F3B;
}
.link.white {
  color: #efede6;
}

.carousel-side {
  position: relative;
}
.carousel-side .carouselSide {
  position: absolute;
  z-index: 2;
  width: calc(50% - 12px);
  height: 100%;
  right: 0;
  top: 0;
  -webkit-mask-image: url(../img/blob-1.svg?v=1.1.5);
          mask-image: url(../img/blob-1.svg?v=1.1.5);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.carousel-side .carouselSide .carousel-inner,
.carousel-side .carouselSide .carousel-item,
.carousel-side .carouselSide .carousel {
  height: 100%;
  position: relative;
}
.carousel-side .carouselSide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.carousel-side.alt > .container > .row {
  flex-direction: row-reverse;
}
.carousel-side.alt .carouselSide {
  -webkit-mask-image: url(../img/blob-2.svg?v=1.1.5);
          mask-image: url(../img/blob-2.svg?v=1.1.5);
  right: auto;
  left: 0;
}

.rounder {
  position: relative;
}
.rounder .round-banner {
  overflow: hidden;
  position: relative;
  height: 383px;
}
.rounder .round-banner .round-slider {
  position: absolute;
  width: 300px;
  height: 150px;
  top: calc(50% - 170px);
  left: calc(50% - 150px);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(-5deg) rotateY(0deg);
  animation: autoRun 50s linear infinite;
}
.rounder .round-banner .round-slider .round-item {
  position: absolute;
  inset: 0 0 0 0;
  transform: rotateY(calc((var(--position) - 1) * 360 / var(--quantity) * 1deg)) translateZ(550px);
}
.rounder .round-banner .round-slider .round-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
@keyframes autoRun {
  from {
    transform: perspective(1000px) rotateX(-5deg) rotateY(0deg);
  }
  to {
    transform: perspective(1000px) rotateX(-5deg) rotateY(360deg);
  }
}

@keyframes anim {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.img2-1 {
  padding-top: 50%;
  position: relative;
}
.img2-1 img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.img4-3 {
  padding-top: 75%;
  position: relative;
}
.img4-3 img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.img1-1 {
  padding-top: 100%;
  position: relative;
}
.img1-1 img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.quote .line strong {
  display: inline !important;
}

.parallax-img-bg {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.parallax-img-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(0deg, #f5f5f5, transparent);
}
.parallax-img-bg .parallax-img {
  position: absolute;
  height: 100%;
  width: calc(100% + 150px);
  left: 0;
  top: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.4;
  filter: blur(8px);
}

#answerStat {
  background-color: #4bbd98;
  position: relative;
}
#answerStat::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  left: 0;
  bottom: calc(100% - 1px);
  background-color: #4bbd98;
  pointer-events: none;
  clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
}
#answerStat::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  left: 0;
  top: calc(100% - 1px);
  background-color: #4bbd98;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#answerStat h3::after {
  content: attr(post-text);
}
#answerStat small {
  font-size: 12px;
  width: 100%;
  bottom: 10px;
  position: absolute;
  left: 0;
}

.icon {
  width: 120px;
  height: 120px;
  display: grid;
  place-content: center;
  border-radius: 60px;
  background-color: #aaa;
  color: #1B1F3B;
  font-size: 36px;
}
.icon.green {
  background-color: #b3dbcb;
  color: #1B1F3B;
}
.icon.blue {
  background-color: #a3c2da;
  color: #1B1F3B;
}

.img-side-section .row:not(:last-child) {
  margin-bottom: 50px;
}
.img-side-section .row:nth-child(even) {
  flex-direction: row-reverse;
}
.img-side-section .row > div {
  display: grid;
}
.img-side-section .imgWrapper {
  position: relative;
}
.img-side-section .imgWrapper .side-image {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 0;
  top: 0;
}

.picSideCard {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 50px;
}
.picSideCard .pic {
  padding-top: 75%;
  position: relative;
  display: grid;
}
.picSideCard .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  border-radius: 50px;
}
.picSideCard .text {
  padding: 10px 30px 30px;
  display: grid;
  align-content: center;
}
.picSideCard .text p {
  margin-bottom: 0;
}

#testimonialSlider .splide__pagination {
  position: unset;
  padding-top: 10px;
}
#testimonialSlider .splide__pagination .splide__pagination__page {
  background: #b3dbcb;
}
#testimonialSlider .splide__pagination .splide__pagination__page.is-active {
  background-color: #4bbd98;
}
#testimonialSlider .splide__track {
  overflow: visible;
}
#testimonialSlider .splide__slide {
  transition: 0.3s ease;
  transition-property: opacity, transform;
}
#testimonialSlider .splide__slide:not(.is-visible) {
  opacity: 0.5;
  transform: scale(0.9);
}

.testimonialCard {
  display: flex;
  background-color: #fff;
  border: 1px solid #eee;
}
.testimonialCard .pic {
  flex: 0 0 35%;
  position: relative;
  display: grid;
}
.testimonialCard .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonialCard .text {
  padding: 30px;
  display: grid;
  align-content: center;
}
.testimonialCard .text p {
  margin-bottom: 0;
}

.rating {
  display: flex;
  gap: 3px;
}
.rating i {
  color: #aaa;
}
.rating i.active {
  color: #1c8ebc;
}

.form-control {
  padding: 8px 12px;
  border-radius: 10px;
}

.form-label {
  color: #1B1F3B;
  margin-bottom: 0;
}

#contact small {
  font-size: 12px;
  color: #565656;
}
#contact .sticky {
  position: sticky;
  top: 140px;
}

#newsLetter {
  background-color: #1c8ebc;
  color: #efede6;
}

.newsletterInput {
  display: flex;
  background-color: #efede6;
  border-radius: 38px;
  padding: 10px;
}
.newsletterInput input {
  flex: 1;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  border: none;
  background-color: #efede6;
}
.newsletterInput input:focus {
  outline: none;
}

.mapCard {
  background-color: #efede6;
}
.mapCard iframe {
  height: 318px;
  width: 100%;
}
.mapCard .text {
  padding: 30px;
}

ul.iconList {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
ul.iconList li {
  display: flex;
  gap: 5px;
}
ul.iconList li:not(:last-child) {
  margin-bottom: 15px;
}
ul.iconList li .icn {
  flex: 0 0 40px;
  font-size: 20px;
  text-align: center;
  color: #1c8ebc;
}
ul.iconList li h6 {
  margin-bottom: 0;
}

footer {
  background-color: #1B1F3B;
  color: #aaa;
}
footer .logo {
  max-width: 250px;
  height: auto;
  filter: brightness(0) invert(1);
}
footer .linkList {
  display: grid;
  gap: 10px;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer .socialList {
  display: flex;
  list-style-type: none;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
}
footer .socialList li a {
  display: grid;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  place-content: center;
  text-decoration: none;
  background-color: #1B1F3B;
  color: #4bbd98;
  transition: 0.2s box-shadow ease;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2), -2px -2px 2px rgba(255, 255, 255, 0.03), inset -2px -2px 2px rgba(0, 0, 0, 0.2), inset 2px 2px 2px rgba(255, 255, 255, 0.03);
}
footer .socialList li a:hover {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2), -5px -5px 5px rgba(255, 255, 255, 0.03), inset -2px -2px 2px rgba(0, 0, 0, 0.2), inset 2px 2px 2px rgba(255, 255, 255, 0.03);
}
footer .socialList li a:active {
  box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.2), 2px 2px 2px rgba(255, 255, 255, 0.03), inset 2px 2px 2px rgba(0, 0, 0, 0.2), inset -2px -2px 2px rgba(255, 255, 255, 0.03);
}

.floatingWhatsapp {
  background-color: #32d851;
  border-radius: 41px;
  bottom: 100px;
  right: 10px;
  padding: 0;
  width: 82px;
  height: 82px;
  position: fixed;
  z-index: 100;
  color: #efede6;
  display: grid;
  place-content: center;
  text-decoration: none;
  font-size: 32px;
  transition: 0.3s background-color ease;
}
.floatingWhatsapp:hover {
  background-color: #24a33b;
}

.floatingBtn {
  position: fixed;
  z-index: 100;
  background-color: #4bbd98;
  border: none;
  color: #1B1F3B;
  border-radius: 41px;
  bottom: 10px;
  right: 10px;
  padding: 0;
  width: 82px;
  height: 82px;
  transition: 0.3s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transition-property: background-color, transform;
  transform: rotate(0deg);
}
.floatingBtn span {
  display: none;
}
.floatingBtn:hover {
  background-color: #1c8ebc;
}
.floatingBtn.active {
  transform: rotate(-90deg);
}

.floatingPopup {
  position: fixed;
  z-index: 100;
  bottom: 102px;
  right: 10px;
  width: 350px;
  padding: 30px;
  border-radius: 30px 30px 0 30px;
  background-color: rgba(239, 237, 230, 0.5);
  backdrop-filter: blur(25px);
  box-shadow: 5px 2px 20px rgba(0, 0, 0, 0.1), inset -1px -1px 2px rgba(0, 0, 0, 0.2), inset 1px 1px 2px rgba(255, 255, 255, 0.3);
  transform-origin: right bottom;
  transform: rotate(90deg) translateY(-20px);
  transition: 0.3s transform cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
.floatingPopup.active {
  transform: rotate(0deg) translateY(0);
}
.floatingPopup .closeBtn {
  display: block;
  position: absolute;
  padding: 0;
  width: 50px;
  height: 50px;
  right: 10px;
  top: 10px;
  border: none;
  background-color: transparent;
  color: #1B1F3B;
}

@media (max-width: 1199px) {
  #mainNav .navList {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  #mainNav.scrolled .navCollapse,
  #mainNav .navCollapse {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    width: 300px;
    background-color: #efede6;
    padding: 30px;
    display: grid;
    align-items: center;
    transform: translateX(100%);
    transition: 0.3s transform ease;
  }
  #mainNav.scrolled .logo,
  #mainNav .logo {
    height: 70px;
  }
  #mainNav.scrolled .navList,
  #mainNav .navList {
    flex-direction: column;
    gap: 20px;
  }
  #mainNav.scrolled .link.white,
  #mainNav .link.white {
    color: #1B1F3B;
    font-size: 20px;
  }
  #mainNav.scrolled .navButton,
  #mainNav .navButton {
    display: block;
    margin-left: auto;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    border: none;
    background-color: #1B1F3B;
    color: #4bbd98;
  }
  #mainNav.scrolled .navClose,
  #mainNav .navClose {
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    right: 100%;
    border: none;
    color: transparent;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s opacity ease;
  }
  #mainNav.scrolled .closeNav,
  #mainNav .closeNav {
    display: block;
    position: absolute;
    padding: 0;
    width: 50px;
    height: 50px;
    right: 10px;
    top: 10px;
    border: none;
    background-color: transparent;
    color: #1B1F3B;
  }
  #mainNav.scrolled.active .navCollapse,
  #mainNav.active .navCollapse {
    transform: translateX(0);
  }
  #mainNav.scrolled.active .navClose,
  #mainNav.active .navClose {
    opacity: 1;
    pointer-events: all;
  }
  .carousel-side.alt > .container > .row, .carousel-side > .container > .row {
    flex-direction: column-reverse;
  }
  .carousel-side .carouselSide {
    position: unset;
    width: 100%;
  }
  .carousel-side .carouselSide .carousel-item {
    padding-top: 56.25%;
    position: relative;
  }
  .carousel-side .carouselSide .carousel-item img {
    top: 0;
    left: 0;
    border-radius: 20px;
  }
  .banner > img {
    -o-object-position: right center;
       object-position: right center;
  }
  .banner .statSection .statCard {
    padding: 10px 30px;
  }
  .banner .statSection .statCard .row {
    margin-left: 0;
    margin-right: 0;
  }
  .banner .statSection .statCard .col-lg-3 {
    padding: 0;
  }
  .banner .statSection .statCard .col-lg-3:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .banner .statSection .statCard .statDiv {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .img-side-section .imgWrapper {
    padding-top: 50%;
  }
  .img-side-section .pt-100 {
    padding-top: 0;
  }
  .img-side-section .pb-100 {
    padding-bottom: 0;
  }
}
@media (max-width: 576px) {
  #mainNav.scrolled,
  #mainNav {
    background: linear-gradient(#1B1F3B, transparent);
  }
  #mainNav.scrolled::before,
  #mainNav::before {
    backdrop-filter: none;
    background-color: #fff;
  }
  #mainNav.scrolled .logo,
  #mainNav .logo {
    height: 50px;
    filter: none;
  }
  #answerStat::before, #answerStat::after {
    height: 40px;
  }
  .banner .container.h-100vh h1 {
    font-size: 40px;
  }
  .banner .container.h-100vh p {
    font-size: 16px;
  }
  .bigText {
    font-size: 36px;
  }
  .testimonialCard {
    flex-wrap: wrap;
  }
  .testimonialCard .pic {
    padding-top: 75%;
    flex: 0 0 100%;
  }
  .newsletterInput {
    flex-wrap: wrap;
    gap: 10px;
  }
  .newsletterInput .input {
    flex: 0 0 100%;
  }
  .newsletterInput button {
    width: 100%;
  }
  .icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .pt-50 {
    padding-top: 30px;
  }
  .pb-50 {
    padding-bottom: 50px;
  }
  #whychooseus .col-6.pt-5 {
    padding-top: 0 !important;
  }
  footer {
    padding-bottom: 64px;
  }
  footer h4.fw-bold {
    font-size: 1.2rem;
  }
  .floatingWhatsapp {
    width: 54px;
    height: 54px;
    bottom: 10px;
  }
  .floatingBtn {
    bottom: 10px;
    right: 74px;
    width: calc(100% - 84px);
    height: auto;
    padding: 15px;
    text-align: center;
    border-radius: 30px;
    z-index: 1040;
    background-color: #1B1F3B;
    color: #4bbd98;
  }
  .floatingBtn:hover {
    color: #efede6;
  }
  .floatingBtn.active {
    transform: none;
  }
  .floatingBtn.blue {
    background-color: #1c8ebc;
    color: #1B1F3B;
    opacity: 1;
  }
  .floatingBtn.blue:hover {
    background-color: #4bbd98;
    color: #1B1F3B;
  }
  .floatingBtn img {
    display: none;
  }
  .floatingBtn span {
    display: block;
  }
  .floatingPopup {
    width: calc(100% - 20px);
    right: 10px;
    bottom: 0px;
    padding: 30px 20px 20px;
    border-radius: 27px;
    transform: translateY(100%);
    transition: 0.3s transform ease;
  }
  .floatingPopup.active {
    transform: translateY(-74px);
  }
  .rounder .round-banner {
    height: 180px;
  }
  .rounder .round-banner .round-slider {
    width: 150px;
    height: 100px;
    left: calc(50% - 75px);
    top: calc(50% - 75px);
  }
  .rounder .round-banner .round-slider .round-item {
    transform: rotateY(calc((var(--position) - 1) * 360 / var(--quantity) * 1deg)) translateZ(290px);
  }
  .iconWrapperDiv {
    display: flex;
    gap: 10px;
  }
  .iconWrapperDiv .icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-bottom: 0 !important;
  }
  .iconWrapperDiv h5 {
    font-size: 1.1rem;
  }
  .iconWrapperDiv p {
    font-size: 0.875rem;
    line-height: 1;
  }
}/*# sourceMappingURL=main.css.map */