@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%;
  background-color: #fff8ef;
}
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;
}

.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: "Jonova", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #5F5B5B;
  line-height: normal;
}

.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: 15px 30px;
  background-color: #00e70000;
  border: 2px solid #E7A300;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #E7A300;
  font-weight: 600;
}

.button:hover {
  background-color: #E7A300;
  box-shadow: 0 0 40px 40px #E7A300 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #5F5B5B;
}

.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: 100%;
  padding: 0 40px 0 80px;
}

.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: 40px 0;
  position: absolute;
  width: 100%;
}


.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__menu-button {
  display: none;
  cursor: pointer;
  width: 50px;
  height: 35px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44px;
  flex: 0 0 50px;
  position: relative;
}

.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 4px;
  width: 100%;
  left: 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  background-color: #ffffff;
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 0;
}

.header__menu-button:after {
  bottom: 0;
  width: 100%;
}

.header__menu-button span {
  top: 50%;
  width: 100%;
  -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 40px;
  max-width: 1440px;
}

.menu._active {
  right: 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: 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;
    }

  .container {
    padding: 0 40px;
  }
}

@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) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .menu {
    padding: 120px 0px 30px 0px;
  }


  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
    .subtitle {
        font-size: 30px;
      padding-bottom: 30px;
    }
  .section {
    padding: 20px 0px;
  }

}

@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: #B58417;
}
.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: 344px;
  max-width: 100%;
}
.header__menu a {
  font-weight: 500;
  font-family: gogh;
  font-size: 74px;
  color: #ffffff;
}
div.header__button {
  padding: 0;
}


  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #24372D;
    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: space-between;
    align-items: end;
    row-gap: 20px;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-right: 0;
  }
  .header__menu a {
    line-height: 1;
    font-weight: 500;
    font-family: gogh;
    font-size: 74px;
    color: #ffffff;
  }
.header__link{
  font-size: 32px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Gogh";
}
.header__menu-name {
  font-size: 32px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Gogh";
}
.banner{
/*background-image: url("../img/banner3.png");*/
  position: relative;
  /*min-height: 810px;
  background-size: contain;*/
  z-index: 2;
  background: #fff8ef;
}
.banner__img{
  width: 100%;
  object-fit: cover;
  max-height: 811px;
  object-position: top;
}
.banner__row{
  position: absolute;
  bottom: 40px;
  left: 80px;
}
.banner:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #24372d;
  opacity: 0.529;
}
.header__body {
  display: grid;
  grid-template-columns: 1.25fr 2.25fr;
}
.header {
  padding: 0;
}
.header__container {
  padding: 0;
}
.header__logo {
  padding: 58px 40px 58px 80px;
  border: 2px solid #fff8ef;
  border-radius: 15px;
  border-left: none;
  border-top: none;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-right-width: 1px;
  position: relative;
}
.header__content {
  border: 2px solid #fff8ef;
  padding: 42px 40px 42px 40px;
  height: 100%;
  border-radius: 15px;
  border-top: none;
  border-right: none;
  border-left-width: 1px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
}
.header__row {
  display: flex;
  justify-content: space-between;
}
/*.header__logo:before{*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: -2px;*/
/*  border: 12px solid transparent;*/
/*  border-bottom: 12px solid #fff8ef;*/
/*  right: -13px;*/
/*}*/

.header__logo::before {
  border: 12px solid transparent;
  border-bottom-width: 12px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-bottom: 12px solid #fff8ef;
  content: '';
  position: absolute;
  bottom: -7px;
  right: -17px;
  clip-path: polygon(40.64% 45.4%, 47.31% -17.11%, 53.98% 48.56%, 67.63% 66.51%, 114.12% 77.58%, 53.94% 77.29%, -7.97% 77.69%, 33.64% 58.61%);
  width: 30px;
  height: 18px;
  background: #fff8ef;
}
.header-politika .header__logo::before{
  clip-path: polygon(40.64% 45.4%, 47.31% -17.11%, 53.98% 48.56%, 67.63% 66.51%, 114.12% 80.58%, 53.94% 80.29%, -7.97% 80.69%, 33.64% 58.61%);
}
.header__menuss {
  display: flex;
  gap: 15px;
  align-items: center;
}
.banner__title {
  font-size: 73px;
  line-height: 72px;
  color: #fff8ef;
  max-width: 550px;
  font-weight: 400;
  position: relative;
}
.buttons{
  font-size: 26px;
  color: #fff8ef;
  font-weight: 500;
  font-family: "Gogh";
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #fff8ef;
  width: fit-content;
  transition:  all 300ms ease-in-out;
}
.banner__title img {
  max-width: 49px;
  position: absolute;
  bottom: 43px;
  right: 39px;
}
.banner__lines {
  display: grid;
  grid-template-columns: 2.35fr 1fr;
  position: absolute;
  width: 100%;
  height: calc(100% - 201px);
  top: 201px;
}
.banner__line{
  border: 2px solid #fff8ef;
}
.banner__container {
  padding: 0;
}
.banner__line--right {
  border: 2px solid #fff8ef;
  height: 100%;
  border-radius: 15px;
  border-top-right-radius: 0;
  border-right: none;
  border-left-width: 1px;
  border-bottom-right-radius: 0;
}
.banner__line--left {
  border: 2px solid #fff8ef;
  border-radius: 15px;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-right-width: 1px;
  position: relative;
}

/*.banner__line--left:after{*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: -2px;*/
/*  border: 12px solid transparent;*/
/*  border-bottom: 12px solid #fff8ef;*/
/*  right: -13px;*/
/*}*/
.banner__line--left::after {
  border: 12px solid transparent;
  content: '';
  position: absolute;
  bottom: -7px;
  right: -17px;
  clip-path: polygon(40.64% 45.4%, 47.31% -17.11%, 53.98% 48.56%, 67.63% 66.51%, 114.12% 80.58%, 53.94% 82.29%, -7.97% 81.69%, 33.64% 58.61%);
  width: 30px;
  height: 18px;
  background: #fff8ef;
}

/*.banner__line--left:before{*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: -2px;*/
/*  border: 12px solid transparent;*/
/*  border-top: 12px solid #fff8ef;*/
/*  right: -13px;*/
/*}*/

.banner__line--left::before {
  content: '';
  position: absolute;
  top: -5px;
  border-top: 12px solid #fff8ef;
  right: -15px;
  clip-path: polygon(5.98% 16.23%, 102.98% 16.23%, 73.97% 43.34%, 61.8% 55.58%, 53.94% 118.95%, 50.64% 81.68%, 36.64% 37.79%);
  width: 30px;
  height: 18px;
  background: #fff8ef;
}

.buttons:hover {
  background: #fff;
  color: #24372d;
}
.menu._active {
  background: #24372D;
}
._active .header__logo, ._active  .header__vks, ._active .header__items, ._active .header__menu-name {
  display: none;
}
.header__body._active {
  grid-template-columns: 1fr;
}

._active .header__content {
  border: none;
  grid-template-columns: 1fr
}
._active  .header__row{
  margin-left: auto;
}
.header__info {
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
}
.header__addres, .header__addres a {
  font-weight: 500;
  font-family: gogh;
  font-size: 30px;
  text-align: right;
}
.header__addres a {
  display: inline;
}
.header__address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__body._active  .header__vk {
  width: 74px;
  height: 100%;
}
@media (max-width: 1440px) {
  .header__row {
    gap: 20px;
    flex-wrap: wrap;
  }
  .header__link {
    font-size: 24px;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .header__menu-name {
    font-size: 24px;
  }
  .header__link img {
    max-height: 24px;
  }
  .header__menu-button {
    height: 30px;
  }
  .header__menu-button span, .header__menu-button:before, .header__menu-button:after {
    height: 3px;
  }
}

@media (max-width: 1221px) {
  .header__row {
    justify-content: right;
  }
  .header__items {
    order: 2;
  }
}

@media (max-width: 1024px) {
  .header__logo {
    padding-left: 40px;
  }
  .banner__row {
    left: 40px;
  }
  .header__items {
    order: 1;
  }
  .header__menuss {
    order: 2;
  }
}

@media (max-width: 960px) {
  .header__logo {
    padding: 30px;
  }
  .header__content {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__link, .header__menu-name {
    font-size: 20px;
  }
  .header__menu-button {
    height: 28px;
    flex: 0 0 40px;
  }
  .banner__title {
    font-size: 64px;
    line-height: 1;
  }
  .buttons {
    font-size: 24px;
  }
  .banner__title img {
    max-width: 40px;
    bottom: 45px;
    right: 49px;
  }
  .header__menu a {
    font-size: 64px;
  }
  .header__addres, .header__addres a {
    font-size: 24px;
  }
  .header__body._active .header__vk {
    width: 64px;
  }
}

@media (max-width: 680px) {
  .header__vks, .header__items, .header__menu-name {
    display: none;
  }
  .header__logo, .header__content {
    padding: 20px;
    border: none;
  }
  .banner__img {
    min-height: 500px;
  }
  .header__body {
    display: flex;
    gap: 20px;
  }
  .header__logo:before{
    display: none;
  }
  .banner__title {
    font-size: 40px;
    line-height: 1;
  }
  .buttons {
    font-size: 20px;
    width: 100%;
    text-align: center;
  }
  .banner__lines {
    display: flex;
    width: 100%;
  }
  .banner__line.banner__line--left {
    width: 100%;
  }
  .banner__line.banner__line--right {
    width: 0px;
    display: none;
  }
  .menu-item a {
    font-size: 40px;
  }
  .header__addres a {
    display: block;
    padding-top: 3px;
  }
  .header__info {
    flex-direction: column;
    gap: 12px;
    align-items: end;
  }
  .header__body._active .header__vk {
    width: 40px;
    height: 40px;
  }
  .header__body._active {
    justify-content: end;
  }
  .banner__row {
    left: 20px;
    right: 20px;
  }
  .banner__title img {
    max-width: 30px;
    bottom: -9px;
    right: 0;
    position: relative;
  }
  .banner__line--left:after{
    display: none;
  }
  .banner:before {

    border-bottom-right-radius: 15px;
  }
  .banner__img{
    border-bottom-right-radius: 16px;
  }
}
.footing{
  position: relative;
}
.footing:before {
  content: '';
  background-image: linear-gradient(180deg, rgba(36, 55, 45, 0) 0%, rgba(36, 55, 45, 0.9999999999999999) 100%);
  height: 556px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 15px;
}
.footing__body {
  position: absolute;
  bottom: 60px;
}
.footing__title {
  font-size: 73px;
  line-height: 72px;
  color: #fff8ef;
  max-width: 1417px;
  font-weight: 400;
}
.footing__text {
  font-size: 35px;
  color: #fff8ef;
  font-weight: 500;
  font-family: "Gogh";
  max-width: 1140px;
}
.footing__img {
  border-radius: 15px;
  width: 100%;
  object-fit: contain;
  height: auto;
}
@media (max-width: 1220px) {
  .footing__body {
    width: calc(100% - 130px);
  }
}
@media (max-width: 1024px) {

  .section {
    padding: 40px 0px;
  }
}
@media (max-width: 960px) {
  .footing__title {
    font-size: 64px;
    line-height: 1;
  }
}

@media (max-width: 900px) {
  .footing__img {
    position: absolute;
    height: 100%;
    object-fit: cover;
  }
  .footing__body {
    position: relative;
    z-index: 2;
    width: 100%;
    bottom: 0;
    padding: 40px 0;
  }
  .footing:before {
    height: 100%;
    z-index: 1;
  }
}
@media (max-width: 680px) {
.footing__title{
  font-size: 40px;
  line-height: 1;
  padding-top: 250px;
}
  .footing__img {
    position: absolute;
    height: 100%;
    object-fit: cover;
  }
  .footing__body {
    position: relative;
    z-index: 2;
  }
  .footing__body {
    position: relative;
    bottom: 0;
    padding: 20px 0;
  }
  .footing__text {
    font-size: 20px;
  }
  .footing:before {

    background-image: linear-gradient(180deg, rgb(36 55 45 / 0%) 0%, rgba(36, 55, 45, 0.9999999999999999) 100%);
    height: 100%;
    z-index: 1;
  }
}
.breadcrumbs__name {
  font-size: 23px;
  letter-spacing: 2px;
  color: #24372d;
  font-family: "Gogh";
}
.breadcrumbs {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 280px;
}
.philosophy__title {
   font-size: 53px;
   line-height: 52px;
   color: #24372d;
   font-family: "Jonova";
   font-weight: 400;
 }
.philosophy__title span, .philosophy__text span{
  display: block;
}
.philosophy__text {
  font-size: 35px;
  color: #24372d;
  font-weight: 500;
  font-family: "Gogh";
}


@media (max-width: 1024px) {
  .philosophy__title span, .philosophy__text span {
    display: inline;
  }
  .breadcrumbs {
    padding-bottom: 150px;
  }
}
@media (max-width: 680px) {

  .breadcrumbs__name {
    font-size: 18px;
  }
  .philosophy__title {
    font-size: 26px;
    line-height: 1.4;
  }
  .philosophy__title span {
    display: inline;
  }
  .philosophy__text {
    font-size: 20px;
    line-height: 1.4;
  }
  .breadcrumbs {
    padding-bottom: 100px;
  }
}
.products__container--bg {
  background-color: #24372d;
  padding: 50px 40px 50px 80px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px
}
.products__title {
  padding: 0;
  font-size: 73px;
  line-height: 72px;
  color: #fff8ef;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 400;
}
.products__title img {
  padding-top: 14px;
}
.products__item img {
  width: 100%;
}
.products__item:first-child {
  border: 2px solid #fff8ef;
  border-radius: 15px;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-right-width: 1px;
  position: relative;
}
.products__item:last-child {
  border: 2px solid #fff8ef;
  height: 100%;
  border-radius: 15px;
  border-top-right-radius: 0;
  border-right: none;
  border-left-width: 1px;
  border-bottom-right-radius: 0;
  position: relative;
}
.products__row--1{
  display: grid;
  grid-template-columns: 1.35fr 1fr;
}
.products__row--2{
  display: grid;
  grid-template-columns: 1fr 1.35fr;
}
.products__row--3{
  display: grid;
  grid-template-columns: 1fr;
}
.products__item {
  position: relative;
  max-height: 523px;
  overflow: hidden;
}
.products__item:before {
  position: absolute;
  opacity: 0.702;
  width: 100%;
  height: 100%;
  background-color: #24372d;
  content: '';
  z-index: 1;
}
.products__infos {
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  padding: 50px 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products__img{
  transition: 1s;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.products__item:hover .products__img{
  transform: scale(1.2);
}
.products__name {
  font-size: 53px;
  line-height: 52px;
  color: #fff8ef;
  padding-bottom: 20px;
}
.products_text {
  font-size: 23px;
  color: #fff8ef;
  font-family: "Gogh";
  max-width: 720px;
  line-height: 1.2;
}
.products__hres {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products__logo {
  max-width: 58px;
  transition: 1s;
  opacity: 0.329;
  position: absolute;
  right: 20px;
  top: 20px;
}
.products__hre {
  opacity: 0.329;
  font-size: 23px;
  letter-spacing: 2px;
  color: #ffffff;
  font-family: "Gogh";
  transition: 1s;
}
.products__item:hover .products__hre{
  opacity: 1;
}
.products__item:hover .products__logo{
  opacity: 1;
}
.products__item--a {
  height: 100%;
}
.products__row--1 .products__item:first-child, .products__row--1 .products__item:last-child{
  border-bottom-width: 1px;
}
.products__row--2 .products__item:first-child, .products__row--2 .products__item:last-child{
  border-top-width: 1px;
}
.products__blocks img {
  width: 100%;
  border-radius: 15px;
}
.products__item:hover .products__name, .products__item:hover .products_text{
  color: #b58417;
}
@media (max-width: 1286px) {
  .products__infos {
    position: relative;
    gap: 20px;
    padding: 50px 40px 50px 80px;
  }
  .products__img {
    position: absolute;
  }
  .products__name {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .products__container--bg {
    padding: 40px;
  }
  .products__infos {
    padding: 40px;
  }

}
@media (max-width: 960px) {
  .products__title{
    font-size: 64px;
  }
  .products__row--1, .products__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .products__container--bg {
    padding: 20px;
  }
  .products__title {
    font-size: 40px;
    flex-direction: column-reverse;
    gap: 0px;
  }
  .products__row--1, .products__row--2 {
    grid-template-columns: 1fr;
  }
  .products__infos {
    padding: 20px;
  }
  .products__name {
    font-size: 26px;
    line-height: 1.2;
    padding-bottom: 10px;
  }
  .products_text, .products__hre {
    font-size: 18px;
  }
  .products__blocks img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
  }
}
.subscriptions__imgs{
  border-radius: 13px;
  background-color: #b58417;
  padding: 0 80px;
  overflow: hidden;
  min-width: 238px;
  position: relative;
}
.subscriptions__imgs--all{
  animation:marquee 20s linear infinite;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
}
.subscription__img {
  width: 100%;
}
@keyframes marquee {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}
.subscriptions__body{
  border-radius: 13px;
  background-color: #24372d;
  width: 100%;
}
.subscriptions__title{
  font-size: 73px;
  line-height: 72px;
  color: #fff8ef;
  padding-bottom: 38px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 20px;
}
.subscriptions__title img {
  width: 100%;
  max-width: 50px;
  padding-top: 14px;
}
.subscriptions__text{
  font-size: 23px;
  color: #fff8ef;
  font-family: "Gogh";
  padding-bottom: 90px;
  line-height: 1.2;
}
.subscriptions__info{
  font-size: 35px;
  color: #fff8ef;
  font-weight: 500;
  font-family: "Gogh";
  padding-bottom: 36px;
  line-height: 1.2;
}
.subscriptions__small{
  opacity: 0.329;
  font-size: 20px;
  color: #fff8ef;
  font-family: "Gogh";
}
.subscriptions__a{
  display: flex;
  gap: 28px;
  align-items: center;
}
.subscriptions__row {
  padding: 90px 0;
}
.subscriptions__container {
  display: flex;
  gap: 2px;
}
.subscriptions__block{
  display: block;
}
.subscriptions__list {
  font-size: 35px;
  color: #b58417;
  font-weight: 500;
  font-family: "Gogh";
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 80px;
}
.subscriptions__btn {
  min-width: 298px;
}
@media (max-width: 1024px) {
  .subscriptions__container {
    flex-direction: column;
  }
  .subscriptions__imgs {
    padding: 30px 0;
  }
  @keyframes marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .subscriptions__imgs--all {
    flex-direction: row;
    position: relative;
  }
  .subscriptions__row {
    padding: 40px 0;
  }
}
@media (max-width: 960px) {
  .subscriptions__title {
    font-size: 64px;
    align-items: baseline;
    line-height: 1.2;
  }
}
@media (max-width: 680px) {
  .subscriptions__title {
    font-size: 40px;
    align-items: center;
    flex-direction: column-reverse;
    gap: 5px;
  }
  .subscriptions__text {
    font-size: 18px;
    padding-bottom: 40px;
  }
  .subscriptions__info {
    font-size: 20px;
  }
  .subscriptions__list {
    font-size: 20px;
    padding-bottom: 40px;
  }
  .subscriptions__a {
    flex-direction: column;
    gap: 10px;
  }
  .subscriptions__small {
    font-size: 12px;
  }
  .subscription__img {
    width: 50px;
  }
  .subscriptions__imgs {
    padding: 20px 0;
  }
}
.health__title{
  font-size: 73px;
  line-height: 72px;
  color: #24372d;
  font-weight: 400;
  display: flex;
  align-items: end;
  gap: 20px;
}
.health__title .block{
  display: block;
}
.health_text{
  font-size: 35px;
  color: #24372d;
  font-family: "Gogh";
  max-width: 1605px;
  line-height: 1.2;
}
.health_text span{
  color: #b58417;
}
@media (max-width: 960px) {
  .health__title {
    font-size: 64px;

    line-height: 1.1;
  }
}
@media (max-width: 680px) {
  .health__title {
    font-size: 40px;
    flex-direction: column-reverse;
    align-items: start;
    gap: 5px;
  }
  .health_text {
    font-size: 20px;
  }
  .health__title img {
    margin: auto;
  }
}
.farm__content{
  padding: 29px 23px;
}
.farm__item{
  background-color: #ffffff;
  border-radius: 13px;
  width: 50%;
}
.farm__item:first-child{
  width: 42.5%;
}
.farm__item:last-child{
  width: 57.5%;
}
.farm__row{
  display: flex;
  gap: 4px;
}
.farm__name{

  font-size: 23px;
  letter-spacing: 2px;
  color: #b58417;
  font-family: "Gogh";
}
.farm__names{
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 0 56px;
}
.farm__img{
  padding: 25px 0;
  max-width: 100%;
}
.farm__info{
  padding: 0 56px;
}
.farm__title{
  font-size: 35px;
  line-height: 52px;
  color: #24372d;
  padding-bottom: 12px;
}
.farm__text{
  font-size: 23px;
  color: #24372d;
  font-family: "Gogh";
  line-height: 1.2;
}
.farm__slide {
  background: #ffffff;
}
.farm__informations{
  padding: 25px 35px 25px 67px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 55px;
}
.informations__text span{
  color: #b58417;
}
.informations__text{
  font-size: 30px;
  color: #24372d;
  font-family: "Gogh";
  line-height: 1.2;
}
.informations__info{
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.informations__href{
  font-size: 20px;
  letter-spacing: 2px;
  color: #24372d;
  font-weight: 800;
  font-family: "Gogh";
}
.informations__href:hover{
  color: #b58417;
}
.informations {
  width: 27px;
}
span.swiper-pagination-bullet {
  width: 29px;
  height: 29px;
  border-radius: 4px;
  background-color: #24372d00;
  border: 1px solid #24372d;
  opacity: 1;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #24372d;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  position: relative;
  bottom: 0;
  left: 0;
  margin: 0;
  display: flex;
  padding-left: 56px;
  padding-top: 56px;
}
.swiper-wrapper {
  align-items: stretch;
}
.farm__slide.swiper-slide {
  height: auto;
}

@media (max-width: 1200px) {
  .farm__info, .farm__names {
    padding: 0;
  }
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .farm__informations {
    padding: 25px 40px;
  }
  .farm__item:first-child, .farm__item:last-child {
    width: 100%;
  }
  .farm__row {
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .farm__title {
    font-size: 20px;
    line-height: 1.2;
  }
  .farm__name {
    font-size: 18px;
  }
  .farm__text{
    font-size: 18px;
  }
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {

    padding-top: 30px;
  }
  span.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
  .informations__text {
    font-size: 18px;
  }
  .farm__informations {
    padding: 25px 20px;
    gap: 30px;
  }
  .informations__info {
    gap: 30px;
  }
  .informations__href {
    font-size: 14px;
  }
}
.footer {
  background-color: #24372d;
  padding: 55px 0 20px;
}
.footer__item:first-child {
  width: 42.5%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.footer__item:last-child {
  width: 57.5%;
}
.footer___row {
  display: flex;
}
.address__info p {
  font-size: 19px;
  color: #ffffff;
  font-family: "Gogh";
}
.address__info p span{
  color: #b58417;
  font-weight: bold;
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.address__info {
  max-width: 777px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__copys{
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 50px;
}
.footer__copy{
  font-size: 14px;
  color: #ffffff;
  font-family: "Gogh";
}
.footer__politic a{
  font-size: 14px;
  color: #ffffff;
  font-family: "Gogh";
}
.footer__hrefs {
  display: flex;
  max-width: 344px;
  justify-content: space-between;
  gap: 20px;
}
.phone__name {
  font-size: 18px;
  color: #ffffff;
  font-family: "Gogh";
}
.phone__text a {
  font-size: 30px;
  color: #ffffff;
  font-family: "Gogh";
}
.footer__phone {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 960px) {
  .footer__item:first-child, .footer__item:last-child {
    width: 100%;
  }
  .footer___row {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .footer__logo img {
    width: 100%;
    max-width: 400px;
  }
  .footer__item:first-child {
    gap: 30px;
  }
  .footer__hrefs {
    max-width: 100%;
  }
  .footer__phone {
    gap: 30px;
  }
  .phone__text a {
    font-size: 22px;
  }
  .address__info p {
    font-size: 16px;
  }
  .footer__copys {
    padding-top: 30px;
    flex-direction: column;
    gap: 10px;
  }
}

.site-error {
  color: #fff8ef;
  background-color: #24372d;
}

.site-error {
  padding-top: 240px;
}


.site-error p {
  margin-top: 25px;
}

@media (max-width: 960px) {
}


.site-login {
  color: #fff8ef;
  background-color: #24372d;
}

.container-login {
  padding-top: 240px;
}

.section-politics {
  padding-top: 240px;
  color: #24372d;
}

.section-politics p{
  margin-top: 16px;
}

.section-politics a{
  display: inline;
  text-decoration: underline;
}

.header-politika {
background-color: #24372d;
}


.container-login .text--info {
margin-top: 10px;
}

@media (max-width: 960px) {
.container-login {
padding-top: 140px;
}
.section-politics {
padding-top: 140px;
}
.site-error {
padding-top: 140px;
}
}

.site-login .row {
margin-top: 30px;
}

.site-login input {
border-radius: 10px;
padding: 9px 9px;
background: #ffffff;
font-weight: 500;
font-size: 16px;
line-height: 160%;
color: #24372d;
width: 100%;
margin-top: 7px;
}


.site-login .mb-3 {
margin-bottom: 15px;
}

.site-login .site-login_content {
margin: 0 30px;
}

.site-login .feedback__button {
margin-top: 30px;
}

@media (min-width: 1024px) {
.banner{
min-height:550px;
}
}

@media (max-width: 680px) {

}

@media (max-width: 680px) {

}
@media (max-width: 680px) {

}

@media (max-width: 680px) {

}

