@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;
  /* set name */
  src: url(../fonts/Gilroy-Regular_0.woff);
  /* url of the font */
  font-weight: 400;
}
@font-face {
  font-family: Gilroy;
  /* set name */
  src: url(../fonts/Gilroy-Bold_0.woff);
  /* url of the font */
  font-weight: 700;
}
@font-face {
  font-family: Gilroy;
  /* set name */
  src: url(../fonts/Gilroy-Medium_0.woff);
  /* url of the font */
  font-weight: 500;
}
@font-face {
  font-family: Gilroy;
  /* set name */
  src: url(../fonts/Gilroy-Semibold_0.woff);
  /* url of the font */
  font-weight: 600;
}
@font-face {
  font-family: Gilroy;
  /* set name */
  src: url(../fonts/Gilroy-Light_0.woff);
  /* url of the font */
  font-weight: 300;
}
@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: 16px;
}

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 {
  color: #fff;
  background: #010812;
}
body._lock {
  overflow: hidden;
}

._container {
  max-width: 1410px;
  margin: 0px auto;
  padding: 0px 20px;
}
@media (max-width: 998px) {
  ._container {
    padding: 0px 12px;
  }
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.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 {
  position: fixed;
  background: #010812;
  top: 0;
  z-index: 20;
  width: 100%;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px !important;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 998px) {
  .header__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #4eaede;
}
@media (max-width: 1300px) {
  .header__logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.header__logo img {
  width: 224px;
}
@media (max-width: 998px) {
  .header__logo img {
    width: 184px;
  }
}
@media (max-width: 998px) {
  .header__logo {
    font-size: 14px;
  }
}
.header__menu {
  display: flex;
}
@media (max-width: 998px) {
  .header__menu {
    flex-direction: column;
    align-items: center;
    transform: translate(0px, -100%);
    transition: 0.6s;
  }
  .header__menu._active {
    transform: translate(0px, 0px);
  }
}
.header__menu ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media (max-width: 1300px) {
  .header__menu ul {
    gap: 22px;
  }
}
@media (max-width: 998px) {
  .header__menu ul {
    flex-direction: column;
    font-weight: 600;
  }
}
.header__menu ul a {
  color: #fff;
  transition: 0.3s;
  font-size: 20px;
}
@media (max-width: 1300px) {
  .header__menu ul a {
    font-size: 16px;
  }
}
.header__menu ul a:hover {
  color: #4eaede;
}
@media (max-width: 998px) {
  .header__menu {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: #0c0101;
    padding: 25px;
    padding-top: 115px;
  }
}
.header__btn {
  display: none;
}
@media (max-width: 998px) {
  .header__btn {
    display: flex;
    max-width: 500px;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 45px;
    padding: 22px 20px;
    display: flex;
    background: #e40425;
    align-items: center;
    border-radius: 21px;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    position: relative;
    text-align: center;
    transition: 0.3s;
  }
  .header__btn:hover {
    color: #e40425;
    background: #cbd9ef;
  }
}
.icon-menu {
  display: none;
}
@media (max-width: 998px) {
  .icon-menu {
    position: relative;
    z-index: 3;
    display: block;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 22px;
    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: 6px;
    border-radius: 6px;
    background-color: #4eaede;
  }
  .icon-menu span:first-child {
    top: 0px;
  }
  .icon-menu span:nth-child(2) {
    opacity: 0;
  }
  .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) translate(0px, -3px);
    top: calc(50% - 1px);
  }
  .icon-menu._active span:last-child {
    transform: rotate(45deg) translate(0px, 3px);
    bottom: calc(50% - 1px);
  }
}

.page {
  flex: 1 1 auto;
}

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

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

.home {
  margin-top: 100px;
  position: relative;
}
.home__video {
  border-radius: 12px;
  position: absolute;
  width: calc(100% - 40px);
  left: 50%;
  top: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
@media (max-width: 900px) {
  .home__video {
    width: 100%;
    border-radius: 0;
  }
}
.home__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 110px;
  padding-bottom: 100px;
}
@media (max-width: 900px) {
  .home__container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 900px) {
  .home__logo {
    display: none;
  }
}
.home__block {
  margin-top: 66px;
  background: rgba(1, 8, 18, 0.2);
  backdrop-filter: blur(15px);
  width: calc(100% - 40px);
  max-width: 1250px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px;
  padding-top: 70px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 900px) {
  .home__block {
    text-align: left;
    align-items: stretch;
    padding: 25px 17px;
    padding-bottom: 17px;
    margin-top: 0;
    width: 100%;
  }
}
.home__title {
  font-weight: 700;
  font-size: 64px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .home__title {
    font-size: 36px;
  }
}
.home__subtitle {
  font-size: 48px;
  margin-top: 15px;
}
@media (max-width: 998px) {
  .home__subtitle {
    font-weight: 500;
    font-size: 24px;
    margin-top: 10px;
  }
}
.home__wp {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
  max-width: 965px;
  width: 100%;
}
@media (max-width: 1200px) {
  .home__wp {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .home__wp {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }
}
.home__item {
  text-align: center;
  font-size: 20px;
}
@media (max-width: 900px) {
  .home__item {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
}
.home__item p {
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .home__item p {
    order: 2;
    margin-bottom: 0;
    margin-top: 5px;
  }
}
@media (min-width: 900px) {
  .home__item:nth-child(2) {
    margin-top: -11px;
  }
  .home__item:nth-child(2) span::before {
    bottom: auto;
    top: 0;
  }
}
.home__item span {
  font-weight: 600;
  font-size: 24px;
  position: relative;
  display: block;
  padding: 6px 0;
}
.home__item span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  background: linear-gradient(90deg, #4eaede 0%, #cbd9ef 100%);
  height: 1px;
}
.home__btn {
  cursor: pointer;
  padding: 22px 40px;
  margin-top: 72px;
  display: flex;
  background: #e40425;
  align-items: center;
  border-radius: 21px;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  position: relative;
  margin-bottom: -34px;
  text-align: center;
  justify-content: center;
  transition: 0.3s;
}
.home__btn:hover {
  color: #e40425;
  background: #cbd9ef;
}
@media (max-width: 900px) {
  .home__btn {
    margin-bottom: 0;
    margin-top: 30px;
    padding: 20px;
  }
}
.home__btn::before, .home__btn::after {
  position: absolute;
  top: 50%;
  pointer-events: none;
  right: -44px;
  content: "";
  transform: translate(100%, -50%);
  background-image: url(../img/Arrow.svg);
  width: 90px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}
@media (max-width: 900px) {
  .home__btn::before, .home__btn::after {
    display: none;
  }
}
.home__btn::after {
  left: -44px;
  right: auto;
  background-image: url(../img/Arrow2.svg);
  transform: translate(-100%, -50%);
}

.garancy {
  margin: 0px 20px;
  margin-top: 60px;
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 998px) {
  .garancy {
    margin: 40px 0px;
  }
}
.garancy__stars {
  position: absolute;
  width: 100%;
  height: 100%;
}
.garancy__stars div {
  position: absolute;
}
.garancy__stars div::before {
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  content: "";
  width: 120%;
  height: 120%;
  background-image: url(../img/z1.png);
  background-size: contain;
  opacity: 0;
}
.garancy__stars div._v2::before {
  background-image: url(../img/z2.png);
}
.garancy__stars div.active::before {
  opacity: 1;
}
.garancy__stars div.active img {
  opacity: 1;
}
.garancy__stars div img {
  width: 100%;
  opacity: 0.2;
  transition: 1s;
}
.garancy__stars div:nth-child(1) {
  width: 33px;
  top: 0;
  left: 18%;
}
@media (max-width: 800px) {
  .garancy__stars div:nth-child(1) {
    display: none;
  }
}
.garancy__stars div:nth-child(2) {
  width: 31px;
  top: 20%;
  left: 33%;
}
@media (max-width: 800px) {
  .garancy__stars div:nth-child(2) {
    width: 23px;
    left: 15%;
    top: 3%;
  }
}
.garancy__stars div:nth-child(3) {
  width: 23px;
  top: 70%;
  left: 5%;
}
@media (max-width: 800px) {
  .garancy__stars div:nth-child(3) {
    display: none;
  }
}
.garancy__stars div:nth-child(4) {
  width: 46px;
  top: 90%;
  left: 28%;
}
@media (max-width: 800px) {
  .garancy__stars div:nth-child(4) {
    display: none;
  }
}
.garancy__stars div:nth-child(5) {
  width: 43px;
  top: 0%;
  left: 60%;
}
@media (max-width: 1400px) {
  .garancy__stars div:nth-child(5) {
    left: 63%;
  }
}
@media (max-width: 1100px) {
  .garancy__stars div:nth-child(5) {
    left: 65%;
  }
}
@media (max-width: 800px) {
  .garancy__stars div:nth-child(5) {
    display: none;
  }
}
.garancy__stars div:nth-child(6) {
  width: 33px;
  top: 20%;
  left: 86%;
}
@media (max-width: 800px) {
  .garancy__stars div:nth-child(6) {
    top: 0;
    left: 80%;
    transform: translate(0px, -40%);
  }
}
.garancy__stars div:nth-child(7) {
  width: 33px;
  top: 83%;
  left: 65%;
}
@media (max-width: 800px) {
  .garancy__stars div:nth-child(7) {
    display: none;
  }
}
.garancy__stars div:nth-child(8) {
  width: 23px;
  top: 70%;
  left: 70%;
}
@media (max-width: 800px) {
  .garancy__stars div:nth-child(8) {
    left: 75%;
    top: 65%;
    width: 33px;
  }
}
.garancy__stars div:nth-child(9) {
  width: 44px;
  top: 100%;
  left: 90%;
}
@media (max-width: 800px) {
  .garancy__stars div:nth-child(9) {
    display: none;
  }
}
.garancy__lines {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 998px) {
  .garancy__lines {
    grid-template-columns: 1fr 180px 1fr;
    gap: 13px;
  }
}
.garancy__lines img {
  width: 100%;
}
.garancy__lines span {
  height: 1px;
  background: linear-gradient(90deg, #4eaede 0%, #cbd9ef 100%);
  width: 100%;
}
.garancy__lines span:first-child {
  background: linear-gradient(90deg, #cbd9ef 0%, #4eaede 100%);
}
._title {
  font-weight: 700;
  font-size: 38px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 998px) {
  ._title {
    font-size: 28px;
  }
}

.about {
  position: relative;
  z-index: 1;
}
.about__fon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%);
  width: 2000px;
  z-index: -1;
}
@media (min-width: 1920px) {
  .about__fon {
    width: 109vw;
  }
}
@media (max-width: 500px) {
  .about__fon {
    width: 600px;
    top: -40px;
  }
}
.about__fon img {
  width: 100%;
}
.about__fon img:nth-child(2) {
  display: none;
}
@media (max-width: 500px) {
  .about__fon img:nth-child(2) {
    display: block;
  }
}
@media (max-width: 500px) {
  .about__fon img:nth-child(1) {
    display: none;
  }
}
.about__container {
  max-width: 1600px;
  padding-top: 50px;
}
.about__text {
  font-size: 28px;
  margin-top: 23px;
}
@media (max-width: 900px) {
  .about__text {
    font-size: 18px;
    margin-top: 18px;
  }
}

.program {
  position: relative;
  z-index: 1;
}
.program__container {
  margin-top: 159px;
}
@media (max-width: 769px) {
  .program__container {
    margin-top: 60px;
  }
}
.program__btn {
  cursor: pointer;
  padding: 11px 18px;
  border-radius: 16px;
  color: #fff;
  background: #e40425;
  font-weight: 600;
  font-size: 18px;
  margin: 0px auto;
  margin-top: 22px;
  text-align: center;
  max-width: max-content;
  display: block;
  transition: 0.3s;
}
.program__btn:hover {
  color: #e40425;
  background: #cbd9ef;
}
@media (max-width: 998px) {
  .program__btn {
    margin-top: 26px;
  }
}
.program__block {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.program__item {
  display: grid;
  grid-template-columns: 170px 1fr max-content;
  gap: 40px;
  padding: 35px 83px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  border-radius: 42px;
}
@media (max-width: 998px) {
  .program__item {
    padding: 22px 20px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 700px) {
  .program__item {
    border-radius: 36px;
  }
}
.program__item:not(._no-border) {
  background: linear-gradient(90deg, #4eaede 0%, #133263 100%);
}
.program__item:not(._no-border) .program__time,
.program__item:not(._no-border) .program__content {
  font-weight: 600;
}
.program__item:not(._no-border)._reverce-border {
  background: linear-gradient(90deg, #133263 0%, #4eaede 100%);
}
.program__item:not(._no-border)::before {
  border-radius: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #010812;
  z-index: -1;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
@media (max-width: 700px) {
  .program__item:not(._no-border)::before {
    border-radius: 34px;
  }
}
.program__time {
  font-weight: 400;
  font-size: 20px;
  color: #4eaede;
}
.program__content {
  max-width: 740px;
  font-weight: 400;
}
.program__content h4 {
  font-size: 24px;
}
@media (max-width: 700px) {
  .program__content h4 {
    font-size: 22px;
  }
}
.program__content p {
  margin-top: 6px;
  font-size: 20px;
  color: #4eaede;
}
@media (max-width: 700px) {
  .program__content p {
    font-size: 16px;
    margin-top: 17px;
  }
}
.program__more {
  cursor: pointer;
  padding: 11px 40px;
  font-weight: 600;
  font-size: 18px;
  color: #0c0101;
  text-align: center;
  border-radius: 16px;
  display: block;
  background: #4eaede;
  max-width: max-content;
  transition: 0.3s;
}
.program__more:hover {
  background: #cbd9ef;
  color: #e40425;
}
@media (max-width: 700px) {
  .program__more {
    padding: 11px 25px;
    margin-top: 3px;
  }
}

.speakers__container {
  margin-top: 120px;
}
@media (max-width: 998px) {
  .speakers__container {
    margin-top: 65px;
  }
}
.speakers__block {
  margin-top: 50px;
  overflow: visible;
}
@media (max-width: 800px) {
  .speakers__block .swiper-wrapper {
    flex-direction: column !important;
    gap: 34px;
  }
}
.speakers__slide {
  background: #cbd9ef;
  border-radius: 24px;
  color: #010812;
  padding-left: 140px;
  padding-bottom: 25px;
  padding-right: 10px;
  padding-top: 10px;
  position: relative;
}
@media (max-width: 800px) {
  .speakers__slide {
    text-align: center;
    padding: 18px;
  }
}
.speakers__img {
  width: 140px;
  border-radius: 36px;
  position: absolute;
  left: -12px;
  top: -17px;
}
@media (max-width: 800px) {
  .speakers__img {
    left: 50%;
    transform: translate(-50%);
    width: 114px;
  }
}
.speakers__img::before {
  background-repeat: no-repeat;
  position: absolute;
  top: 100%;
  transform: translate(-50%, -35%);
  left: 50%;
  content: "";
  background-image: url(../img/elements.png);
  width: 100%;
  height: 25px;
  background-size: contain;
  background-position: top center;
}
@media (max-width: 800px) {
  .speakers__img::before {
    height: 20px;
  }
}
.speakers__img img {
  width: 100%;
  border-radius: 36px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.speakers__cif {
  margin-left: auto;
  max-width: max-content;
  padding-bottom: 8px;
  padding-left: 10px;
  border-radius: 0 0 0 12px;
  border-left: 1px solid #010812;
  border-bottom: 1px solid #010812;
  font-weight: 700;
  color: #e40425;
  font-size: 22px;
}
@media (max-width: 800px) {
  .speakers__cif {
    transform: translate(8px, -8px);
  }
}
.speakers__name {
  margin-top: 27px;
  font-weight: 700;
  font-size: 28px;
}
@media (max-width: 800px) {
  .speakers__name {
    margin-top: 60px;
    font-size: 20px;
  }
}
.speakers__text {
  margin-top: 7px;
  font-size: 20px;
}
@media (max-width: 800px) {
  .speakers__text {
    font-size: 16px;
  }
}
.speakers__arrow {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 800px) {
  .speakers__arrow {
    display: none;
  }
}
.speakers__arr {
  width: 46px;
  position: relative;
  cursor: pointer;
}
.speakers__arr:hover img:nth-child(2) {
  opacity: 1;
}
.speakers__arr img {
  width: 100%;
  transition: 0.3s;
}
.speakers__arr img:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 3;
  left: 0;
}
.speakers__arr_l img {
  transform: rotate(180deg);
}
.why__container {
  max-width: 1920px;
  margin-top: 113px;
}
@media (max-width: 998px) {
  .why__container {
    margin-top: 62px;
  }
}
.why__block {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 45px;
}
@media (max-width: 700px) {
  .why__block {
    gap: 12px;
  }
}
.why__block img {
  border-radius: 24px;
  object-fit: cover;
  height: 16.5vw;
  max-height: 315px;
}
@media (max-width: 700px) {
  .why__block img {
    height: 42vw;
  }
}

.why__block img:nth-child(1) {
  grid-column: 1/3;
  width: 26%;
}

.why__block img:nth-child(2) {
  grid-column: 3/5;
  width: 14%;
}

.why__block img:nth-child(3) {
  grid-column: 5/7;
  width: 22%;
}

.why__block img:nth-child(4) {
  grid-column: 7/10;
  width: calc(38% - 60px);
}

.why__block img:nth-child(5) {
  grid-column: 1/2;
  width: 14%;
}

.why__block img:nth-child(6) {
  grid-column: 2/4;
  width: 22%;
}

.why__block img:nth-child(7) {
  grid-column: 4/6;
  width: 14%;
}

.why__block img:nth-child(8) {
  grid-column: 6/8;
  width: 23.5%;
}

.why__block img:nth-child(9) {
  width: calc(26.5% - 80px);
}

@media (max-width: 700px) {
  .why__block {
    margin-top: 20px;
    gap: 12px;
  }

  .why__block img {
    height: 42vw;
  }

  .why__block img:nth-child(1) {
    grid-column: 1/3;
    width: calc(50% - 6px);
    order: 1;
  }

  .why__block img:nth-child(2) {
    grid-column: 3/5;
    order: 3;
    width: calc(70% - 6px);
  }

  .why__block img:nth-child(3) {
    grid-column: 1/4;
    order: 7;
    width: calc(70% - 6px);
  }

  .why__block img:nth-child(4) {
    grid-column: 4/5;
    order: 2;
    width: calc(50% - 6px);
  }

  .why__block img:nth-child(5) {
    grid-column: 1/5;
    order: 4;
    width: calc(30% - 6px);
  }

  .why__block img:nth-child(6) {
    grid-column: 1/2;
    order: 8;
    width: calc(50% - 6px);
  }

  .why__block img:nth-child(7) {
    grid-column: 2/5;
    order: 6;
    width: calc(30% - 6px);
  }

  .why__block img:nth-child(8) {
    grid-column: 1/3;
    order: 9;
    width: calc(50% - 6px);
  }

  .why__block img:nth-child(9) {
    grid-column: 3/5;
    order: 5;
    width: 100%;
  }
}
.ymaps-layers-pane {
  -webkit-filter: grayscale(100%);
}

.video-history {
  position: relative;
}
.video-history__map {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  max-width: 115vw;
  width: 1220px;
}
@media (max-width: 500px) {
  .video-history__map {
    top: 20%;
  }
}
.video-history__map img {
  width: 100%;
}
.video-history__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 180px;
}
@media (max-width: 998px) {
  .video-history__container {
    padding-top: 62px;
  }
}
@media (max-width: 998px) {
  .video-history__title span {
    display: none;
  }
}
.video-history__video {
  margin-top: 33px;
  width: 970px;
  max-width: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.video-history__video._active img {
  opacity: 0;
}
.video-history__video._play ._preload {
  opacity: 0 !important;
}
.video-history__video img {
  position: absolute;
  z-index: 2;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  width: 106px;
}
@media (max-width: 600px) {
  .video-history__video img {
    width: 40px;
  }
}
.video-history__video img._preload {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 998px) {
  .video-history__video {
    margin-top: 15px;
    border-radius: 16px;
  }
}
.video-history__video video {
  aspect-ratio: 970/545;
  object-fit: cover;
  width: 100%;
}

.contacts__container {
  padding-top: 114px;
  max-width: 1450px;
}
@media (max-width: 998px) {
  .contacts__container {
    margin-top: 0px;
    padding-top: 65px;
  }
}
.contacts__block {
  margin-top: 43px;
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 20px;
}
@media (max-width: 998px) {
  .contacts__block {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
}
.contacts__left {
  background: #cbd9ef;
  border-radius: 42px;
  color: #010812;
  padding: 65px 75px;
}
@media (max-width: 1300px) {
  .contacts__left {
    padding: 50px 30px;
    border-radius: 32px;
  }
}
@media (max-width: 700px) {
  .contacts__left {
    padding: 18px;
  }
}
.contacts__left ul {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.contacts__left ul li {
  padding-bottom: 10px;
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contacts__left ul li img {
  transform: translate(0px, -3px);
}
.contacts__left ul li h3 {
  font-size: 20px;
  font-weight: 600;
}
.contacts__left ul li::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(90deg, #133263 0%, #4eaede 100%);
  height: 1px;
  width: 100%;
}
.contacts__text {
  font-weight: 500;
  font-size: 22px;
  color: #e40425;
  margin-top: 30px;
}
@media (max-width: 500px) {
  .contacts__text {
    font-size: 18px;
  }
}
.contacts__links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 998px) {
  .contacts__links {
    margin-top: 14px;
  }
}
.contacts__links a {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
  font-size: 20px;
  color: #010812;
}
.contacts__links a:hover {
  text-decoration: underline;
}
.contacts__btn {
  cursor: pointer;
  margin-top: 35px;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 21px;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  background: #e40425;
  border-radius: 21px;
  transition: 0.3s;
}
.contacts__btn:hover {
  color: #e40425;
  background: #cbd9ef;
}
@media (max-width: 500px) {
  .contacts__btn {
    margin-top: 25px;
  }
}
.contacts #map {
  border-radius: 42px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .contacts #map {
    border-radius: 32px;
  }
}
@media (max-width: 998px) {
  .contacts #map {
    min-height: 334px;
  }
}

.footer__container {
  margin-top: 114px;
  padding-bottom: 95px;
}
@media (max-width: 998px) {
  .footer__container {
    margin-top: 20px;
    padding-bottom: 25px;
  }
}
.footer__block {
  max-width: 465px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-image: url(../img/glass.png);
  background-size: cover;
  border-radius: 24px;
  padding: 30px;
}
.footer__block a {
  margin-top: 20px;
  font-size: 18px;
  text-decoration: underline;
  color: #4eaede;
}
.footer__block a:hover {
  text-decoration: none;
}
@media (max-width: 500px) {
  .footer__block a {
    font-size: 16px;
  }
}
.footer__block p {
  opacity: 0.5;
  color: #4eaede;
  margin-top: 10px;
}
@media (max-width: 500px) {
  .footer__block p {
    font-size: 12px;
  }
}
.footer__logo {
  width: 280px;
}
@media (max-width: 500px) {
  .footer__logo {
    width: 230px;
  }
}
.footer__logo img {
  width: 100%;
}

.popup {
  color: #010812;
}
@media (max-width: 700px) {
  .popup {
    padding: 0;
  }
}
.popup.popup-info .popup__body {
  background: #4eaede;
  padding: 60px 50px;
}
@media (max-width: 700px) {
  .popup.popup-info .popup__body {
    padding: 40px 20px;
  }
}
.popup::before {
  background: #010812;
}
.popup__close {
  background-image: url(../img/icclose.svg);
  width: 24px;
  height: 24px;
  top: 23px;
  right: 20px;
  position: absolute;
  cursor: pointer;
  transition: 0.3s;
}
.popup__close:hover {
  opacity: 0.4;
}
.popup__body {
  border-radius: 32px;
  max-width: 800px;
  width: 100%;
  padding: 60px 12px;
}
@media (max-width: 800px) {
  .popup__body {
    border-radius: 0;
    padding: 70px 12px;
  }
}
.popup__body form {
  max-width: 610px;
  margin: 0px auto;
  width: 100%;
  margin-top: 45px;
}
.popup__title {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  width: 100%;
}
.popup__subtitle {
  font-size: 18px;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}
.popup__thanks {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #13c336;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 998px) {
  .popup__thanks {
    min-height: 70vh;
    font-size: 28px;
  }
}

.modal_block {
  display: grid;
  grid-auto-flow: row;
  background-color: #fff;
  border-radius: 32px;
  padding: 60px 100px 45px 100px;
  position: relative;
  width: 90%;
  max-width: 800px;
}

@media (max-width: 500px) {
  .modal_block {
    width: 100%;
    border-radius: 0;
  }
}
.close {
  position: absolute;
  top: 23px;
  right: 20px;
  width: 24px;
  height: 20px;
  cursor: pointer;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
}

.modal_block_title {
  text-align: center;
  font-size: 42px;
}

.modal_block p {
  font-size: 18px;
  margin: 0;
  text-align: center;
}

form {
  display: grid;
  grid-auto-flow: row;
  margin: 21px 0 0 0;
  gap: 15px;
  justify-items: start;
}

.modal_block form {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .modal_block form {
    margin-top: 20px;
  }
}
.input-wp {
  width: 100%;
  position: relative;
}

.input-wp._error input {
  border-color: #e40425;
}

.input-wp._ready::before {
  opacity: 1;
}

.input-wp::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  background-image: url(../img/good.svg);
  width: 12px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transition: 0.3s;
}

form input {
  border: 0;
  border-bottom: 1px solid rgba(12, 1, 1, 0.1);
  padding: 10px 20px;
  font-size: 16px;
}

form input[type=text] {
  width: 100%;
}

form > input[type=submit] {
  background: #e40425;
  color: #fff;
  padding: 21px 41px;
  border-radius: 21px;
  font-size: 22px;
  border: 0;
  cursor: pointer;
  position: relative;
  text-align: center;
  margin-top: 15px;
  margin-left: 20px;
  font-weight: 600;
  transition: 0.3s;
}
form > input[type=submit]._no {
  pointer-events: none;
  background: rgba(208, 208, 208, 0.9);
}

@media (max-width: 600px) {
  form > input[type=submit] {
    order: 8;
    width: 100%;
    margin: 0;
    margin-top: 15px;
  }
}
form > input[type=submit]:hover {
  background: #c2baab;
  color: #e40425;
}

label {
  margin: 10px 0 0 0;
  color: rgba(12, 1, 1, 0.3);
}

form select {
  border: 0;
  font-size: 16px;
  margin-bottom: 20px;
}

.checkbox_group {
  /* display: grid;
  grid-auto-flow: column;
  margin: 10px 0 0 0; */
  margin-top: 20px;
}

.checkbox_group::before {
  display: none;
}

.checkbox_group input {
  display: none;
}

.checkbox_group label {
  padding-left: 22px;
  position: relative;
  display: block;
}

.checkbox_group._error label::before {
  border-color: red;
}

.checkbox_group label::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #c2baab;
}

.checkbox_group input:checked + label::before {
  background-image: url(../img/green.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.checkbox_group p {
  width: 100%;
  text-align: left;
  font-size: 14px;
  margin-left: 5px;
  color: #0c0101;
}

.checkbox_group p a {
  font-weight: 600;
  text-decoration: underline;
  color: inherit;
}

.real-select {
  display: none;
}

.custom-select {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500%;
}

.select-selected {
  cursor: pointer;
  max-width: max-content;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #010812;
}

.select-selected::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/good.svg);
  width: 12px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.select-selected::after {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/list.svg);
  width: 12px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}

.custom-select.active .select-selected::after {
  transform: rotate(180deg);
}

.form-label {
  padding-left: 23px;
}

.custom-select .select-options {
  position: absolute;
  background: #fff;
  width: 100%;
  display: none;
}

.custom-select.active .select-options {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  gap: 7px;
}

.custom-select.active .select-options div {
  transition: 0.3s;
  cursor: pointer;
}

.custom-select.active .select-options div:hover {
  opacity: 0.7;
}

.text-desc-block__title {
  font-weight: 700;
  font-size: 42px;
}
.text-desc-block__subtitle {
  font-weight: 600;
  font-size: 24px;
  margin-top: 10px;
}
.text-desc-block__text {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 24px;
}
@media (max-width: 998px) {
  .text-desc-block__text {
    font-size: 18px;
    gap: 13px;
  }
}