@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 {
  padding-left: 20px;
}
ul li {
  list-style: circle;
}

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

.ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

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


body {
  font-family: 'Open Sans',sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: inline;
  color: #111111;
  border-width: 1px;
  border-color: #000000;
  border-bottom: 1px solid;
}
a:hover{
  border-color: #1d8c67;
}

.wrapper {
  overflow: hidden;
}

.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #5F5B5B;
}

.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: 20px 47px 20px 46px;
  background-color: #00e70000;
  border: 2px solid #1d8c67;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #1d8c67;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  align-self: center;
  text-align: center;
  font-weight: 700;
  border-style: solid;
  margin: 34px auto 0 0;
  border-radius: 5px;
}

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

.button_second {
  background-color: #fff;
}

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

.title {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  font-size: 40px;
  font-weight: 700;
  color: #5F5B5B;
  padding-bottom: 40px;
}

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

.section {
  padding: 60px 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: 1140px;
  padding: 0px 20px;
}

.section-bg {
  background-color: #30323A;
  padding: 24px 0;
  margin: 18px 12px;
  border-radius: 5px;
  color: #fff;
}
.blog__container {
    padding: 0 24px;
}
.black {
  color: #30323A;
}

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

.header {
  padding: 20px 0;
}

.header__container {
  padding: 0px 20px;
}

.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 {
  border: 2px solid #5F5B5B;
  padding: 15px 35px;
  font-weight: 600;
  line-height: normal;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.header__link:hover {
  background-color: #5F5B5B;
  color: #FFF;
  box-shadow: 0 0 40px 40px #5F5B5B inset;
}
.header__menu-button {
  display: none;
  cursor: pointer;
  width: 24px;
  height: 21px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  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: #000000;
}

.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: 0px 36px;
  max-width: 1440px;
}

.menu._active {
  left: 0;
  background-color: hsl(0deg 0% 0% / 70%);
  width: 100%;
  padding: 0;
  z-index: 11;
}

.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: 5px;
  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: 18px;
  height: 18px;
  top: 12px;
  right: 12px;
}


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

}

@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) {
  .menu {
    padding: 120px 0px 30px 0px;
  }

  .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;
  }
  .button{
    padding: 20px;
  }
}

@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;
  font-weight: 500;
  column-gap: 77px;
}
.header__menu a:hover {
  color: #1d8c67;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 24px;
  font-size: 25px;
  font-weight: 600;
  color: #5F5B5B;
}
.header__button:hover{
  color: #5F5B5B;
}
.header__logo img {
  width: 64px;
}
.header__menu a {
  font-size: 18px;
  font-weight: 600;
}
div.header__button {
  padding: 0;
}
@media (max-width: 1662px) {
  .header__menu {
    column-gap: 38px;
  }
}
@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;
  }
}

  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #000000;
    width: 250px;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 80px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 0;
    width: 250px;
    background: #000000;
    height: 100%;
    padding: 80px 0 30px;
  }
  .header__logo {
    z-index: 11;
    border: 0;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 0;
  }
  .header__menu a {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
  }
.menu-item {
  text-align: center;
  width: 100%;
}
.header__menu-button--menu {
  position: absolute;
  left: 205px;
  top: 20px;
}
.header__menu-button--menu span, .header__menu-button--menu:before, .header__menu-button--menu:after{
  background: #ffffff;
}
.header__menu-button--menu: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--menu span {
  -webkit-transform: scale(0) translate(0px, -50%);
  -ms-transform: scale(0) translate(0px, -50%);
  transform: scale(0) translate(0px, -50%);
}
.header__menu-button--menu: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%);
}
.banner {
  min-height: 745px;
}
.container--left{
  width: calc(((100% - 1140px) / 2) + 1140px);
  margin: 60px auto 60px 0;
  max-width: 100%;
  padding: 0;
}
.banner__row {
  flex-direction: row;
  flex-wrap: wrap;
  min-height: -webkit-fit-content;
  min-height: fit-content;
  max-width: 100%;
  display: flex;
}
.banner__item:first-child {
  flex: 0 0 55%;
  max-width: 55%;
  min-width: 55%;
}
.banner__item:last-child {
  flex: 0 0 45%;
  max-width: 45%;
  min-width: 45%;
  padding: 50px 30px 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner__title, .title {
  font-size: 48px;
  font-weight: 700;
  margin: 11px 0 0;
  line-height: 1.1;
  color: rgb(17, 17, 17);
}
.banner__img {
  max-width: 100%;
  width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 560px;
    object-position: top;
    border-top-right-radius: 30%;
    border-bottom-right-radius: 30%;
}
.banner__text, .text {
  font-size: 16px;
  color: #111111;
  margin-top: 30px;
  line-height: 2;
}
.texts{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1199px) {

  .banner {
    min-height: 635px;
  }
  .container--left {
    width: calc(((100% - 940px) / 2) + 940px);
  }
  .banner__img {
    min-height: 515px;
    width: 100%;
    object-fit: cover;
    object-position: 100% 50%;
  }
  .banner__item:last-child {

    min-height: 515px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .banner__item:first-child, .banner__item:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .banner__item:last-child {
    min-height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .container--left {
    width: calc(((100% - 720px) / 2) + 720px);
  }
}
@media (max-width: 767px) {
  .banner__img {
    min-height: 357px;
  }
  .container--left {
    width: calc(((100% - 540px) / 2) + 540px);
  }
  .banner__title, .title {
    font-size: 2.125rem;
    word-wrap: break-word;
  }
}

@media (max-width: 575px) {
  .container--left {
    width: calc(((100% - 340px) / 2) + 340px);
  }
}
.product__row {
  grid-template-columns: repeat(4, 25%);
  min-height: 490px;
  grid-auto-columns: 25%;
  grid-gap: 0px;
  display: grid;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}
.product__item {
  position: relative;
  flex: 1;
  max-width: 100%;
  transition-duration: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 30px 30px;
  background-position: center;
  background-size: cover;
  transition: all 300ms ease-in-out;
}
.product__info{
  padding: 30px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 90%;
  background: #ffffff;
  aspect-ratio: 1;
  margin-left: auto;
  margin-right: auto;
  min-height: 258px;
  width: 100%;
  height: auto;
}
.product__number {
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto;
  color: #1d8c67;
}
.product__title {
  font-size: 22px;
  text-align: center;
  margin: 20px 0 0;
  color: #111111;
  max-width: 100%;
}
.product__item:before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 300ms ease-in-out;
  background-position: center;
  background-size: cover;
}
.product__item:nth-child(1):before{
  background-image: url("../img/product/1-1.jpg");
  opacity: 0;
}
.product__item:nth-child(3):before{
  background-image: url("../img/product/3-3.jpg");
  opacity: 0;
}
.product__item:nth-child(1):hover:before{
  opacity: 1;
}
.product__item:nth-child(3):hover:before{
  opacity: 1;
}
.product__item:nth-child(2):before{
  background-image: url("../img/product/2-2.jpg");
}
.product__item:nth-child(4):before{
  background-image: url("../img/product/4-4.jpg");
}
.product__item:nth-child(2):hover:before{
  opacity: 0;
}
.product__item:nth-child(4):hover:before{
  opacity: 0;
}


.product__item:nth-child(2n) .product__info{
  border-radius: 10px;
  background-color: #1d8c67;
}
.product__item:nth-child(2n){
  background-color: #1d8c67;
}

.product__item:nth-child(2n) .product__number, .product__item:nth-child(2n) .product__title{
  color: #ffffff;
}
 .product_a {
  padding-top: 30px;
  text-align: center;
   text-transform: uppercase;
   font-size: 14px;
}
.product__item:nth-child(2n-1) .product_a a {
  border-bottom: 0;
}
.product__item:nth-child(2n) .product_a a {
  color: #ffffff;
  border-bottom: 2px solid;
}
.product__item:nth-child(2n) .product_a a:hover{
  color: #e6e6e6;
  border-color: #ff9c80;
}
.product__item:nth-child(2n-1) .product_a a:hover{
  border-bottom: 2px solid;
}
@media (max-width: 1199px) {
  .product__row {
    min-height: 404px;
  }
  .product__info {
    padding: 20px;
    width: auto;
  }
  .product__title {
    font-size: 1.375rem;
    width: auto;
  }
}
@media (max-width: 1024px) {
  .product__row {
    grid-template-columns: repeat(2, 50%);
    min-height: 1036px;
    grid-auto-columns: 50%;
  }
  .product__info {
    width: 100%;
    aspect-ratio: 0;
  }
  .product__title {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .product__row {
    grid-template-columns: 100%;
    min-height: auto;
    grid-auto-columns: 100%;
  }
  .product__item {
    aspect-ratio: 1;
  }
  .product__info {
    margin-top: 144px;
  }
  .product__number {
    font-size: 1.5rem;
  }
}
.say__row {
  flex-direction: row;
  flex-wrap: wrap;
  min-height: -webkit-fit-content;
  min-height: fit-content;
  max-width: 100%;
  display: flex;
}
.say__item:first-child {
  flex: 0 0 36.66666667%;
  max-width: 36.66666667%;
  min-width: 36.66666667%;
  display: flex;
  align-items: center;
}
.say__item:last-child{
  flex: 0 0 63.33333333%;
  max-width: 63.33333333%;
  min-width: 63.33333333%;
  background-color: #1d8c67;
  border-radius: 10px;
  padding: 30px;
}
.say {
  background-color: #f2f2f2;
}
.say__item-all{
  padding: 50px 30px;
}
.say__title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #111111;
  word-wrap: break-word;
  padding-bottom: 0;
}
.say_text{
  margin: 30px 0 0;
  line-height: 1.8;
  font-size: 16px;
  color: #111111;
}
.say__text{
  font-size: 16px;
  color: #111111;
  margin-top: 30px;
}
.say__advantages--all{
  width: 608px;
  margin: 0 auto;
  grid-template-columns: repeat(1, 100%);
  display: grid;
  grid-gap: 22px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}
.say__advantages{
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  flex: 1;
  max-width: 100%;
  border-bottom: 1px solid;
}
.say_info{
  color: #ffffff;
  font-size: 1rem;
  margin-top: 30px;
  line-height: 1.6;
}
.say_avtor{
  font-style: italic;
  margin: 20px auto 0 0;
  padding-bottom: 22px;
}
.say_logo img {
    max-width: 50%;
}
.say_logo {
    border: 0;
}
.say_logos {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 1199px) {
  .say__advantages--all {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .say__item:first-child, .say__item:last-child {

    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .say__item-all {
    padding: 50px 30px 50px 40px;
  }
}
@media (max-width: 767px) {
  .say__title {
    font-size: 2.125rem;
    text-align: center;
  }
  .say_text {
    text-align: center;
  }
  .say__text {
    text-align: center;
  }
  .say__button {
    display: block;
  }
  .say__advantages {
    padding: 20px 0;
  }
}
.container--right{
  width: calc(((100% - 1140px) / 2) + 1140px);
  margin: 60px 0 60px auto;
  max-width: 100%;
  padding: 0;
}
.comanda__row {
  flex-direction: row;
  flex-wrap: wrap;
  min-height: -webkit-fit-content;
  min-height: fit-content;
  max-width: 100%;
  display: flex;
}
.comanda__item:first-child {
  flex: 0 0 45%;
  max-width: 45%;
  min-width: 45%;
  padding: 50px 30px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comanda__item:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 55%;
  max-width: 55%;
  min-width: 55%;
}
.comanda__strong {
  font-weight: 600;
}
.comanda__our {
  font-size: 18px;
  color: #111111;
  padding-bottom: 10px;
}
.texts .text{
  margin-top: 0;
}
.texts{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
@media (max-width: 1199px) {

}
@media (max-width: 1024px) {
  .comanda__item:first-child, .comanda__item:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .comanda__item:first-child {
    min-height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .comanda__img {
    padding: 0 0 0 50px;

  }
}

.comanda__img.bauground {
  border-top-left-radius: 12em 45%;
  border-bottom-left-radius: 12em 45%;
}


@media (max-width: 767px) {
  .container--right, .container {
    width: calc(((100% - 340px) / 2) + 340px);
  }
  .comanda__item:first-child {
  }
  .comanda__img.bauground {
    padding: 0;
    min-height: 309px;
    object-fit: cover;
    object-position: 0% 50%;
  }
}
.comanda-our__row {
  flex-direction: row;
  flex-wrap: wrap;
  min-height: -webkit-fit-content;
  min-height: fit-content;
  max-width: 100%;
  display: flex;
}
.comanda-our__item {
  flex: 0 0 50%;
  max-width: 50%;
  min-width: 50%;
}
.comanda-our__gallery {
  flex: 0 0 50%;
  max-width: 50%;
  min-width: 50%;
  padding: 0 20px;
}
.comanda-our__img {
  max-width: 100%;
  border-radius: 10px;
}
.comanda-our__img:last-child {
  margin-top: 40px;
}
.comanda-our__img--2 {
  margin-bottom: 150px;
}
.comanda-our__img--3 {
  margin-top: 150px;
}
.comanda-our__item-all {
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 1024px) {
  .comanda-our__item{
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .comanda-our__img--2 {
    margin-bottom: 50px;
  }
  .comanda-our__img--3 {
    margin-top: 50px;
  }

}
@media (max-width: 767px) {
  .comanda-our__gallery {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 20px;
  }
  .comanda-our__img--2 {
    margin-bottom: 0;

  }
  .comanda-our__img--3 {
    margin-top: 40px;
  }
  .comanda-our__item-all {
    padding-right: 30px;
    padding-bottom: 0;
    padding-top: 30px;
  }
}

.comanda__intro {
  text-align: center;
  margin-bottom: 50px;
}

.comanda-our__row--treatment {
  padding-top: 25px;
  display: flex;
  gap: 30px;
}

.comanda-our__item {
  flex: 1 1 45%;
  min-width: 300px;
}

.comanda__strong-title {
  color: #111111;
  margin-bottom: 15px;
  font-weight: 600;
}

.comanda__summary {
  margin-top: 50px;
  text-align: center;
}
.comanda__summary-button {
  margin-top: 25px;
}

.comanda__title--center {
  text-align: center;
}

.comanda__professional {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.comanda__prof-title {
  padding: 20px;
}

.comanda__button--center {
  display: block;
  margin: 60px auto 0 auto;
}

.comanda__prof-link {
  text-decoration: underline;
}

.treatment__title {
  text-align: center;
  font-size: 60px;
  max-width: 1080px;
}
.treatment__text {
  text-align: center;
  max-width: 890px;
  margin: auto;
  padding-top: 22px;
}
.treatment__intro {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin-top: 20px;
}
.treatment__row {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  display: grid;
  grid-template-columns: repeat(4, calc(25% - 16.5px));
  gap: 22px;
  padding-top: 40px;
}
.treatment__item {
  background-color: #1d8c67;
  border-radius: 10px;
}
.treatment__advantages {
  padding: 50px 30px;
}
.treatment__advantages svg {
  fill: #ffffff;
  width: 64px;
  height: 64px;
}
.treatment__advantages img {
  width: 64px;
  height: 64px;
}
.treatment__advantages {
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  height: 100%;
}
.treatment_name {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
  word-wrap: break-word;
  letter-spacing: 3px;
  max-width: 100%;
}
.treatment_info {
  line-height: 1.8;
  font-size: 16px;
  text-align: center;
  margin-top: auto;
  max-width: 100%;
}
.treatment__container {
  position: relative;
  z-index: 2;
}
.treatment__clinik {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: -150px;
}
@media (max-width: 1199px) {

}
@media (max-width: 1024px) {
  .treatment__title {
    font-size: 3.4375rem;
  }
  .treatment__text {
    max-width: 680px;
  }
  .treatment__row {
    grid-template-columns: repeat(2, calc(50% - 11px));
  }
  .treatment__clinik {
    margin-top: -100px;
  }
}
@media (max-width: 767px) {
  .treatment__title {
  font-size: 2.125rem;
}
  .treatment__row {
    grid-template-columns: 100%;
  }
  .treatment__clinik {
    height: 543px;
    margin-top: -150px;
  }
}
.feedback__row {
  flex-direction: row;
  flex-wrap: wrap;
  min-height: -webkit-fit-content;
  min-height: fit-content;
  max-width: 100%;
  display: flex;
}
.feedback__item:first-child {
  flex: 0 0 55%;
  max-width: 55%;
  min-width: 55%;
}
.feedback__item:last-child {
  flex: 0 0 45%;
  max-width: 45%;
  min-width: 45%;
  padding: 50px 30px 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feedback__img {
  max-width: 100%;
  border-top-right-radius: 30%;
  border-bottom-right-radius: 30%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
  width: 100%;
}

.feedback__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feedback__block label {
  font-size: 16px;
  color: #111111;
  line-height: 1.6;
}
.feedback__text {
  border-bottom: 2px solid #c0c0c0;
  padding-bottom: 12px;
  padding: 0 12px 10px;
  font-size: 16px;
}
.feedback__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form.feedback__forms {
  padding-top: 30px;
}
.agree{
  font-size: 16px;
  color: #111111;
  padding-left: 5px;
}
.agree a{
  color: #1d8c67;
  border: none;
}
.feedback__button {
  width: 100%;
  font-size: 16px;
  color: #ffffff;
  background-color: #1d8c67;
  margin-top: 5px;
}
.feedback__message {
  background: #62C584;
  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: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  align-self: center;
  text-align: center;
  font-weight: 700;
  border-style: solid;
  border-radius: 5px;
  width: 100%;
  border: 2px solid #62C584;
  line-height: 1.2;
  display: none;
}
.feedback__title {
  margin: 0;
}
@media (max-width: 1199px) {

}
@media (max-width: 1024px) {
  .feedback__item:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 539px;
  }
  .feedback__item:last-child {

    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .feedback__item:first-child {
    min-height: 357px;
  }
  .feedback__title {
    font-size: 2.75rem;
  }
  .feedback__button {
    padding: 20px 5px;
    font-size: 14px;
  }
}
.feedback.section {
  padding-bottom: 0;
}
.contact__row {
  display: grid;
  grid-template-columns: repeat(3, calc(33.3333% - 13.3333px));
  min-height: 176px;
  grid-gap: 20px;
}
.contact__item {
  background-color: #1d8c67;
  border-radius: 10px;
}
.contact__advantages {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__img {
  width: 20px;
}
.contact__name {
  font-size: 20px;
  font-weight: 700;
}
.contact__content {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
}
.contact__content a{
  color: #ffffff;
  border: 0;
}
.contact_info{
  display: flex;
  flex-direction: column;
}
.contact__text {
  text-align: center;
}
@media (max-width: 1024px) {
  .contact__row {
    grid-template-columns: repeat(2, calc(50% - 9.999975px));
  }
}
@media (max-width: 767px) {
  .contact__row {
    grid-template-columns: 100%;
  }
}
.footer{
  background-color: #333333;
}
.footer__row {
  width: 564px;
  padding: 49px 0;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.footer__text {
  font-size: 14px;
  line-height: 1.6;
}
.footer__text--href {
  font-size: 16px;
  line-height: 1.6;
}
.footer__text--href a {
  color: #ffc7b7;
}
.footer__text--href a:hover {
  text-decoration: none;
  color: #a1a1a1;
}
.contact {
  padding-bottom: 60PX;
}
section{
  position: relative;
}
@media (max-width: 1199px) {

}
@media (max-width: 1024px) {

}
@media (max-width: 767px) {
  .footer__row {
    width: 100%;
  }
  .banner__container{
    margin-top: 0;
    margin-bottom: 0;
  }
  .banner__item:last-child {
    padding-left: 30px;
    padding-right: 0;
  }
  .banner__text, .banner__button {
    margin-top: 15px;
  }
  .banner__button{
    width: 100%;
  }
  .product__info {
    margin-top: 0;
  }
  .product__item {
    background: #1d8c67;
    justify-content: center;
    padding: 30px;
  }
  .say {
    padding-top: 0;
  }
  .say_logos img {
    margin: auto;
    display: block;
  }
  .say_logos {
    padding-top: 25px;
  }
  .say_info {
    margin-top: 10px;
  }
  .say__advantages {
    padding: 0;
  }
  .say__container {
    margin: 0;
    width: 100%;
  }
  .comanda__item:first-child {
    padding-left: 0;
  }
  .comanda__our {
    padding-bottom: 0;
  }
  .comanda__button {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .comanda-our__gallery {
    padding: 0;
  }
  .comanda-our__item-all {
    padding-left: 0;
    padding-right: 0;
  }
  .comanda {
    padding-bottom: 0;
  }
  .comanda__intro {
    margin-bottom: 0;
  }
  .comanda-our__row--treatment {
    padding-top: 10px;
  }
.comanda__strong-title {
    line-height: 1.2;
    font-size: 19px;
    margin-bottom: 0;
  }
  .comanda__list {
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .comanda__summary {
    margin-top: 30px;
  }
  .comanda__summary-button .button {
    margin: 0;
    line-height: 1.3;
    padding: 15px;
  }
  .comanda__container, .treatment__container {
    width: 100%;
  }
  .treatment__advantages {
    padding: 20px;
  }
  section.comanda.section {
    padding-top: 0;
  }
  .treatment__text {
    padding-top: 0;
  }
  .comanda__professional {
    gap: 10px;
  }
  .feedback__item:last-child {
    padding-left: 20px;
    padding-right: 0;
  }
  .contact__container {
    width: 100%;
  }
  .say__item-all {
    padding: 40px;
  }
  .comanda__container.container--right .comanda__item:first-child{
    padding-right: 20px;
  }
  .comanda__container.container--right {
    width: calc(100% - 20px);
    margin-top: 0;
  }
  .comanda__title--2 {
    padding-top: 20px;
  }
  .treatment__title {
    padding-bottom: 20px;
  }
  .feedback__container.container--left {
    margin-top: 0;
  }
  .treatment__clinik {
    margin-top: 40px;
  }

}

/*.product__item:nth-child(n+1):before{*/
/*  background-image: url("../img/fon_not.png");*/
/*}*/


