@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Rubik:300,regular,500,600,700,800,900,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@font-face {
  font-family: "Gilroy-Bold";
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff") format("woff"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff") format("woff"), url("../fonts/Gilroy-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

html {
  font-size: 16px;
}

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

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

input,
button,
textarea {
  font-family: "Rubik";
  font-size: inherit;
}

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

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

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

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

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px 100px;
  width: 100%;
}
@media (max-width: 998px) {
  ._container {
    padding: 0px 16px;
  }
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
  color: #858FA4;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: right;
  color: #858FA4;
}
.select__value span {
  padding-right: 10px;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 6px;
  height: 6px;
  background: url("../img/arrow.png") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}
._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
._swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
._swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.header {
  background: #FFFFFF;
  box-shadow: 0px 10px 15px rgba(59, 77, 90, 0.03);
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
  gap: 30px;
}
.header__logo {
  width: 150px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1300px) {
  .header__logo {
    width: 120px;
  }
}
@media (max-width: 500px) {
  .header__logo {
    width: 100px;
  }
}
.header__logo img {
  width: 100%;
}
.header__menu ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 1300px) {
  .header__menu ul {
    gap: 20px;
    font-size: 14px;
  }
}
@media (max-width: 998px) {
  .header__menu ul {
    font-size: 24px;
  }
}
.header__menu ul a {
  color: #1F2631;
  font-family: "Gilroy";
}
@media (max-width: 1100px) {
  .header__menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    background: #FFFFFF;
    transform: translate(0px, -100%);
    transition: 0.3s;
  }
  .header__menu._active {
    transform: translate(0px, 0%);
  }
  .header__menu ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
}
.header__last {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1300px) {
  .header__last {
    gap: 15px;
    font-size: 14px;
  }
}
.header__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
  font-family: "Gilroy";
  color: #1F2631;
}
@media (max-width: 1300px) {
  .header__tel {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .header__tel img {
    display: none;
  }
}
.header__btn {
  padding: 10px 40px;
  background: #F5F818;
  color: #07452B;
  border-radius: 18px;
  transition: 0.3s;
}
.header__btn:hover {
  color: #fff;
  background: linear-gradient(65.66deg, #77AF29 -1.82%, #6FAF1A 43.13%, #67B025 131.24%);
  box-shadow: 0px 7px 19px rgba(21, 150, 0, 0.32);
}
@media (max-width: 998px) {
  .header__btn {
    display: none;
  }
}
.header__form-wp {
  display: none;
  padding: 20px;
}
@media (max-width: 998px) {
  .header__form-wp {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.header__head {
  font-weight: 600;
  font-size: 24px;
}
.header__subtitle {
  line-height: 1.2;
  max-width: 200px;
  font-size: 12px;
}
.header form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header input {
  padding: 10px 15px;
  background: linear-gradient(130.17deg, #FFFFFF 0%, #DDDDDD 100.46%);
  border-radius: 47px;
  max-width: 240px;
  width: 100%;
}
.header input._error {
  border: 2px solid #DD1F36;
}
.header input[type=checkbox] {
  display: none;
}
.header input[type=checkbox] + label {
  position: relative;
  padding-left: 30px;
  max-width: 300px;
  line-height: 1.2;
}
.header input[type=checkbox] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/cec.png);
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
}
.header input[type=checkbox]:checked + label::before {
  background-image: url(../img/cecc.png);
}
.header button {
  width: 100%;
  max-width: 240px;
  text-align: center;
  padding: 12px;
  background: #F5F818;
  box-shadow: 0px 7px 22px rgba(250, 255, 0, 0.19);
  border-radius: 47px;
  color: #1F2631;
  transition: 0.3s;
  font-size: 13px;
}
.header button:hover {
  color: #fff;
  background: linear-gradient(65.66deg, #77AF29 -1.82%, #6FAF1A 43.13%, #67B025 131.24%);
  box-shadow: 0px 7px 19px rgba(21, 150, 0, 0.32);
}

.header__burger {
  display: none;
}
@media (max-width: 998px) {
  .header__burger {
    display: block;
    position: relative;
    top: 0;
    right: 0px;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }
  .header__burger span {
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #07452B;
  }
  .header__burger span:first-child {
    top: 0px;
  }
  .header__burger span:last-child {
    top: auto;
    bottom: 0px;
  }
  .header__burger._active span {
    transform: scale(0);
  }
  .header__burger._active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .header__burger._active span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

.page {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.page__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.screen {
  flex: 1 0 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.screen__img {
  max-height: 100%;
  height: 100%;
}

.page__wp {
  position: relative;
  z-index: 2;
}

._screen-one {
  background-image: url(../img/bg.webp);
  background-size: max(1620px, 100%) calc(100% - 100px);
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media (max-width: 998px) {
  ._screen-one {
    background-size: max(1100px, 100%) calc(100% - 45px);
  }
}
._screen-one ._line1 {
  position: absolute;
  bottom: 0;
  width: 50%;
  left: 50%;
  transform: translate(-50%);
}
._screen-one ._line2 {
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 50%;
  left: 0%;
  transform: translate(0%, 0%);
}
._screen-one .page__wp {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  margin-top: 100px;
}
@media (max-width: 998px) {
  ._screen-one .page__wp {
    margin-top: 0;
    padding-bottom: 30px;
  }
}
._screen-one .page__wp::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -55%);
  right: -200px;
  content: "";
  width: 65%;
  height: 85%;
  background-image: url(../img/bg1.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 1500px) {
  ._screen-one .page__wp::before {
    width: 60%;
    right: -100px;
  }
}
@media (max-width: 1200px) {
  ._screen-one .page__wp::before {
    width: 60%;
    right: -150px;
  }
}
@media (max-width: 998px) {
  ._screen-one .page__wp::before {
    max-width: 500px;
    width: 100%;
    right: auto;
    left: 50%;
    transform: translate(-50%, 20%);
    bottom: 0;
    top: auto;
  }
}
@media (max-width: 500px) {
  ._screen-one .page__wp::before {
    right: 0px;
    left: auto;
    transform: translate(20%, 15%);
    width: 120%;
  }
}
._screen-one .screen__img {
  position: absolute;
  right: 300px;
  top: 0%;
  height: 100%;
  width: 30%;
}
@media (max-width: 1500px) {
  ._screen-one .screen__img {
    transform: scale(0.8);
    transform-origin: right;
  }
}
@media (max-width: 1200px) {
  ._screen-one .screen__img {
    transform: scale(0.7);
    transform-origin: right;
    right: 200px;
  }
}
@media (max-width: 1050px) {
  ._screen-one .screen__img {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0px auto;
    transform: scale(1);
  }
}
._screen-one .screen__img div {
  position: absolute;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translate(0px, -50%);
  height: 80%;
  width: auto;
  max-height: 570px;
  transition: 0.6s;
}
._screen-one .screen__img div img {
  height: 100%;
}
@media (max-width: 998px) {
  ._screen-one .screen__img div {
    height: 90%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 350px;
  }
}
._screen-one .screen__img div._b1 {
  transform: translate(60px, -50%) rotate(15deg);
}
@media (max-width: 998px) {
  ._screen-one .screen__img div._b1 {
    transform: translate(-50%, -50%) rotate(15deg);
  }
}
._screen-one .screen__img div._b2 {
  z-index: 3;
}
._screen-one .screen__img div._b3 {
  transform: translate(120px, -50%) rotate(-15deg);
}
@media (max-width: 998px) {
  ._screen-one .screen__img div._b3 {
    transform: translate(-50%, -50%) rotate(-15deg);
  }
}
._screen-one._active .screen__img div._b1 {
  transform: translate(-180px, -50%) rotate(0deg);
}
@media (max-width: 998px) {
  ._screen-one._active .screen__img div._b1 {
    transform: translate(calc(-50% - 100px), -50%) rotate(0deg);
  }
}
._screen-one._active .screen__img div._b3 {
  transform: translate(320px, -50%) rotate(0deg);
}
@media (max-width: 998px) {
  ._screen-one._active .screen__img div._b3 {
    transform: translate(calc(-50% + 100px), -50%) rotate(0deg);
  }
}
._screen-one .screen__title {
  width: 500px;
  position: relative;
}
._screen-one .screen__title::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background-image: url(../img/alko.webp);
  width: 140px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(50%, -100%);
}
@media (max-width: 1500px) {
  ._screen-one .screen__title::before {
    width: 120px;
  }
}
@media (max-width: 1050px) {
  ._screen-one .screen__title::before {
    width: 75px;
    transform: translate(80%, -100%);
  }
}
@media (max-width: 1500px) {
  ._screen-one .screen__title {
    width: 400px;
  }
}
@media (max-width: 1050px) {
  ._screen-one .screen__title {
    width: 100%;
    max-width: 60%;
    margin: 0px auto;
    margin-top: 150px;
    display: flex;
    justify-content: center;
  }
}
._screen-one .screen__title img {
  width: 100%;
}
._screen-one .screen__subtitle {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1F2631;
  max-width: 500px;
  line-height: 1.3;
  margin-top: 30px;
}
@media (max-width: 1500px) {
  ._screen-one .screen__subtitle {
    max-width: 400px;
    font-size: 28px;
  }
}
@media (max-width: 998px) {
  ._screen-one .screen__subtitle {
    text-align: center;
    font-size: 24px;
    margin-top: 15px;
    margin: 0px auto;
    margin-top: 15px;
  }
}
._screen-one .screen__btn {
  padding: 12px 50px;
  background: #DD1F36;
  box-shadow: 0px 7px 19px rgba(224, 0, 0, 0.32);
  border-radius: 47px;
  width: max-content;
  color: #fff;
  margin-top: 40px;
  display: block;
  transition: 0.3s;
  font-size: 16px;
}
._screen-one .screen__btn:hover {
  background: #07452B;
  color: #fff;
  box-shadow: 0px 7px 19px rgba(0, 150, 15, 0.32);
}
@media (max-width: 998px) {
  ._screen-one .screen__btn {
    margin-top: 0;
    margin: 0px auto;
  }
}
._screen-one .screen__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1050px) {
  ._screen-one .screen__content {
    height: 100%;
  }
}

._screen-napitok {
  text-align: center;
  position: relative;
}
._screen-napitok.swiper-slide-active li {
  opacity: 1 !important;
}
._screen-napitok::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/line3.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
._screen-napitok ._b1 {
  position: absolute;
  top: 0px;
  left: 0;
}
@media (max-width: 998px) {
  ._screen-napitok ._b1 {
    width: 20%;
  }
  ._screen-napitok ._b1 img {
    width: 100%;
  }
}
._screen-napitok ._b2 {
  position: absolute;
  top: 0px;
  right: 0;
}
@media (max-width: 998px) {
  ._screen-napitok ._b2 {
    width: 20%;
  }
  ._screen-napitok ._b2 img {
    width: 100%;
  }
}
._screen-napitok ._b3 {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translate(0px, -20%);
}
@media (max-width: 998px) {
  ._screen-napitok ._b3 {
    width: 20%;
  }
  ._screen-napitok ._b3 img {
    width: 100%;
  }
}
._screen-napitok ._b4 {
  position: absolute;
  bottom: 50px;
  left: 15%;
}
@media (max-width: 998px) {
  ._screen-napitok ._b4 {
    width: 20%;
  }
  ._screen-napitok ._b4 img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  ._screen-napitok ._b4 {
    width: 40%;
    bottom: 0;
    left: 0;
    transform: translate(-20px, 30px);
  }
}
._screen-napitok ._b5 {
  position: absolute;
  top: 30%;
  right: 20%;
}
@media (max-width: 998px) {
  ._screen-napitok ._b5 {
    width: 20%;
  }
  ._screen-napitok ._b5 img {
    width: 100%;
  }
}
._screen-napitok ._b6 {
  position: absolute;
  bottom: 10%;
  right: 10%;
}
@media (max-width: 998px) {
  ._screen-napitok ._b6 {
    width: 20%;
  }
  ._screen-napitok ._b6 img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  ._screen-napitok ._b6 {
    width: 30%;
    bottom: 0;
    right: 0;
    transform: translate(0px, 0px);
  }
}
._screen-napitok ._b7 {
  position: absolute;
  top: 60%;
  transform: translate(0px, -50%);
  right: 10%;
}
@media (max-width: 998px) {
  ._screen-napitok ._b7 {
    width: 20%;
  }
  ._screen-napitok ._b7 img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  ._screen-napitok ._b7 {
    width: 30%;
    bottom: 0;
    right: 0;
    transform: translate(0px, 0px);
  }
}
._screen-napitok .page__wp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 40px;
}
@media (max-width: 998px) {
  ._screen-napitok .page__wp {
    padding-top: 70px;
    padding-bottom: 30px;
  }
}
._screen-napitok .screen__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}
._screen-napitok .screen__img-block {
  height: 100%;
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  width: 100%;
}
._screen-napitok .screen__img-block::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  background-image: url(../img/bac-bank.webp);
  height: 100%;
  width: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 500px) {
  ._screen-napitok .screen__img-block::before {
    max-width: 80%;
  }
}
._screen-napitok .screen__img-block ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 998px) {
  ._screen-napitok .screen__img-block ul::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/group.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
}
._screen-napitok .screen__img-block ul li {
  width: 50%;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 1s;
}
@media (max-width: 998px) {
  ._screen-napitok .screen__img-block ul li {
    transition-delay: 0s !important;
  }
}
._screen-napitok .screen__img-block ul li:nth-child(even) p {
  margin-left: auto;
}
._screen-napitok .screen__img-block ul li:nth-child(3), ._screen-napitok .screen__img-block ul li:nth-child(4) {
  margin-top: auto;
}
._screen-napitok .screen__img-block ul li p {
  max-width: 310px;
  background: #F5F818;
  border-radius: 47px;
  padding: 16px 25px;
  font-size: 18px;
  color: #07452B;
  position: relative;
}
@media (max-width: 1400px) {
  ._screen-napitok .screen__img-block ul li p {
    max-width: 230px;
    padding: 14px 20px;
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  ._screen-napitok .screen__img-block ul li p {
    max-width: 180px;
    font-size: 13px;
    padding: 18px 15px;
    width: 100%;
  }
}
._screen-napitok .screen__img-block ul li p::before {
  position: absolute;
  bottom: 0;
  left: -20px;
  content: "";
  width: 150px;
  aspect-ratio: 170/120;
  background-image: url(../img/a1-2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-100%, 70%);
}
@media (max-width: 1400px) {
  ._screen-napitok .screen__img-block ul li p::before {
    width: 130px;
  }
}
._screen-napitok .screen__img-block ul li:nth-child(1) {
  transition-delay: 1s;
}
._screen-napitok .screen__img-block ul li:nth-child(1) p {
  margin-top: 7%;
}
._screen-napitok .screen__img-block ul li:nth-child(1) p::before {
  background-image: url(../img/a1-1.webp);
  left: auto;
  right: 0;
  transform: translate(100%, 70%);
}
@media (max-height: 700px) {
  ._screen-napitok .screen__img-block ul li:nth-child(1) p::before {
    transform: translate(100%, 50%);
  }
}
._screen-napitok .screen__img-block ul li:nth-child(2) {
  transition-delay: 1.3s;
}
._screen-napitok .screen__img-block ul li:nth-child(2) p {
  margin-top: 5%;
}
._screen-napitok .screen__img-block ul li:nth-child(3) {
  transition-delay: 1.6s;
}
._screen-napitok .screen__img-block ul li:nth-child(3) p {
  margin-bottom: 8%;
}
._screen-napitok .screen__img-block ul li:nth-child(3) p::before {
  background-image: url(../img/a1-3.webp);
  left: auto;
  right: 0;
  transform: translate(100%, 0%);
}
@media (max-height: 700px) {
  ._screen-napitok .screen__img-block ul li:nth-child(3) p::before {
    transform: translate(100%, 20%);
  }
}
._screen-napitok .screen__img-block ul li:nth-child(4) {
  transition-delay: 1.9s;
}
._screen-napitok .screen__img-block ul li:nth-child(4) p {
  margin-bottom: 3%;
}
._screen-napitok .screen__img-block ul li:nth-child(4) p::before {
  background-image: url(../img/a1-4.webp);
  transform: translate(-100%, -10%);
}
@media (max-width: 998px) {
  ._screen-napitok .screen__img-block ul li p {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0px, -50%);
    transition: 0.5s;
    opacity: 0;
  }
  ._screen-napitok .screen__img-block ul li p::before {
    display: none;
  }
  ._screen-napitok .screen__img-block ul li p._active {
    opacity: 1;
  }
}
._screen-napitok .screen__img-block img {
  height: 100%;
}
._screen-napitok .screen__img-block div {
  position: absolute;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 700px;
}
@media (max-width: 1400px) {
  ._screen-napitok .screen__img-block div {
    max-height: 600px;
  }
}
._screen-napitok .screen__title {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
}
@media (max-width: 998px) {
  ._screen-napitok .screen__title {
    font-size: 24px;
  }
}
._screen-napitok .screen__title span {
  color: #0f5e3c;
}
._screen-napitok .screen__subtitle {
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  margin: 0px auto;
  margin-top: 10px;
  max-width: 700px;
  color: #07452B;
}
@media (max-width: 998px) {
  ._screen-napitok .screen__subtitle {
    font-size: 14px;
    max-width: 70%;
  }
}
@media (max-width: 500px) {
  ._screen-napitok .screen__subtitle {
    font-size: 12px;
    max-width: 90%;
  }
}
._screen-napitok .screen__btn {
  display: block;
  width: max-content;
  padding: 12px 52px;
  background: #FFFFFF;
  /* 123 */
  position: relative;
  z-index: 4;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
  border-radius: 47px;
  color: #07452B;
  margin: 0px auto;
  transition: 0.3s;
}
._screen-napitok .screen__btn:hover {
  background: #07452B;
  color: #fff;
  box-shadow: 0px 7px 19px rgba(0, 150, 15, 0.32);
}

._screen-two {
  background: linear-gradient(104.82deg, #AFFF56 1.02%, #BDED18 30.48%, #88E238 111.15%);
}

._screen-three {
  background: linear-gradient(104.6deg, #FD4D4D 0%, #E63030 100%);
  color: #780210;
}
@media (max-width: 998px) {
  ._screen-three ._b4 {
    display: none;
  }
}
@media (min-width: 998px) {
  ._screen-three ._b5 {
    width: 200px;
    top: 30%;
    right: 15%;
  }
}
@media (min-width: 998px) {
  ._screen-three ._b7 {
    width: 200px;
    right: 5%;
  }
}
@media (min-width: 998px) {
  ._screen-three ._b6 {
    width: 200px;
    right: 5%;
    bottom: 0;
  }
}
@media (max-width: 500px) {
  ._screen-three ._b6 {
    right: -30px !important;
  }
}
._screen-three::before {
  background-image: url(../img/lin22.webp);
}
._screen-three .screen__title span {
  color: #780210;
}
._screen-three .screen__subtitle {
  color: #780210;
}
._screen-three .screen__img-block::before {
  background-image: url(../img/back-2.png);
}
._screen-three p {
  color: #780210 !important;
}
._screen-three ul::before {
  background-image: url(../img/group1.webp) !important;
}
._screen-three ul li:nth-child(1) p::before {
  background-image: url(../img/a2-1.webp) !important;
}
._screen-three ul li:nth-child(2) p::before {
  background-image: url(../img/a2-2.webp) !important;
}
._screen-three ul li:nth-child(3) p::before {
  background-image: url(../img/a2-3.webp) !important;
}
._screen-three ul li:nth-child(4) p::before {
  background-image: url(../img/a2-4.webp) !important;
}

._screen-four {
  background: linear-gradient(104.6deg, #AC343D 0%, #70131A 100%);
  color: #480009;
}
._screen-four ._b4 {
  bottom: 0;
  left: 0;
}
@media (max-width: 998px) {
  ._screen-four ._b1,
._screen-four ._b2,
._screen-four ._b4 {
    display: none;
  }
}
@media (max-width: 500px) {
  ._screen-four ._b3 {
    width: 30%;
    left: -50px;
    transform: translate(0px, -50%) rotate(180deg);
  }
}
._screen-four .screen__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
._screen-four .screen__title span {
  color: #480009;
}
._screen-four .screen__title b {
  background: linear-gradient(104.6deg, #AC343D 0%, #70131A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 6px 18px;
  margin-bottom: 2px;
  position: relative;
}
@media (max-width: 500px) {
  ._screen-four .screen__title b {
    padding: 4px 8px;
    width: max-content;
    display: block;
  }
}
._screen-four .screen__title b::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background: linear-gradient(130.17deg, #FFFFFF 0%, #DDDDDD 100.46%);
  border-radius: 38px;
}
._screen-four .screen__subtitle {
  color: #E29FA7;
}
._screen-four .screen__img-block::before {
  background-image: url(../img/back-3.webp);
}
._screen-four p {
  color: #5B090F !important;
}
._screen-four ul::before {
  background-image: url(../img/group1.webp) !important;
}
._screen-four ul li:nth-child(1) p::before {
  background-image: url(../img/a3-1.webp) !important;
}
._screen-four ul li:nth-child(2) p::before {
  background-image: url(../img/a3-2.webp) !important;
}
._screen-four ul li:nth-child(3) p::before {
  background-image: url(../img/a3-3.webp) !important;
}
._screen-four ul li:nth-child(4) p::before {
  background-image: url(../img/a3-4.webp) !important;
}

._screen-six {
  display: flex;
  width: 100vw;
  position: relative;
}
._screen-six .page__titl {
  position: absolute;
  top: 80px;
  left: 50%;
  z-index: 10;
  text-align: center;
  font-weight: 600;
  font-size: 40px;
}
@media (max-width: 1300px) {
  ._screen-six .page__titl {
    font-size: 35px;
  }
}
._screen-six .page__titl span {
  background: linear-gradient(90deg, #FF0600 0%, #1E612E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 998px) {
  ._screen-six .page__titl {
    display: none;
  }
}
._screen-six ._b5-1 {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
}
@media (max-width: 1500px) {
  ._screen-six ._b5-1 {
    width: 250px;
  }
}
@media (max-width: 998px) {
  ._screen-six ._b5-1 {
    display: none;
  }
}
._screen-six ._b5-2 {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translate(-20%, -50%);
  left: 0;
}
@media (max-width: 1500px) {
  ._screen-six ._b5-2 {
    width: 200px;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 998px) {
  ._screen-six ._b5-2 {
    display: none;
  }
}
._screen-six .page__map {
  width: calc(100% - 500px);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 998px) {
  ._screen-six .page__map {
    width: 100%;
  }
}

._screen-five {
  width: 100%;
  align-items: flex-start;
  display: none;
}
@media (max-width: 998px) {
  ._screen-five {
    display: flex;
  }
}

.page__green {
  padding-top: 0px;
  width: 650px;
  position: relative;
  z-index: 20;
  background-image: url(../img/bgg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 100%;
  padding-left: 100px;
  padding-right: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  line-height: 1.3;
  gap: 10px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-750px);
}
@media (max-width: 1500px) {
  .page__green {
    padding-right: 50px;
  }
}
@media (max-width: 1500px) {
  .page__green {
    position: relative;
    left: 0;
    transform: translate(0px);
  }
}
@media (max-width: 998px) {
  .page__green {
    width: 100%;
    padding: 0px 25px;
    background-image: url(../img/bbgg2.webp);
    justify-content: start;
    padding-top: 20px;
    height: calc(100% + 90px);
  }
}
.page__green::before {
  position: absolute;
  top: 0;
  left: 2px;
  content: "";
  width: 500px;
  height: 100%;
  transform: translate(-100%);
  background: linear-gradient(65.66deg, #77AF29 -1.82%, #6FAF1A 43.13%, #67B025 131.24%);
}
.page__green ._kl {
  position: absolute;
  right: 100px;
  top: 150px;
  z-index: -1;
}
@media (max-width: 998px) {
  .page__green ._kl {
    right: 20px;
    top: 100px;
    width: 60px;
  }
}
@media (max-height: 850px) {
  .page__green {
    gap: 7px;
  }
}
@media (max-height: 700px) {
  .page__green {
    gap: 5px;
  }
}
@media (max-width: 500px) {
  .page__green {
    gap: 5px !important;
  }
}
@media (max-height: 850px) {
  .page__green p {
    font-size: 14px;
  }
}
@media (max-height: 700px) {
  .page__green p {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .page__green p {
    font-size: 12px !important;
  }
}
.page__green .submenu {
  font-weight: 500;
}
.page__green .submenu li {
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 998px) {
  .page__green .submenu li {
    font-size: 12px;
  }
}
.page__green .submenu li._biig {
  display: block;
  font-weight: 500;
  pointer-events: none;
  font-size: 20px;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 998px) {
  .page__green .submenu li._biig {
    font-size: 15px;
  }
}
.page__green .submenu a {
  color: #fff;
}
.page__green h2 {
  display: none;
}
@media (max-width: 998px) {
  .page__green h2 {
    display: block;
    color: #1F2631;
    font-size: 24px;
    font-weight: 600;
  }
  .page__green h2 span {
    background: linear-gradient(90deg, #FF0600 0%, #1E612E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}

._screen-seven {
  background: linear-gradient(104.6deg, #E1F8FF 0%, #B6B5FE 100%);
}
._screen-seven .page__wp {
  padding-top: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
  max-width: 1000px;
}
@media (max-width: 998px) {
  ._screen-seven .page__wp {
    padding-bottom: 20px;
    padding-top: 60px;
  }
}
._screen-seven .page__title {
  text-align: center;
  font-weight: 600;
  font-size: 48px;
}
@media (max-width: 998px) {
  ._screen-seven .page__title {
    font-size: 24px;
  }
}
._screen-seven .page__title span {
  background: linear-gradient(90deg, #FF0600 0%, #1E612E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
._screen-seven .page__tabs {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
._screen-seven .page__tabs-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  color: #7A808F;
}
@media (max-width: 500px) {
  ._screen-seven .page__tabs-items {
    font-size: 12px;
    margin-top: 14px;
  }
}
._screen-seven .page__tabs-items li {
  position: relative;
  cursor: pointer;
}
._screen-seven .page__tabs-items li::before {
  position: absolute;
  bottom: 0;
  transform: translate(0px, 10px);
  left: 0;
  content: "";
  background-image: url(../img/lbl.webp);
  width: 100%;
  height: 5px;
  background-size: auto;
  background-repeat: no-repeat;
}
._screen-seven .page__tabs-items li::after {
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  right: -15px;
  content: "";
  width: 10px;
  height: 10px;
  background: #1F2631;
  border-radius: 50%;
}
@media (max-width: 500px) {
  ._screen-seven .page__tabs-items li::after {
    width: 8px;
    height: 8px;
  }
}
._screen-seven .page__tabs-items li._active {
  color: #07452B;
}
@media (max-width: 500px) {
  ._screen-seven .page__tabs-items li._active {
    font-size: 16px;
  }
}
._screen-seven .page__tabs-items li._active::before {
  background-image: url(../img/lbla.webp);
}
._screen-seven .page__tabs-items li:last-child::after {
  display: none;
}
._screen-seven .page__tabs-wp {
  margin-top: 30px;
  height: 100%;
  width: 100%;
}
@media (max-width: 500px) {
  ._screen-seven .page__tabs-wp {
    margin-top: 25px;
  }
}
._screen-seven .page__tabs-block {
  height: 100%;
  width: 100%;
}
._screen-seven .page__tabs-block._active {
  display: flex;
}
._screen-seven .page__wp-block {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
}
@media (max-width: 998px) {
  ._screen-seven .page__wp-block {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
._screen-seven .page__wp-block div {
  position: relative;
  cursor: pointer;
}
@media (min-width: 998px) {
  ._screen-seven .page__wp-block div._big {
    grid-row: auto/span 2;
  }
}
@media (max-width: 998px) {
  ._screen-seven .page__wp-block div._big {
    grid-column: auto/span 2;
    grid-row: auto/span 2;
    order: 1;
  }
}
@media (max-width: 998px) {
  ._screen-seven .page__wp-block div {
    order: 2;
  }
}
._screen-seven .page__wp-block img,
._screen-seven .page__wp-block video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

._screen-eight {
  background: linear-gradient(130.17deg, #FFFFFF 0%, #DDDDDD 100.46%);
  align-items: flex-start;
  position: relative;
}
._screen-eight ._lb1 {
  position: absolute;
  top: 0px;
  left: 0;
}
@media (max-width: 998px) {
  ._screen-eight ._lb1 {
    display: none;
  }
}
._screen-eight ._lb2 {
  position: absolute;
  top: 50px;
  right: 0;
}
@media (max-width: 998px) {
  ._screen-eight ._lb2 {
    display: none;
  }
}
._screen-eight ._lb3 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 998px) {
  ._screen-eight ._lb3 {
    width: 30%;
  }
}
._screen-eight ._lb4 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 998px) {
  ._screen-eight ._lb4 {
    width: 30%;
  }
}
._screen-eight .page__wp {
  height: 100%;
  padding-top: 80px;
}
@media (max-width: 998px) {
  ._screen-eight .page__wp {
    padding-bottom: 100px;
  }
}
._screen-eight .page__title {
  text-align: center;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
}
@media (max-width: 998px) {
  ._screen-eight .page__title {
    font-size: 24px;
  }
}
._screen-eight .page__block {
  display: flex;
  margin-top: 60px;
  align-items: center;
}
@media (max-height: 700px) {
  ._screen-eight .page__block {
    margin-top: 15px;
  }
}
@media (max-width: 998px) {
  ._screen-eight .page__block {
    flex-direction: column;
    font-size: 18px;
  }
}
._screen-eight .page__left {
  display: flex;
  gap: 25px;
  flex-direction: column;
}
._screen-eight .page__it {
  line-height: 1.2;
}
._screen-eight .page__it span {
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 998px) {
  ._screen-eight .page__it span {
    font-size: 18px;
  }
}
._screen-eight .page__it p {
  margin-top: 5px;
  font-size: 20px;
}
._screen-eight .page__it p a {
  color: #1F2631;
}
._screen-eight .page__it p a._tel {
  font-weight: 500;
  color: #0F3525;
}
@media (max-width: 998px) {
  ._screen-eight .page__it p {
    font-size: 18px;
  }
}
._screen-eight .page__link {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 998px) {
  ._screen-eight .page__link {
    flex-wrap: wrap;
  }
}
._screen-eight .page__link a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #000000;
}
@media (max-width: 500px) {
  ._screen-eight .page__link a {
    gap: 10px;
    font-size: 15px;
  }
  ._screen-eight .page__link a img {
    width: 30px;
  }
}
._screen-eight .page__right {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  background-image: url(../img/fbg.webp);
  background-size: 100% 100%;
  padding: 100px 150px;
  color: #fff;
}
@media (max-height: 700px) {
  ._screen-eight .page__right {
    padding: 60px 130px;
  }
}
@media (max-width: 500px) {
  ._screen-eight .page__right {
    width: calc(100% + 250px);
    position: relative;
  }
}
._screen-eight .page__head {
  font-weight: 600;
  font-size: 40px;
}
@media (max-width: 700px) {
  ._screen-eight .page__head {
    font-size: 24px;
    text-align: center;
  }
}
._screen-eight .page__subtitle {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.3;
}
@media (max-width: 700px) {
  ._screen-eight .page__subtitle {
    font-size: 12px;
    text-align: center;
  }
}
._screen-eight .page__form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 20px;
}
._screen-eight .page__form input {
  font-size: 16px;
  padding: 13px 20px;
  border-radius: 47px;
  background: linear-gradient(130.17deg, #FFFFFF 0%, #DDDDDD 100.46%);
  box-shadow: 0px 10px 20px rgba(7, 69, 43, 0.2);
}
._screen-eight .page__form input._error {
  border: 2px solid #DD1F36;
}
._screen-eight .page__form input[type=checkbox] {
  display: none;
}
._screen-eight .page__form input[type=checkbox] + label {
  position: relative;
  padding-left: 30px;
  max-width: 300px;
  line-height: 1.2;
}
._screen-eight .page__form input[type=checkbox] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/cec.webp);
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
}
._screen-eight .page__form input[type=checkbox]:checked + label::before {
  background-image: url(../img/cecc.webp);
}
._screen-eight .page__form button {
  width: 100%;
  text-align: center;
  padding: 12px;
  background: #F5F818;
  box-shadow: 0px 7px 22px rgba(250, 255, 0, 0.19);
  border-radius: 47px;
  color: #1F2631;
  transition: 0.3s;
}
._screen-eight .page__form button:hover {
  color: #fff;
  background: linear-gradient(65.66deg, #77AF29 -1.82%, #6FAF1A 43.13%, #67B025 131.24%);
  box-shadow: 0px 7px 19px rgba(21, 150, 0, 0.32);
}

.inp__wp._error span {
  display: block;
}
.inp__wp span {
  display: none;
}

._resp {
  overflow: hidden;
  transition: 0.3s;
}

@keyframes preload {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.popup__body {
  max-width: 500px;
  padding: 30px;
  font-size: 24px;
  font-family: "Gilroy";
  font-weight: 700;
  background: linear-gradient(104.6deg, #E1F8FF 0%, #B6B5FE 100%);
  color: #1F2631;
  line-height: 1.2;
  border-radius: 20px;
}
@media (max-width: 500px) {
  .popup__body {
    font-size: 22px;
  }
}

._videoo {
  cursor: pointer;
}
._videoo::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 60px;
  aspect-ratio: 1/1;
  background-image: url(../img/play.svg);
  z-index: 5;
  background-size: contain;
  background-repeat: no-repeat;
}
._videoo._play::before {
  opacity: 0;
}

.popup__slider {
  overflow: hidden;
}
.popup__slider .swiper-wrapper {
  display: flex;
}
.popup__slider .popup__arr {
  position: absolute;
  display: flex;
  width: 105%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  justify-content: space-between;
  display: flex;
}
.popup__slider .popup__arr ._arl {
  transform: rotate(180deg);
}
.popup__slider .popup__arr img {
  width: 50px;
}

._ice {
  position: absolute;
  height: 80% !important;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
._ice img {
  height: 100%;
}

.n {
  display: none;
}

.QOverlay {
  background-color: #000000;
  z-index: 9999;
}

.QLoader {
  background-color: #CCCCCC;
  height: 1px;
}

.QAmt {
  color: #333333;
  height: 50px;
  width: 100px;
  margin: -60px 0 -50px;
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(104.6deg, #E1F8FF 0%, #B6B5FE 100%);
  will-change: transform;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 9999;
  --procent-loaded: 0%;
}
.preloader__procent {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%);
}
.preloader ._n {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
}
.preloader ._n img {
  width: 300px;
  filter: grayscale(100%);
}
.preloader ._n::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: var(--procent-loaded);
  height: 100%;
  background-image: url(../img/logo.webp);
  background-size: 300px 100%;
  z-index: 2;
  background-position: left;
}

.preloader.active {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.preloader__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  background: #2F2F2F;
  will-change: transform;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

.preloader__percent {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--color-s);
  font-size: 80px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  mix-blend-mode: difference;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}