/* For modern browsers that support scrollbar-gutter */
@supports (scrollbar-gutter: stable) {
  body.no-scroll {
    overflow: hidden;
    position: static;
    scrollbar-gutter: stable;
  }
}
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #fec70b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #0f2441;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-family: "K2D", sans-serif;
  font-weight: 700;
}

p,
a,
span,
button,
label,
input,
select {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
}

h1 {
  font-size: 62px;
  line-height: 70px;
}

h2 {
  font-size: 45px;
  line-height: 52px;
}

h3 {
  font-size: 32px;
  line-height: 38px;
}

h4 {
  font-size: 24px;
  line-height: 32px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-btn {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fec70b;
  color: #0f2441;
  border: 1px solid #fec70b;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.site-btn:hover {
  background: transparent;
  color: #fec70b;
}

#header {
  height: -moz-fit-content;
  height: fit-content;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 10;
}
#header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
#header .container .logo img {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .container .links {
  display: flex;
  align-items: center;
  gap: 2em;
}
#header .container .links .menu-links {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
#header .container .links .menu-links .menu-link {
  font-size: 15px;
  text-decoration: none;
  color: #0f2441;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
#header .container .links .menu-links .menu-link:hover {
  color: #fec70b;
}
#header .container #mobile-open {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #0f2441;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#header .container #mobile-open:hover {
  color: #fec70b;
  border-color: #fec70b;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #0f2441;
  z-index: 10;
}
.mobile-menu .wrapper {
  position: relative;
  padding: 2em;
}
.mobile-menu .wrapper .links {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.mobile-menu .wrapper .links .menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-bottom: 2em;
}
.mobile-menu .wrapper .links .menu-links .menu-link {
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.mobile-menu .wrapper .links .menu-links .menu-link:hover {
  color: #fec70b;
}
.mobile-menu .wrapper #mobile-close {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 30px;
  height: 30px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
}

.landing {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  padding: 0;
  margin: 0;
  padding-top: 25vh;
  padding-bottom: 0;
}
.landing .vector {
  position: absolute;
  display: flex;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.landing .vector-1 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 150px;
  width: auto;
}
.landing .vector-2 {
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  height: 150px;
  width: auto;
}
.landing .vector-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: auto;
  width: 65%;
  -o-object-fit: fill;
     object-fit: fill;
}
.landing .vector-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: auto;
  width: 45%;
}
.landing .container {
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}
.landing .container * {
  z-index: 3;
}
.landing .container .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing .container .content * {
  text-align: center;
}
.landing .container .content p {
  width: 45%;
  margin-top: 1em;
}
.landing .container .content .site-btn {
  margin: 1em auto;
  margin-bottom: 2em;
}
.landing .container .landing-image {
  height: 350px;
  width: auto;
  -o-object-fit: fill;
     object-fit: fill;
}

.about {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
.about .about-vect {
  position: absolute;
  z-index: 1;
}
.about .about-vect:nth-of-type(1) {
  position: absolute;
  top: 20%;
  left: 0;
  height: 200px;
  width: 200px;
  -o-object-fit: fill;
     object-fit: fill;
}
.about .about-vect:nth-of-type(2) {
  position: absolute;
  top: 10%;
  right: 0;
  height: 250px;
  width: auto;
}
.about .about-vect:nth-of-type(3) {
  position: absolute;
  bottom: 0;
  right: 5%;
  height: 180px;
  width: auto;
}
.about .container {
  height: -moz-fit-content;
  height: fit-content;
  padding: 20vh;
}
.about .container * {
  z-index: 3;
}
.about .container .intro {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: 3em;
}
.about .container .intro p {
  width: 60%;
}
.about .container .about-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.about .container .about-card .card-img-wrapper {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .container .about-card .card-img-wrapper .card-image {
  width: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 3;
}
.about .container .about-card .card-img-wrapper .card-vector {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
.about .container .about-card .content {
  width: 60%;
}
.about .container .about-card .content p {
  margin-top: 1em;
}
.about .container .about-card:nth-of-type(1) {
  flex-direction: row-reverse;
}
.about .container .card-reversed {
  flex-direction: row-reverse !important;
}
.about .container .card-reversed .card-img-wrapper {
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.about .container .card-reversed .card-img-wrapper .card-image {
  height: 300px;
}
.about .container .card-reversed .content {
  width: 50% !important;
}

.features {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
.features .vect {
  position: absolute;
  z-index: 1;
}
.features .vect:nth-of-type(1) {
  position: absolute;
  bottom: 10%;
  left: 0;
  height: 200px;
  width: 100px;
  -o-object-fit: fill;
     object-fit: fill;
}
.features .vect:nth-of-type(2) {
  position: absolute;
  top: 30%;
  right: 0;
  height: 250px;
  width: auto;
}
.features .container {
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 20vh;
}
.features .container * {
  z-index: 3;
}
.features .container .intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 3em;
}
.features .container .intro p {
  width: 60%;
  text-align: center;
}
.features .container .features-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 600px;
  margin: 0 auto;
  overflow: hidden;
  /* Swiper Styles */
  /* Card Styles */
}
.features .container .features-wrapper .wrapper-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  z-index: 1;
}
.features .container .features-wrapper .avatar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 250px;
  z-index: 5;
  pointer-events: none;
}
.features .container .features-wrapper .features-swiper {
  position: relative;
  width: 100%;
  height: 500px;
  padding-top: 50px;
  padding-bottom: 100px;
  z-index: 4;
  /* Pagination dots */
}
.features .container .features-wrapper .features-swiper .swiper-wrapper {
  align-items: center;
}
.features .container .features-wrapper .features-swiper .swiper-slide {
  width: 250px;
  height: 330px;
  transition: transform 0.3s ease;
  /* Active slide styles */
  /* Hover effect for non-active slides */
}
.features .container .features-wrapper .features-swiper .swiper-slide.swiper-slide-active .card .card-wrapper {
  background: #0f2441;
}
.features .container .features-wrapper .features-swiper .swiper-slide.swiper-slide-active .card .card-wrapper .title,
.features .container .features-wrapper .features-swiper .swiper-slide.swiper-slide-active .card .card-wrapper .desc {
  color: #ffffff;
}
.features .container .features-wrapper .features-swiper .swiper-slide.swiper-slide-active .card .card-wrapper .title {
  font-weight: 600;
}
.features .container .features-wrapper .features-swiper .swiper-slide.swiper-slide-active .card .card-wrapper .desc {
  opacity: 1;
}
.features .container .features-wrapper .features-swiper .swiper-slide:not(.swiper-slide-active):hover .card {
  transform: scale(1.05);
}
.features .container .features-wrapper .features-swiper .swiper-pagination {
  bottom: 20px;
}
.features .container .features-wrapper .features-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(15, 36, 65, 0.5);
  opacity: 1;
}
.features .container .features-wrapper .features-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #0f2441;
}
.features .container .features-wrapper .card {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
}
.features .container .features-wrapper .card .card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5em;
  transition: background-color 0.3s ease;
}
.features .container .features-wrapper .card .card-wrapper .title {
  color: #0f2441;
  font-weight: 400;
  transition: all 0.3s ease;
}
.features .container .features-wrapper .card .card-wrapper .desc {
  font-size: 14px;
  line-height: 22px;
  margin-top: 1em;
  opacity: 0;
  transition: all 0.3s ease;
}
.features .container .features-wrapper .card .card-wrapper .card-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.testimonials {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
.testimonials .vect {
  position: absolute;
  z-index: 1;
}
.testimonials .vect:nth-of-type(1) {
  position: absolute;
  top: 20%;
  left: 0;
  height: 200px;
  width: 200px;
  -o-object-fit: fill;
     object-fit: fill;
}
.testimonials .vect:nth-of-type(2) {
  position: absolute;
  top: 60%;
  right: 0;
  height: 250px;
  width: auto;
}
.testimonials .vect:nth-of-type(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 180px;
  width: auto;
}
.testimonials .avatar {
  position: absolute;
  position: absolute;
  bottom: 2%;
  left: 10%;
  height: 300px;
  width: auto;
  z-index: 2;
}
.testimonials .container {
  height: -moz-fit-content;
  height: fit-content;
  width: 80%;
  padding: 20vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .container * {
  z-index: 3;
}
.testimonials .container .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .container .intro * {
  text-align: center;
}
.testimonials .container .intro p {
  width: 70%;
  margin-top: 1em;
}
.testimonials .container .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: flex-end;
  margin-top: 2em;
}
.testimonials .container .testimonial-cards .card {
  width: 30%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 300px;
  background: #ffffff;
  border: 1px solid #eadfbd;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials .container .testimonial-cards .card .statement {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0.6em;
}
.testimonials .container .testimonial-cards .card .user-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1em;
}
.testimonials .container .testimonial-cards .card .user-details .details {
  display: block;
}
.testimonials .container .testimonial-cards .card .user-details .details .name {
  font-size: 13.5px;
  line-height: 18px;
  font-weight: 600;
}
.testimonials .container .testimonial-cards .card .user-details .details .facility {
  font-size: 13px;
  line-height: 16px;
  margin: 0;
}
.testimonials .container .testimonial-cards .card .user-details .user-image {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.package-plans {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
.package-plans .vect {
  position: absolute;
  z-index: 1;
}
.package-plans .vect:nth-of-type(1) {
  position: absolute;
  top: 60%;
  left: 0;
  height: 200px;
  width: 200px;
  -o-object-fit: fill;
     object-fit: fill;
}
.package-plans .vect:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 150px;
  width: auto;
}
.package-plans .avatar {
  position: absolute;
  position: absolute;
  bottom: 4%;
  right: 4%;
  height: 200px;
  width: auto;
  z-index: 4;
}
.package-plans .container {
  height: -moz-fit-content;
  height: fit-content;
  width: 80%;
  padding: 20vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.package-plans .container * {
  z-index: 3;
}
.package-plans .container .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.package-plans .container .intro * {
  text-align: center;
}
.package-plans .container .intro p {
  width: 70%;
  margin-top: 1em;
}
.package-plans .container .plans-wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 350px;
  border: 1px solid rgba(15, 36, 65, 0.1882352941);
  background: rgba(255, 255, 255, 0.3450980392);
  border-radius: 20px;
  padding: 2em 2.2em;
  margin-top: 2em;
}
.package-plans .container .plans-wrapper .main-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5em;
}
.package-plans .container .plans-wrapper .main-packages .plan {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 200px;
  border: 1px solid rgba(0, 0, 0, 0.1568627451);
  border-radius: 20px;
  padding: 1em;
  display: flex;
  flex-direction: column;
}
.package-plans .container .plans-wrapper .main-packages .plan .title {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}
.package-plans .container .plans-wrapper .main-packages .plan .price {
  font-size: 32px;
  display: flex;
  align-items: center;
  margin-top: 0.5em;
  margin-bottom: 0.2em;
}
.package-plans .container .plans-wrapper .main-packages .plan .price span {
  font-size: 13px;
  font-weight: 400;
  margin-left: 3px;
}
.package-plans .container .plans-wrapper .main-packages .plan .desc {
  font-size: 13px;
  line-height: 18px;
}
.package-plans .container .plans-wrapper .main-packages .plan .plan-btn {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 36, 65, 0.2705882353);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #0f2441;
  text-decoration: none;
  margin: 1em 0;
  transition: all 0.3s ease-in-out;
}
.package-plans .container .plans-wrapper .main-packages .plan .plan-btn:hover {
  background: #fec70b;
  color: #ffffff;
  border-color: #fec70b;
}
.package-plans .container .plans-wrapper .main-packages .plan .details-btn {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: rgba(100, 100, 100, 0.6980392157);
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.package-plans .container .plans-wrapper .main-packages .plan .details-btn:hover {
  color: #fec70b;
  text-decoration: underline;
}
.package-plans .container .plans-wrapper .max-plan {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1568627451);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  margin-top: 1.5em;
}
.package-plans .container .plans-wrapper .max-plan .title {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
}
.package-plans .container .plans-wrapper .max-plan .talk-more-btn {
  width: 200px;
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 36, 65, 0.2705882353);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #0f2441;
  text-decoration: none;
  margin: 1em 0;
  transition: all 0.3s ease-in-out;
}
.package-plans .container .plans-wrapper .max-plan .talk-more-btn:hover {
  background: #fec70b;
  color: #ffffff;
  border-color: #fec70b;
}

.booking {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
.booking .vect {
  position: absolute;
  z-index: 1;
}
.booking .vect:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 0;
  height: 200px;
  width: 200px;
  -o-object-fit: fill;
     object-fit: fill;
}
.booking .vect:nth-of-type(2) {
  position: absolute;
  top: 10%;
  right: 0;
  height: 250px;
  width: auto;
}
.booking .vect:nth-of-type(3) {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 150px;
  width: auto;
}
.booking .avatar {
  position: absolute;
  position: absolute;
  bottom: 0;
  right: 3%;
  height: 250px;
  width: auto;
  z-index: 2;
}
.booking .container {
  height: -moz-fit-content;
  height: fit-content;
  width: 80%;
  padding: 20vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booking .container * {
  z-index: 3;
}
.booking .container .intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 3em;
}
.booking .container .intro h1 {
  width: 60%;
  text-align: center;
}
.booking .container .intro p {
  width: 60%;
  text-align: center;
}

.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
.contact .vect {
  position: absolute;
  z-index: 1;
}
.contact .vect:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 0;
  height: 200px;
  width: 200px;
  -o-object-fit: fill;
     object-fit: fill;
}
.contact .vect:nth-of-type(2) {
  position: absolute;
  top: 10%;
  right: 0;
  height: 250px;
  width: auto;
}
.contact .vect:nth-of-type(3) {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100px;
  width: auto;
}
.contact .avatar {
  position: absolute;
  position: absolute;
  bottom: 0;
  right: 2%;
  height: 230px;
  width: auto;
  z-index: 2;
}
.contact .container {
  height: -moz-fit-content;
  height: fit-content;
  width: 70%;
  padding: 20vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .container * {
  z-index: 3;
}
.contact .container p {
  width: 70%;
  margin: 1em 0;
  text-align: center;
}
.contact .container form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
}
.contact .container form .form-item {
  width: 48.5%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  margin-bottom: 1em;
}
.contact .container form .form-item label {
  font-weight: 500;
}
.contact .container form .form-item input,
.contact .container form .form-item select {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  border: 1px solid rgba(15, 36, 65, 0.4588235294);
  padding: 10px;
  border-radius: 6px;
}
.contact .container form .form-item input::-moz-placeholder, .contact .container form .form-item select::-moz-placeholder {
  color: rgba(108, 117, 125, 0.6745098039);
}
.contact .container form .form-item input::placeholder,
.contact .container form .form-item select::placeholder {
  color: rgba(108, 117, 125, 0.6745098039);
}
.contact .container form .form-item:last-of-type {
  width: 100%;
}
.contact .container form button {
  padding: 15px 70px !important;
  cursor: pointer;
}

/* Responsive layout */
@media (max-width: 1024px) {
  h1 {
    font-size: 45px;
    line-height: 52px;
  }
  h2 {
    font-size: 36px;
    line-height: 42px;
  }
  h3 {
    font-size: 28px;
    line-height: 34px;
  }
  p,
  a,
  span,
  button,
  label,
  input,
  select {
    font-size: 16px;
    line-height: 26px;
  }
  /* Header */
  #header .container .links {
    display: none;
  }
  #header #mobile-open {
    display: flex !important;
  }
  .landing {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 10em;
    padding-bottom: 0;
  }
  .landing .vector-1 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 150px;
    width: auto;
  }
  .landing .vector-2 {
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    height: 150px;
    width: auto;
  }
  .landing .vector-3 {
    bottom: 0;
    left: 0;
    height: auto;
    width: 65%;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .landing .vector-4 {
    bottom: 0;
    right: 0;
    height: auto;
    width: 45%;
  }
  .landing .container {
    height: -moz-fit-content;
    height: fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .landing .container .content p {
    width: 80%;
    margin-top: 1em;
  }
  .landing .container .content .site-btn {
    margin: 1em auto;
    margin-bottom: 2em;
  }
  .landing .container .landing-image {
    height: 300px;
  }
  .about {
    min-height: -moz-fit-content;
    min-height: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .about .about-vect:nth-of-type(1) {
    top: 20%;
    left: 0;
    height: 150px;
    width: 150px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .about .about-vect:nth-of-type(2) {
    top: 10%;
    right: 0;
    height: 200px;
    width: auto;
  }
  .about .about-vect:nth-of-type(3) {
    bottom: 0;
    right: 5%;
    height: 150px;
    width: auto;
  }
  .about .container {
    height: -moz-fit-content;
    height: fit-content;
    padding: 6em 0;
  }
  .about .container .intro {
    gap: 1em;
    margin-bottom: 3em;
  }
  .about .container .intro p {
    width: 60%;
  }
  .about .container .about-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
  }
  .about .container .about-card .card-img-wrapper {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about .container .about-card .card-img-wrapper .card-image {
    width: 300px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 3;
  }
  .about .container .about-card .card-img-wrapper .card-vector {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 1;
  }
  .about .container .about-card .content {
    width: 60%;
  }
  .about .container .about-card .content p {
    margin-top: 1em;
  }
  .about .container .about-card:nth-of-type(1) {
    flex-direction: row-reverse;
  }
  .about .container .card-reversed .card-img-wrapper {
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
  .about .container .card-reversed .card-img-wrapper .card-image {
    height: 300px;
  }
  .about .container .card-reversed .content {
    width: 50% !important;
  }
  .features .container .intro p {
    width: 90%;
  }
  .features .container .features-wrapper {
    min-height: 500px;
  }
  .features .container .features-wrapper .features-swiper {
    height: 400px;
    padding-bottom: 80px;
  }
  .features .container .features-wrapper .features-swiper .swiper-slide {
    width: 220px;
    height: 300px;
  }
  .features .container .features-wrapper .avatar {
    height: 200px;
  }
  .testimonials {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .testimonials .vect:nth-of-type(1) {
    top: 20%;
    left: 0;
    height: 150px;
    width: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .testimonials .vect:nth-of-type(2) {
    top: 60%;
    right: 0;
    height: 200px;
    width: auto;
  }
  .testimonials .vect:nth-of-type(3) {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    width: auto;
  }
  .testimonials .avatar {
    bottom: 0;
    left: 10%;
    height: 200px;
  }
  .testimonials .container {
    width: 90%;
    padding: 6em 0;
    padding-bottom: 16em;
  }
  .testimonials .container .intro p {
    width: 80%;
    margin-top: 1em;
  }
  .testimonials .container .testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    grid-gap: 1.5em;
    margin-top: 2em;
  }
  .testimonials .container .testimonial-cards .card {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 250px;
    padding: 20px;
    display: flex;
  }
  .testimonials .container .testimonial-cards .card .statement {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0.6em;
  }
  .testimonials .container .testimonial-cards .card .user-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
  }
  .testimonials .container .testimonial-cards .card .user-details .details {
    display: block;
  }
  .testimonials .container .testimonial-cards .card .user-details .details .name {
    font-size: 15px;
    font-weight: 600;
  }
  .testimonials .container .testimonial-cards .card .user-details .details .facility {
    font-size: 13px;
    line-height: 16px;
    margin: 0;
  }
  .testimonials .container .testimonial-cards .card .user-details .user-image {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .package-plans {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .package-plans .vect:nth-of-type(1) {
    top: 60%;
    left: 0;
    height: 200px;
    width: 200px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .package-plans .vect:nth-of-type(2) {
    bottom: 0;
    right: 0;
    height: 150px;
    width: auto;
  }
  .package-plans .avatar {
    bottom: 2%;
    right: 2%;
    height: 200px;
    width: auto;
  }
  .package-plans .container {
    width: 90%;
    padding: 6em 0;
  }
  .package-plans .container .intro {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .package-plans .container .intro p {
    width: 80%;
    margin-top: 1em;
  }
  .package-plans .container .plans-wrapper {
    min-height: 300px;
    border-radius: 20px;
    padding: 2em 2.2em;
    margin-top: 2em;
  }
  .package-plans .container .plans-wrapper .main-packages {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5em;
  }
  .package-plans .container .plans-wrapper .main-packages .plan {
    min-height: 200px;
    padding: 1em;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .title {
    font-size: 13px;
    line-height: 18px;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .price {
    font-size: 32px;
    margin-top: 0.5em;
    margin-bottom: 0.2em;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .price span {
    font-size: 13px;
    font-weight: 400;
    margin-left: 3px;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .desc {
    font-size: 13px;
    line-height: 18px;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .plan-btn {
    height: 40px;
    font-size: 15px;
    font-weight: 500;
    margin: 1em 0;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .details-btn {
    font-size: 14px;
  }
  .package-plans .container .plans-wrapper .max-plan {
    min-height: 40px;
    gap: 2em;
    margin-top: 1.5em;
  }
  .package-plans .container .plans-wrapper .max-plan .title {
    font-size: 15px;
    line-height: 18px;
  }
  .package-plans .container .plans-wrapper .max-plan .talk-more-btn {
    width: 150px;
    height: 40px;
    padding: 0 20px;
    font-size: 15px;
  }
  .booking {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .booking .vect {
    position: absolute;
    z-index: 1;
  }
  .booking .vect:nth-of-type(1) {
    top: 50%;
    left: 0;
    height: 150px;
    width: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .booking .vect:nth-of-type(2) {
    top: 10%;
    right: 0;
    height: 200px;
    width: auto;
  }
  .booking .vect:nth-of-type(3) {
    bottom: 0;
    right: 0;
    height: 100px;
    width: auto;
  }
  .booking .avatar {
    bottom: 0;
    right: 2%;
    height: 150px;
    width: auto;
  }
  .booking .container {
    height: -moz-fit-content;
    height: fit-content;
    width: 90%;
    padding: 6em 0;
  }
  .booking .container .intro {
    gap: 1em;
    margin-bottom: 3em;
  }
  .booking .container .intro h1 {
    width: 80%;
    text-align: center;
  }
  .booking .container .intro p {
    width: 80%;
    text-align: center;
  }
  .contact {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .contact .vect:nth-of-type(1) {
    top: 50%;
    left: 0;
    height: 150px;
    width: auto;
  }
  .contact .vect:nth-of-type(2) {
    top: 10%;
    right: 0;
    height: 150px;
    width: auto;
  }
  .contact .vect:nth-of-type(3) {
    bottom: 0;
    right: 0;
    height: 100px;
    width: auto;
  }
  .contact .avatar {
    bottom: 0;
    right: 2%;
    height: 200px;
    width: auto;
  }
  .contact .container {
    width: 80%;
    padding: 6em 0;
    padding-bottom: 8em;
  }
  .contact .container p {
    width: 80%;
    margin: 1em 0;
  }
  .contact .container form {
    gap: 1em;
    margin-top: 2em;
  }
  .contact .container form .form-item {
    width: 48.5%;
    gap: 0.6em;
    margin-bottom: 1em;
  }
  .contact .container form .form-item label {
    font-weight: 500;
  }
  .contact .container form .form-item input,
  .contact .container form .form-item select {
    width: 100%;
    height: 50px;
  }
  .contact .container form .form-item:last-of-type {
    width: 100%;
  }
  .contact .container form button {
    padding: 15px 70px !important;
  }
}
@media (max-width: 720px) {
  h1 {
    font-size: 28px;
    line-height: 34px;
  }
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
  header .logo img {
    width: 200px !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .landing {
    padding-top: 8em;
  }
  .landing .vector-1 {
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    height: 100px;
    width: auto;
  }
  .landing .vector-2 {
    top: 20%;
    right: 0;
    transform: translateY(-50%);
    height: 100px;
    width: auto;
  }
  .landing .vector-3 {
    height: auto;
    width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .landing .vector-4 {
    display: none;
  }
  .landing .container {
    height: -moz-fit-content;
    height: fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .landing .container .content p {
    width: 80%;
    margin-top: 1em;
  }
  .landing .container .content .site-btn {
    margin: 1em auto;
    margin-bottom: 2em;
  }
  .landing .container .landing-image {
    height: auto;
    width: auto;
    max-width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .about .about-vect:nth-of-type(1) {
    top: 20%;
    left: 0;
    height: 100px;
    width: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .about .about-vect:nth-of-type(2) {
    top: 10%;
    right: 0;
    height: 100px;
    width: auto;
  }
  .about .about-vect:nth-of-type(3) {
    bottom: 0;
    right: 0;
    height: 80px;
    width: auto;
  }
  .about .container {
    height: -moz-fit-content;
    height: fit-content;
    padding: 4em 0;
  }
  .about .container .intro {
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-bottom: 3em;
  }
  .about .container .intro * {
    text-align: center;
  }
  .about .container .intro p {
    width: 100%;
  }
  .about .container .about-card {
    flex-direction: column;
    gap: 1em;
  }
  .about .container .about-card .card-img-wrapper {
    height: 300px;
    width: 100%;
  }
  .about .container .about-card .card-img-wrapper .card-image {
    width: 220px;
    height: auto;
  }
  .about .container .about-card .card-img-wrapper .card-vector {
    width: 200px;
  }
  .about .container .about-card .content {
    width: 100%;
  }
  .about .container .about-card .content * {
    text-align: center;
  }
  .about .container .about-card .content p {
    margin-top: 1em;
  }
  .about .container .about-card:nth-of-type(1) {
    flex-direction: row-reverse;
  }
  .about .container .card-reversed {
    flex-direction: column !important;
  }
  .about .container .card-reversed .card-img-wrapper {
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
  .about .container .card-reversed .card-img-wrapper .card-image {
    height: 220px;
  }
  .about .container .card-reversed .content {
    width: 100% !important;
  }
  .features {
    height: -moz-fit-content;
    height: fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .features .container {
    padding-top: 4em;
  }
  .features .container .features-wrapper .features-swiper {
    height: 350px;
    padding-bottom: 0;
  }
  .features .container .features-wrapper .features-swiper .swiper-slide {
    width: 200px;
    height: 280px;
  }
  .features .container .features-wrapper .card .card-wrapper {
    padding: 1.5em;
  }
  .features .container .features-wrapper .card .card-wrapper .title {
    font-size: 20px;
  }
  .features .container .features-wrapper .card .card-wrapper .desc {
    font-size: 12px;
    line-height: 20px;
  }
  .features .container .features-wrapper .card .card-wrapper .card-img {
    height: 30%;
  }
  .features .container .features-wrapper .avatar {
    height: 150px;
  }
  .testimonials .vect:nth-of-type(1) {
    top: 20%;
    left: 0;
    height: 100px;
  }
  .testimonials .vect:nth-of-type(2) {
    top: 60%;
    right: 0;
    height: 100px;
    width: auto;
  }
  .testimonials .vect:nth-of-type(3) {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    width: auto;
  }
  .testimonials .avatar {
    bottom: 0;
    left: 10%;
    height: 150px;
  }
  .testimonials .container {
    width: 90%;
    padding: 4em 0;
    padding-bottom: 10em;
  }
  .testimonials .container .intro p {
    width: 100%;
    margin-top: 1em;
  }
  .testimonials .container .testimonial-cards {
    grid-template-columns: 100%;
    gap: 0;
    grid-gap: 1.5em;
    margin-top: 2em;
  }
  .testimonials .container .testimonial-cards .card {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 200px;
  }
  .testimonials .container .testimonial-cards .card .statement {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0.6em;
  }
  .testimonials .container .testimonial-cards .card .user-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
  }
  .testimonials .container .testimonial-cards .card .user-details .details {
    display: block;
  }
  .testimonials .container .testimonial-cards .card .user-details .details .name {
    font-size: 15px;
    font-weight: 600;
  }
  .testimonials .container .testimonial-cards .card .user-details .details .facility {
    font-size: 13px;
    line-height: 16px;
    margin: 0;
  }
  .testimonials .container .testimonial-cards .card .user-details .user-image {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .package-plans .vect:nth-of-type(1) {
    top: 60%;
    left: 0;
    height: 100px;
    width: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .package-plans .vect:nth-of-type(2) {
    bottom: 0;
    right: 0;
    height: 80px;
    width: auto;
  }
  .package-plans .avatar {
    bottom: 0;
    right: 1%;
    height: 150px;
    width: auto;
  }
  .package-plans .container {
    width: 90%;
    padding: 4em 0;
  }
  .package-plans .container .intro p {
    width: 100%;
    margin-top: 1em;
  }
  .package-plans .container .plans-wrapper {
    min-height: 200px;
    padding: 1.5em;
    margin-top: 2em;
  }
  .package-plans .container .plans-wrapper .main-packages {
    grid-template-columns: 100%;
    grid-gap: 1.5em;
  }
  .package-plans .container .plans-wrapper .main-packages .plan {
    min-height: 200px;
    padding: 1em;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .title {
    font-size: 13px;
    line-height: 18px;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .price {
    font-size: 32px;
    margin-top: 0.5em;
    margin-bottom: 0.2em;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .price span {
    font-size: 13px;
    font-weight: 400;
    margin-left: 3px;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .desc {
    font-size: 13px;
    line-height: 18px;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .plan-btn {
    height: 40px;
    font-size: 15px;
    font-weight: 500;
    margin: 1em 0;
  }
  .package-plans .container .plans-wrapper .main-packages .plan .details-btn {
    font-size: 14px;
  }
  .package-plans .container .plans-wrapper .max-plan {
    height: -moz-fit-content;
    height: fit-content;
    min-height: 40px;
    gap: 0.5em;
    margin-top: 1.5em;
    flex-direction: column;
    justify-content: center;
    padding: 1em;
  }
  .package-plans .container .plans-wrapper .max-plan .title {
    font-size: 15px;
    line-height: 18px;
  }
  .package-plans .container .plans-wrapper .max-plan .talk-more-btn {
    width: 150px;
    height: 40px;
    padding: 0 20px;
    font-size: 15px;
    margin: 0;
  }
  .booking {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .booking .vect {
    position: absolute;
    z-index: 1;
  }
  .booking .vect:nth-of-type(1) {
    top: 50%;
    left: 0;
    height: 100px;
    width: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .booking .vect:nth-of-type(2) {
    top: 10%;
    right: 0;
    height: 100px;
    width: auto;
  }
  .booking .vect:nth-of-type(3) {
    bottom: 0;
    right: 0;
    height: 100px;
    width: auto;
  }
  .booking .avatar {
    bottom: 0;
    right: 2%;
    height: 120px;
    width: auto;
  }
  .booking .container {
    height: -moz-fit-content;
    height: fit-content;
    width: 90%;
    padding: 6em 0;
  }
  .booking .container .intro {
    gap: 1em;
    margin-bottom: 3em;
  }
  .booking .container .intro h1 {
    width: 80%;
    text-align: center;
  }
  .booking .container .intro p {
    width: 80%;
    text-align: center;
  }
  .contact .vect:nth-of-type(1) {
    top: 50%;
    left: 0;
    height: 100px;
    width: auto;
  }
  .contact .vect:nth-of-type(2) {
    top: 10%;
    right: 0;
    height: 100px;
    width: auto;
  }
  .contact .vect:nth-of-type(3) {
    bottom: 0;
    right: 0;
    height: 80px;
    width: auto;
  }
  .contact .avatar {
    bottom: 0;
    right: 2%;
    height: 150px;
    width: auto;
  }
  .contact .container {
    width: 90%;
    padding: 4em 0;
    padding-bottom: 10em;
  }
  .contact .container p {
    width: 100%;
    margin: 1em 0;
  }
  .contact .container form {
    flex-direction: column;
    gap: 0.2em;
    margin-top: 2em;
    width: 100%;
  }
  .contact .container form .form-item {
    width: 100%;
    gap: 0.6em;
    margin-bottom: 1em;
  }
  .contact .container form .form-item label {
    font-weight: 500;
  }
  .contact .container form .form-item input,
  .contact .container form .form-item select {
    width: 100%;
    height: 50px;
  }
  .contact .container form .form-item:last-of-type {
    width: 100%;
  }
  .contact .container form button {
    padding: 15px 70px !important;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */