@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900&display=swap&subset=cyrillic-ext);
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/gilroy-black.woff);
  font-weight: 900;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/gilroy-bold.woff);
  font-weight: 700;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/gilroy-semibold.woff);
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/gilroy-medium.woff);
  font-weight: 500;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/gilroy-regular.woff);
  font-weight: 400;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/gilroy-ultralight.woff);
  font-weight: 300;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/gilroy-thin.woff);
  font-weight: 200;
}
@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;
}
* {
  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: 18px;
}

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

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

input,
button,
textarea {
  font-family: "Gilroy";
  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 {
  background: #1c242c;
  color: #fff;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0px 90px;
}
@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: 16px;
  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: 12px;
  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: 16px;
  padding: 10px 0px 5px 0px;
}
.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;
}

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

.page {
  flex: 1 1 auto;
}

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

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

.header {
  position: fixed;
  width: 100%;
  background: #1c242c;
  z-index: 10;
}
.header._scroll .header__container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.header__container {
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 50px;
  max-width: 1920px;
}
@media (max-width: 1500px) {
  .header__container {
    padding: 32px 15px;
  }
}
@media (max-width: 998px) {
  .header__container {
    padding: 30px 16px;
  }
}
.header__logo {
  width: 230px;
}
.header__logo img {
  width: 100%;
}
.header__menu ul {
  display: flex;
  gap: 20px;
}
.header__menu ul a {
  padding: 14px 46px;
  border-radius: 16px;
  color: #ffffff75;
  display: flex;
  background: rgba(193, 219, 255, 0.05);
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .header__menu ul a {
    padding: 14px 36px;
  }
}
.header__menu ul a._active {
  background: rgba(193, 219, 255, 0.2);
  color: #5ca3ff;
}
.header__menu ul a._active::before {
  position: relative;
  top: 0;
  left: 0;
  transition: 0.3s;
  content: "";
  width: 6px;
  border-radius: 50%;
  height: 6px;
  background-color: #f02;
}
@media (max-width: 998px) {
  .header__menu {
    position: absolute;
    bottom: 0;
    transform: translate(0px, 100%);
    width: 100%;
    left: 0;
    pointer-events: none;
  }
  .header__menu._active {
    pointer-events: all;
  }
  .header__menu._active ul {
    transform: translate(0);
  }
  .header__menu._active::before {
    opacity: 0.8;
  }
  .header__menu::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100vw;
    height: 100vh;
    transition: 0.3s;
    z-index: -1;
    opacity: 0;
    background: var(--Color_01, #1c242c);
    background-blend-mode: multiply;
  }
  .header__menu ul {
    flex-direction: column;
    width: 100%;
    transform: translate(0px, -200%);
    transition: 0.5s;
    background: #1c242c;
    padding: 16px;
  }
  .header__menu ul a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

._margin {
  margin: 0 30px;
}
@media (max-width: 1500px) {
  ._margin {
    margin: 0 15px;
  }
}
@media (max-width: 988px) {
  ._margin {
    margin: 0;
  }
}

.home {
  position: relative;
  margin-top: 110px;
  z-index: 1;
  position: relative;
}
.home::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  width: 90%;
  background-color: #f02;
  height: 1px;
  z-index: 2;
  max-width: 1700px;
}
@media (max-width: 998px) {
  .home::before {
    display: none;
  }
}
.home__container {
  padding-top: 90px;
}
@media (max-width: 998px) {
  .home__container {
    padding-top: 0px;
  }
}
.home__img {
  position: absolute;
  width: 100%;
  max-width: 1820px;
  width: calc(100vw - 60px);
  height: 100%;
  overflow: hidden;
  top: 0;
  transform: translate(-50%);
  left: 50%;
  z-index: -1;
}
@media (max-width: 998px) {
  .home__img {
    position: relative;
    width: 100%;
  }
}
.home__img img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
  border-radius: 26px;
  position: absolute;
}
@media (max-width: 998px) {
  .home__img img {
    position: relative;
    aspect-ratio: 361/295;
    object-position: 45%;
  }
}
.home__wp {
  margin-top: 90px;
  position: relative;
  z-index: 1;
  padding-top: 55px;
  max-width: 840px;
  padding-right: 40px;
  padding-bottom: 120px;
  margin-left: -90px;
  padding-left: 90px;
}
@media (max-width: 1500px) {
  .home__wp {
    max-width: 740px;
    margin-left: -75px;
    padding-left: 75px;
  }
}
@media (max-width: 998px) {
  .home__wp {
    padding: 0;
    margin: 0;
    max-width: 100%;
    margin-top: 24px;
  }
}
.home__wp::before {
  position: absolute;
  top: 0;
  z-index: -1;
  right: 0;
  content: "";
  width: calc(100% + 180px);
  height: calc(100% + 1px);
  background: url(../img/blur1.png);
  background-size: 100% 100%;
  clip-path: polygon(0 0, 89.5% 0%, 100% 23%, 100% 100%, 0% 100%, 0% 50%);
  border-radius: 0px 0px 0px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 1920px) {
  .home__wp::before {
    width: calc(50vw + 70px);
  }
}
@media (max-width: 1890px) {
  .home__wp::before {
    width: calc(50vw + 80px);
  }
}
@media (max-width: 1500px) {
  .home__wp::before {
    width: 100%;
  }
}
@media (max-width: 998px) {
  .home__wp::before {
    display: none;
  }
}
.home__title {
  font-size: 60px;
  font-weight: 700;
}
.home__title span {
  color: #5ca3ff;
}
@media (max-width: 1500px) {
  .home__title {
    font-size: 50px;
  }
}
@media (max-width: 998px) {
  .home__title {
    font-size: 60px;
  }
  .home__title span {
    display: block;
  }
}
.home__text {
  margin-top: 15px;
  font-size: 28px;
  line-height: 1.3;
}
@media (max-width: 1500px) {
  .home__text {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .home__text {
    font-size: 20px;
    margin-top: 5px;
  }
}
.home__registration a {
  transition: 0.3s;
  position: relative;
  border-radius: 16px;
  background: var(--Color_02, #f02);
  display: flex;
  max-width: max-content;
  color: #fff;
  padding: 15px 60px;
  margin-top: 37px;
  font-weight: 500;
  font-size: 28px;
  gap: 10px;
  align-items: center;
  position: relative;
}
.home__registration a:hover {
  background: #5bc470;
  color: #fff;
}
.home__registration a:hover div img {
  opacity: 0;
}
.home__registration a:hover div img:nth-child(2) {
  opacity: 1;
}
@media (max-width: 998px) {
  .home__registration a:hover div img:nth-child(2) {
    opacity: 0;
  }
  .home__registration a:hover div img:nth-child(3) {
    opacity: 1;
  }
}
.home__registration a:hover::before {
  background: #5bc470;
}
.home__registration a::before {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%);
  content: "";
  border-radius: 16px;
  width: 202px;
  height: 49px;
  opacity: 0.5;
  z-index: -2;
  background: var(--Color_07, #f02);
  filter: blur(20px);
}
@media (max-width: 998px) {
  .home__registration a {
    max-width: 100%;
    margin-top: 25px;
  }
}
.home__registration a div {
  position: absolute;
  width: 32px;
  left: 0;
  transform: translate(-100%, -50%);
}
@media (max-width: 998px) {
  .home__registration a div {
    position: relative;
    transform: translate(0);
    height: 20px;
  }
}
@media (max-width: 998px) {
  .home__registration a div {
    width: 20px;
  }
}
.home__registration a div img {
  width: 100%;
  left: -14px;
  top: 50%;
  transform: translate(0px, -50%);
  position: absolute;
  opacity: 1;
  animation: arr 2s infinite;
}
@keyframes arr {
  0% {
    left: -14px;
  }
  50% {
    left: -20px;
  }
  100% {
    left: -14px;
  }
}
.home__registration a div img:nth-child(2), .home__registration a div img:nth-child(3) {
  opacity: 0;
}
@media (max-width: 998px) {
  .home__registration a div img {
    animation: none;
    top: 0;
    left: 0;
    transform: translate(0);
  }
  .home__registration a div img:nth-child(3) {
    opacity: 1;
  }
  .home__registration a div img:nth-child(1), .home__registration a div img:nth-child(2) {
    opacity: 0;
  }
}
.home__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1250px;
  gap: 20px;
  transform: translate(0px, 50%);
  position: absolute;
  bottom: 0;
  z-index: 2;
}
@media (max-width: 998px) {
  .home__list {
    position: relative;
  }
}
.home__list._active li {
  transform: translate(0);
  opacity: 1;
}
.home__list li {
  background-image: url(../img/bg.svg);
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  font-size: 20px;
  padding: 20px 35px;
  gap: 15px;
  color: #1c242c;
  transition: 1s;
}
@media (max-width: 1500px) {
  .home__list li {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .home__list li {
    font-size: 14px;
  }
}
@media (max-width: 998px) {
  .home__list li {
    font-size: 20px;
  }
}
.home__list li img {
  width: 31px;
}
@media (min-width: 998px) {
  .home__list li {
    transform: translate(0px, 50%);
    opacity: 0;
  }
}
.home__list li:nth-child(2) {
  animation-delay: 1s;
  transition-delay: 0.5s;
}
.home__list li:nth-child(3) {
  animation-delay: 1.5s;
  transition-delay: 1s;
}
@keyframes lii {
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
.home__list li img:nth-child(2) {
  display: none;
}
@media (max-width: 998px) {
  .home__list {
    margin: 0;
    margin-top: 15px;
    transform: translate(0px);
    grid-template-columns: 1fr;
  }
  .home__list li {
    background: none;
    padding: 0;
    color: #fff;
  }
  .home__list li img:nth-child(2) {
    display: block;
  }
  .home__list li img:nth-child(1) {
    display: none;
  }
}

.tehno {
  position: relative;
  z-index: 1;
}
.tehno__el {
  position: absolute;
  z-index: -1;
}
@media (max-width: 998px) {
  .tehno__el {
    display: none;
  }
}
.tehno__el_1 {
  width: 37vw;
  right: -15%;
  top: 40%;
}
.tehno__el_2 {
  width: 98%;
  top: 10%;
  left: 10%;
}
.tehno__el img {
  width: 100%;
}
.tehno__container {
  margin-top: 155px;
}
@media (max-width: 998px) {
  .tehno__container {
    margin-top: 60px;
  }
}
.tehno__title {
  font-size: 54px;
  font-weight: 700;
}
@media (max-width: 998px) {
  .tehno__title {
    font-size: 36px;
  }
}
.tehno__subtitle {
  font-size: 28px;
  margin-top: 11px;
  line-height: 1.3;
}
@media (max-width: 998px) {
  .tehno__subtitle {
    font-size: 18px;
  }
}
.tehno__block {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-top: 120px;
}
@media (max-width: 998px) {
  .tehno__block {
    gap: 30px;
    margin-top: 30px;
  }
}
.tehno__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.tehno__item._active .tehno__content,
.tehno__item._active .tehno__img {
  opacity: 1 !important;
  transform: translate(0) !important;
}
@media (max-width: 998px) {
  .tehno__item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (min-width: 998px) {
  .tehno__item:nth-child(even) .tehno__head::before {
    background: linear-gradient(90deg, rgba(255, 0, 34, 0) 0%, var(--Color_02, #f02) 100%);
  }
  .tehno__item:nth-child(even) .tehno__img {
    order: 2;
    display: flex;
    justify-content: end;
  }
}
.tehno__img {
  transform: translate(0px, 25%);
  transition: 1.3s;
  opacity: 0;
}
.tehno__img img {
  width: 85%;
}
@media (max-width: 998px) {
  .tehno__img img {
    width: 100%;
  }
}
.tehno__content {
  transform: translate(0px, 25%);
  transition: 1.3s;
  transition-delay: 0.5s;
  opacity: 0;
}
.tehno__head {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
@media (max-width: 1500px) {
  .tehno__head {
    font-size: 36px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.tehno__head::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(90deg, var(--Color_02, #f02) 0%, rgba(255, 0, 34, 0) 100%);
  height: 2px;
  width: 100%;
}
.tehno__info {
  font-size: 22px;
  line-height: 1.3;
}
.tehno__info ul {
  padding-left: 25px;
}
.tehno__info li {
  list-style: disc;
}
@media (max-width: 1500px) {
  .tehno__info {
    font-size: 18px;
  }
}

.speacer {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  background: #c5c7c9;
  color: #1c242c;
}
@media (max-width: 998px) {
  .speacer {
    border-radius: 0;
  }
}
.speacer__container {
  padding-top: 90px;
  padding-bottom: 90px;
  margin-top: 70px;
}
@media (max-width: 998px) {
  .speacer__container {
    padding-top: 43px;
    padding-bottom: 53px;
  }
}
.speacer__title {
  font-size: 54px;
  font-weight: 700;
}
@media (max-width: 998px) {
  .speacer__title {
    font-size: 36px;
  }
}
.speacer__block {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  column-gap: 20px;
}
@media (max-width: 1500px) {
  .speacer__block {
    column-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
.speacer__block._active .speacer__item {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 998px) {
  .speacer__block {
    grid-template-columns: 1fr;
    margin-top: 22px;
    gap: 22px;
  }
}
.speacer__item {
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translate(0px, 20%);
  transition: 0.8s;
}
.speacer__img {
  flex: 0 0 158px;
}
@media (max-width: 1500px) {
  .speacer__img {
    flex: 0 0 200px;
  }
}
@media (max-width: 500px) {
  .speacer__img {
    flex: 0 0 30%;
  }
}
.speacer__img img {
  width: 100%;
}
.speacer__content {
  display: flex;
  flex-direction: column;
}
.speacer__name {
  font-size: 24px;
  margin-top: 15px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1500px) {
  .speacer__name {
    font-size: 20px;
    margin-top: 80px;
  }
}
@media (max-width: 500px) {
  .speacer__name {
    order: 3;
    font-size: 22px;
    margin-top: 13px;
  }
}
.speacer__job {
  margin-top: 8px;
  line-height: 1.3;
}
@media (max-width: 500px) {
  .speacer__job {
    order: 4;
  }
}
.speacer__line {
  margin-top: auto;
  background: linear-gradient(90deg, var(--Color_01, #1c242c) 0%, rgba(28, 36, 44, 0) 100%);
  height: 2px;
  width: 100%;
}
@media (max-width: 998px) {
  .speacer__line {
    margin-top: 8px;
  }
}

.programm {
  background: var(--Color_04, #c1dbff);
  margin-top: -140px;
  color: #1c242c;
  position: relative;
  z-index: 0;
}
.programm::before, .programm::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translate(0px, -50%);
  content: "";
  background: linear-gradient(180deg, #1c242c 11.19%, #c1dbff 69.52%);
  width: 100%;
  height: 400px;
}
.programm::after {
  bottom: 0;
  top: auto;
  z-index: -2;
  transform: rotate(180deg) translate(0px, -50%);
}
.programm__el {
  position: absolute;
  z-index: -1;
}
@media (max-width: 998px) {
  .programm__el {
    display: none;
  }
}
.programm__el_1 {
  width: 37vw;
  right: -15%;
  top: 50%;
}
.programm__el_2 {
  width: 34vw;
  left: -17vw;
  bottom: 0;
}
.programm__el img {
  width: 100%;
}
.programm__contaiiner {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media (max-width: 998px) {
  .programm__contaiiner {
    padding-bottom: 150px;
  }
}
.programm__title {
  font-size: 54px;
  font-weight: 700;
}
.programm__block {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.programm__item {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 20px;
}
@media (max-width: 998px) {
  .programm__item {
    background: linear-gradient(43deg, rgba(255, 255, 255, 0.5) 3.25%, rgba(255, 255, 255, 0.2) 63.59%);
    grid-template-columns: 1fr;
    padding: 32px 14px;
    border-radius: 8px;
  }
}
.programm__time {
  font-size: 32px;
  font-weight: 500;
  padding-top: 45px;
  text-align: right;
}
@media (max-width: 1500px) {
  .programm__time {
    font-size: 28px;
  }
}
@media (max-width: 998px) {
  .programm__time {
    text-align: left;
    padding-top: 0;
    position: relative;
    font-size: 24px;
    padding-bottom: 10px;
    color: #f02;
  }
  .programm__time::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background: linear-gradient(90deg, var(--Color_02, #f02) 0%, rgba(255, 0, 34, 0) 100%);
    height: 2px;
    width: 70%;
  }
}
.programm__wp {
  border-radius: 8px;
  padding: 45px 50px;
  background: linear-gradient(43deg, rgba(255, 255, 255, 0.5) 3.25%, rgba(255, 255, 255, 0.2) 63.59%);
}
@media (max-width: 998px) {
  .programm__wp {
    background: transparent;
    padding: 0;
  }
}
.programm__head {
  font-size: 32px;
  color: #f02;
  margin-bottom: 25px;
  font-weight: 500;
}
@media (max-width: 1500px) {
  .programm__head {
    font-size: 28px;
  }
}
@media (max-width: 998px) {
  .programm__head {
    font-size: 26px;
    color: #000;
    margin-bottom: 10px;
  }
}
.programm__quest {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 998px) {
  .programm__quest {
    margin-top: 5px;
  }
}
.programm__txt {
  margin-top: 11px;
  line-height: 1.3;
}
.programm__txt ul {
  padding-left: 25px;
}
@media (max-width: 998px) {
  .programm__txt ul {
    font-size: 16px;
    padding-left: 15px;
  }
}
.programm__txt ul li {
  list-style: disc;
}

.location {
  margin-top: -100px;
  position: relative;
  z-index: 1;
  border-radius: 16px;
  background: #fff;
  color: #1c242c;
  overflow: hidden;
}
@media (max-width: 998px) {
  .location {
    border-radius: 0;
  }
}
.location__content {
  max-width: 50%;
  padding-top: 79px;
  padding-bottom: 75px;
}
@media (max-width: 998px) {
  .location__content {
    max-width: 100%;
    padding-top: 45px;
  }
}
.location__title {
  font-size: 54px;
  font-weight: 700;
}
@media (max-width: 998px) {
  .location__title {
    font-size: 36px;
  }
}
.location__list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 20px;
  max-width: 400px;
}
.location__list li {
  display: grid;
  grid-template-columns: 33px 1fr;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.location__list li img {
  max-width: 100%;
  margin: 0px auto;
}
.location__text {
  margin-top: 15px;
  color: #f02;
  line-height: 1.2;
  font-size: 22px;
}
@media (max-width: 1500px) {
  .location__text {
    font-size: 18px;
  }
}
.location__links {
  margin-top: 20px;
  display: flex;
  gap: 70px;
}
@media (max-width: 1300px) {
  .location__links {
    gap: 15px;
    flex-direction: column;
  }
}
.location__links a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: max-content;
  transition: 0.3s;
}
.location__links a:hover {
  transform: scale(1.05);
}
.location__registration a {
  transition: 0.3s;
  position: relative;
  border-radius: 16px;
  background: var(--Color_02, #f02);
  display: flex;
  max-width: max-content;
  color: #fff;
  padding: 15px 60px;
  margin-top: 37px;
  font-weight: 500;
  font-size: 28px;
  gap: 10px;
  align-items: center;
  position: relative;
}
.location__registration a:hover {
  background: #5bc470;
  color: #fff;
}
.location__registration a:hover div img {
  opacity: 0;
}
.location__registration a:hover div img:nth-child(2) {
  opacity: 1;
}
@media (max-width: 998px) {
  .location__registration a:hover div img:nth-child(2) {
    opacity: 0;
  }
  .location__registration a:hover div img:nth-child(3) {
    opacity: 1;
  }
}
.location__registration a:hover::before {
  background: #5bc470;
}
.location__registration a::before {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%);
  content: "";
  border-radius: 16px;
  width: 202px;
  height: 49px;
  opacity: 0.5;
  z-index: -2;
  background: var(--Color_07, #f02);
  filter: blur(20px);
}
@media (max-width: 998px) {
  .location__registration a {
    max-width: 100%;
    margin-top: 25px;
  }
}
.location__registration a div {
  position: absolute;
  width: 32px;
  left: 0;
  transform: translate(-100%, -50%);
}
@media (max-width: 998px) {
  .location__registration a div {
    position: relative;
    height: 20px;
    transform: translate(0);
  }
}
@media (max-width: 998px) {
  .location__registration a div {
    width: 20px;
  }
}
.location__registration a div img {
  width: 100%;
  left: -14px;
  top: 50%;
  transform: translate(0px, -50%);
  position: absolute;
  opacity: 1;
  animation: arr 3s infinite;
}
@keyframes arr {
  0% {
    left: -14px;
  }
  50% {
    left: -20px;
  }
  100% {
    left: -14px;
  }
}
.location__registration a div img:nth-child(2), .location__registration a div img:nth-child(3) {
  opacity: 0;
}
@media (max-width: 998px) {
  .location__registration a div img {
    animation: none;
    top: 0;
    left: 0;
    transform: translate(0);
  }
  .location__registration a div img:nth-child(3) {
    opacity: 1;
  }
  .location__registration a div img:nth-child(1), .location__registration a div img:nth-child(2) {
    opacity: 0;
  }
}
.location__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
@media (max-width: 998px) {
  .location__img {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.location__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__container {
  margin-top: 80px;
  margin-bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 998px) {
  .footer__container {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.footer__logo {
  width: 150px;
}
.footer__logo img {
  width: 100%;
}
.footer__politica {
  color: #c1dbff;
  text-decoration: underline;
  margin-top: 30px;
}
@media (max-width: 998px) {
  .footer__politica {
    font-size: 16px;
  }
}
.footer__txt {
  margin-top: 10px;
  opacity: 0.5;
  font-size: 14px;
}
@media (max-width: 998px) {
  .footer__txt {
    font-size: 12px;
  }
}

.popup .popup__first {
  opacity: 1;
}
.popup .popup__last {
  opacity: 0;
  position: absolute;
  top: 50%;
  pointer-events: none;
  left: 50%;
  line-height: 1.3;
  width: 90%;
  font-size: 42px;
  font-weight: 600;
  color: #5bc470;
  text-align: center;
  transform: translate(-50%, -50%);
}
@media (max-width: 998px) {
  .popup .popup__last {
    font-size: 22px;
  }
}
.popup._ready .popup__first {
  opacity: 0;
}
.popup._ready .popup__last {
  opacity: 1;
}
.popup__body {
  max-width: 1280px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1c242c;
  border-radius: 16px;
  padding: 60px;
  padding-bottom: 145px;
}
@media (max-width: 998px) {
  .popup__body {
    width: 95%;
    padding: 45px 20px;
  }
}
.popup__close {
  top: 31px;
  right: 33px;
  width: 24px;
}
@media (max-width: 998px) {
  .popup__close {
    top: 20px;
    right: 23px;
    width: 20px;
  }
}
.popup__close:hover img:nth-child(2) {
  opacity: 1;
}
.popup__close img {
  width: 100%;
}
.popup__close img:nth-child(2) {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}
.popup__title {
  font-size: 42px;
  text-align: center;
  font-weight: 700;
}
.popup__subtitle {
  color: #f02;
  margin-top: 10px;
  text-align: center;
}
.popup__lab {
  margin-top: 30px;
  opacity: 0.2;
  font-size: 16px;
  padding-left: 11px;
}
.popup__regist {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  line-height: 1.22;
}
@media (max-width: 998px) {
  .popup__regist {
    font-size: 12px;
    margin-top: 30px;
    text-align: left;
  }
}
.popup__regist a {
  font-weight: 600;
  text-decoration: underline;
  color: #000;
}
.popup .select {
  margin-top: 5px;
}
@media (max-width: 998px) {
  .popup .select {
    transform: translate(0px);
  }
}
.popup .select__value {
  color: #000;
  width: max-content;
  padding: 0px 11px;
}
.popup .select__value::before {
  background-image: url(../img/list.svg);
}
.popup .select__value::after {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: -5px;
  content: "";
  background-image: url(../img/good.svg);
  width: 11px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
}
.popup .select__options {
  background-color: #fff;
  width: max-content;
}
.popup .select__options div {
  font-size: 16px;
}
.popup .select__options div:hover {
  background: transparent;
  color: #000;
}
.popup button {
  margin-top: 45px;
  font-weight: 500;
  font-size: 28px;
  z-index: 1;
  position: relative;
}
.popup button span {
  gap: 10px;
  align-items: center;
  transition: 0.3s;
  z-index: 4;
  position: relative;
  border-radius: 16px;
  background-color: #a3a3a3;
  border: 1px solid #a3a3a3;
  display: flex;
  max-width: max-content;
  color: #fff;
  padding: 15px 60px;
}
@media (max-width: 998px) {
  .popup button img:nth-child(3) {
    display: none;
  }
}
.popup button._ready span {
  background: var(--Color_02, #5bc470);
  border: 1px solid #5bc470;
}
.popup button._ready img:nth-child(3) {
  display: none;
}
.popup button._ready:hover span {
  border: 1px solid rgba(91, 196, 112, 0.3);
  background: #fff;
  color: #5bc470;
}
.popup button._ready:hover::before {
  z-index: -5;
  background: var(--Color_07, #5bc470);
}
@media (max-width: 998px) {
  .popup button._ready:hover img:nth-child(3), .popup button._ready:hover img:nth-child(2) {
    display: none;
  }
  .popup button._ready:hover img:nth-child(1) {
    display: block;
  }
}
.popup button::before {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%);
  content: "";
  border-radius: 16px;
  width: 152px;
  height: 39px;
  opacity: 0.5;
  z-index: -2;
  background: var(--Color_07, #a3a3a3);
  filter: blur(20px);
}
@media (max-width: 998px) {
  .popup button {
    max-width: 100%;
    margin-top: 25px;
  }
}
.popup button img {
  width: 32px;
  left: -14px;
  top: 50%;
  transform: translate(-100%, -50%);
  position: absolute;
}
.popup button img:nth-child(2) {
  display: none;
}
@media (max-width: 998px) {
  .popup button img {
    width: 20px;
    position: relative;
    top: 0;
    left: 0;
    justify-content: center;
    transform: translate(0);
  }
  .popup button img:nth-child(2) {
    display: block;
  }
  .popup button img:nth-child(1) {
    display: none;
  }
}
.popup form {
  max-width: 600px;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 998px) {
  .popup form {
    margin-top: 20px;
  }
}
.popup form .inp-wp {
  margin-top: 15px;
  border-bottom: 1px solid #1c242c36;
}
.popup form .inp-wp._error {
  border-bottom: 1px solid #f02;
}
.popup form .inp-wp._read {
  position: relative;
}
.popup form .inp-wp._read::before {
  position: absolute;
  top: 55%;
  transform: translate(0px, -50%);
  left: -5px;
  content: "";
  background-image: url(../img/good.svg);
  width: 11px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
}
.popup form input {
  padding: 10px;
  width: 100%;
  font-size: 16px;
}
.popup form input::placeholder {
  font-size: 16px;
  color: #1c242c36;
}
.popup form input[data-value=Телефон] {
  color: #1c242c36;
}
.popup form input[data-value=Телефон]._go {
  color: inherit;
}

._paralax,
._paralax-rew {
  transition: 0.2s;
}

body._srift .home__title,
body._srift .tehno__title,
body._srift .tehno__head {
  font-weight: 600;
}
body._srift .home__text,
body._srift .tehno__subtitle,
body._srift .tehno__info,
body._srift .speacer__cif,
body._srift .programm__txt {
  font-weight: 300;
}