@charset "UTF-8";
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Extrabold.woff2") format("woff2"), url("../fonts/Gilroy-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: Gilroy;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: Gilroy;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

* {
  box-sizing: border-box;
}

html._lock {
  overflow: hidden;
  position: relative;
  height: 100%;
}

body {
  color: #424449;
  font-size: 18px;
  font-weight: 600;
}
body._lock {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 1175px) {
  ._container {
    padding: 0 10px;
  }
}
.header__body {
  padding: 15px 0;
}
.header__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header__wrap-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__wrap-logo span {
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 1175px) {
  .header__wrap-logo span {
    display: none;
  }
}
.header__logo {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.header__nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992.98px) {
  .header__nav {
    overflow-y: auto;
    position: fixed;
    width: 70%;
    max-height: 100%;
    top: 0;
    right: 0;
    z-index: 3;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 25px 0 0 25px;
    transform: translateX(100%);
    transition: 0.3s;
    box-shadow: 0px 4px 20px 0px rgba(85, 85, 85, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .header__nav._active {
    transform: translate(0, 0);
  }
}
@media (max-width: 478.98px) {
  .header__nav {
    width: 320px;
  }
}
.header__menu-close {
  display: none;
}
@media (max-width: 992.98px) {
  .header__menu-close {
    display: block;
    position: absolute;
    right: 25px;
    top: 35px;
    width: 20px;
    height: 20px;
  }
  .header__menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #171717;
    border-radius: 4px;
  }
  .header__menu-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header__menu-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
.header__menu {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.header__list {
  display: flex;
  align-items: center;
}
@media (max-width: 992.98px) {
  .header__list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
  }
}
.header__li {
  position: relative;
  z-index: 2;
}
.header__li:hover .header__link {
  background-color: rgb(243, 239, 228);
}
.header__li:hover .header__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 10px);
}
@media (max-width: 992.98px) {
  .header__li._mobile {
    display: flex;
    flex-direction: column;
  }
  .header__li._mobile .header__link._active, .header__li._mobile .header__link:hover {
    background-color: transparent;
  }
  .header__li._mobile .header__link .icon-burger {
    display: none;
  }
  .header__li._mobile .header__link .icon-triangle {
    display: block;
  }
  .header__li._mobile .header__link._active .icon-triangle {
    transform: rotate(180deg);
  }
  .header__li._mobile .header__sub-list {
    box-sizing: content-box;
    max-height: 0;
    opacity: 0;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
    will-change: max-height;
    transition: 0.2s;
    background-color: transparent;
    box-shadow: 0 0 0 0 rgba(85, 85, 85, 0);
  }
  .header__li._mobile .header__sub-list._open {
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
  .header__li._mobile .header__sub-link {
    opacity: 0.8;
  }
}
.header__link {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: #424449;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  transition: 0.3s;
  padding: 15px;
}
.header__link .icon-burger {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: #424449;
}
.header__link .icon-triangle {
  display: none;
  width: 10px;
  height: 10px;
  fill: #171717;
  transition: 0.2s;
}
.header__link:hover {
  background-color: rgb(243, 239, 228);
}
.header__link._active:hover {
  background-color: #ddcc9d;
}
@media (max-width: 992.98px) {
  .header__link {
    font-size: 18px;
    padding: 0;
  }
}
.header__sub-list {
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(85, 85, 85, 0.2);
  min-width: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.header__sub-list::before {
  content: "";
  position: absolute;
  bottom: 100%;
  width: 100%;
  height: 10px;
  left: 0;
  opacity: 0;
  background-color: transparent;
  z-index: 1;
}
@media (max-width: 992.98px) {
  .header__sub-list {
    position: relative;
  }
  .header__sub-list::before {
    display: none;
  }
}
@media (max-width: 478.98px) {
  .header__sub-list {
    min-width: 0;
    max-width: 100%;
  }
}
.header__sub-li {
  width: 100%;
}
.header__sub-link {
  display: block;
  width: 100%;
  white-space: nowrap;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  color: #424449;
  font-weight: 600;
  transition: 0.3s;
}
.header__sub-link:hover {
  background-color: rgb(243, 239, 228);
}
@media (max-width: 992.98px) {
  .header__sub-link {
    font-size: 18px;
  }
}
@media (max-width: 478.98px) {
  .header__sub-link {
    font-size: 16px;
  }
}
.header__title {
  display: none;
}
@media (max-width: 992.98px) {
  .header__title {
    display: block;
    color: #171717;
    font-family: Gilroy;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
  }
}
@media (max-width: 992.98px) and (max-width: 1160px) {
  .header__title {
    font-size: calc(18px + 10 * (100vw - 320px) / 840);
  }
}
.header__contacts {
  display: none;
}
@media (max-width: 992.98px) {
  .header__contacts {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
.header__contacts-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.header__contacts-li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__contacts-li .icon {
  width: 16px;
  height: 16px;
  fill: #419728;
  stroke: #419728;
}
.header__contacts-text {
  color: #424449;
  font-size: 18px;
}
@media (max-width: 1160px) {
  .header__contacts-text {
    font-size: calc(14px + 4 * (100vw - 320px) / 840);
  }
}
.header__contacts-text {
  font-weight: 600;
  line-height: normal;
  font-style: normal;
}
.header__messengers {
  display: none;
}
.header__messengers span {
  color: #424449;
  font-size: 18px;
}
@media (max-width: 1160px) {
  .header__messengers span {
    font-size: calc(12px + 6 * (100vw - 320px) / 840);
  }
}
.header__messengers span {
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 992.98px) {
  .header__messengers {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    row-gap: 10px;
  }
}
.header__messengers-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__messengers-link {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: rgb(65, 151, 40);
}
.header__messengers-link .icon {
  width: 17px;
  height: 17px;
  fill: #fff;
}
.header__menu-logo {
  display: none;
}
@media (max-width: 992.98px) {
  .header__menu-logo {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .header__menu-logo img {
    width: 70px;
    height: 70px;
  }
  .header__menu-logo span {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
  }
}
@media (max-width: 992.98px) and (max-width: 1160px) {
  .header__menu-logo span {
    font-size: calc(12px + 6 * (100vw - 320px) / 840);
  }
}
.header__block {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 478.98px) {
  .header__block {
    flex: 1 1 auto;
    justify-content: flex-end;
  }
}
.header__wrap-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 5px;
}
.header__wrap-tel span {
  text-align: right;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.67;
}
.header__tel {
  color: #424449;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  transition: 0.2s;
}
.header__tel:hover {
  color: #3d8924;
}
.header__button {
  color: #3d8924;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  background-color: #fff;
  transition: 0.3s;
}
.header__button::after {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  left: -2px;
  top: -2px;
  background: linear-gradient(90deg, rgb(62, 137, 38) 0%, rgb(85, 201, 49) 50%, rgb(189, 222, 58) 100%);
  border-radius: 100px;
  z-index: -1;
}
.header__button:hover {
  background-color: transparent;
  color: #fff;
}
@media (max-width: 478.98px) {
  .header__button {
    display: none;
  }
  .header__button:hover {
    background-color: #fff;
    color: #3d8924;
  }
}

.header-burger {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease 0s;
}
.header-burger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  border-radius: 6px;
}
.header-burger::before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  left: -2px;
  top: -2px;
  background: linear-gradient(90deg, rgb(62, 137, 38) 0%, rgb(85, 201, 49) 50%, rgb(189, 222, 58) 100%);
  border-radius: 8px;
}
.header-burger span {
  position: absolute;
  transition: all 0.2s ease 0s;
  width: 25px;
  height: 3px;
  border-radius: 4px;
  z-index: 1;
  background: linear-gradient(90deg, rgb(62, 137, 38) 0%, rgb(85, 201, 49) 50%, rgb(189, 222, 58) 100%);
  left: 50%;
}
.header-burger span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -10px);
}
.header-burger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-burger span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 10px);
}
.header-burger._active span {
  transform: scale(0);
}
.header-burger._active span:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-burger._active span:last-child {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
}
@media (max-width: 992.98px) {
  .header-burger {
    display: block;
  }
}

.mobile-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 576.98px) {
  .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
}
.mobile-nav__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 8px;
  border-radius: 12px 12px 0 0;
  padding: 10px;
  box-shadow: 0 0 10px 3px rgba(85, 85, 85, 0.2);
}
.mobile-nav__button span {
  color: #424449;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.mobile-nav__button .icon {
  width: 20px;
  height: 20px;
}
.mobile-nav__button:first-child {
  background-color: #fff;
  flex: 1 1 33.333%;
}
.mobile-nav__button:last-child {
  flex: 1 1 66.666%;
  background: linear-gradient(90deg, rgb(62, 137, 38) 0%, rgb(85, 201, 49) 50%, rgb(189, 222, 58) 100%);
}
.mobile-nav__button:last-child span {
  color: #fff;
}

.footer {
  padding-top: 120px;
}
@media (max-width: 1160px) {
  .footer {
    padding-top: calc(40px + 80 * (100vw - 320px) / 840);
  }
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media (max-width: 1175px) and (min-width: 768px) {
  .footer__content {
    gap: calc(10px + 40 * (100vw - 768px) / ((1152)));
  }
}
@media (max-width: 768.98px) {
  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 30px;
}
@media (max-width: 768.98px) {
  .footer__col.footer-nav, .footer__col.footer-requisites {
    display: none;
  }
  .footer__col.footer-col {
    align-items: center;
  }
  .footer__col {
    row-gap: 20px;
  }
}
.footer__wrap-logo {
  position: relative;
  padding-left: 80px;
}
.footer__wrap-logo span {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}
@media (max-width: 768.98px) {
  .footer__wrap-logo {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.footer__logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}
.footer__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 768.98px) {
  .footer__logo {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    width: 100px;
    height: 100px;
  }
}
.footer__contacts {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
}
.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__contacts li .icon {
  width: 18px;
  height: 18px;
  fill: #424449;
}
.footer__contacts li span,
.footer__contacts li a {
  color: #424449;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.footer__contacts li .schedule {
  display: none;
}
@media (max-width: 768.98px) {
  .footer__contacts li .icon {
    display: none;
  }
  .footer__contacts li {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .footer__contacts li .schedule {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
  }
}
@media (max-width: 768.98px) {
  .footer__contacts {
    margin: 0;
    flex-direction: column-reverse;
  }
}
.footer__messengers {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  row-gap: 10px;
}
.footer__messengers span {
  color: #424449;
  font-size: 18px;
}
@media (max-width: 1160px) {
  .footer__messengers span {
    font-size: calc(12px + 6 * (100vw - 320px) / 840);
  }
}
.footer__messengers span {
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768.98px) {
  .footer__messengers {
    margin: 0 auto;
    align-items: center;
  }
}
.footer__messengers-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__messengers-link {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #424449;
}
.footer__messengers-link .icon {
  width: 17px;
  height: 17px;
  fill: #fff;
}
.footer__title {
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 768.98px) {
  .footer__list {
    align-items: center;
    max-width: 280px;
  }
  .footer__list._dynamic_adapt_ {
    margin-bottom: 30px;
  }
}
.footer__li span {
  color: #424449;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 768.98px) {
  .footer__li {
    text-align: center;
  }
}
.footer__link {
  color: #424449;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  position: relative;
}
.footer__link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  height: 1px;
  width: 0;
  background-color: rgba(66, 68, 73, 0.5058823529);
  transform: translate(-50%, 0);
  opacity: 0;
  transition: 0.3s;
}
.footer__link:hover::before {
  opacity: 1;
  width: 100%;
}
.footer__bottom {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(65, 67, 72, 0.15);
  gap: 10px;
}
.footer__bottom span {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
}
@media (max-width: 768.98px) {
  .footer__bottom {
    flex-direction: column;
    margin-top: 30px;
  }
}
@media (max-width: 768.98px) {
  .footer .footer-addres {
    color: #424449;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
  }
  .footer .footer-addres br {
    display: none;
  }
  .footer .footer-tel {
    color: #424449;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
  }
  .footer .footer-mail {
    color: #424449;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
  }
}

.modal {
  -webkit-overflow-scrolling: touch;
  z-index: 10;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  min-height: 50vh;
}
.modal iframe {
  min-height: 50vh;
}
.modal::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.modal._show {
  visibility: visible;
  overflow: auto;
}
.modal._show::before {
  opacity: 1;
}
.modal._show .modal_body {
  transform: scale(1);
}
.modal._active {
  overflow: auto;
  visibility: visible;
}
.modal._active::before {
  opacity: 1;
}
.modal._active .modal__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.modal__content {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}

.modal-video .modal__content {
  padding: 80px 20px;
}
@media (max-width: 1175px) {
  .modal-video .modal__content {
    padding: 80px 10px;
  }
}
.modal-video .modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  max-width: 1200px;
  padding: 0;
  overflow: hidden;
}
.modal-video .modal__body video {
  width: 100%;
  height: 100%;
}
.modal-video .modal__close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  border-radius: 8px;
  transform: translate(-100%, 100%);
  transition: 0.2s;
}
.modal-video .modal__close span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: #fff;
  transition: 0.2s;
  left: 50%;
}
.modal-video .modal__close span:first-child {
  transform: translateX(-50%) rotate(45deg);
  top: 12px;
}
.modal-video .modal__close span:last-child {
  transform: translateX(-50%) rotate(-45deg);
  top: 12px;
}
.modal-video .modal__close:hover span {
  background-color: rgb(255, 6, 6);
}
@media (max-width: 1175px) {
  .modal-video .modal__close {
    top: 30px;
    right: 10px;
    transform: translate(0, 0);
  }
}

.main {
  flex: 1 1 auto;
}

.h2 {
  text-align: center;
  font-size: 40px;
}
@media (max-width: 1160px) {
  .h2 {
    font-size: calc(28px + 12 * (100vw - 320px) / 840);
  }
}
.h2 {
  font-weight: 700;
  line-height: normal;
}

.sub-title {
  text-align: center;
  font-size: 20px;
}
@media (max-width: 1160px) {
  .sub-title {
    font-size: calc(14px + 6 * (100vw - 320px) / 840);
  }
}
.sub-title {
  font-weight: 600;
  line-height: normal;
  max-width: 750px;
  margin: 30px auto 0 auto;
}
@media (max-width: 576.98px) {
  .sub-title {
    margin: 15px auto 0 auto;
  }
}

.button {
  border-radius: 100px;
  padding: 15px 20px;
}

.video-wrap {
  position: relative;
}
.video-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 68, 73, 0.35);
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.video-wrap:hover::after {
  opacity: 1;
  visibility: visible;
}
.video-wrap:hover .btn-play::before {
  transform: translate(-50%, -50%) scale(1.25);
}

.btn-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}
.btn-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: 0.3s;
}
.btn-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.btn-play span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #424449;
  transition: 0.3s;
}
.btn-play:hover::before {
  transform: translate(-50%, -50%) scale(1) !important;
}
.btn-play:hover::after {
  background-color: #52b237;
}
.btn-play:hover span {
  border-color: transparent transparent transparent #fff;
}

.path {
  padding: 35px 0;
}
.path__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.path__li .icon-gal {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  fill: none;
  stroke: #424449;
}
.path__li:last-child a::before {
  width: 100%;
}
.path__link {
  color: #424449;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  opacity: 0.8;
  position: relative;
}
.path__link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 1px;
  opacity: 0.8;
  background-color: #424449;
}

.promo {
  margin-top: 55px;
}
.promo__body {
  width: 100%;
  border-radius: 30px;
  background: #419728;
  overflow: hidden;
  padding: 110px 60px;
  position: relative;
}
@media (max-width: 1175px) and (min-width: 768px) {
  .promo__body {
    padding-top: calc(40px + 70 * (100vw - 768px) / ((1152)));
  }
}
@media (max-width: 1175px) and (min-width: 768px) {
  .promo__body {
    padding-bottom: calc(40px + 70 * (100vw - 768px) / ((1152)));
  }
}
@media (max-width: 768.98px) {
  .promo__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    row-gap: 60px;
  }
}
.promo picture {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768.98px) {
  .promo picture {
    position: relative;
    right: auto;
    top: auto;
    height: 400px;
    width: 100%;
  }
}
@media (max-width: 478.98px) {
  .promo picture {
    display: flex;
  }
}
.promo__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768.98px) {
  .promo__content {
    padding: 30px 20px;
  }
}
.promo__up-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 1160px) {
  .promo__up-title {
    font-size: calc(14px + 2 * (100vw - 320px) / 840);
  }
}
.promo__title {
  color: #fff;
  font-size: 56px;
}
@media (max-width: 1160px) {
  .promo__title {
    font-size: calc(28px + 28 * (100vw - 320px) / 840);
  }
}
.promo__title {
  line-height: normal;
  font-weight: 700;
  max-width: 576px;
}
@media (max-width: 992.98px) {
  .promo__title {
    font-size: 38px;
    max-width: 400px;
  }
}
@media (max-width: 768.98px) {
  .promo__title {
    max-width: auto;
    margin-top: 15px;
  }
}
@media (max-width: 478.98px) {
  .promo__title {
    font-size: 26px;
  }
}
.promo__button {
  margin-top: 60px;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(255, 255, 255, 0.6);
  color: #469a2a;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 20px;
  transition: 0.3s;
}
.promo__button:hover {
  color: #fff;
  background-color: #419728;
}
@media (max-width: 576.98px) {
  .promo__button {
    margin-top: 40px;
  }
}
.promo__heart-img {
  position: absolute;
  top: 0;
  left: 20%;
}
.promo__children-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 992.98px) {
  .promo__children-img {
    opacity: 1;
  }
}
@media (max-width: 768.98px) {
  .promo__children-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

.help {
  margin-top: 100px;
}
@media (max-width: 1160px) {
  .help {
    margin-top: calc(60px + 40 * (100vw - 320px) / 840);
  }
}
.help__content {
  margin-top: 60px;
}
@media (max-width: 1160px) {
  .help__content {
    margin-top: calc(40px + 20 * (100vw - 320px) / 840);
  }
}
.help__content {
  display: flex;
  gap: 30px;
}
@media (max-width: 992.98px) {
  .help__content {
    flex-direction: column-reverse;
  }
}
.help__wrap-video {
  flex: 1 50%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help__wrap-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992.98px) {
  .help__wrap-video {
    align-items: flex-start;
    max-height: 500px;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 478.98px) {
  .help__wrap-video {
    max-height: 240px;
  }
}
.help__form {
  flex: 1 50%;
  border-radius: 10px;
  background: #f8f9f9;
  padding: 30px;
}
@media (max-width: 576.98px) {
  .help__form {
    padding: 15px;
  }
}
.help__form_block {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.help__form_title {
  color: #424449;
  font-size: 18px;
}
@media (max-width: 1160px) {
  .help__form_title {
    font-size: calc(16px + 2 * (100vw - 320px) / 840);
  }
}
.help__form_title {
  font-weight: 600;
  line-height: normal;
}
.help__form_type-payments {
  width: 100%;
  display: flex;
  position: relative;
}
.help__form_type-payment-label {
  flex: 1 1 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  cursor: pointer;
  border: 2px solid rgba(82, 178, 55, 0.25);
  position: relative;
  transition: 0.3s;
}
.help__form_type-payment-label::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: 0;
  width: 0;
  height: calc(100% + 4px);
  background-color: #52b237;
  transition: 0.3s;
  z-index: 0;
}
.help__form_type-payment-label span {
  position: relative;
  color: #52b237;
  opacity: 0.5;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}
@media (max-width: 576.98px) {
  .help__form_type-payment-label span {
    font-size: 14px;
  }
}
.help__form_type-payment-label.monthly {
  border-radius: 6px 0 0 6px;
  border-right: none;
}
.help__form_type-payment-label.monthly::before {
  right: 0;
  border-radius: 6px 0 0 6px;
}
.help__form_type-payment-label.one-time {
  border-radius: 0 6px 6px 0;
  border-left: none;
}
.help__form_type-payment-label.one-time::before {
  left: 0;
  border-radius: 0 6px 6px 0;
}
.help__form_type-payment-label:hover {
  border-color: #52b237;
}
.help__form_type-payment-label:hover span {
  opacity: 1;
}
.help__form_type-payment-input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.help__form_type-payment-input:checked + .help__form_type-payment-label {
  border-color: #52b237;
}
.help__form_type-payment-input:checked + .help__form_type-payment-label::before {
  width: 100%;
}
.help__form_type-payment-input:checked + .help__form_type-payment-label span {
  color: #fff;
  opacity: 1;
}
.help__form_price-row {
  display: flex;
  width: 100%;
  gap: 8px;
  position: relative;
}
.help__form_price {
  flex: 1 1 auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 2px solid rgba(82, 178, 55, 0.25);
  position: relative;
  transition: 0.3s;
}
.help__form_price::after {
  content: "₽";
  position: absolute;
  right: 15px;
  opacity: 0.5;
  color: #52b237;
  font-weight: 700;
}
.help__form_price-label {
  flex: 1 1 29%;
  cursor: pointer;
  border: 2px solid rgba(82, 178, 55, 0.25);
  background-color: #fff;
  padding: 20px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: 0.3s;
}
.help__form_price-label span {
  color: #52b237;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.5;
  transition: 0.3s;
}
@media (max-width: 576.98px) {
  .help__form_price-label span {
    font-size: 14px;
  }
}
.help__form_price-label:hover {
  border-color: rgba(82, 178, 55, 0.6);
}
.help__form_price-label:hover span {
  color: #347316;
  opacity: 1;
}
.help__form_price-input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.help__form_price-input:checked + .help__form_price-label {
  background-color: rgba(82, 178, 55, 0.2);
  border-color: rgba(82, 178, 55, 0.6);
}
.help__form_price-input:checked + .help__form_price-label span {
  color: #347316;
  opacity: 1;
}
.help__form_price-input-text {
  width: 100%;
  height: 100%;
  padding: 0 15px;
}
.help__form_price-input-text::placeholder {
  opacity: 0.5;
  color: #52b237;
  font-weight: 700;
}
@media (max-width: 576.98px) {
  .help__form_price-input-text {
    font-size: 14px;
    padding: 0 10px;
  }
}
.help__form_data {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.help__form_wrap-input {
  position: relative;
  width: 100%;
}
.help__form_input {
  width: 100%;
  background-color: #fff;
  border: 2px solid rgba(66, 68, 73, 0.15);
  border-radius: 10px;
  padding: 20px;
  color: #424449;
  font-size: 16px;
}
@media (max-width: 1160px) {
  .help__form_input {
    font-size: calc(14px + 2 * (100vw - 320px) / 840);
  }
}
.help__form_input {
  font-weight: 600;
  transition: 0.3s;
}
.help__form_input::placeholder {
  opacity: 0.3;
  font-size: 16px;
}
@media (max-width: 1160px) {
  .help__form_input::placeholder {
    font-size: calc(12px + 4 * (100vw - 320px) / 840);
  }
}
.help__form_input:focus {
  border-color: rgba(82, 178, 55, 0.6);
}
.help__form_textarea {
  width: 100%;
  background-color: #fff;
  border: 2px solid rgba(66, 68, 73, 0.15);
  border-radius: 10px;
  padding: 20px;
  color: #424449;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  resize: none;
}
.help__form_textarea::placeholder {
  opacity: 0.3;
  font-size: 16px;
}
@media (max-width: 1160px) {
  .help__form_textarea::placeholder {
    font-size: calc(12px + 4 * (100vw - 320px) / 840);
  }
}
.help__form_textarea:focus {
  border-color: rgba(82, 178, 55, 0.6);
}
.help__form_payment-methods {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.help__form_payment-methods-col-3 {
  display: flex;
  gap: 8px;
}
.help__form_payment-methods-col-3 .help__form_payment-methods-cell {
  flex: 1 1 33.333%;
}
@media (max-width: 576.98px) {
  .help__form_payment-methods-col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.help__form_payment-methods-cell {
  height: 65px;
  position: relative;
}
.help__form_payment-methods-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid rgba(66, 68, 73, 0.15);
  border-radius: 10px;
  padding: 5px;
  height: 100%;
  width: 100%;
  transition: 0.3s;
}
.help__form_payment-methods-label > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5px;
  overflow: hidden;
}
.help__form_payment-methods-label > div img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.help__form_payment-methods-label span {
  color: #424449;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
}
.help__form_payment-methods-label:hover {
  border-color: rgba(82, 178, 55, 0.6);
}
.help__form_payment-methods-input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.help__form_payment-methods-input:checked + .help__form_payment-methods-label {
  background-color: rgba(82, 178, 55, 0.2);
  border-color: rgba(82, 178, 55, 0.6);
}
.help__form_paymentmethods--col-2 {
  display: flex;
  gap: 8px;
}
.help__form_paymentmethods--col-2 .help__form_payment-methods-cell {
  flex: 1 1 50%;
}
.help__form_button {
  width: 100%;
  padding: 25px 10px;
  border-radius: 10px;
  background-color: #52b237;
  border: 2px solid #52b237;
  margin-top: 8px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  transition: 0.3s;
}
.help__form_button:active {
  transform: scale(0.95);
}
.help__form_button:hover {
  background-color: transparent;
  color: #52b237;
}
.help__form_bottom {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.help__form_button-checkbox-input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.help__form_button-checkbox-input:checked + .help__form_bottom-label::before {
  opacity: 1;
}
.help__form_bottom-label {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1px solid #424449;
  cursor: pointer;
  position: relative;
  opacity: 0.3;
  transition: 0.2s;
}
.help__form_bottom-label::before {
  content: "✓";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.2s;
}
.help__form_bottom-text {
  opacity: 0.3;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}
.help__form_bottom-text a {
  color: #424449;
  font-weight: 500;
  text-decoration: underline;
}

.projects {
  margin-top: 100px;
}
@media (max-width: 1160px) {
  .projects {
    margin-top: calc(60px + 40 * (100vw - 320px) / 840);
  }
}
.projects__content {
  margin-top: 60px;
}
@media (max-width: 1160px) {
  .projects__content {
    margin-top: calc(30px + 30 * (100vw - 320px) / 840);
  }
}
.projects__content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 1160px) {
  .projects__content {
    row-gap: calc(20px + 20 * (100vw - 320px) / 840);
  }
}
.projects__banner {
  width: 100%;
  display: flex;
  border-radius: 12px;
  gap: 40px;
}
@media (max-width: 1160px) {
  .projects__banner {
    gap: calc(20px + 20 * (100vw - 320px) / 840);
  }
}
.projects__banner {
  position: relative;
  overflow: hidden;
  background-color: #df6d66;
}
.projects__banner.pink {
  background-color: #df6d66;
}
.projects__banner.pink .projects__link {
  color: #df6d66;
}
.projects__banner.green {
  background-color: #70bd5d;
}
.projects__banner.green .projects__link {
  color: #70bd5d;
}
@media (max-width: 768.98px) {
  .projects__banner {
    flex-direction: column;
    padding-right: 0;
  }
}
.projects__banner_wp-img {
  min-height: 100%;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.projects__banner_wp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768.98px) {
  .projects__banner_wp-img {
    flex: 1 1 auto;
    height: 300px;
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 478.98px) {
  .projects__banner_wp-img {
    height: 200px;
  }
}
.projects__banner_content {
  min-height: 100%;
  flex: 1 1 50%;
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-right: 40px;
}
@media (max-width: 768.98px) {
  .projects__banner_content {
    padding: 0 20px 30px 20px;
  }
}
.projects__banner_title {
  color: #fff;
  font-size: 30px;
}
@media (max-width: 1160px) {
  .projects__banner_title {
    font-size: calc(20px + 10 * (100vw - 320px) / 840);
  }
}
.projects__banner_title {
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.projects__banner_text {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 1160px) {
  .projects__banner_text {
    font-size: calc(14px + 4 * (100vw - 320px) / 840);
  }
}
.projects__banner_text {
  font-weight: 600;
  line-height: normal;
  margin-top: 15px;
}
.projects__banner_img-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 80%;
}
@media (max-width: 768.98px) {
  .projects__banner_img-bg {
    height: auto;
    width: 50%;
  }
}
.projects__row {
  display: flex;
  gap: 40px;
}
@media (max-width: 1160px) {
  .projects__row {
    gap: calc(20px + 20 * (100vw - 320px) / 840);
  }
}
@media (max-width: 768.98px) {
  .projects__row {
    flex-direction: column;
  }
}
.projects__card {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (max-width: 1160px) {
  .projects__card {
    row-gap: calc(20px + 10 * (100vw - 320px) / 840);
  }
}
.projects__card {
  flex: 0 1 50%;
  border-radius: 12px;
  position: relative;
}
.projects__card.blue {
  background-color: #59b4dc;
}
.projects__card.blue .projects__link {
  color: #59b4dc;
}
.projects__card.orange {
  background-color: #e7aa51;
}
.projects__card.orange .projects__link {
  color: #e7aa51;
}
.projects__card.purple {
  background-color: #9351e7;
}
.projects__card.purple .projects__link {
  color: #9351e7;
}
.projects__card.pink {
  background-color: #d87c8d;
}
.projects__card.pink .projects__link {
  color: #d87c8d;
}
.projects__card_wp-img {
  height: 320px;
}
@media (max-width: 1160px) {
  .projects__card_wp-img {
    height: calc(200px + 120 * (100vw - 320px) / 840);
  }
}
.projects__card_wp-img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 12px;
}
.projects__card_wp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects__card_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 30px 30px 30px;
  row-gap: 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 576.98px) {
  .projects__card_content {
    padding: 0 20px 20px 20px;
  }
}
.projects__card_title {
  color: #fff;
  font-size: 30px;
}
@media (max-width: 1160px) {
  .projects__card_title {
    font-size: calc(20px + 10 * (100vw - 320px) / 840);
  }
}
.projects__card_title {
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.projects__card_text {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 1160px) {
  .projects__card_text {
    font-size: calc(14px + 4 * (100vw - 320px) / 840);
  }
}
.projects__card_text {
  font-weight: 600;
  line-height: normal;
}
.projects__card .projects__link {
  margin-top: auto;
}
.projects__card_img-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 992.98px) {
  .projects__card_img-bg {
    width: 50%;
  }
}
.projects__link {
  padding: 15px 25px;
  margin-top: 50px;
}
@media (max-width: 1160px) {
  .projects__link {
    margin-top: calc(30px + 20 * (100vw - 320px) / 840);
  }
}
.projects__link {
  background-color: #fff;
  text-align: center;
  box-shadow: 0px 0px 25px 1px rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  border: 2px solid #fff;
  transition: 0.3s;
}
.projects__link:hover {
  background-color: transparent;
  color: #fff !important;
}

.contacts {
  margin-top: 100px;
}
@media (max-width: 1160px) {
  .contacts {
    margin-top: calc(60px + 40 * (100vw - 320px) / 840);
  }
}
.contacts__content {
  margin-top: 60px;
}
@media (max-width: 1160px) {
  .contacts__content {
    margin-top: calc(30px + 30 * (100vw - 320px) / 840);
  }
}
.contacts__content {
  display: flex;
  gap: 20px;
}
@media (max-width: 992.98px) {
  .contacts__content {
    flex-direction: column-reverse;
  }
}
.contacts__map {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992.98px) {
  .contacts__map {
    transform: scale(1.03);
  }
}
@media (max-width: 576.98px) {
  .contacts__map {
    height: 400px;
  }
}
.contacts__requisites {
  flex: 1 0 38.8%;
  position: relative;
  border-radius: 16px;
  background-color: #419728;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576.98px) {
  .contacts__requisites {
    padding: 30px 20px;
  }
}
.contacts__requisites_title {
  color: #fff;
  font-size: 22px;
}
@media (max-width: 1160px) {
  .contacts__requisites_title {
    font-size: calc(18px + 4 * (100vw - 320px) / 840);
  }
}
.contacts__requisites_title {
  font-weight: 700;
  line-height: normal;
}
.contacts__requisites_content {
  margin-top: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.contacts__requisites_content span {
  color: #fff;
  font-size: 16px;
}
@media (max-width: 1160px) {
  .contacts__requisites_content span {
    font-size: calc(13px + 3 * (100vw - 320px) / 840);
  }
}
.contacts__requisites_content span {
  font-weight: 500;
}
.contacts__requisites_content span b {
  font-weight: 700;
}
.contacts__requisites_content span a {
  color: #c3d844;
}
.contacts__requisites_img-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 576.98px) {
  .contacts__requisites_img-bg {
    width: 40%;
  }
}

.fund {
  margin-top: 90px;
}
@media (max-width: 1160px) {
  .fund {
    margin-top: calc(40px + 50 * (100vw - 320px) / 840);
  }
}
.fund {
  position: relative;
}
.fund__img-bg {
  position: absolute;
  transform: translate(0, -45%);
  z-index: -1;
  left: 0;
  top: 0;
  max-width: 120px;
}
@media (max-width: 1175px) {
  .fund__img-bg {
    display: none;
  }
}
.fund__body {
  display: flex;
  gap: 40px;
}
@media (max-width: 1160px) {
  .fund__body {
    gap: calc(20px + 20 * (100vw - 320px) / 840);
  }
}
@media (max-width: 768.98px) {
  .fund__body {
    flex-direction: column;
  }
}
.fund__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.fund__title {
  font-size: 48px;
}
@media (max-width: 1160px) {
  .fund__title {
    font-size: calc(26px + 22 * (100vw - 320px) / 840);
  }
}
.fund__title {
  line-height: 49px;
}
@media (max-width: 1160px) {
  .fund__title {
    line-height: calc(29px + 20 * (100vw - 320px) / 840);
  }
}
.fund__title {
  font-weight: 700;
}
.fund__title mark {
  color: #419728;
  background-color: transparent;
  white-space: nowrap;
}
.fund__sub-title {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  max-width: 430px;
  margin: 0;
  margin-top: 30px;
}
@media (max-width: 1160px) {
  .fund__sub-title {
    margin-top: calc(20px + 10 * (100vw - 320px) / 840);
  }
}
@media (max-width: 576.98px) {
  .fund__sub-title {
    font-size: 18px;
  }
}
.fund__button {
  margin-top: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
}
.fund__button::after {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  left: -2px;
  top: -2px;
  background: linear-gradient(90deg, rgb(62, 137, 38) 0%, rgb(85, 201, 49) 50%, rgb(189, 222, 58) 100%);
  border-radius: 100px;
  z-index: -1;
}
.fund__button:hover {
  background-color: #fff;
  color: #3d8924;
}
.fund__video {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fund__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 478.98px) {
  .fund__video {
    flex: 1 1 auto;
    height: 200px;
  }
}

.what-does {
  margin-top: 80px;
  background-color: rgba(247, 248, 248, 0.5);
  padding-top: 80px;
}
@media (max-width: 1160px) {
  .what-does {
    padding-top: calc(50px + 30 * (100vw - 320px) / 840);
  }
}
.what-does {
  padding-bottom: 100px;
}
@media (max-width: 1160px) {
  .what-does {
    padding-bottom: calc(60px + 40 * (100vw - 320px) / 840);
  }
}
.what-does__content {
  margin-top: 60px;
}
@media (max-width: 1160px) {
  .what-does__content {
    margin-top: calc(40px + 20 * (100vw - 320px) / 840);
  }
}
.what-does__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768.98px) {
  .what-does__content {
    grid-template-columns: 1fr;
  }
}
.what-does__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  position: relative;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(66, 68, 73, 0.04);
  padding: 25px;
}
@media (max-width: 576.98px) {
  .what-does__card {
    row-gap: 15px;
  }
}
.what-does__card_wp-img {
  width: 60px;
}
@media (max-width: 1160px) {
  .what-does__card_wp-img {
    width: calc(40px + 20 * (100vw - 320px) / 840);
  }
}
.what-does__card_wp-img {
  height: 60px;
}
@media (max-width: 1160px) {
  .what-does__card_wp-img {
    height: calc(40px + 20 * (100vw - 320px) / 840);
  }
}
.what-does__card_wp-img {
  background-color: #419728;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}
.what-does__card_wp-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.what-does__card_span {
  color: #424449;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
}
.what-does__card_span b {
  color: #419728;
}
@media (max-width: 576.98px) {
  .what-does__card_span {
    font-size: 20px;
  }
}
.what-does__card_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.what-does__card_text b {
  font-weight: 700;
}
@media (max-width: 576.98px) {
  .what-does__card_text {
    font-size: 14px;
    line-height: 18px;
  }
}
.what-does__card_img-bg {
  position: absolute;
  top: 10px;
  right: 10px;
}

.about-project {
  padding-top: 100px;
}
@media (max-width: 1160px) {
  .about-project {
    padding-top: calc(60px + 40 * (100vw - 320px) / 840);
  }
}
.about-project {
  padding-bottom: 100px;
}
@media (max-width: 1160px) {
  .about-project {
    padding-bottom: calc(60px + 40 * (100vw - 320px) / 840);
  }
}
.about-project {
  border-radius: 80px 80px 0 0;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(66, 68, 73, 0.1);
  position: relative;
}
@media (max-width: 768.98px) {
  .about-project {
    border-radius: 0;
  }
}
.about-project__img-bg {
  position: absolute;
  z-index: 0;
}
.about-project__img-bg.bg-2 {
  top: 0;
  left: 0;
  transform: translate(0, 17%);
}
.about-project__img-bg.bg-3 {
  right: 0;
  top: 35%;
}
@media (max-width: 1175px) {
  .about-project__img-bg {
    display: none;
  }
}
.about-project__title {
  text-align: left;
}
.about-project__content {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  position: relative;
}
.about-project__promo {
  margin-top: 40px;
  border-radius: 14px;
  background: #f8f9f8;
  padding: 20px;
  display: flex;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768.98px) {
  .about-project__promo {
    flex-direction: column;
  }
}
.about-project__promo_content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.about-project__promo_span {
  max-width: 410px;
  font-size: 26px;
}
@media (max-width: 1160px) {
  .about-project__promo_span {
    font-size: calc(20px + 6 * (100vw - 320px) / 840);
  }
}
.about-project__promo_span {
  font-weight: 600;
  line-height: normal;
}
.about-project__promo_span b {
  color: #419728;
}
.about-project__promo_text {
  max-width: 390px;
  margin-top: 30px;
  font-size: 18px;
}
@media (max-width: 1160px) {
  .about-project__promo_text {
    font-size: calc(14px + 4 * (100vw - 320px) / 840);
  }
}
.about-project__promo_text {
  line-height: 23px;
}
@media (max-width: 1160px) {
  .about-project__promo_text {
    line-height: calc(18px + 5 * (100vw - 320px) / 840);
  }
}
.about-project__promo_text {
  font-weight: 500;
}
.about-project__promo_text b {
  font-weight: 700;
}
@media (max-width: 576.98px) {
  .about-project__promo_text {
    margin-top: 20px;
  }
}
.about-project__promo_link {
  position: relative;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.about-project__promo_link span {
  color: #419728;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.about-project__promo_link .icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #419728;
}
.about-project__promo_link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 2px);
  height: 2px;
  width: 0;
  background-color: #419728;
  transition: 0.3s;
}
.about-project__promo_link:hover::before {
  width: 100%;
}
@media (max-width: 576.98px) {
  .about-project__promo_link {
    margin-top: 40px;
  }
}
.about-project__promo_video {
  border-radius: 14px;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about-project__promo_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 478.98px) {
  .about-project__promo_video {
    flex: 1 1 auto;
    height: 190px;
  }
}
.about-project__promo_img-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media (max-width: 768.98px) {
  .about-project__promo_img-bg {
    left: auto;
    right: 0;
    transform: translate(0, -50%);
    width: 50%;
  }
}
.about-project__block-text {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 1160px) {
  .about-project__block-text {
    row-gap: calc(25px + 15 * (100vw - 320px) / 840);
  }
}
.about-project__text {
  font-size: 18px;
  font-size: 18px;
}
@media (max-width: 1160px) {
  .about-project__text {
    font-size: calc(14px + 4 * (100vw - 320px) / 840);
  }
}
.about-project__text {
  line-height: 27px;
}
@media (max-width: 1160px) {
  .about-project__text {
    line-height: calc(22px + 5 * (100vw - 320px) / 840);
  }
}
.about-project__text {
  font-weight: 600;
}
.about-project__text b {
  font-weight: 800;
}
.about-project__col-2 {
  display: flex;
  gap: 70px;
}
@media (max-width: 1160px) {
  .about-project__col-2 {
    gap: calc(25px + 45 * (100vw - 320px) / 840);
  }
}
.about-project__col-2 .about-project__col {
  flex: 1 1 53.44%;
}
.about-project__col-2 .about-project__wp-img {
  flex: 1 1 39.65%;
}
@media (max-width: 992.98px) {
  .about-project__col-2 {
    flex-direction: column-reverse;
  }
}
.about-project__col {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 1160px) {
  .about-project__col {
    row-gap: calc(25px + 15 * (100vw - 320px) / 840);
  }
}
.about-project__wp-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-project__wp-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.about-project .about-project__swiper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 0;
  user-select: none;
}
@media (max-width: 576.98px) {
  .about-project .about-project__swiper {
    gap: 10px;
  }
}
.about-project .about-project__main_wrapper {
  width: 100%;
  position: relative;
}
.about-project .about-project__main_swiper {
  width: 100%;
  position: relative;
}
.about-project .about-project__main_swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100%;
}
.about-project .about-project__main_swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.about-project .about-project__main_swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  transform: translate(0, -20px);
}
.about-project .about-project__main_swiper-pagination .swiper-pagination-bullet {
  width: 50px;
}
@media (max-width: 1160px) {
  .about-project .about-project__main_swiper-pagination .swiper-pagination-bullet {
    width: calc(35px + 15 * (100vw - 320px) / 840);
  }
}
.about-project .about-project__main_swiper-pagination .swiper-pagination-bullet {
  height: 5px;
  opacity: 0.5;
  background: #fff;
  border-radius: 0;
  margin: 0;
  transition: 0.2s;
}
.about-project .about-project__main_swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 576.98px) {
  .about-project .about-project__main_swiper-pagination {
    transform: translate(0, -10px);
    gap: 5px;
  }
  .about-project .about-project__main_swiper-pagination .swiper-pagination-bullet {
    width: auto;
    flex: 1 1 auto;
  }
}
.about-project .about-project__main_swiper-button {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  z-index: 1;
  cursor: pointer;
}
.about-project .about-project__main_swiper-button.prev {
  left: 5px;
  transform: translate(0, -50%) rotate(180deg);
}
.about-project .about-project__main_swiper-button.next {
  right: 5px;
  transform: translate(0, -50%);
}
.about-project .about-project__main_swiper-button .icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
}
.about-project .about-project__mini_wrapper {
  width: 100%;
  position: relative;
}
.about-project .about-project__mini_swiper {
  width: 725px;
}
@media (max-width: 768.98px) {
  .about-project .about-project__mini_swiper {
    width: 100%;
  }
}
.about-project .about-project__mini_swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
@media (max-width: 1160px) {
  .about-project .about-project__mini_swiper-slide {
    height: calc(60px + 40 * (100vw - 320px) / 840);
  }
}
.about-project .about-project__mini_swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}
.about-project .about-project__mini_swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-project .about-project__mini_swiper-slide.swiper-slide-thumb-active {
  border: 2px solid #57c535;
}
.about-project .about-project__mini_swiper-button {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  z-index: 1;
  cursor: pointer;
}
.about-project .about-project__mini_swiper-button.prev {
  left: 150px;
}
@media (min-width: 850px) {
  .about-project .about-project__mini_swiper-button.prev {
    left: calc(0px + 150 * (100vw - 850px) / ((1070)));
  }
}
.about-project .about-project__mini_swiper-button.prev {
  transform: translate(0, -50%) rotate(180deg);
}
.about-project .about-project__mini_swiper-button.next {
  right: 150px;
}
@media (min-width: 850px) {
  .about-project .about-project__mini_swiper-button.next {
    right: calc(0px + 150 * (100vw - 850px) / ((1070)));
  }
}
.about-project .about-project__mini_swiper-button.next {
  transform: translate(0, -50%);
}
.about-project .about-project__mini_swiper-button .icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #419728;
}
@media (max-width: 850px) {
  .about-project .about-project__mini_swiper-button.prev {
    left: 0;
  }
  .about-project .about-project__mini_swiper-button.next {
    right: 0;
  }
}
@media (max-width: 768.98px) {
  .about-project .about-project__mini_swiper-button .icon {
    stroke: #fff;
  }
}
.about-project__info {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.about-project__info_block {
  position: relative;
  z-index: 1;
  border: 7px solid rgba(65, 151, 40, 0.1);
  background: #fff;
  padding: 35px 80px 80px 80px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media (max-width: 768.98px) {
  .about-project__info_block {
    padding: 30px;
  }
}
.about-project__info_block-img-bg {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  transform: translate(0, -10%);
  z-index: -1;
}
.about-project__info_smiley {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-project__info_smiley img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.about-project__info_text {
  font-size: 24px;
}
@media (max-width: 1160px) {
  .about-project__info_text {
    font-size: calc(18px + 6 * (100vw - 320px) / 840);
  }
}
.about-project__info_text {
  font-weight: 700;
  line-height: normal;
}
.about-project__info_text b {
  color: #419728;
}
.about-project__info_row {
  display: flex;
  gap: 40px;
}
@media (max-width: 1160px) {
  .about-project__info_row {
    gap: calc(20px + 20 * (100vw - 320px) / 840);
  }
}
@media (max-width: 768.98px) {
  .about-project__info_row {
    flex-direction: column;
  }
}
.about-project__info_item {
  flex: 1 1 50%;
  border-radius: 30px;
  background: #f8f9f8;
  padding: 40px;
}
@media (max-width: 768.98px) {
  .about-project__info_item {
    padding: 30px 20px;
  }
}
.about-project__info_item-text {
  font-size: 18px;
}
@media (max-width: 1160px) {
  .about-project__info_item-text {
    font-size: calc(14px + 4 * (100vw - 320px) / 840);
  }
}
.about-project__info_item-text {
  line-height: 27px;
}
@media (max-width: 1160px) {
  .about-project__info_item-text {
    line-height: calc(18px + 9 * (100vw - 320px) / 840);
  }
}
.about-project__info_item-text {
  font-weight: 700;
}
.about-project__info_item-text b {
  color: #419728;
}