.navbar .custom-btn {
  border: 1px solid white;
  position: relative;
  padding: 10px 17px;
  font-family: "NeueMontreal-Bold";
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3411764706);
  margin-right: 10px;
  margin-left: auto;
}
.navbar .custom-btn:hover {
  filter: unset;
  color: white;
  opacity: 0.7;
}
.navbar .custom-btn span {
  font-size: 14px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3411764706);
}
.navbar .custom-btn .btn-label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #159da3;
  padding: 2px 6px;
  font-size: 12px;
  white-space: nowrap;
  font-family: "NeueMontreal-Regular";
  font-weight: 400;
  letter-spacing: normal;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .navbar .navbar-brand img {
    max-width: 180px;
  }
  .navbar .custom-btn {
    padding: 10px 7px;
  }
  .navbar .navbar-toggler {
    padding: 0;
  }
}
@media (max-width: 400px) {
  .navbar .custom-btn {
    display: flex;
  }
  .navbar .custom-btn .btn-label {
    position: static;
    transform: unset;
    font-family: "NeueMontreal-Bold";
    padding: unset;
  }
  .navbar .custom-btn svg,
  .navbar .custom-btn span {
    display: none;
  }
}
.input-wrapper {
  position: relative;
}
.input-wrapper.primary .form-label {
  background-color: var(--custom-primary);
  color: white;
}
.input-wrapper.primary .form-control {
  border-color: white;
  color: white;
}
.input-wrapper.primary::before {
  filter: invert(1) brightness(2);
}
.input-wrapper::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 28px;
  right: 8px;
  transform: translateY(-50%);
  pointer-events: none;
}
.input-wrapper.person::before {
  background-image: url("./../img/icons/person.svg");
}
.input-wrapper.users::before {
  background-image: url("./../img/icons/users.svg");
}
.input-wrapper.mail::before {
  background-image: url("./../img/icons/mail.svg");
}
.input-wrapper.phone::before {
  background-image: url("./../img/icons/phone.svg");
}
.input-wrapper.date .form-control {
  padding-right: 5px !important;
}
.input-wrapper.date .form-control::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.input-wrapper.date::before {
  background-image: url("./../img/icons/calendar.svg");
}
.input-wrapper.message::before {
  background-image: url("./../img/icons/note.svg");
}

.hero-sec {
  padding: 42px 0 clamp(45px, 5vw, 72px);
  position: relative;
  background: rgb(6, 86, 167);
  background: linear-gradient(180deg, rgb(6, 86, 167) 0%, rgb(1, 92, 183) 65%, rgb(0, 116, 199) 100%);
}
.hero-sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("./../img/landing-hero-bg.webp");
  background-size: cover;
  background-position: center 70%;
  z-index: 1;
}
.hero-sec * {
  z-index: 2;
}
.hero-sec .content-warpper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 728px;
}
.hero-sec .content-warpper .main-title {
  font-family: "Savinder";
  font-weight: 400;
  font-size: clamp(28px, 7vw, 42px);
  line-height: 1.5;
}
.hero-sec .card {
  padding: 20px clamp(16px, 5vw, 28px);
}
.hero-sec .gform_title,
.hero-sec .gform_description,
.hero-sec .gform-icon--circle-error {
  display: none !important;
}
.hero-sec .gform_button {
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 16px;
}
.hero-sec .gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
}
.hero-sec .gform_validation_errors,
.hero-sec .gfield_validation_message {
  padding: 0 !important;
  border: none !important;
  background-color: unset !important;
  box-shadow: none !important;
}

.datepicker-dropdown {
  display: none !important;
}

.why-choose-us-sec {
  padding-bottom: 355px !important;
}
.why-choose-us-sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 487px;
  bottom: 0;
  left: 0;
  background-image: url("./../img/why-choose-us-sec-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.why-choose-us-sec .card {
  padding: 30px 20px;
  z-index: 1;
}
.why-choose-us-sec .card:hover .img-wrapper {
  transform: scale(1.1);
}
.why-choose-us-sec .card:hover .img-wrapper::before {
  transform: unset;
}
.why-choose-us-sec .card .img-wrapper {
  position: relative;
  width: 79px;
  height: 79px;
  transition: 0.3s;
}
.why-choose-us-sec .card .img-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(21, 157, 163, 0.08);
  z-index: 0;
  top: 0;
  left: 0;
  transform: translate(7px, 7px);
  transition: 0.3s;
}
.why-choose-us-sec .card .img-wrapper .card-img {
  position: relative;
  z-index: 1;
}

.reviews-sec .main-title {
  max-width: 540px;
}
.reviews-sec .landing-testimonial-slider .swiper-slide {
  max-width: 363px;
}
.reviews-sec .card .avatar-wrapper {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 30px;
  font-weight: bold;
}
.reviews-sec .card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 144px;
}

.packages-sec .packages-slider .swiper-slide {
  max-width: 327px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 10px solid var(--blue-light);
}
.packages-sec .packages-slider .swiper-slide .content-wrapper {
  padding: 14px 24px 28px;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.packages-sec .packages-slider .swiper-slide .package-img {
  min-height: 470px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.member-sec {
  background-size: cover;
  background-position: center;
  background-image: url("./../img/member-bg.webp");
}
.member-sec .icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.18);
}

.get-in-touch-sec .form-wrapper {
  padding: clamp(20px, 7vw, 48px) clamp(20px, 7vw, 54px);
  border-radius: 12px;
}
.get-in-touch-sec .form-wrapper .form-label {
  background-color: var(--custom-primary);
  color: white;
}
.get-in-touch-sec .form-wrapper .form-control {
  border-color: white;
  color: white;
}
.get-in-touch-sec .form-wrapper .form-control option {
  color: var(--custom-gray);
}
.get-in-touch-sec .form-wrapper .input-wrapper::before {
  filter: invert(1) brightness(2);
}
.get-in-touch-sec .gform_title,
.get-in-touch-sec .gform_description,
.get-in-touch-sec .gform-icon--circle-error {
  display: none !important;
}
.get-in-touch-sec .gform_button {
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 16px;
  background-color: white;
  color: var(--custom-primary);
}
.get-in-touch-sec .gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
}
.get-in-touch-sec .gform_validation_errors,
.get-in-touch-sec .gfield_validation_message {
  padding: 0 !important;
  border: none !important;
  background-color: unset !important;
  box-shadow: none !important;
}

.half-sec.content-right .content-wrapper {
  padding-left: 48px;
}
.half-sec.content-right .line-obj {
  left: -180px;
}
.half-sec.content-left .content-wrapper {
  padding-right: 48px;
}
.half-sec.content-left .line-obj {
  left: unset;
  right: -180px;
}

.modal .modal-content {
  border-radius: 16px;
}
.modal .gform_title,
.modal .gform_description {
  display: none;
}
.modal .gform_button {
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 16px;
  width: 100%;
}
.modal .gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
}
.modal .gform_footer {
  padding-bottom: 0 !important;
}
.modal .gchoice label {
  font-size: 14px !important;
  margin-left: 4px;
}

@media (max-width: 1600px) {
  .hero-sec::before {
    background-position: center;
  }
}
@media (max-width: 1528px) and (max-height: 738px) {
  .hero-sec .content-warpper .main-title {
    font-size: clamp(28px, 7vw, 38px);
  }
  .hero-sec .card .form-title {
    font-size: clamp(24px, 4vw, 30px);
  }
}
@media (max-width: 1357px) and (max-height: 642px) {
  .hero-sec {
    padding: 30px 0;
  }
  .hero-sec .content-warpper .main-title {
    font-size: clamp(28px, 7vw, 36px);
  }
  .hero-sec .card {
    padding: 26px 20px;
  }
  .hero-sec .card .form-title {
    font-size: clamp(24px, 4vw, 24px);
  }
  .hero-sec .card .input-wrapper::before {
    top: 24px;
  }
  .hero-sec .card .input-wrapper .form-control {
    padding: 10px 24px 10px 17px;
    min-height: 40.6px;
  }
}
@media (max-width: 991px) {
  .hero-sec {
    padding-bottom: 360px;
  }
  .hero-sec::before {
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 160%;
  }
  .reviews-sec .main-title {
    max-width: unset;
  }
  .reviews-sec .landing-testimonial-slider .swiper-slide {
    width: calc(100vw - 70px);
  }
  .half-sec.content-right .content-wrapper {
    padding-left: 0;
  }
  .half-sec.content-left .content-wrapper {
    padding-right: 0;
  }
  .half-sec .img-wrapper {
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: auto;
  }
  .half-sec .img-wrapper .sec-img {
    max-width: 340px;
    display: block;
    margin: 0 auto;
  }
  .half-sec .img-wrapper .line-obj svg {
    width: 220px;
  }
  .packages-sec .packages-slider .swiper-slide {
    width: calc(100vw - 70px);
  }
  .member-sec {
    padding-bottom: 336px !important;
    background-size: cover;
    background-position: top;
    background-image: url("./../img/member-bg-mobile.webp");
  }
}
@media (max-width: 767px) {
  .hero-sec {
    padding-bottom: 278px;
  }
  .why-choose-us-sec {
    padding-bottom: 0 !important;
  }
  .why-choose-us-sec::before {
    display: none;
  }
  .half-sec.content-right .line-obj {
    left: -100px;
  }
  .half-sec.content-left .line-obj {
    right: -100px;
  }
  .half-sec .img-wrapper .line-obj svg {
    width: 180px;
  }
}
@media (max-width: 576px) {
  .reviews-sec .ti-reviews-container {
    margin-bottom: 0 !important;
  }
  .packages-sec .packages-slider .swiper-slide .package-img {
    min-height: 400px;
  }
}/*# sourceMappingURL=landing.css.map */