/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;1,300&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
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;
}

/* Form */
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;
}

.cormorant-font {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 3px;
}

.cormorant-400 {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lora", sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #000;
}

a, a:link, a:visited {
  color: #3a6634;
  text-decoration: none;
}

a:focus,
button:focus {
  outline-offset: 1px;
  outline: #005fcc auto 1px;
}

.container {
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  .container {
    width: 768px;
  }
}
@media (max-width: 788px) {
  .container {
    width: 360px;
  }
}
.container--large {
  max-width: 1410px;
  width: 100%;
}
@media (max-width: 1220px) {
  .container--large {
    width: 100%;
  }
}
@media (max-width: 1220px) {
  .container--tablet-fluid {
    width: auto;
  }
}
@media (max-width: 788px) {
  .container--mobile-fluid {
    width: auto;
  }
}

html,
body {
  min-height: 100vh;
}

.sticky-footer {
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

.promo__slider {
  padding-bottom: 50px;
  background-color: #eaebef;
}
@media (max-width: 788px) {
  .promo__slider {
    padding-bottom: 10px;
  }
}

.promo__slider-wrapper {
  position: absolute;
  width: 100%;
  height: 800px;
}
@media (max-width: 788px) {
  .promo__slider-wrapper {
    height: 650px;
  }
}

.promo__slide {
  width: 90px;
  height: 135px;
  position: absolute;
  top: 78%;
  transform: translate(0, -50%);
  border-radius: 0px;
  box-shadow: 0 30px 50px #505050;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  border-radius: 8px;
  transition: 0.5s;
}
@media (max-width: 1220px) {
  .promo__slide {
    top: 65%;
  }
}
@media (max-width: 788px) {
  .promo__slide {
    width: 90px;
    height: 135px;
    top: 64%;
  }
}

.promo__slide:nth-child(1), .promo__slide:nth-child(2) {
  top: 7.8%;
  right: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 50%;
  height: 60%;
  border-radius: 8px;
  background: linear-gradient(#000000);
  background-size: cover;
}
@media (max-width: 1220px) {
  .promo__slide:nth-child(1), .promo__slide:nth-child(2) {
    width: 100%;
    height: 80%;
  }
}
@media (max-width: 788px) {
  .promo__slide:nth-child(1), .promo__slide:nth-child(2) {
    width: 100%;
    height: 50%;
  }
}

.promo__slide:nth-child(3) {
  left: calc(50vw + 220px);
}
@media (max-width: 1220px) {
  .promo__slide:nth-child(3) {
    left: calc(50vw - 380px);
  }
}
@media (max-width: 788px) {
  .promo__slide:nth-child(3) {
    left: calc(50vw - 180px);
    display: none;
  }
}

.promo__slide:nth-child(4) {
  left: calc(50vw + 320px);
}
@media (max-width: 1220px) {
  .promo__slide:nth-child(4) {
    left: calc(50vw - 280px);
  }
}
@media (max-width: 788px) {
  .promo__slide:nth-child(4) {
    left: calc(50vw - 80px);
    display: none;
  }
}

.promo__slide:nth-child(5) {
  left: calc(50vw + 420px);
}
@media (max-width: 1220px) {
  .promo__slide:nth-child(5) {
    left: calc(50vw - 180px);
  }
}
@media (max-width: 788px) {
  .promo__slide:nth-child(5) {
    left: calc(50vw + 20px);
    display: none;
  }
}

.promo__slide:nth-child(n+6) {
  left: calc(50vw - 490px);
  display: none;
}

.promo__slide-content {
  position: absolute;
  top: 40%;
  left: calc(1vw - 590px);
  display: none;
}
@media (max-width: 1220px) {
  .promo__slide-content {
    left: calc(50vw - 380px);
    top: 19%;
  }
}
@media (max-width: 788px) {
  .promo__slide-content {
    left: calc(50vw - 160px);
    top: 15%;
  }
}

.promo__slide:nth-child(2) .promo__slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 480px;
}
@media (max-width: 788px) {
  .promo__slide:nth-child(2) .promo__slide-content {
    width: 300px;
  }
}

.promo__slide-name {
  opacity: 0;
  color: #609358;
  animation: animate 1s ease-in-out 1 forwards;
}
@media (max-width: 1220px) {
  .promo__slide-name {
    box-shadow: 1px 1px 8px 10px rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.6);
    color: #404040;
  }
}

.promo__slide-des {
  color: #aeaeae;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}
@media (max-width: 1220px) {
  .promo__slide-des {
    box-shadow: 1px 1px 8px 10px rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.6);
    color: #404040;
  }
}

.promo__slide button {
  opacity: 0;
  cursor: pointer;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 11vw);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}
.promo__slider-btns {
  padding-left: 220px;
  padding-top: 600px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 1220px) {
  .promo__slider-btns {
    justify-content: start;
    padding-left: calc(50vw - 380px);
    padding-top: 630px;
  }
}
@media (max-width: 788px) {
  .promo__slider-btns {
    padding-left: calc(50vw - 80px);
    padding-top: 410px;
  }
}

.promo__slider-prev, .promo__slider-next {
  padding: 15px 25px;
  background-color: #085e1b;
  border-radius: 8px;
  background: linear-gradient(180deg, #609358 65%, #e0dbdb 100%);
  z-index: 1;
}
.promo__slider-prev:hover, .promo__slider-next:hover {
  background: linear-gradient(180deg, #3a6634 65%, #e0dbdb 100%);
}

.promo__slider-prev img {
  transform: rotate(180deg);
}

.fz20 {
  font-size: 28px;
}
@media (max-width: 788px) {
  .fz20 {
    font-size: 22px;
  }
}

.benefits {
  background-color: #eaebef;
}

.benefits__text {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 788px) {
  .benefits__text {
    padding: 30px 0;
  }
}

.benefits__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}
@media (max-width: 1220px) {
  .benefits__list {
    justify-content: center;
  }
}
@media (max-width: 788px) {
  .benefits__list {
    gap: 30px;
  }
}

.befefits__item {
  padding: 20px;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f5f5f8;
  color: #5f5f5f;
  border-radius: 8px;
  box-shadow: 1px 1px 8px 1px rgba(34, 60, 80, 0.2);
  transition: 0.5s;
}
.befefits__item img {
  padding-bottom: 10px;
  width: 50px;
}
.befefits__item h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

.befefits__item:hover {
  transform: scale(1.1);
  background-color: #fff;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

.show-more {
  background-color: #eaebef;
}

.show-more__text {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 788px) {
  .show-more__text {
    padding: 30px 0;
  }
}

.show-more__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 45px;
}
@media (max-width: 1220px) {
  .show-more__content {
    justify-content: center;
  }
}
@media (max-width: 788px) {
  .show-more__content {
    gap: 30px;
  }
}

.show-more__article {
  background: linear-gradient(transparent, #f5f5f8 58%);
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #646B63;
  border-radius: 8px;
  width: 360px;
  box-shadow: 1px 1px 8px 1px rgba(34, 60, 80, 0.2);
  overflow: hidden;
  display: none;
  transition: all 0.5s;
}
.show-more__article img {
  width: 100%;
  height: 220px;
}

.show-more__article:nth-child(1),
.show-more__article:nth-child(2),
.show-more__article:nth-child(3) {
  display: flex;
}

.show-more__article:hover {
  transform: scale(1.1);
  background: linear-gradient(transparent, #1c1c1c 58%);
}
.show-more__article:hover .show-more__price-bold {
  color: #ffffff;
  font-weight: 400;
}

.show-more__desc {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.show-more__title {
  font-size: 24px;
  color: #609358;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.show-more__price {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.show-more__price-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.show-more__price-right {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.show-more__price-bold {
  font-weight: 600;
  color: #5f5f5f;
}
.show-more__price button {
  margin: 10px 0;
}
@media (max-width: 788px) {
  .show-more__price {
    gap: 20px;
  }
}

.show-more__btn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 788px) {
  .show-more__btn {
    margin-top: 30px;
  }
}

.about {
  background-color: #eaebef;
  color: #5f5f5f;
}
.about .btn {
  cursor: pointer;
}

.about__title {
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 788px) {
  .about__title {
    padding-top: 20px;
  }
}

.about__wrapper {
  padding-top: 50px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row-reverse;
  gap: 40px;
}
@media (max-width: 1220px) {
  .about__wrapper {
    gap: 30px;
    justify-content: start;
    flex-wrap: wrap;
  }
}
@media (max-width: 788px) {
  .about__wrapper {
    padding-top: 30px;
  }
}

@media (max-width: 1220px) {
  .about__img {
    display: none;
  }
}
.about__img img {
  min-width: 615px;
  border-radius: 8px;
  transition: 0.5s;
}
.about__img img:hover {
  transform: scale(1.1);
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.about__content a {
  margin-top: 10px;
}

.about__el {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about__el img {
  width: 32px;
  height: 32px;
}

.about__wrapper-2 {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.about__item {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
}
.about__item img {
  height: 50px;
}
@media (max-width: 788px) {
  .about__item {
    width: 100%;
  }
}

.about__item:nth-child(1) {
  animation: animate 1s ease-in 1 forwards;
}

.about__item:nth-child(2) {
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.about__item:nth-child(3) {
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.about__item-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header {
  position: fixed;
  background-color: #1e1e1e;
  background-color: #eaebef;
  padding: 10px 0;
  margin: 0, auto;
  width: 100%;
  z-index: 2;
}
@media (max-width: 788px) {
  .header {
    padding: 5px 0;
  }
}
@media (max-width: 1220px) {
  .header .btn {
    display: none;
  }
}

.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.header__img {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}

.header__logo {
  flex-shrink: 0;
  height: 40px;
}

.header__nav {
  display: flex;
  gap: 30px;
}
@media (max-width: 788px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  color: #ffffff;
  color: #454545;
  text-decoration: none;
  font-weight: 500;
}

.header__nav-btn {
  display: none;
}
@media (max-width: 788px) {
  .header__nav-btn {
    display: block;
  }
}

.nav {
  font-size: 14px;
}

.nav__list {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
  color: #ffffff;
}
@media (max-width: 1220px) {
  .nav__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.nav__link {
  color: #ffffff;
  transition: color 0.2s ease-in;
}
.nav__link:hover {
  color: #00ae6c;
}

.footer {
  padding: 30px 0;
  background-color: #1e1e1e;
  color: #609358;
}
.footer p {
  font-size: 14px;
}
@media (max-width: 788px) {
  .footer {
    padding: 20px 0;
  }
}
.footer a {
  font-size: 14px;
  color: #609358;
  font-weight: 600;
  text-decoration: none;
}
.footer a:hover {
  color: #3a6634;
}

.footer__col {
  display: flex;
  justify-content: space-between;
  align-items: start;
  row-gap: 30px;
}
@media (max-width: 788px) {
  .footer__col {
    align-items: center;
    flex-direction: column;
  }
}

.mobile-nav {
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f6f6f6;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in;
}
.mobile-nav--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__header {
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav__btn {
  position: absolute;
  z-index: 99;
  top: 20px;
  right: 20px;
}

.mobile-nav__body {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(0, 10%);
  transition: all 0.2s ease-in;
}

.mobile-nav--open .mobile-nav__body {
  transform: translate(0, 0%);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  font-size: 14px;
  color: #000;
}
.mobile-nav-list a {
  color: #000;
}

.none {
  display: none !important;
}

@media (max-width: 1220px) {
  .visible-desktop {
    display: none;
  }
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.no-scroll {
  overflow-y: hidden;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mb-4 {
  margin-bottom: 4em;
}

.mb-5 {
  margin-bottom: 5em;
}

.logo, a.logo, a.logo:link {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}
.logo a, a.logo a, a.logo:link a {
  text-decoration: none;
}

.btn,
a.btn {
  display: inline-block;
  padding: 10px 35px;
  border-radius: 8px;
  background-color: #0a6816;
  background: linear-gradient(180deg, #609358 65%, #e0dbdb 100%);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  transition: background-color 0.2s ease-in;
}
.btn:hover,
a.btn:hover {
  background-color: #333;
  background: linear-gradient(180deg, #3a6634 65%, #e0dbdb 100%);
}
.btn--wide,
a.btn--wide {
  width: 100%;
}
@media (max-width: 788px) {
  .btn,
  a.btn {
    font-size: 14px;
  }
}

.btn-2 {
  padding: 12px 20px;
  background-color: #609358;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  animation: hoverWave 1s linear infinite;
}

@keyframes hoverWave {
  0% {
    box-shadow: 0 8px 10px rgba(96, 147, 88, 0.3), 0 0 0 0 rgba(96, 147, 88, 0.2), 0 0 0 0 rgba(96, 147, 88, 0.2);
  }
  40% {
    box-shadow: 0 8px 10px rgba(96, 147, 88, 0.3), 0 0 0 15px rgba(96, 147, 88, 0.2), 0 0 0 0 rgba(96, 147, 88, 0.2);
  }
  80% {
    box-shadow: 0 8px 10px rgba(96, 147, 88, 0.3), 0 0 0 30px rgba(96, 147, 88, 0), 0 0 0 26.7px rgba(96, 147, 88, 0.067);
  }
  100% {
    box-shadow: 0 8px 10px rgba(96, 147, 88, 0.3), 0 0 0 30px rgba(96, 147, 88, 0), 0 0 0 40px rgba(96, 147, 88, 0);
  }
}
.title {
  font-weight: 700;
  font-size: 32px;
}

.title-1 {
  font-weight: 700;
  font-size: 32px;
}

.title-2 {
  font-weight: 700;
  font-size: 26px;
}
@media (max-width: 1220px) {
  .title-2 {
    font-size: 22px;
  }
}
@media (max-width: 788px) {
  .title-2 {
    margin-bottom: 0.5em;
  }
}

.title-3 {
  font-weight: 500;
  font-size: 22px;
  color: #0F7DFF;
}
@media (max-width: 1220px) {
  .title-3 {
    font-size: 16px;
  }
}

h1 {
  text-transform: uppercase;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.9;
  color: #085e1b;
}
@media (max-width: 788px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  color: #137328;
  font-size: 42px;
  line-height: 1.2;
  font-family: "Cormorant", serif;
  text-transform: uppercase;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 3px;
}
@media (max-width: 788px) {
  h2 {
    font-size: 24px;
  }
}

.section-subtitle {
  font-size: 28px;
  font-weight: 800;
  color: #9C9C9C;
}

h4 {
  font-weight: 600;
}

.input {
  padding: 10px 20px;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  color: #000;
  transition: all 0.2s ease-in;
}
.input:active, .input:focus {
  border: 1px solid #3c82d3;
}

/* Custom Checkboxes */
.fake-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease-in;
}

.fake-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s ease-in;
  width: 16px;
  height: 13px;
  background-image: url("../images/tick.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.real-checkbox:checked + .fake-checkbox {
  background-color: #000;
  border: 1px solid #000;
}

.real-checkbox:checked + .fake-checkbox::after {
  transform: translate(-50%, -50%) scale(1);
}

.custom-radio {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 2px solid #54a0fc;
  border-radius: 50%;
  vertical-align: text-top;
  margin-right: 5px;
  margin-top: 3px;
}

.custom-radio::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #54a0fc;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s ease-in;
}

.real-radio:checked + .custom-radio::before {
  transform: translate(-50%, -50%) scale(1);
}

.real-radio {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.policy {
  z-index: 99999999999;
  position: fixed;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in;
}
.policy--open {
  opacity: 1;
  pointer-events: all;
}

.policy__body {
  position: relative;
  padding: 20px;
  border-radius: 8px;
  width: 1000px;
  background-color: #fff;
  transform: translate(0, -50%);
  transition: all 0.2s ease-in;
}
@media (max-width: 1220px) {
  .policy__body {
    width: 540px;
  }
}
@media (max-width: 788px) {
  .policy__body {
    width: 270px;
  }
}

.policy__close {
  position: absolute;
  right: 10px;
  top: 10px;
}

.policy--open .policy__body {
  transform: translate(0, 35%);
}
@media (max-width: 1220px) {
  .policy--open .policy__body {
    transform: translate(0, 40%);
  }
}
@media (max-width: 788px) {
  .policy--open .policy__body {
    transform: translate(0, 50%);
  }
}

.modal {
  display: none;
  position: relative;
  padding: 40px;
  width: 420px;
  background: #000000;
  border-radius: 20px;
  color: #2f2f2f;
}
@media (max-width: 788px) {
  .modal {
    padding: 20px;
    width: 360px;
  }
}

.modal--open .modal__body {
  transform: translate(0, 0%);
}

.modal__header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  text-align: center;
  font-size: 14px;
}

.modal__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  color: #085e1b;
}
@media (max-width: 788px) {
  .modal__title {
    font-size: 24px;
  }
}

.modal__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.modal__checkbox-label {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.accordion-2 {
  background-color: #eaebef;
}

.accordion-2__wrapper {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media (max-width: 788px) {
  .accordion-2__wrapper {
    width: 100%;
  }
}

.accordion-2 input[type=checkbox] {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.accordion-2__item {
  background-color: #f5f5f8;
  padding: 1.5em;
  border-radius: 1em;
  box-shadow: 1px 1px 8px 1px rgba(34, 60, 80, 0.2);
}
.accordion-2__item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.accordion-2__item:hover {
  background-color: #fff;
}

.accordion-2__item:not(:last-child) {
  margin-bottom: 1em;
}

.accordion-2__content {
  color: #9d9d9d;
  color: #8a8a8a;
  line-height: 1.4em;
}

.accordion-2 label {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
}
.accordion-2 label span:nth-child(2) {
  flex-shrink: 0;
}

.accordion-2__item input[type=checkbox] ~ label .accordion-2__arrow {
  display: inline-block;
  transition: 0.4s;
}

.accordion-2__item input[type=checkbox]:checked ~ label .accordion-2__arrow {
  transform: rotate(180deg);
}

.accordion-2__item input[type=checkbox]:checked ~ label {
  font-weight: 600;
}

.accordion-2__item input[type=checkbox] ~ .accordion-2__content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-in;
}

.accordion-2__item input[type=checkbox]:checked ~ .accordion-2__content {
  max-height: 100vh;
  padding-top: 1.5em;
}

.touch-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #eaebef;
}
.touch-slider h2 {
  padding: 50px 0;
}
@media (max-width: 788px) {
  .touch-slider h2 {
    padding: 30px 0;
  }
}

.wrapper {
  width: 100%;
  position: relative;
}

.wrapper i {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  line-height: 50px;
  background-color: #eaebef;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: 1s;
  z-index: 2;
}
.wrapper i img {
  width: 18px;
  height: 18px;
}

.wrapper i:hover {
  background-color: #3a6634;
}

.card-slider-right {
  transform: rotate(270deg);
}

.card-slider-left {
  transform: rotate(90deg);
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
  left: -20px;
}

.wrapper i:last-child {
  right: -12px;
}
@media (max-width: 788px) {
  .wrapper i:last-child {
    right: -20px;
  }
}

.wrapper .carousel {
  margin: 5px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.3333333333% - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 14px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
@media (max-width: 1220px) {
  .wrapper .carousel {
    grid-auto-columns: calc(50% - 9px);
  }
}
@media (max-width: 788px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}

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

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
}

.carousel .card {
  position: relative;
  scroll-snap-align: start;
  height: 452px;
  min-width: 356px;
  list-style: none;
  cursor: pointer;
  border-radius: 8px;
  background-color: #f5f5f8;
  box-shadow: 1px 1px 8px 1px rgba(34, 60, 80, 0.2);
  transition: all 0.3s ease-in;
  overflow: hidden;
}
.carousel .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: 1s;
}
@media (max-width: 1220px) {
  .carousel .card {
    height: 352px;
  }
}
@media (max-width: 788px) {
  .carousel .card {
    min-width: 240px;
    width: 100%;
  }
}

.card:hover {
  transform: scale(1.05);
}

.card:hover .card-overlay {
  opacity: 1;
}

.carousel .card h3 {
  font-weight: 500;
  font-size: 1.96rem;
  margin-top: 180px;
  color: #6A6D78;
}
@media (max-width: 788px) {
  .carousel .card h3 {
    font-size: 1.36rem;
  }
}

.carousel .card span {
  color: #6A6D78;
  font-size: 1.31rem;
}/*# sourceMappingURL=main.css.map */