@import 'https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap';
* {
  padding: 0;
  margin: 0;
  border: none;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
a,
a:hover,
a:visited {
  text-decoration: none;
}
aside,
nav,
footer,
header,
section,
main {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}
ul,
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}
input::-ms-clear {
  display: none;
}
button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}
input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
* {
  font-family: Montserrat;
}
.first-screen {
  position: relative;
  padding: clamp(20px, 5.625vw, 72px) 0 0;
  margin-bottom: 30px;
}
.first-screen:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(images/first-screen__bg-DLAzFS-Y.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(10px);
}
.first-screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -30px;
  left: 0;
  background-image: linear-gradient(180deg, #fff0 70.148%, #fff);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.first-screen__leaf1 {
  width: clamp(150px, 35.15625vw, 450px);
  z-index: 2;
  grid-column: unset !important;
  position: absolute;
  right: 0;
  top: calc(20px - clamp(10px, 8.828125vw, 113px));
  filter: blur(2px);
}
@media (min-width: 800px) {
  .first-screen__leaf1 {
    filter: none;
  }
}
.first-screen__leaf2 {
  z-index: 2;
  grid-column: unset !important;
  width: clamp(150px, 22.03125vw, 282px);
  position: absolute;
  left: 0;
  bottom: calc(-1 * clamp(60px, 13.28125vw, 170px));
  filter: blur(2px);
}
@media (min-width: 800px) {
  .first-screen__leaf2 {
    filter: none;
  }
}
.first-screen__body {
  position: relative;
  z-index: 10;
  border-radius: 20px;
  background: #ffffffe0;
}
.logo {
  flex-shrink: 0;
  width: clamp(60px, 12.734375vw, 163px);
}
.logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
:root {
  --padding-inline: clamp(20px, 100 / 1280 * 100vw, 100px);
  --content-max-width: 350px;
}
@media (min-width: 400px) {
  :root {
    --content-max-width: 500px;
  }
}
@media (min-width: 600px) {
  :root {
    --content-max-width: 700px;
  }
}
@media (min-width: 800px) {
  :root {
    --content-max-width: 900px;
  }
}
@media (min-width: 1000px) {
  :root {
    --content-max-width: 1080px;
  }
}
.content-grid,
.full-width {
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [content-start] min(
      100% - var(--padding-inline) * 2,
      var(--content-max-width)
    ) [content-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}
.content-grid > :not(.breakout, .full-width),
.full-width > :not(.breakout, .full-width) {
  grid-column: content;
}
.full-width {
  grid-column: full-width;
}
.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.popup_active {
  opacity: 1;
  pointer-events: all;
}
.popup__overlay {
  grid-column: unset !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #00000036;
}
.popup__body {
  position: relative;
  border-radius: 10px;
  padding: 16px;
  background: linear-gradient(180deg, #537867, #1ca264);
}
.popup__content {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 35px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .popup__content {
    padding: 35px;
    gap: 60px;
  }
}
@media (max-width: 1000px) {
  .popup__content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 48px 42px 46px;
  }
}
@media (max-width: 600px) {
  .popup__content {
    padding: 20px 26px 48px 22px;
  }
}
.popup__title {
  max-width: clamp(241px, 26.328125vw, 337px);
  color: #fff;
  font-size: clamp(14px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 121.875%;
}
@media (max-width: 1200px) {
  .popup__title {
    max-width: unset;
  }
}
@media (max-width: 1000px) {
  .popup__title {
    max-width: 244px;
  }
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  align-items: flex-end;
}
.popup__form-group {
  display: grid;
  grid-template-columns: 1fr clamp(244px, 26.328125vw, 337px);
  gap: clamp(19px, 1.875vw, 24px);
  align-items: center;
}
@media (max-width: 1000px) {
  .popup__form-group {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 4px;
    width: 100%;
  }
}
.popup__label {
  color: #fff;
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 125%;
}
.popup__input {
  border-radius: 11px;
  box-shadow: inset 0 4px 4px #00000040;
  background: #f4f4f4;
  padding: 8px clamp(8px, 1.25vw, 16px);
  color: #cacaca;
  font-size: clamp(13px, 1.09375vw, 14px);
  font-weight: 600;
  line-height: 142.8571428571%;
}
.popup__btn {
  margin-top: 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 4px #00000040;
  padding: 12px clamp(54px, 6.25vw, 100px);
  width: clamp(244px, 26.328125vw, 337px);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 71.4285714286%;
}
@media (max-width: 1000px) {
  .popup__btn {
    padding: 12px clamp(50px, 4.6875vw, 100px);
  }
}
.form-content {
  display: flex;
  align-items: end;
}
.form {
  border-radius: 20px;
  box-shadow: 0 28px 56px -6px #f66f4d0d;
  background: #fdfeff;
  padding: 20px;
}
@media (max-width: 1000px) {
    .form-content {
        flex-direction:column;
        align-items: stretch
    }
}
.form__group {
  flex: 1 1 100%;
}
.form__label {
  font-size: clamp(13px, 1.40625vw, 18px);
  font-weight: 500;
  line-height: 105%;
  color: #2d3134;
}
.form__input,
.form__select > select {
  margin-top: 5px;
  width: 100%;
  border-radius: 11px;
  background: #f5f9f8;
  padding: clamp(12px, 1.5625vw, 20px) 20px;
  color: #3f5b50;
  font-size: clamp(14px, 1.40625vw, 18px);
  font-weight: 500;
  line-height: 105%;
  letter-spacing: 0.6px;
}
.form__input:focus,
.form__select > select:focus {
  outline-color: #30b180;
}
.form__select {
  position: relative;
}
.form__select select {
  width: 100%;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form__select:before,
.form__select:after {
  content: '';
  width: 8px;
  height: 1px;
  background: #000;
  border-radius: 3px;
  display: block;
  position: absolute;
  top: 57%;
  right: 15px;
}
.form__select:before {
  transform: rotate(45deg) translate(-3.5px);
}
.form__select:after {
  transform: rotate(-45deg) translate(3.5px);
}
.form__btn {
  flex: 1 0 fit-content;
  border-radius: 30px;
  background: linear-gradient(180deg, #537867, #1ca264);
  padding: clamp(12px, 1.328125vw, 17px) 40px;
  color: #fff;
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 125%;
  text-align: center;
  transition: all 0.3s;
}
.form__btn:hover {
  background: linear-gradient(180deg, #3d584b, #157c4c);
}
.slider {
  position: relative;
}
.slider__navigation {
  width: 100%;
  max-width: 300px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.slider__prev,
.slider__next {
  display: flex;
  align-items: center;
}
.slider .swiper-pagination {
  position: relative;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 20px;
  display: grid;
  grid-auto-flow: column;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.slider .swiper-pagination-bullet {
  transform: scale(1);
  background: none;
  width: 100%;
  text-align: center;
}
.header {
  position: relative;
  padding: 27px 11px 13px 18px;
}
@media (min-width: 800px) {
  .header {
    padding: 21px 24px 6px 34px;
  }
}
@media (max-width: 800px) {
  .header {
    border-bottom: 1px solid #000;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (min-width: 800px) {
  .header__container {
    align-items: center;
  }
}
.header__note {
  color: #000;
  font-size: clamp(10px, 1.5625vw, 20px);
  font-weight: 500;
  line-height: 120%;
}
.footer {
  padding: 50px 0;
  position: relative;
  background: linear-gradient(180deg, #537867, #1ca264);
}
.footer__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .footer__container {
    flex-direction: column-reverse;
    justify-content: unset;
    gap: 30px;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 800px) {
  .footer__column:last-child {
    align-items: center;
  }
}
.footer__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__text {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
.footer__text span {
  font-weight: 500;
}
@media (max-width: 1200px) {
  .footer__text {
    font-size: 18.4px;
  }
}
@media (max-width: 1000px) {
  .footer__text {
    font-size: 16.8px;
  }
}
@media (max-width: 800px) {
  .footer__text {
    font-size: 15.2px;
  }
}
@media (max-width: 600px) {
  .footer__text {
    font-size: 13.6px;
  }
}
@media (max-width: 400px) {
  .footer__text {
    font-size: 12px;
  }
}
.footer__logo {
  width: 191px;
  height: 75px;
}
.footer__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .footer__logo {
    width: 171px;
    height: 68px;
  }
}
@media (max-width: 1000px) {
  .footer__logo {
    width: 151px;
    height: 60px;
  }
}
@media (max-width: 800px) {
  .footer__logo {
    width: 131px;
    height: 52px;
  }
}
@media (max-width: 600px) {
  .footer__logo {
    width: 111px;
    height: 44px;
  }
}
@media (max-width: 400px) {
  .footer__logo {
    width: 93px;
    height: 36px;
  }
}
.footer__btn {
  width: fit-content;
  padding: clamp(12px, 1.5625vw, 20px) 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, #537867, #1ca264);
  padding: clamp(12px, 1.328125vw, 17px) 40px;
  color: #fff;
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 125%;
  text-align: center;
  transition: all 0.3s;
}
.footer__btn:hover {
  background: linear-gradient(180deg, #3d584b, #157c4c);
}
.promo__wrapper {
  position: relative;
}
@media (min-width: 800px) {
  .promo__wrapper {
    display: flex;
    align-items: center;
  }
}
.promo__text {
  padding: 42px max(67px, 25vw) 26px 23px;
}
@media (min-width: 800px) {
  .promo__text {
    padding: 0 0 0 50px;
  }
}
.promo__title {
  display: flex;
  flex-direction: column;
  color: #000;
  font-size: clamp(20px, 3.125vw, 40px);
  font-weight: 700;
  line-height: 107.5%;
}
.promo__title span {
  background: linear-gradient(180deg, #537867, #1ca264);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.promo__descr {
  margin-top: clamp(10px, 1.09375vw, 14px);
  color: #000;
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 500;
  line-height: 120%;
}
.promo__img {
  position: absolute;
  right: 0;
  bottom: -20px;
  margin-right: -27px;
  width: clamp(166px, 27.65625vw, 354px);
  overflow-x: hidden;
}
.promo__img img {
  margin-left: calc(43px - clamp(23px, 6.3888888889vw, 43px));
  width: 100%;
}
@media (min-width: 800px) {
  .promo__img {
    width: clamp(166px, 43.28125vw, 554px);
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-shrink: 0;
    margin-right: 30px;
  }
  .promo__img img {
    margin: 0;
  }
}
.offers {
  position: relative;
  padding-top: clamp(30px, 3.671875vw, 47px);
}
.offers__bg-img {
  grid-column: unset !important;
  position: absolute;
  left: 0;
  top: 75px;
  width: clamp(221px, 27.109375vw, 347px);
}
@media (min-width: 800px) {
  .offers__bg-img {
    left: auto;
    top: auto;
    right: 0;
    bottom: -243px;
  }
}
.offers__bg-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.offers__title {
  background: linear-gradient(180deg, #537867, #1ca264);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: clamp(19px, 3.125vw, 40px);
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
.offers .slider__swiper {
  height: 480px;
}
.offers__slider {
  margin-top: clamp(20px, 3.125vw, 40px);
}
.offers__slider .swiper-slide {
  width: 254px;
}
.offers__slider-arrow {
  position: absolute;
  top: 188px;
  right: 0;
  z-index: 10;
  box-shadow: 0 4px 4px #00000059;
  background: linear-gradient(180deg, #537867, #1ca264);
  opacity: 0.9;
  border-radius: 20px 0 0 20px;
  padding: 15px 27px 15px 15px;
}
.offers__slider-arrow-img {
  width: 16px;
  height: 21px;
}
.offers__slider-arrow-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.offers__item {
  position: relative;
  box-shadow: 1px 5px 5px #0000004d;
  border-radius: 20px;
}
.offers__item:after {
  content: '';
  position: absolute;
  top: 33%;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #53786700, #1ca264);
}
.offers__item-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 20px;
}
.offers__item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.offers__body {
  z-index: 5;
  position: relative;
  --item-padding-left: 27px;
  --item-padding-right: 22px;
  padding: 22px var(--item-padding-right) 24px var(--item-padding-left);
}
.offers__discount {
  display: inline-block;
  margin-left: calc(-1 * var(--item-padding-left));
  background: #537867;
  border-radius: 0 20px 20px 0;
  padding: 7px 15px 7px 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
.offers__item-title {
  margin-top: 26px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
.offers__where {
  text-wrap: pretty;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 112.5%;
}
.offers__when {
  padding-right: 20px;
  text-wrap: pretty;
  margin-top: 163px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 112.5%;
}
.offers__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offers__old-price {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 112.5%;
  text-decoration-line: line-through;
}
.offers__new-price {
  margin-right: calc(-1 * var(--item-padding-right));
  border-radius: 20px 0 0 20px;
  background: #ffffffe0;
  padding: 9px 18px 11px 22px;
  color: #006b11;
  font-size: 20px;
  font-weight: 700;
  line-height: 111.1111111111%;
}
.offers__btn {
  margin-top: 25px;
  border-radius: 60px;
  box-shadow: 0 8px 10px #00000014;
  background: #fff;
  padding: 8px 23px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 112.5%;
}
.cta {
  z-index: 5;
  padding: clamp(65px, 6.640625vw, 85px) 0 clamp(37px, 5.703125vw, 73px);
  border-radius: 38px;
  box-shadow: 0 28px 56px -6px #f66f4d0d;
  background: #fdfeff;
}
.cta__title {
  background: linear-gradient(180deg, #537867, #1ca264);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: clamp(20px, 3.125vw, 40px);
  font-weight: 700;
  line-height: 100%;
}
.cta__descr {
  margin-top: clamp(11px, 1.5625vw, 20px);
  color: #000;
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 500;
  line-height: 120%;
  max-width: 400px;
}
.cta__btn {
  margin-top: clamp(20px, 3.75vw, 48px);
  border-radius: 30px;
  background: linear-gradient(180deg, #537867, #1ca264);
  padding: 21px 59px;
  color: #fff;
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 125%;
}
@media (min-width: 800px) {
  .cta__btn {
    font-weight: 600;
    padding: 19px 62px;
  }
}
.why {
  position: relative;
  padding: calc(150px - clamp(50px, 8.59375vw, 110px)) 0
    calc(150px - clamp(43px, 6.71875vw, 86px));
}
.why__img {
  grid-column: unset !important;
  position: absolute;
  inset: calc(-1 * clamp(37px, 21.328125vw, 273px)) 0
    calc(-1 * clamp(60px, 6.09375vw, 78px));
}
.why__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.why__body {
  position: relative;
}
.why__title {
  color: #fff;
  font-size: clamp(20px, 3.125vw, 40px);
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
.why__wrapper {
  margin-top: clamp(53px, 5.15625vw, 66px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 10px;
}
@media (min-width: 800px) {
  .why__wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.why__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(5px, 1.640625vw, 21px);
}
.why__icon {
  width: clamp(39px, 5.3125vw, 68px);
  height: clamp(39px, 5.3125vw, 68px);
}
.why__icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.why__text {
  flex-shrink: 0;
  color: #fff;
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 500;
  line-height: 110%;
  text-align: center;
}
.reviews {
  position: relative;
  padding-top: 95px;
  border-radius: 60px;
  background: #fff;
}
@media (min-width: 800px) {
  .reviews {
    padding-top: 60px;
  }
}
.reviews__bg {
  position: absolute;
  grid-column: unset !important;
  top: 198px;
  left: 0;
}
.reviews__container {
  position: relative;
}
.reviews__title {
  background: linear-gradient(180deg, #537867, #1ca264);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: clamp(20px, 3.125vw, 40px);
  font-weight: 700;
  line-height: 100%;
}
.reviews__descr {
  margin-top: clamp(12px, 1.484375vw, 19px);
  color: #000;
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 500;
  line-height: 120%;
}
@media (min-width: 800px) {
  .reviews__descr {
    max-width: 533px;
  }
}
.reviews__slider {
  z-index: 3;
  margin-top: clamp(25px, 3.90625vw, 50px);
}
.reviews__slider .swiper-slide {
  width: clamp(263px, 25.78125vw, 330px);
  height: unset;
  border-radius: 58px;
  background: linear-gradient(180deg, #537867, #1ca264);
  transition: opacity 0.3s;
  filter: blur(1px);
  opacity: 0.3;
}
.reviews__slider .swiper-slide-prev,
.reviews__slider .swiper-slide-next {
  opacity: 0.6;
}
.reviews__slider .swiper-slide-active {
  opacity: 1;
  filter: none;
}
.reviews__item {
  padding: 30px 22px 46px 33px;
}
@media (min-width: 800px) {
  .reviews__item {
    padding: 38px 44px 38px 38px;
  }
}
.reviews__header {
  display: grid;
  grid-template-columns: minmax(10px, auto) 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 5px 20px;
}
@media (min-width: 800px) {
  .reviews__header {
    gap: 7px 23px;
  }
}
.reviews__img {
  grid-row: 1/3;
  grid-column: 1/2;
  width: clamp(60px, 7.03125vw, 90px);
  height: clamp(60px, 7.03125vw, 90px);
  border-radius: 100%;
}
.reviews__img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: inherit;
}
.reviews__name {
  color: #fff;
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 110%;
}
.reviews__date {
  color: #fff;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 500;
  line-height: 125%;
}
.reviews__text {
  margin-top: 15px;
  color: #fff;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 500;
  line-height: 120%;
}
.reviews__footer {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews__more {
  color: #fff;
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 125%;
  text-decoration-line: underline;
}
.reviews__quotes {
  width: clamp(22px, 2.109375vw, 27px);
}
.reviews__quotes img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.reviews__cta {
  min-height: 269px;
  position: relative;
}
@media (max-width: 800px) {
  .reviews__cta {
    border-radius: inherit;
    overflow: hidden;
  }
}
@media (min-width: 800px) {
  .reviews__cta {
    position: absolute;
    top: 90px;
    right: 0;
    z-index: 5;
  }
}
.reviews__woman {
  position: absolute;
  width: 171px;
  bottom: 0;
  right: 0;
}
@media (min-width: 800px) {
  .reviews__woman {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-inline: auto;
    width: clamp(0px, 23.28125vw, 298px);
  }
}
.reviews__woman img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.reviews__cta-body {
  padding: 81px 82px 40px 22px;
  position: relative;
}
@media (min-width: 800px) {
  .reviews__cta-body {
    border-radius: 30px;
    background: linear-gradient(180deg, #537867, #1ca264);
    padding: clamp(0px, 1.328125vw, 17px) clamp(0px, 3.4375vw, 44px);
  }
}
.reviews__cta-title {
  color: #fff;
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 110%;
  padding-right: 44px;
}
@media (min-width: 800px) {
  .reviews__cta-title {
    padding-right: 0;
    max-width: 219px;
    text-wrap: balance;
    text-align: center;
  }
}
.reviews__btn {
  width: 100%;
  margin-top: 40px;
  border-radius: 30px;
  background: #fff;
  padding: 11px 0;
  color: #000;
  font-size: clamp(12px, 1.25vw, 16px);
  line-height: 125%;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 800px) {
  .reviews__btn {
    margin-top: 12px;
    padding: clamp(0px, 1.09375vw, 14px) clamp(0px, 3.359375vw, 43px);
  }
}
.apply {
  position: relative;
  padding: clamp(80px, 10.15625vw, 130px) 0 clamp(40px, 7.421875vw, 95px);
}
.apply__bg1 {
  z-index: 2;
  position: absolute;
  grid-column: unset !important;
  right: 0;
  width: clamp(150px, 29.375vw, 376px);
  filter: blur(2px);
  top: calc(-1 * clamp(20px, 18.75vw, 240px));
}
@media (min-width: 800px) {
  .apply__bg1 {
    filter: none;
  }
}
.apply__bg2 {
  position: absolute;
  grid-column: unset !important;
  left: 0;
  top: 140px;
}
@media (min-width: 800px) {
  .apply__bg2 {
    top: 100px;
    filter: blur(2px);
  }
}
.apply__container {
  position: relative;
  z-index: 3;
}
.apply__title {
  background: linear-gradient(180deg, #537867, #1ca264);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: clamp(20px, 3.125vw, 40px);
  font-weight: 700;
  line-height: 100%;
  text-wrap: balance;
}
.apply__form {
  margin-top: 25px;
  box-shadow: 0 4px 10px #0003;
}
@media (max-width: 800px) {
  .desktop {
    display: none;
  }
}
@media (max-width: 655px) {
  .desktop-md {
    display: none;
  }
}
@media (min-width: 800px) {
  .mobile {
    display: none;
  }
}
@media (min-width: 655px) {
  .mobile-md {
    display: none;
  }
}
