@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}


button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*--------------------*/


body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5F6B6A;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 16px;
}

a {
  display: block;
  color: #8987A1;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
}

.title {
  font-size: 48px;
  font-weight: 700;
  color: #1F2626;
}

.button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 30px;
  background-color: #0C726E;
  border: 2px solid #0C726E;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #ffffff;
  font-weight: 600;
  min-width: 309px;
  border-radius: 10px;
}

.button:hover {
  background-color: #ffffff00;
  box-shadow: 0 0 40px 40px #ffffff00 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #0C726E;
}


.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

.page {
  padding: 80px 0px 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 120px 0px;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.container {
  margin: 0 auto;
  max-width: 1380px;
  padding: 84px 20px;
}


.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header {
  background-color: #e8edf3;
}

.header__container {
  padding: 40px 20px;
  max-width: 1616px;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 11;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__link {
  font-weight: 700;
  line-height: 150%;
  transition:  color 300ms ease-in-out;
  font-family: Raleway;
  font-size: 16px;
  color: #0C726E;
}
.header__link:hover {
  color: #8987A1;
}
.header__menu-button {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 27px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  position: relative;
}

.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 3px;
  width: 100%;
  left: 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  border-radius: 5px;
  background-color: rgb(12, 114, 110);
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 0;
}

.header__menu-button:after {
  bottom: 0;
}

.header__menu-button span {
  top: 50%;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}

.header__menu-button._active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
  background-color: #292B32;
}

.header__menu-button._active:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.header__menu-button._active:after {
  bottom: 50%;
  width: 100%;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}



.menu nav {
  margin: 0 auto;
  padding: 20px 36px;
  max-width: 1440px;
  box-sizing: border-box;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.menu._active {
  left: 0;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: rgba(48, 50, 58, 0.75);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-height: 100%;
  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;
  padding: 40px 16px;
}

.popup__content {
  background-color: #fff;
  max-width: 940px;
  padding: 24px;
  position: relative;
  width: 100%;
  border-radius: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.close-popup {
  position: absolute;
  width: 47px;
  height: 47px;
  top: 17px;
  right: 17px;
  cursor: pointer;
}


@media (max-width: 1024px) {
  .page {
    padding: 50px 0px 0 0px;
  }

  .page_one {
    padding: 50px 0px 36px 0px;
  }

  .header__menu-button{
    display: block;
  }
    .subtitle {
        font-size: 34px;
    }
  .section {
    padding: 80px 0px;
  }
  .container {
    padding: 60px 20px;
  }
  .title{
    font-size: 32px;
  }
}

@media (max-width: 992px) {

  .section-bg {
    padding: 16px 0;
  }

  .header {
    padding: 24px 0px;
  }

  .header__container {
    padding: 0px 24px;
  }

  .header__items {
    gap: 16px;
  }

  .header__content {
    gap: 16px;
  }

}

@media (max-width: 767px) {
  .header__menu {
    padding: 120px 0px 30px 0px;
  }

  .header__menu nav {
    padding: 0px 12px;
  }

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
    .subtitle {
        font-size: 30px;
      padding-bottom: 30px;
    }
  .section {
    padding: 40px 0px;
  }
  .header__items {
    display: none;
  }
  .container {
    padding: 40px 20px;
  }
  .header__container {
    padding: 0px 20px;
  }
  .title{
     font-size: 24px;
   }
}

@media (max-width: 600px) {
  .header__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .header__icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  column-gap: 39px;
}
.header__menu a:hover {
  color: #0C726E;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 46px;
  font-weight: 600;
  color: #5F5B5B;
}
.header__button:hover{
  color: #5F5B5B;
}
.header__logo img {
  width: 193px;
}
.header__menu a {
  font-size: 16px;
  font-weight: 400;
}
.menu-item._active a{
  font-weight: 700;
  color: #252432;

}
.header__button {
  padding: 0;
}
.header__buttons {
  min-width: 226px;
  padding: 12px 30px;
}
@media (max-width: 1662px) {
  .header__menu {
    column-gap: 38px;
  }
}
@media (max-width: 1506px) {
  .header__logo img {
    width: 200px;
  }
}
@media (max-width: 1445px) {
  .header__button {
    font-size: 20px;
  }
}
@media (max-width: 1371px) {
  .header__link {
    padding: 15px 15px;
  }
  .header__button {
    padding: 15px 15px;
  }
  .header__menu a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (max-width: 1160px) {
  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #0C726E;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 150px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 20px;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 0;
    border: none;
    background: none;
    width: 100%;
    margin-top: -90px;
  }
  .header__menu a {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
  }
  .menu-item._active a {
    font-weight: 700;
    color: #95C11F;
  }
  ._active .header__logo {
    opacity: 0;
  }
  .header__menu-button._active span, .header__menu-button._active:before, .header__menu-button._active:after{
    background-color: #fff;
  }
  #primary-menu {
    align-items: center;
    gap: 80px;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .header__logo img {

    width: 44.1px;
    height: 42.7px;
    object-fit: cover;
    object-position: left;
  }
}
.banner {
  background-color: #e8edf3;
}
.banner__row {
  display: flex;
  justify-content: space-between;
}
.banner__plahka {
  border-radius: 50px;
  backdrop-filter: blur(4px);
  background: linear-gradient(90.00deg, rgb(149, 193, 31), rgb(73, 180, 188) 100%);
  padding: 13px 42px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.5px;
  display: block;
  width: fit-content;
}
.banner__title {
  color: rgb(31, 38, 38);
  font-size: 80px;
  font-weight: 800;
  line-height: 98px;
  min-width: 758px;
  max-width: 758px;
}
.banner__text {
  color: rgb(31, 38, 38);
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  max-width: 475px;
}
.banner__button {
  font-size: 20px;
  font-weight: 500;
  width: fit-content;
}
.banner__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.banner__item--firstchild {
  margin: auto;
}
.banner__img {
  margin-left: -50px;
}
@media (max-width: 1650px) {
  .banner__img {
    margin-left: 0;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .banner__row {
    flex-direction: column;
    gap: 30px;
  }
  .banner__item--firstchild {
    order: 2;
  }
  .banner__item {
    margin: auto;
  }
  .banner__img {
    margin-left: 0;
  }
  .banner__title {
    font-size: 60px;
    font-weight: 800;
    line-height: 60px;
    min-width: 100%;
  }
  .banner__container {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .banner__img {
    margin-left: 0;
    max-width: 100%;
  }
  .banner__plahka{
    display: none;
  }
  .banner__title {
    font-size: 35px;
    line-height: 44px;
  }
  .banner__info {
    gap: 20px;
  }
  .banner__text {
    font-size: 16px;
  }
  .banner__button {
    font-size: 16px;
    width: 100%;
  }
}
.best__row  .best__item {
  background: linear-gradient(170.32deg, rgb(149, 193, 31) -3.349%, rgb(12, 114, 110) 108.933%);
  padding: 99px 133px;
  border-radius: 40px;
  height: auto;
  display: flex;
  flex-direction: column;
}
.best__swiper {
  max-width: 1360px;
  margin: auto;
}
.container-all {
  padding: 84px 0;
}
.best__title {
  color: rgb(255, 255, 255);
  font-size: 48px;
  font-weight: 800;
  line-height: 59px;
  max-width: 915px;
  padding-bottom: 70px;
  position: relative;
}
.best_text {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}
.best_info {
  display: flex;
  gap: 44px;
  align-items: center;
  margin-top: auto;
}
.best__pagination {
  padding-top: 64px;
  display: flex;
  justify-content: center;
}
.best__pagination .swiper-pagination-bullet{
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
  background: rgb(149, 193, 31);
}
.best__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background: #0C726E;
}
.best__title:before{
  position: absolute;
  content: '';
  background: url("../img/dots.svg");
  width: 124px;
  height: 20px;
  right: -180px;
  top: 26px;
}
@media (max-width: 1380px) {
  .container-all {
    padding: 84px 20px;
  }
  .best__title {
    max-width: calc(100% - 130px);
  }
}
@media (max-width: 1201px) {
  .container-all {
    padding: 60px 20px;
  }

  .best__row .best__item {
    padding: 50px;
  }
  .best__title {
    font-size: 32px;
    line-height: normal;
    padding-bottom: 40px;
  }
  .best_text {
    font-size: 20px;
  }
  .best_info img {
    max-width: 80px;
  }
  .best_info {
    gap: 33px;
  }
  .best__pagination {
    padding-top: 44px;
  }
  .best__title:before {

    right: -130px;
  }
}
@media (max-width: 767px) {
  .container-all {
    padding: 40px 20px;
  }
  .best__title {
    font-size: 24px;
    line-height: normal;
    padding-bottom: 15px;
    max-width: 100%;
  }
  .best__row .best__item {
    padding: 25px;
  }
  .best_text {
    font-size: 14px;
    font-weight: 400;

  }
  .best__title:before {
    position: relative;
    content: '';
    background: url(../img/str.svg);
    width: 34px;
    height: 30px;
    display: block;
    right: 0;
    top: 0;
    background-size: contain;
    margin-left: auto;
  }
  .best_info img{
    display: none;
  }
  .best__pagination {
    padding-top: 24px;
  }
}
.about__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 107px;
  gap: 110px 90px;
}
.about__name {
  color: rgb(31, 38, 38);
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0px;
}
.about__advantages {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 3px solid rgb(149, 193, 31);
  align-items: center;
}
.about_text {
  font-size: 16px;
  line-height: 120%;
  color: #5F6B6A;
}
.green{
  color: #95C11F;
}
@media (max-width: 1024px) {
  .about__name {
    font-size: 34px;
  }
  .about__row {
    padding-top: 60px;
    gap: 40px;
  }
  .about__advantages {
    min-height: 67px;
  }
}
@media (max-width: 767px) {
  .about__name {
    font-size: 50px;
  }
  .about__row {
    padding-top: 36px;
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
.form__body {
  border-radius: 40px;
  background: linear-gradient(15.44deg, rgb(149, 193, 31) 38.284%, rgb(255, 255, 255) 91.637%);
  padding: 98px 138px 50px;
}
.form__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 59px;
  color: rgb(255, 255, 255);
}
.form__input label {
  border-radius: 10px;
  background: rgb(244, 244, 244);
  color: rgb(117, 117, 117);
  padding: 17px 20px;
}
.form__input label input{
  background: rgb(244, 244, 244);
  color: rgb(117, 117, 117);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
.form__input {
  gap: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 49px 0;
}
.form__checkbox {
  display: flex;
  gap: 13px;
}
.form__checkbox span {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  position: relative;
}
.form__checkbox span .form__checkbox--span{
	display: block;
}
.form__checkbox span .form__checkbox--span a{
	color: rgb(255, 255, 255);
	display: inline;
}
.forms__social-media {
  padding-top: 49px;
  display: flex;
  gap: 49px;
  align-items: center;
}
.social-media__text {
  font-size: 24px;
  font-weight: 800;
  line-height: 29px;
  color: rgb(255, 255, 255);
}
.social-media__soc {
  display: flex;
  gap: 20px;
}
.form .social-media__soc img, .form2 .social-media__soc img {
    max-width: 40px;
	    width: 40px;
}
.form__forms input[type="checkbox"] {
  margin: 0;
  margin-right: 20px;
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form__forms label[for="form__checkbox"]>span:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #ffffff;
  margin-right: 13px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.form__forms input[type="checkbox"]:checked+span::after {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: 4px;
  width: 10px;
  height: 10px;
  background-color: #fff;
}
.dont-click{
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .form__body {
    padding: 50px;
  }
  .form__title {
    font-size: 32px;
  }
  .form__input {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .social-media__text {
    font-size: 21px;
  }
  .forms__social-media {
    padding-top: 30px;
  }
  .form__input label{
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {

  .form__title {
    font-size: 24px;
    line-height: 120%;
    padding-bottom: 0;
  }
  .form__input {
    padding: 24px 0;
    flex-direction: column;
  }
  .forms__social-media {
    padding-top: 24px;
    gap: 24px;
    flex-direction: column;
    align-items: baseline;
  }
  .social-media__text {
    font-size: 24px;
  }
  .form__body {
    padding: 34px;
    background: linear-gradient(23.47deg, rgb(149, 193, 31) 23.186%, rgb(255, 255, 255) 145.508%);
  }
  .form__input label {
    padding: 14px 20px;
    width: 100%;
  }
  .form__submit  {
    min-width: 100%;
  }
  .form__checkbox span {
    align-items: baseline;
  }
  .form__forms input[type="checkbox"]:checked+span::after {
    top: 4px;
  }
}
.specialist {
  background: rgb(232, 237, 243);
}
.specialist__container {
  padding: 186px 20px 138px;
}
.specialist__row {
  padding-top: 50px;
}
.specialist__item {
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
}
.specialist__item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.specialist__item.specialist__item--all {
  flex-direction: column;
  align-items: start;
}
.specialist_name {
  color: rgb(31, 38, 38);
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}
.specialist_info {
  color: rgb(95, 107, 106);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
.specialist__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 33px;
}
.specialist__list {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.specialist__item--bd {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  row-gap: 12px;
}
.specialist__item--bd .specialist_info{
  max-width: 182px;
}
.specialist__list1 {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.specialist__list1 .specialist__list{
  gap: 33px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.block{
  display: block;
}
.specialist__item--bd .specialist__img{
  grid-row: 1 / 3;
}
.specialist__item.specialist__item--ruk{
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}
.specialist__row>.specialist__list .specialist__item {
  padding: 44px 36px;
}
@media (max-width: 1024px) {
  .specialist__container {
    padding: 60px 20px;
  }
  .specialist__row {
    grid-template-columns: 1fr;
  }
  .specialist__row>.specialist__list{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .specialist__row>.specialist__list .specialist__item--all{
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
  .specialist__row>.specialist__list .specialist__item, .specialist__item {
    padding: 30px;
  }
  .specialist__img {
    max-width: 90px;
  }
  .specialist_name {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .specialist__container {
    padding: 60px 20px;
  }
  .specialist_name {
    font-size: 24px;
  }
  .specialist__list1 .specialist__list {
    gap: 33px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .specialist__item.specialist__item--ruk {
    grid-column: auto;
    grid-row: auto;
  }
  .specialist__row>.specialist__list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .specialist__row>.specialist__list .specialist__item--all {
    grid-row: auto;
    grid-column: auto;
  }
  .specialist__item {
    flex-direction: column;
    align-items: baseline;
  }
  .specialist__item--bd {
    grid-template-columns: 1fr;
  }
  .specialist__row {
    padding-top: 24px;
  }
}
.cases {
  background: rgb(232, 237, 243);
}
.cases__title {
  padding-top: 40px;
  padding-bottom: 80px;
}
.cases__swiper {
  max-width: 1360px;
  margin: auto;
}
.cases__item.swiper-slide {
  border-radius: 20px;
  background: rgb(255, 255, 255);
  display: flex;
  max-height: 345px;
  height: auto;
}
.cases_info {
  padding: 33px 25px;
}
.cases__vacancy {
  color: rgb(149, 193, 31);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  padding-bottom: 8px;
}
.cases__name {
  color: rgb(0, 0, 0);
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  padding-bottom: 32px;
}
.cases_text {
  box-sizing: border-box;
  border: 1px solid rgb(12, 114, 110);
  border-radius: 15px;
  padding: 28px;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(12, 114, 110);
}
.cases__href {
  position: absolute;
  right: 19px;
  top: 19px;
}

.cases__img {
  height: auto;
  object-fit: none;
  object-position: top left;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  max-width: 191px;
}
.cases__item:first-child .cases__img {
  object-position: top;
}
.cases__item:nth-child(3) .cases__img, .cases__item:nth-child(5) .cases__img, .cases__item:nth-child(6) .cases__img {
  object-fit: cover;
}
.cases__item:nth-child(4) .cases__img {
  object-position: center left;
}
.cases__item:nth-child(7) .cases__img {
  object-position: center right;
  object-fit: cover;
}
.cases__pagination {
  padding: 80px 0 60px;
  display: flex;
  justify-content: center;
}
.cases__pagination .swiper-pagination-bullet{
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
  background: rgb(149, 193, 31);
}
.cases__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background: #0C726E;
}
.cases__content {
  display: flex;
}
.popup-cases .popup__content {
  padding: 0;
  max-width: 639px;
}
.cases_text-all p {
  color: rgb(95, 107, 106);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}
.cases_text-all {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 27px;
}
.popup-cases .cases__img{
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1201px) {
  .cases__container.container--all {
    padding: 0 20px;
  }
  .cases__title {
     padding: 0 0 50px;
   }
}
@media (max-width: 1024px) {


  .cases__pagination {
    padding: 44px 0 60px;
  }


}
@media (max-width: 767px) {
  .cases__item.swiper-slide {
    flex-direction: column;
    max-height: 100%;
  }
  .cases__img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    height: 133px;
    object-position: center;
    border-bottom-left-radius: 0;
    border-top-right-radius: 20px;
  }
  .cases_text span{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
  }
  .cases__content {
    flex-direction: column;
  }
  .cases__content .cases__img{
    height: 200px;
  }
  .cases__title {
    padding: 0 0 24px;
  }
}
.podbor__title {
  padding-bottom: 98px;
}
.podbor__container {
  padding: 121px 20px 149px;
}
.podbor__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  row-gap: 20px;
}
.podbor__img {
  display: block;
  margin: auto;
  max-width: 100%;
}
.podbor {
  position: relative;
  z-index: 1;
  background: #fff;
}
@media (max-width: 1024px) {
  .podbor__container{
    padding: 60px 20px;
  }
  .podbor__title {
    padding-bottom: 50px;
  }
}
@media (max-width: 680px) {
  .podbor__container{
    padding: 40px 20px;
  }
  .podbor__img {
    max-height: 64px;
    max-width: 114px;
  }
  .podbor__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 25px;
  }
}
.resume__body {
  border-radius: 40px;
  background: linear-gradient(150.03deg, rgb(255, 255, 255) 24.264%, rgb(149, 193, 31) 99.914%);
  padding: 51px;
}
.resume__row {
  display: flex;
  gap: 60px;
  align-items: center;
}
.resume_text {
  padding: 40px 0;
}
.resume__img {
  border-radius: 20px;
}
.resume_text {
  padding: 40px 0;
  padding-left: 26px;
}
.resume_text li {
  list-style: disc;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.5px;
}
.resume_a .button {
  font-size: 20px;
  font-weight: 500;
  line-height: 29.95px;
}
.resume__container {
  padding: 74px 20px;
}
@media (max-width: 1024px) {
  .resume__container {
    padding: 60px 20px;
  }
  .resume__row {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .resume__container {
    padding: 40px 20px;
  }
  .resume__body {
    padding: 0;
    background: #ffffff;
  }
  .resume__row {
    gap: 24px;
  }
  .resume_text li {
    list-style: disc;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
  }
  .resume_text li:first-child{
    padding-bottom: 10px;
  }
  .resume__img {
    max-width: 100%;
  }
}
.form2{
  background: rgb(232, 237, 243);
}
.form2 .form__container{
  padding: 116px 20px;
}
@media (max-width: 1024px) {
  .form2 .form__container{
    padding: 60px 20px;
  }
}
@media (max-width: 767px) {
  .form2 .form__container{
    padding: 40px 20px;
  }
}
.consultation {
  background: linear-gradient(160.25deg, rgb(149, 193, 31) 18.967%, rgb(232, 237, 243) 81.993%);
}
.consultation__row {
  display: flex;
  align-items: center;
}
.consultation__container {
  padding: 18px 20px 0;
}
.consultation__title {
  border-radius: 50px;
  backdrop-filter: blur(4px);
  background: rgb(255, 255, 255);
  padding: 13px 20px;
  color: rgb(12, 114, 110);
  font-size: 48px;
  font-weight: 700;
  line-height: 59px;
}
.consultation_text {
  border-radius: 50px;
  backdrop-filter: blur(4px);
  background: rgb(255, 255, 255);
  padding: 13px 20px;
  color: rgb(31, 38, 38);
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
.consultation_phone {
  border-radius: 50px;
  backdrop-filter: blur(4px);
  background: rgb(12, 114, 110);
  padding: 13px 20px;
}
.consultation_phone a{

  font-size: 48px;
  font-weight: 500;
  line-height: 59px;
  color: #ffffff;
}
.consultation__item {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: baseline;
  position: relative;
  z-index: 2;
}
.consultation__krug:before{
  position: absolute;
  content: '';
  right: calc(50% - 450px);
  bottom: 0;
  width: 933px;
  height: 519px;
  background: url("../img/consultation-krug.png");
}
.consultation__item.consultation__krug {
  position: relative;
  z-index: 1;
}
.consultation__img {
  z-index: 1;
}
@media (max-width: 1024px) {
  .consultation__row {
    flex-direction: column;
    gap: 40px;
  }
  .consultation__container {
    padding: 60px 20px 0;
  }
.consultation__title {
    font-size: 32px;
    line-height: normal;
  }
  .consultation_phone a{
    font-size: 32px;
    line-height: normal;
  }
  .consultation__item.consultation__krug {
    width: 100%;
    align-items: center;
  }
  .consultation__krug:before {
    right: 50px;
    bottom: -150px;
    height: 100%;
    background: url(../img/consultation-krug-table.png);
    max-width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
  }
}
@media (max-width: 767px) {
  .consultation__title {
    font-size: 23px;
  }
  .consultation_text{
    font-size: 14px;
  }
  .consultation_phone a{
    font-size: 24px;
    line-height: normal;
  }
  .consultation__container {
    padding: 40px 20px 0;
  }
  .consultation__img {
    max-width: 222px;
  }
  .consultation__krug:before {
    right: calc(50% - 130px);
    bottom: -74px;
    height: 100%;
    background: url(../img/consultation-krug-mobile.png);
    max-width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    width: 303px;
    height: 293px;
  }
}
.footer {
  background: rgb(38, 50, 56);
}
.footer__container{
  padding: 203px 20px;
}
.footer___row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 33px;
}
.footer__item.footer__copy {
  grid-column: 1 / 3;
  border-top: 2px solid rgb(149, 193, 31);
  padding-top: 32px;
}
.footer__copyright {
  display: flex;
  justify-content: space-between;
}
.copyright__text {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  display: flex;
  gap: 57px;

}
.copyright__text a{
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  text-decoration-line: underline;

}
.footer__logo {
  padding-bottom: 89px;
}
.footer__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 479px;
}
.footer__item.footer__social {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 30px;
}
.footer__button {
  max-width: 254px;
  min-width: 254px;
  background: #95C11F;
  border: 2px solid #95C11F;
}
.footer__button:hover{
  color: #95C11F;
}
.footer__soc {
  width: 254px;
  justify-content: space-between;
}
.footer__soc a{
  width: 40px;
  height: 40px;
  background: #95C11F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}
.footer__soc img{
  align-self: center;
      max-width: 21px;
}
.footer-nav {
  display: flex;
  padding-top: 40px;
  justify-content: space-between;
}
.footer-nav__title {
  padding-bottom: 19px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.footer-nav__link, .item-343 .footer-nav__title, .item-351 .footer-nav__title, .item-1053 .footer-nav__title  {
  font-size: 11px;
  color: #ffffff;
  padding-bottom: 8px;
  text-transform: none;
}
.footer-nav__item.item-382 div {
  font-size: 11px;
  margin-bottom: 1px;
}
.footer-nav__item.item-385 div {
  font-size: 11px;
  margin-top: 10px;
  margin-bottom: 1px;
}
.footer-nav__item.item-414 div {
  font-size: 11px;
  margin-top: 10px;
  margin-bottom: 1px;
}
@media (max-width: 1024px) {
  .footer__container {
    padding: 103px 20px;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer___row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__item.footer__copy {
    grid-column: 1;
    border-top: 0;
    padding-top: 0;
    order: 2;
  }
  .footer__copyright {
    flex-direction: column;
  }
  .copyright__text {
    flex-direction: column;
    gap: 15px;
  }
  .copyright__text:first-child{
    order: 2;
    padding-top: 15px;
  }
  .footer__item {
    order: 1;
  }
  .footer__item.footer__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    order: 3;
  }
  .footer__button {
    max-width: 100%;
    min-width: 333px;
  }
  .footer__text {
    font-size: 14px;
  }
  .footer__logo {
    padding-bottom: 20px;
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {

}

.footer__link {
    display: inline;
    color: rgb(255, 255, 255);
}