:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1180px;
  --container-offset: 50px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #ffffff;
  --green-color: #3d5944;
  --peach-color: #ff8562;
  --text-color: #121212;
  --green-text: #021b10;
  --green-text--light: #3c5943;
  --hover-green: #507759;
  --36-22: clamp(1.375rem, 1.083rem + 1.458vw, 2.25rem);
  --36-18: clamp(1.125rem, 0.706rem + 2.093vw, 2.25rem);
  --36-20: clamp(1.25rem, 0.878rem + 1.86vw, 2.25rem);
  --36-16: clamp(1rem, 0.535rem + 2.326vw, 2.25rem);
  --24-14: clamp(0.875rem, 0.642rem + 1.163vw, 1.5rem);
  --23-16: clamp(1rem, 0.835rem + 0.824vw, 1.438rem);
  --21-14: clamp(0.875rem, 0.712rem + 0.814vw, 1.313rem);
  --18-14: clamp(0.875rem, 0.782rem + 0.465vw, 1.125rem);
  --18-12: clamp(0.75rem, 0.61rem + 0.698vw, 1.125rem);
  --16-14: clamp(0.875rem, 0.828rem + 0.233vw, 1rem);
  --16-12: clamp(0.75rem, 0.657rem + 0.465vw, 1rem);
  --14-12: clamp(0.75rem, 0.703rem + 0.233vw, 0.875rem);
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked+.custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts-opt/../fonts-opt/MontserratRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts-opt/../fonts-opt/MontserratMedium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts-opt/../fonts-opt/MontserratSemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts-opt/../fonts-opt/MontserratBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

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

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  color: var(--text-color);
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 80px var(--container-offset);
  max-width: var(--container-width);
}

@media (max-width: 576px) {
  .container {
    padding: 50px 20px;
  }
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.section-title {
  margin: 0;
  margin-bottom: 51px;
  font-family: var(--font-family, sans-serif) !important;
  font-weight: 600;
  font-size: var(--36-22);
  line-height: 139%;
  color: #121212;
}

@media (max-width: 336px) {
  .section-title {
    margin-bottom: 30px;
  }
}

.section-title>span {
  font-size: var(--36-22) !important;
  color: var(--green-text--light);
}

.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-top: 156px;
}

@media (max-width: 796px) {
  .hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-top: 100px;
  }
}

.hero picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 55%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 1220px) {
  .hero__left {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    width: 60%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .hero__left {
    width: 85%;
  }
}

@media (max-width: 796px) {
  .hero__left {
    width: 100%;
  }
}

.hero__title {
  margin: 0;
  margin-bottom: auto;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  font-size: var(--36-22);
  line-height: 139%;
}

@media (max-width: 1220px) {
  .hero__title {
    margin-bottom: 50px;
  }
}

@media (max-width: 796px) {
  .hero__title {
    margin-bottom: 20px;
  }
}

.hero__title>span {
  position: relative;
  left: -5px;
  padding: 5px 10px;
  font-size: var(--36-16) !important;
  color: var(--light-color);
  background-color: var(--green-color);
  border-radius: 20px;
}

@media (max-width: 796px) {
  .hero__title>span {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0;
    padding: 10px;
    color: var(--green-color);
    border-radius: 10px;
    border: 2px solid var(--green-color);
    background-color: transparent;
  }
}

.hero__title div {
  font-size: var(--36-16);
}

@media (max-width: 796px) {
  .hero__title div {
    font-weight: 400;
  }
}

.hero__descr {
  position: relative;
  margin: 0;
  margin-bottom: 24px;
  width: 90%;
  font-weight: 500;
  font-size: var(--18-14);
  line-height: 139%;
}

@media (max-width: 796px) {
  .hero__descr {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
}

.hero__descr::after {
  content: "";
  position: absolute;
  top: -104%;
  left: -13%;
  width: 197px;
  height: 240px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='5324 4991.5 197 239.2802734375'%3E%3Cpath fill='%23BBBEA0' fill-opacity='0.1' stroke='' stroke-opacity='0.1' stroke-width='1' id='tSvg9881ef69d1' d='M 5447.90649465397 5098.196483458455 C 5425.103776000383 5108.884467896893 5402.554737862651 5132.858269700538 5390.6225452856 5146.900614725127 C 5401.968474065512 5113.800994905232 5420.112318448215 5082.921124737944 5446.496175430241 5061.117780927955 C 5485.113391608853 5058.914281272803 5539.989271909643 5014.205843825249 5512.638720634461 4995.460875925511 C 5488.457099418894 4978.8699174108915 5454.00728536586 5036.5683681032815 5443.580564775424 5055.395434601282 C 5435.956065968662 5061.2734197924865 5428.878830965141 5067.879585425285 5422.441665305893 5075.127084291048 C 5426.614303541763 5061.031475385906 5428.786928201746 5046.38065823432 5428.891108740997 5031.635410541959 C 5428.891108740997 5008.105522557729 5407.435334321058 4998.9139101073315 5395.614002837768 5026.8176474070515 C 5385.9002960246335 5049.837754915506 5394.029447530195 5096.091928232264 5397.119474824382 5111.7619813354495 C 5390.410573096551 5124.379201583071 5384.784643421455 5137.584491183105 5380.306685788924 5151.225100159454 C 5377.771144519072 5106.483801605931 5358.660605843212 5062.630475135662 5341.213994684726 5067.793460438764 C 5315.3371195678 5075.47248701477 5326.429476165175 5123.157021218787 5333.782130570037 5153.296974835205 C 5339.67690742528 5177.419554393345 5359.484661269803 5200.1262175064085 5367.1700072892645 5208.24941067957 C 5366.393618521881 5214.595937464113 5365.870549159297 5220.960519801387 5365.585451981693 5227.274546591017 C 5365.442813115127 5231.58260147236 5374.6811172248845 5229.740935093915 5374.807867205048 5226.221907866867 C 5374.887131081532 5224.035380431281 5375.014061617223 5221.847047440423 5375.172408814663 5219.64427000738 C 5409.2735701444835 5227.864963165283 5480.407211789817 5208.54552174434 5489.043363216033 5191.773718813578 C 5498.028167365463 5174.32663821072 5487.854766179827 5167.914750325295 5450.172466521567 5173.028624524972 C 5417.909541015173 5177.419554393345 5386.7877264413055 5203.92510580077 5375.600144858834 5214.33413194953 C 5377.562783440569 5195.471496012652 5381.310032854122 5176.856221148173 5386.7877264413055 5158.756071203076 C 5425.515803713678 5164.527528633174 5519.626219540914 5125.8700485719755 5518.517608603301 5102.84994106352 C 5517.455942102785 5078.777375386443 5481.1836005572 5082.608583120191 5447.90649465397 5098.196483458455Z'%3E%3C/path%3E%3Cdefs%3E%3C/defs%3E%3C/svg%3E");
  z-index: -1;
}

.hero__descr span {
  font-size: clamp(0.875rem, 0.792rem + 0.417vw, 1.125rem);
  color: var(--green-text--light);
}

.hero__btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-bottom: 50px;
}

@media (max-width: 576px) {
  .hero__btn {
    -ms-flex-item-align: unset;
    -ms-grid-row-align: unset;
    align-self: unset;
  }
}

.btn-opt {
  padding: 28px 40px 28px 40px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background-color: var(--green-text--light);
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.btn-opt--big {
  padding: 31px 156px 33px 156px;
}

@media (max-width: 576px) {
  .btn-opt--big {
    padding: 31px;
  }
}

.btn-opt:focus {
  outline: none;
}

@media (any-hover: hover) {
  .btn-opt:hover {
    background-color: var(--hover-green);
  }
}

.about {
  background: #f0f5f0;
}

.about__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

@media (max-width: 1024px) {
  .about__list {
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .about__list {
    gap: 15px;
  }
}

@media (max-width: 336px) {
  .about__list {
    gap: 10px;
  }
}

.about__list-item {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

@media (max-width: 1024px) {
  .about__list-item {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}

@media (max-width: 576px) {
  .about__list-item {
    grid-column: 2/10 span;
    gap: 15px;
  }
}

@media (max-width: 336px) {
  .about__list-item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}

.about__card {
  padding: 32px;
  padding-bottom: 22px;
  border-radius: 20px;
  border: 1px solid #d6d6d6;
  background-color: var(--light-color);
  height: 100%;
}

@media (max-width: 336px) {
  .about__card {
    padding: 15px 10px;
  }
}

.about__card-title {
  margin: 0;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: var(--24-14);
  line-height: 142%;
  color: #3c5943;
}

.about__card-text {
  margin: 0;
  font-weight: 500;
  font-size: var(--16-12);
  line-height: 137%;
  color: #121212;
}

.about__card-link {
  color: #3c5943;
}

.partners__container {
  padding: 45px 10px;
}

.partners__title {
  padding-left: 40px;
}

@media (max-width: 576px) {
  .partners__title {
    padding-left: 0px;
  }
}

@media (max-width: 448px) {
  .partners__title {
    margin-right: auto;
    width: 100%;
  }
}

.partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 448px) {
  .partners__list {
    -webkit-animation: to-right 15s linear infinite;
    animation: to-right 15s linear infinite;
  }
}

.partners__list:last-child {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

@media (max-width: 448px) {
  .partners__list:last-child {
    -webkit-animation: to-left 15s linear infinite;
    animation: to-left 15s linear infinite;
  }
}

@media (max-width: 1024px) {
  .partners__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}

@media (max-width: 448px) {
  .partners__list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 900px;
    overflow: scroll;
  }
}

.partners__list-item:not(:last-child) {
  margin-right: 40px;
}

@-webkit-keyframes to-left {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  50% {
    -webkit-transform: translateX(calc(-900px + 85vw));
    transform: translateX(calc(-900px + 85vw));
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes to-left {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  50% {
    -webkit-transform: translateX(calc(-900px + 85vw));
    transform: translateX(calc(-900px + 85vw));
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes to-right {
  0% {
    -webkit-transform: translateX(calc(-900px + 85vw));
    transform: translateX(calc(-900px + 85vw));
  }

  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(calc(-900px + 85vw));
    transform: translateX(calc(-900px + 85vw));
  }
}

@keyframes to-right {
  0% {
    -webkit-transform: translateX(calc(-900px + 85vw));
    transform: translateX(calc(-900px + 85vw));
  }

  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(calc(-900px + 85vw));
    transform: translateX(calc(-900px + 85vw));
  }
}

.product {
  background: #f0f5f0;
}

.product__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 796px) {
  .product__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    row-gap: 5px;
  }
}

@media (max-width: 576px) {
  .product__title {
    margin-bottom: 30px;
  }
}

.product__left,
.product__right,
.product picture {
  width: 33.3%;
}

@media (max-width: 796px) {

  .product__left,
  .product__right,
  .product picture {
    width: 100%;
  }
}

@media (max-width: 796px) {
  .product picture {
    grid-column: 1/6 span;
    grid-row: 1/2 span;
  }

  .product__left {
    grid-column: 7/5 span;
  }

  .product__right {
    grid-column: 7/5 span;
  }
}

@media (max-width: 576px) {
  .product picture {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .product picture img {
    width: 100%;
  }

  .product__left {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .product__right {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}

.product picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

.product picture img {
  margin: 0 auto;
  margin-bottom: 15px;
}

.product__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100%;
}

.product__list-item {
  margin-bottom: 20px;
}

@media (max-width: 796px) {
  .product__list-item {
    margin-bottom: 5px;
  }
}

.product__text {
  margin: 0;
  padding-left: 40px;
  font-weight: 400;
  font-size: var(--24-14);
  line-height: 142%;
  color: #121212;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='22' viewBox='0 0 24 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_24_1238)'%3E%3Cpath d='M23.2481 10.665C23.2481 4.77488 18.4732 0 12.5831 0H0.751953V10.082C0.751953 16.2941 5.78787 21.33 12 21.33H12.5831C18.4732 21.33 23.2481 16.5551 23.2481 10.665Z' fill='%233C5943' /%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_24_1238'%3E%3Crect width='23.9963' height='21.33' fill='white' transform='translate(0.00195312)' /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left top;
}

@media (max-width: 796px) {
  .product__text {
    font-size: var(--16-14);
  }
}

@media (max-width: 576px) {
  .product__text {
    position: relative;
    padding-top: 10px;
    padding-left: 0;
    font-size: 18px;
    font-weight: 500;
    background-image: unset;
  }

  .product__text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--green-text--light);
  }
}

.product__text--big {
  margin: 0;
  padding-left: 73px;
  font-weight: 400;
  font-size: var(--24-14);
  line-height: 142%;
  color: #121212;
  background-image: url("data:image/svg+xml,%3Csvg width='61' height='55' viewBox='0 0 61 55' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_266)'%3E%3Cpath d='M58.6587 27.1847C58.4017 12.4603 46.2568 0.732104 31.5324 0.989119L1.9563 1.50537L2.39623 26.7088C2.66729 42.2382 15.4761 54.6075 31.0055 54.3364L32.4631 54.311C47.1875 54.054 58.9157 41.9091 58.6587 27.1847Z' fill='%233C5943' /%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_266'%3E%3Crect width='59.9963' height='53.33' fill='white' transform='translate(0.0811768 1.53809) rotate(-0.999999)' /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0% 10%;
}

@media (max-width: 1220px) {
  .product__text--big {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
    font-size: var(--16-14);
  }
}

@media (max-width: 796px) {
  .product__text--big {
    grid-column: 2/10 span;
  }
}

@media (max-width: 576px) {
  .product__text--big {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    padding-left: 0;
    padding: 20px;
    background-image: none;
    border-radius: 0 50px 50px 50px;
    background-color: #fad5b3;
  }

  .product__text--big:not(:last-child) {
    border-radius: 50px 0 50px 50px;
  }
}

.product__text--big:not(:last-child) {
  margin-bottom: 62px;
}

@media (max-width: 1220px) {
  .product__text--big:not(:last-child) {
    margin-bottom: 0;
  }
}

@media (max-width: 796px) {
  .product__text--big:not(:last-child) {
    margin-bottom: 20px;
  }
}

.product__text--right {
  margin-left: 32px;
}

@media (max-width: 880px) {
  .product__text--right {
    margin-left: 0;
  }
}

@media (max-width: 1220px) {
  .product__bottom {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }
}

.slider__container {
  padding-top: 15px;
  padding-bottom: 15px;
}

.slider__swiper {
  max-width: 815px;
  overflow: visible;
}

.slider__swiper-slide {
  width: 660px;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

@media (max-width: 1024px) {
  .slider__swiper-slide {
    width: 500px;
  }
}

.slider__swiper-slide.swiper-slide-active {
  opacity: 1;
}

.slider__swiper-pagination {
  bottom: var(--swiper-pagination-bottom, 25px) !important;
}

.slider__swiper-pagination .swiper-pagination-bullet {
  background-color: #f4ecda;
  opacity: 1;
}

.slider__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #b7be98;
}

.slider__swiper-prev,
.slider__swiper-next {
  color: #c0c6a4;
}

.slider__swiper-prev::after,
.slider__swiper-next::after {
  font-size: 33px;
}

.pop__container--frst {
  padding-bottom: 0;
}

.pop__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.pop__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

@media (max-width: 576px) {
  .pop__list {
    gap: unset;
    row-gap: 20px;
  }
}

.pop__list-item {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

@media (max-width: 1176px) {
  .pop__list-item {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}

@media (max-width: 827px) {
  .pop__list-item {
    grid-column: 2/10 span;
  }
}

@media (max-width: 576px) {
  .pop__list-item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}

.pop__card {
  position: relative;
  padding: 32px;
  padding-bottom: 15px;
  height: 100%;
  border-radius: 20px;
  background-color: #f0f5f0;
  z-index: 1;
}

@media (max-width: 576px) {
  .pop__card {
    padding: 15px;
  }
}

.pop__card img {
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .pop__card img {
    margin-bottom: 10px;
    width: 75px;
  }
}

.pop__card-tag {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: -5%;
  right: -4%;
  width: 178px;
  height: 135px;
  font-weight: 500;
  font-size: var(--36-20);
  line-height: 139%;
  text-align: center;
  color: #fff;
  border-radius: 20px;
}

@media (max-width: 1176px) {
  .pop__card-tag {
    right: -3%;
  }
}

@media (max-width: 576px) {
  .pop__card-tag {
    width: 115px;
    height: 70px;
  }
}

.pop__card-tag::before {
  content: "";
  position: absolute;
  bottom: -68px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 83px 16px 0 0;
  z-index: -1;
}

.pop__card-tag--1 {
  background-color: #BF233D;
}

.pop__card-tag--1::before {
  border-color: #8F172B transparent transparent transparent;
}

.pop__card-tag--2 {
  background: #d27d24;
}

.pop__card-tag--2::before {
  border-color: #8F5417 transparent transparent transparent;
}

.pop__card-tag--3 {
  background: #e8bd5c;
}

.pop__card-tag--3::before {
  border-color: #C2901F transparent transparent transparent;
}

.pop__card-tag--4 {
  background: #ffa500;
}

.pop__card-tag--4::before {
  border-color: #C2901F transparent transparent transparent;
}

.pop__card-tag--5 {
  background: #fbb36c;
}

.pop__card-tag--5::before {
  border-color: #C2901F transparent transparent transparent;
}

.pop__card-tag--6 {
  background: #fed843;
}

.pop__card-tag--6::before {
  border-color: #C2901F transparent transparent transparent;
}

.pop__card-tag--6::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  background-color: var(--light-color);
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

.pop__card-text {
  margin: 0;
  margin-bottom: 13px;
  font-weight: 500;
  font-size: var(--16-12);
  line-height: 137%;
  color: #121212;
}

.pop__link {
  color: #ff8562;
}

.pop__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 45px;
}

@media (max-width: 576px) {
  .pop__social {
    gap: 20px;
  }
}

.pop__social img {
  margin: 0;
}

@media (max-width: 576px) {
  .pop__social img {
    width: 35px;
  }
}

.request {
  background: -webkit-gradient(linear, left top, right top, from(rgb(1, 2, 2)), to(rgb(2, 24, 15)));
  background: linear-gradient(90deg, rgb(1, 2, 2) 0%, rgb(2, 24, 15) 100%);
  color: var(--light-color);
}

.request__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.contact__content {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
}
.request__content {
  -ms-grid-column-span: 8;
  grid-column: 8 span;
}

@media (max-width: 1024px) {
  .request__content {
    grid-column: 3/10 span;
  }
  .contact__content {
    grid-column: 2/10 span;
  }
}

@media (max-width: 576px) {
  .request__content {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
  .contact__content {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}

.request__footnote {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: var(--14-12);
  line-height: 143%;
}

.request__footnote--big {
  margin: 0;
  font-weight: 400;
  font-size: var(--18-12);
  line-height: 140%;
}

.request__descr {
  margin: 0;
  margin-bottom: 60px;
  font-weight: 400;
  font-size: var(--36-22);
  line-height: 139%;
}

.request__offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.request__offer-card {
  margin-bottom: 10px;
}

.request__offer-card-amount {
  margin-bottom: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  font-weight: 400;
  font-size: var(--36-22);
  line-height: 139%;
}

.request__offer-card-amount::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--light-color);
}

.request__offer-card-descr {
  font-weight: 400;
  font-size: 15px;
  line-height: 137%;
  opacity: 0.6;
}

.request__form {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 60px;
}

@media (max-width: 1024px) {
  .request__form {
    grid-column: 2/10 span;
    padding-top: 0;
  }
}

@media (max-width: 576px) {
  .request__form {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}

.request__form-label {
  position: relative;
  width: 100%;
}

.request__form-label:not(:last-child) {
  margin-bottom: 20px;
}

.request__form-input {
  padding: 19px;
  padding-left: 0;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  border-bottom: 1px solid #5e5e5e;
  background-color: transparent;
  color: var(--light-color);
}

@media (max-width: 576px) {
  .request__form-input {
    padding: 20px;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.request__form-input--phone {
  margin-bottom: 65px;
}

@media (max-width: 576px) {
  .request__form-input--phone {
    margin-bottom: 0px;
  }
}

.request__form-input:focus {
  outline: none;
}

.request__form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content:center;
  gap: 30px;

    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 576px) {
  .request__form-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }
}

.request__form-btn {
  padding: 30px 88px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .request__form-btn {
    padding: 21px 40px;
    border-radius: 10px;
  }
}

.request__form-descr {
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
}

@media (max-width: 576px) {
  .request__form-descr {
    width: 60%;
  }
}

.request__form-input.focus-visible {
  background-color: var(--light-color);
}

.just-validate-error-label {
  position: absolute;
  top: 0;
  left: 0;
}

.success__modal-container {
  width: unset;
  max-width: 490px;
  text-align: center;
  background-color: #f0f5f0;
}

/* .success__modal-content {
  font-weight: 500;
  font-size: 36px;
  line-height: 139%;
  color: #0c5943;
  background-color: #f0f5f0;
} */
.success__modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 300;
  color: #000000;
}

.success__modal-content svg {
  fill: #3C5943;
}

.micro__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .micro__container {
    padding-right: 0;
  }
}

.micro__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30%;
}

@media (max-width: 1220px) {
  .micro__title {
    margin-bottom: 30px;
    margin-right: 24px;
  }
}

.micro__left {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
}

@media (max-width: 1220px) {
  .micro__left {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .micro__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .micro__content {
    position: relative;
  }

  .micro__content::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 39px;
    height: 69px;
    background-image: -webkit-image-set(url("../img-opt/right.png") 1x, url("../img-opt/right_2x.png") 2x);
    background-image: image-set(url("../img-opt/right.png") 1x, url("../img-opt/right_2x.png") 2x);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.micro__content-list {
  width: 80%;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .micro__content-list {
    width: 90%;
  }
}

.micro__content-item:not(:last-child) {
  margin-bottom: 10px;
}

.micro__banner {
  padding: 15px 20px;
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background-color: #3c5943;
}

.micro__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #121212;
}

.micro__link {
  color: #b7be98;
}

.micro__table {
  -ms-grid-column-span: 7;
  grid-column: 7 span;
}

@media (max-width: 1220px) {
  .micro__table {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .micro__table {
    width: 100%;
    overflow-x: scroll;
  }
}

.micro__table-row {
  padding-bottom: 48px;
}

.micro__table-card-th {
  text-align: left;
}

.micro__table-card-th--left {
  margin-right: 50px;
  padding-left: 25px;
  padding-bottom: 45px;
  width: 176px;
}

.micro__table-card-th-title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #121212;
}

.micro__table-card-th-title--left {
  margin-bottom: 23px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  line-height: 142%;
}

.micro__table-card-th-block {
  width: 100%;
  height: 21px;
  border-radius: 5px;
}

.micro__table-card-th-block--frst {
  background-color: #3c5943;
}

.micro__table-card-th-block--scnd {
  background-color: #021b10;
}

.micro__table-card-th-block--thrd {
  background-color: #b7be98;
}

.micro__table-card-th-amount {
  margin-bottom: 17px;
  text-align: left;
  font-weight: 400;
  font-size: 12px;
  line-height: 142%;
  color: #000;
}

.micro__table-card--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px;
  height: 130px;
  width: 130px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background-color: #3c5943;
}

.micro__table-card--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px;
  height: 130px;
  width: 94px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background-color: #021b10;
}

.micro__table-card--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px;
  height: 130px;
  width: 143px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background-color: #b7be98;
}

.micro__table-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.micro__table-list-item:not(:last-child) {
  margin-bottom: 9px;
}

.micro__table-list-item-text {
  margin-right: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #5d5d5d;
}

.micro__table-list-item-amount {
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: #5d5d5d;
}

.fixed-side {
  padding: 0 15px;
}

.offer__list-item:not(:last-child) {
  margin-bottom: 15px;
}

.offer__text {
  margin: 0;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 60px;
  width: 76%;
  font-weight: 400;
  font-size: var(--21-14);
  line-height: 138%;
  color: #121212;
  background-image: url("data:image/svg+xml,%3Csvg width='43' height='39' viewBox='0 0 43 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_715)'%3E%3Cpath d='M41.3626 18.6906C41.1827 8.38379 32.6815 0.174303 22.3747 0.354209L1.67194 0.715576L1.97988 18.3575C2.16962 29.2278 11.1355 37.8861 22.0058 37.6963L23.0262 37.6785C33.3329 37.4986 41.5425 28.9974 41.3626 18.6906Z' fill='%233C5943' /%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_715'%3E%3Crect width='41.9963' height='37.33' fill='white' transform='translate(0.359375 0.738525) rotate(-0.999999)' /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0% 10%;
}

@media (max-width: 768px) {
  .offer__text {
    width: 100%;
  }
}

.top__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 55px;
}

@media (max-width: 576px) {
  .top__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .top__title {
    margin-bottom: 30px;
  }
}

.top__title-descr {
  margin: 0;
  width: 48%;
  font-weight: 400;
  font-size: 15px;
  line-height: 137%;
  color: #121212;
}

@media (max-width: 576px) {
  .top__title-descr {
    width: 100%;
  }
}

.top__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  row-gap: 29px;
  margin-bottom: 32px;
}

@media (max-width: 576px) {
  .top__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    width: 100%;
    gap: 24px;
  }
}

.top__list-item {
  position: relative;
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

@media (max-width: 1024px) {
  .top__list-item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}

@media (max-width: 660px) {
  .top__list-item picture {
    width: 30%;
  }
}

@media (max-width: 576px) {
  .top__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100vw;
    height: auto;
    gap: 15px;
  }

  .top__list-item:first-child picture {
    position: relative;
  }

  .top__list-item:first-child picture::after {
    content: "";
    position: absolute;
    right: -1%;
    top: 50%;
    width: 39px;
    height: 69px;
    background-image: -webkit-image-set(url("../img-opt/right.png") 1x, url("../img-opt/right_2x.png") 2x);
    background-image: image-set(url("../img-opt/right.png") 1x, url("../img-opt/right_2x.png") 2x);
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .top__list-item picture {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .top__list-item picture>img {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
}

.top__card {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .top__card:hover {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .top__card {
    position: static;
    padding: 10px 0;
    width: 50%;
    background-color: transparent;
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .top__card {
    width: calc(100vw - 40px);
  }
}

.top__card-title {
  margin: 0;
  margin-bottom: 17px;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 576px) {
  .top__card-title {
    font-size: clamp(1.313rem, 0.609rem + 3.516vw, 1.875rem);
  }
}

.top__card-text {
  margin: 0;
  margin-bottom: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 137%;
  color: #121212;
}

@media (max-width: 576px) {
  .top__card-text {
    font-size: clamp(1.125rem, 0.813rem + 1.563vw, 1.375rem);
  }
}

.top__card-link {
  font-weight: 600;
  font-size: 15px;
  line-height: 155%;
  text-align: center;
  color: #fff;
}

@media (max-width: 1024px) {
  .top__card-link {
    margin-top: 15px;
    padding: 15px 20px;
    font-weight: 500;
  }
}

@media (max-width: 576px) {
  .top__card-link {
    font-size: 20px;
  }
}

.top__descr {
  margin: 0;
  width: 35%;
  font-weight: 400;
  font-size: 15px;
  line-height: 137%;
  color: #121212;
}

@media (max-width: 576px) {
  .top__descr {
    width: 90%;
    font-size: clamp(1.125rem, 0.813rem + 1.563vw, 1.375rem);
  }
}

.top__link {
  color: #3c5943;
}

.reviews__tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.reviews__tabs-nav-item {
  margin-bottom: 10px;
}

.reviews__tabs-nav-btn {
  border-radius: 20px;
  padding: 16px 30px 16px 30px;
  width: 350px;
  font-weight: 600;
  font-size: 16px;
  line-height: 155%;
  text-align: center;
  color: #fff;
  border: 2px solid #3c5943;
  background-color: #3c5943;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

@media (max-width: 576px) {
  .reviews__tabs-nav-btn {
    padding: 16px 5px;
    width: 100%;
  }
}

.reviews__tabs-panel {
  position: relative;
}

.reviews__descr {
  position: absolute;
  margin: 0;
  margin-bottom: 15px;
  right: 5%;
  top: -145px;
  width: 50%;
  font-weight: 400;
  font-size: var(--16-14);
  line-height: 137%;
  color: #121212;
}

@media (max-width: 1024px) {
  .reviews__descr {
    right: 0;
    width: 45%;
  }
}

@media (max-width: 756px) {
  .reviews__descr {
    position: static;
    width: 80%;
    font-size: 18px;
  }
}

.reviews__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[10];
  grid-template-columns: repeat(10, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .reviews__list {
    gap: 10px;
  }
}

.reviews__list-item {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  border-radius: 15px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .reviews__list-item {
    -ms-grid-column-span: 5;
    grid-column: 5 span;
  }

  .reviews__list-item img {
    max-width: unset;
    width: 100%;
  }
}

.reviews__modal-container {
  padding: 0;
  border-radius: 20px;
  background-color: transparent;
}

.reviews__modal-content iframe {
  vertical-align: middle;
  border-radius: 20px;
}

.reviews__modal-close {
  padding: 10px;
  position: absolute;
  right: -30px;
  top: -30px;
}

.tabs__nav-btn--active {
  color: #3c5943;
  background-color: var(--light-color);
}

.tabs__nav-btn:focus {
  color: #3c5943;
  background-color: transparent !important;
}

.coop__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

@media (max-width: 1024px) {
  .coop__list {
    gap: 20px;
  }
}

.coop__list-item {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

@media (max-width: 1024px) {
  .coop__list-item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .coop__list-item:not(:last-child)>.coop__card {
    position: relative;
  }

  .coop__list-item:not(:last-child)>.coop__card::after {
    content: "";
    position: absolute;
    right: 32px;
    top: 15%;
    width: 45px;
    height: 45px;
    background-image: url("data:image/svg+xml,%3Csvg width='67' height='67' viewBox='0 0 67 67' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_92_140)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M27.905 39.1675C27.5859 38.8441 27.153 38.6624 26.7017 38.6624C26.2504 38.6624 25.8176 38.8441 25.4984 39.1675C25.1793 39.4908 25 39.9294 25 40.3867C25 40.844 25.1793 41.2825 25.4984 41.6059L32.2967 48.4941C32.4546 48.6545 32.6421 48.7817 32.8486 48.8685C33.0551 48.9553 33.2764 49 33.5 49C33.7236 49 33.9449 48.9553 34.1514 48.8685C34.3579 48.7817 34.5454 48.6545 34.7033 48.4941L41.5016 41.6059C41.8207 41.2825 42 40.844 42 40.3867C42 39.9294 41.8207 39.4908 41.5016 39.1675C41.1824 38.8441 40.7496 38.6624 40.2983 38.6624C39.847 38.6624 39.4141 38.8441 39.095 39.1675L35.1996 43.1178V19.7221C35.1996 19.2653 35.0205 18.8273 34.7018 18.5044C34.383 18.1814 33.9508 18 33.5 18C33.0492 18 32.617 18.1814 32.2982 18.5044C31.9795 18.8273 31.8004 19.2653 31.8004 19.7221V43.1282L27.905 39.1675Z' fill='%233C5943' /%3E%3Cpath d='M57 1.5H10C5.30558 1.5 1.5 5.30558 1.5 10V57C1.5 61.6944 5.30558 65.5 10 65.5H57C61.6944 65.5 65.5 61.6944 65.5 57V10C65.5 5.30558 61.6944 1.5 57 1.5Z' stroke='%233C5943' stroke-width='3' /%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_92_140'%3E%3Crect width='67' height='67' fill='white' /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 5;
  }
}

@media (max-width: 576px) {
  .coop__list-item:not(:last-child)>.coop__card::after {
    content: "";
    width: 35px;
    height: 35px;
  }
}

.coop__card {
  padding: 32px;
  height: 100%;
  border-radius: 20px;
  background-color: #efefef;
}

.coop__card-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 48px;
  padding: 7px 8px 7px 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 6px;
  background-color: #3c5943;
}

@media (max-width: 1024px) {
  .coop__card-tag {
    margin-bottom: 24px;
  }
}

.coop__card-text {
  margin: 0;
  font-weight: 500;
  font-size: var(--23-16);
  line-height: 142%;
  color: #121212;
}

.coop__card-link {
  color: #b7be98;
}

.page__body {
  font-family: var(--font-family);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 10;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000000;
}
@media (max-width: 1024px) {
  .header__container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header__logo {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
  z-index: 100;
}
.header__logo > svg path {
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .header__logo > svg {
    width: 136px;
    height: 32px;
  }
}
@media (max-width: 343px) {
  .header__logo > svg {
    width: 100px;
    height: auto;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 1150px) {
  .header__nav-list {
    height: 100%;
  }
}
.header__nav-list-item--bottom {
  display: none;
  margin-top: auto;
}
@media (max-width: 1150px) {
  .header__nav-list-item--bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 15px;
    padding: 17px 40px;
    border-radius: 10px;
    background-color: #3c5943;
  }
}
.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #021b10;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .header__nav-link:hover {
    color: #3c5943;
  }
}
.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
}
.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 15px;
  padding: 17px 17px;
  border-radius: 20px;
  background-color: #3c5943;
}
@media (max-width: 1024px) {
  .header__btn {
    padding: 10px;
    border-radius: 10px;
  }
}
.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 15px;
  padding: 17px 17px;
  border-radius: 20px;
  background-color: #fad5b3;
}
@media (max-width: 1024px) {
  .header__link {
    padding: 10px;
    border-radius: 10px;
  }
}
.header__link--request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0;
  padding: 17px 35px;
  color: #3c5943;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #3c5943;
  border-radius: 20px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .header__link--request:hover {
    color: #ffffff;
    background-color: #3c5943;
  }
}
@media (max-width: 1150px) {
  .header__link--request {
    display: none;
  }
}

.phone-modal__container {
  padding: 40px 45px;
  border-radius: 0;
  max-width: 560px;
}
.phone-modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.phone-modal__text {
  margin: 0;
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 600;
  color: #000000;
}
@media (max-width: 576px) {
  .phone-modal__text {
    font-size: clamp(1.375rem, 0.696rem + 3.623vw, 2rem);
  }
}
.phone-modal__link {
  padding: 17px 30px;
  color: #ffffff;
  background-color: #3c5943;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.burger {
  --burger-width: 40px;
  --burger-height: 30px;
  --burger-line-height: 3px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  color: #ffffff;
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  color: #ffffff;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger {
  display: none;
  color: #3c5943;
}
@media (max-width: 1150px) {
  .burger {
    display: block;
  }
}

.nav.menu--active {
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  height: 100%;
  overflow: scroll;
}

@media (max-width: 1150px) {
  .nav {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 150px 25px 25px 25px;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    visibility: hidden;
    background-color: #000000;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 1150px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1150px) {
  .nav__link {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
  }
}

.is--white > svg path {
  fill: #ffffff;
}

.swiper-wrapper {
  height: unset;
}

iframe {
  max-width: 960px;
  width: 100%;
  height: 100%;
  max-height: 500px;
  
}

.footer {
  background-color: #121212;
  color: #ffffff;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.062745098);
}
.footer__gotop {
  padding: 18px 65px;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}
.footer__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 60px 0 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.062745098);
}
@media (max-width: 490px) {
  .footer__center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}
.footer__nav {
  display: contents;
}
@media (max-width: 1024px) {
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .footer__nav-list:not(:last-child) {
    margin-bottom: 18px;
  }
}
.footer__nav-item:not(:last-child) {
  margin-bottom: 18px;
}
.footer__nav-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}
.footer__right {
  display: contents;
}
@media (max-width: 1024px) {
  .footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 490px) {
  .footer__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 360px) {
  .footer__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.footer__list-item:not(:last-child) {
  margin-bottom: 15px;
}
.footer__list-text {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}
.footer__list-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__list-btns-item:not(:last-child) {
  margin-right: 30px;
}
.footer__list-btns-item:last-child {
  margin-right: 60px;
}
@media (max-width: 490px) {
  .footer__list-btns-item:last-child {
    margin-right: 0;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 401px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 25px;
  }
}
.footer__details {
  padding-top: 25px;
  color: #ffffff;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 400;
}
.footer__details:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 401px) {
  .footer__details {
    margin: 0;
    margin-bottom: 10px;
    padding-top: 0;
  }
}

.sert__modal-container,
.doc__modal-container {
  background-color: transparent;
}

.sert__modal-close,
.doc__modal-close {
  padding: 10px;
  border: 5px solid #ffffff;
  border-radius: 5px;
  background-color: #fff;
}

.sert__modal-content,
.doc__modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sert__modal-content img,
.doc__modal-content img {
  margin-bottom: 10px;
}

/*# sourceMappingURL=main.css.map */