@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=DM+Sans:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic";
@import "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-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: 0;
  margin: 0;
  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: Inter;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
  font-family: Inter;
  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,
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;
}
body {
  background: #1e2d36;
  color: #fff;
  cursor: url(./curs-BTOaoUAP.png), auto;
}
body._lock {
  overflow: hidden;
}
.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.wrapper:before {
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 0;
  content: "";
  background: radial-gradient(128.19% 84.72% at 50% 89.44%, #38b0e3, #1e2d3600);
  width: 100%;
  height: 50vw;
}
@media (max-width: 998px) {
  .wrapper:before {
    height: 120vw;
  }
}
._container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 100px;
}
@media (max-width: 998px) {
  ._container {
    padding: 0 20px;
  }
}
.button {
  display: inline-flex;
  padding: 0;
}
.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: 0 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 140%;
  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;
  font-size: 14px;
  padding: 10px 0 5px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0;
}
@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: 0 20px;
}
textarea.input {
  resize: none;
  padding: 0;
}
.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: #fff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0 14px 0 0;
  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: #fff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0 14px 0 0;
  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: 0 0 0 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: 0 0 0 -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover:before,
  .quantity__button:hover:after {
    background-color: #00000080;
  }
}
.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: 0 0 0 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: translate(-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: translateZ(0);
}
.swiper-button-lock {
  display: none !important;
}
._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}
.mirror {
  transform: scaleX(-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: #00000080;
  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: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup:before {
  content: "";
  background-color: #000000e6;
  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 {
  flex-direction: column;
  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: 0;
  right: 0;
  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: 0;
    right: 0;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span {
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .icon-menu span:first-child {
    top: 0;
  }
  .icon-menu span:last-child {
    top: auto;
    bottom: 0;
  }
  .icon-menu._active span {
    transform: scale(0);
  }
  .icon-menu._active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .icon-menu._active span:last-child {
    transform: rotate(45deg);
    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;
}
._head {
  color: #38b0e3;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(56, 176, 227, 0.1);
  padding: 10px 30px;
  width: max-content;
}
.home {
  background-size: 100% 100%;
  position: relative;
  padding-bottom: 2vw;
}
.home:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
    150.37% 160.54% at 50% 135.08%,
    #71bdde 18.22%,
    #38b0e3 35.1%,
    #1e2d36 65.78%,
    #1e2d36
  );
  animation: opo 5s infinite;
}
@keyframes opo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 998px) {
  .home {
    padding-bottom: 10vw;
  }
}
.home__ss {
  position: absolute;
  width: 100%;
  pointer-events: none;
  top: 5vw;
}
.home__ss img {
  width: 100%;
}
.home__i3 {
  width: 15vw;
  top: 10vw;
  left: 10vw;
  position: absolute;
}
@media (max-width: 998px) {
  .home__i3 {
    top: 80vw;
    width: 30vw;
  }
}
.home__i3 img {
  width: 100%;
}
.home__i4 {
  position: absolute;
  top: 18vw;
  left: 5vw;
  width: 17vw;
  animation: trtr 3s infinite;
}
@keyframes trtr {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translateY(10%);
  }
  to {
    transform: translate(0);
  }
}
.home__i4 img {
  width: 100%;
}
.home__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  margin-top: 50px;
  border-radius: 80px;
  border: 1px solid #8cc6df;
  background: #14171880;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 5;
}
@media (max-width: 998px) {
  .home__header {
    margin-top: 20px;
    padding: 15px 20px;
  }
}
.home__logo {
  font-weight: 700;
  color: #38b0e3;
  font-family: DM Sans;
  font-size: 38.802px;
  position: relative;
  z-index: 3;
}
.home__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.home__right a {
  color: #f6f6f699;
}
.home__right a._custom {
  border-radius: 10px;
  background: linear-gradient(90deg, #2c6680 -2.68%, #38b0e3 94.19%);
  color: #fff;
  padding: 10px 15px;
  font-weight: 500;
}
@media (max-width: 998px) {
  .home__right {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #008ecb;
    top: -20px;
    left: -20px;
    transition: 0.3s;
    transform: translateY(-110%);
    flex-direction: column;
    z-index: 2;
    justify-content: center;
  }
  .home__right._active {
    transform: translate(0);
  }
  .home__right a {
    color: #fff;
  }
}
.home__block {
  display: flex;
  margin-top: 40px;
  padding-bottom: 100px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 998px) {
  .home__block {
    flex-direction: column;
    padding-bottom: 0;
    margin-top: 30px;
  }
}
.home__content {
  width: 73%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
@media (max-width: 1650px) {
  .home__content {
    width: 50%;
  }
}
@media (max-width: 998px) {
  .home__content {
    width: 100%;
  }
}
.home__name {
  border-radius: 10px;
  border: 1px solid rgba(56, 176, 227, 0.1);
  color: #38b0e3;
  width: max-content;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 13px;
  cursor: pointer;
}
.home__name:hover {
  background: linear-gradient(90deg, #2c6680 -2.68%, #38b0e3 94.19%);
  color: #fff;
}
.home__name span {
  display: none;
}
.home__title {
  background: linear-gradient(180deg, #f6f6f6 65.85%, #008ecb 125.2%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 90px;
  font-family: DM Sans;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 20px;
}
@media (max-width: 998px) {
  .home__title {
    font-size: 54px;
  }
}
.home__text {
  margin-top: 30px;
  font-size: 22px;
  color: #f6f6f6;
}
@media (max-width: 998px) {
  .home__text {
    margin-top: 40vw;
  }
}
.home__btns {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.home__btns a {
  display: flex;
  align-items: center;
  color: #f6f6f6;
  gap: 5px;
}
.home__btns a:nth-child(1) {
  border-radius: 10px;
  background: linear-gradient(109deg, #28363e 37.33%, #008ecb 103.62%);
  color: #fff;
  padding: 10px 15px;
  font-weight: 500;
}
.home__wrapper {
  position: relative;
  width: 20%;
  right: 10%;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 1;
}
@media (max-width: 998px) {
  .home__wrapper {
    width: 35%;
    right: 30%;
    top: 180px;
  }
}
.home__img {
  width: 100%;
  display: flex;
  justify-content: center;
  transform: translate(-100vw);
  animation: fan 1s 1s forwards;
}
@keyframes fan {
  to {
    transform: translate(0);
  }
}
@media (max-width: 998px) {
  .home__img {
    margin-top: 100px;
  }
}
.home__img img {
  width: 120%;
}
@media (max-width: 998px) {
  .home__img img {
    transform: scale(1.4);
    width: 100%;
  }
}
.home__i1 {
  position: absolute;
  width: 22%;
  animation: opop 1s 2s forwards;
  left: 20%;
  bottom: 8%;
  opacity: 0;
}
@media (max-width: 998px) {
  .home__i1 {
    width: 30%;
    left: -30%;
    top: 30%;
    bottom: auto;
  }
}
.home__i1 img {
  width: 100%;
}
.home__i2 {
  position: absolute;
  width: 25%;
  bottom: 20%;
  right: -5%;
  z-index: -1;
  opacity: 0;
  animation: opop 1s 2s forwards;
}
@media (max-width: 998px) {
  .home__i2 {
    bottom: 0;
    width: 50%;
    right: -40%;
  }
}
@keyframes opop {
  to {
    opacity: 1;
  }
}
.home__i2 img {
  width: 100%;
}
._title {
  background: linear-gradient(180deg, #f6f6f6 65.85%, #008ecb 125.2%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 54px;
  font-family: DM Sans;
  font-weight: 700;
  padding-bottom: 10px;
}
@media (max-width: 998px) {
  ._title {
    font-size: 32px;
  }
}
a {
  transition: 0.3s;
}
a:hover {
  transform: scale(1.15);
}
.telegram {
  position: relative;
  z-index: 2;
  margin-top: 0vw;
}
.telegram:before {
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  content: "";
  background-image: url(./el-B5YLWiBN.png);
  width: 100%;
  height: 12vw;
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media (max-width: 998px) {
  .telegram {
    border-radius: 0 0 70px 70px;
  }
}
.telegram__container {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.telegram__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 20px 0;
  z-index: 2;
}
.telegram__logo:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-image: url(./rec-Bn0ewxij.png);
  background-size: 100% 100%;
  display: none;
}
.telegram__logo img {
  max-width: 100%;
}
.telegram__head {
  margin-top: 100px;
}
.telegram__title {
  margin-top: 20px;
  font-size: 54px;
}
.telegram__text {
  text-align: center;
  line-height: 1.15;
  font-size: 22px;
  position: relative;
  z-index: 5;
}
@media (max-width: 998px) {
  .telegram__text {
    margin-bottom: 20px;
  }
}
.telegram__ai {
  margin-top: 40px;
  margin-bottom: 80px;
  width: 100%;
  max-width: 1100px;
  position: relative;
}
.telegram__r {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 20vw;
}
@media (max-width: 998px) {
  .telegram__r {
    width: 33vw;
  }
}
.telegram__r img {
  width: 100%;
}
.telegram__r_1 {
  top: 0;
  left: 0;
  transform: translate(-70%, -35%);
}
@media (max-width: 998px) {
  .telegram__r_1 {
    transform: translate(-50%, -80%);
  }
}
.telegram__r_2 {
  bottom: 0;
  right: 0;
  transform: translate(70%, 50%);
}
.telegram__r_2 img {
  transition: 0.3s;
}
@media (max-width: 998px) {
  .telegram__r_2 {
    transform: translate(40%, 60%);
  }
}
.telegram__r_3 {
  z-index: -1;
  right: 0;
  transform: translate(50%);
  width: 40vw;
}
@media (max-width: 998px) {
  .telegram__r_3 {
    display: none;
  }
}
.telegram__r_4 {
  z-index: -1;
  left: 0;
  transform: translate(-50%);
  width: 40vw;
}
@media (max-width: 998px) {
  .telegram__r_4 {
    display: none;
  }
}
.telegram__block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 150px;
}
.telegram__block._active .telegram__item {
  opacity: 1;
}
@media (max-width: 998px) {
  .telegram__block {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
  }
}
.telegram__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: 0.3s;
  border-radius: 41px;
  border: 1px solid rgba(56, 176, 227, 0.2);
  background: #14171880;
  box-shadow: 0 7px 24px #24262b40;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  padding: 32px;
}
.telegram__item:nth-child(2) {
  transition-delay: 0.3s;
}
.telegram__item:nth-child(3) {
  transition-delay: 0.6s;
}
.telegram__item:nth-child(4) {
  transition-delay: 0.9s;
}
.telegram__name {
  color: #fff;
  font-family: DM Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
.telegram__iinfo {
  color: #f6f6f6;
}
.telegram__learn a {
  display: flex;
  gap: 10px;
  color: #38b0e3;
}
.three {
  position: relative;
}
.three__r {
  position: absolute;
}
.three__r img {
  width: 100%;
}
.three__r_1 {
  right: 0;
  width: 60vw;
  top: 50%;
  transform: translateY(-50%);
}
.three__r_2 {
  right: 5%;
  top: 30%;
  width: 7vw;
}
@media (max-width: 998px) {
  .three__r_2 {
    display: none;
  }
}
.three__r_3 {
  top: 35%;
  width: 22vw;
  right: 2%;
  animation: sc 3s infinite;
}
@media (max-width: 998px) {
  .three__r_3 {
    display: none;
  }
}
@keyframes sc {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.three__r_4 {
  width: 26vw;
  left: 2vw;
  z-index: -1;
  animation: ff 5s infinite;
}
@media (max-width: 998px) {
  .three__r_4 {
    top: -15vw;
    width: 30vw;
  }
}
@keyframes ff {
  0% {
    transform: translate(-10%);
  }
  50% {
    transform: translate(10%);
  }
  to {
    transform: translate(-10%);
  }
}
.three__r_5 {
  width: 10vw;
  top: 15vw;
  left: 5vw;
  z-index: -1;
}
@media (max-width: 998px) {
  .three__r_5 {
    left: -4vw;
  }
}
.three__i {
  left: 3%;
  position: absolute;
  width: 100vw;
  pointer-events: none;
  top: 0;
  transform: translateY(-55%);
  display: none;
}
@media (max-width: 998px) {
  .three__i {
    transform: translateY(-105%);
  }
}
.three__i img {
  width: 100%;
}
@media (max-width: 998px) {
  .three__i img {
    width: 1000px;
  }
}
.three__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
}
@media (max-width: 998px) {
  .three__container {
    margin-top: 30px;
  }
}
.three__title {
  margin-top: 30px;
}
.three__text {
  margin-top: 20px;
  text-align: center;
}
.three__block {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.three__block._active .three__item {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 998px) {
  .three__block {
    flex-direction: column;
  }
}
.three__item {
  padding: 40px;
  border-radius: 41px;
  border: 1px solid rgba(246, 246, 246, 0.2);
  background: radial-gradient(
      55.7% 77.29% at -17.59% 103.72%,
      #38b0e3,
      #14171800
    ),
    #14171880;
  box-shadow: 0 7px 24px #24262b40;
  -webkit-backdrop-filter: blur(24.8999996185px);
  backdrop-filter: blur(24.8999996185px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 440px;
  gap: 20px;
  opacity: 0;
  transform: translateY(20%);
  transition: 0.5s;
}
.three__item:nth-child(2) {
  transition-delay: 0.5s;
  background: radial-gradient(
      66.91% 93.77% at 118.62% 2.11%,
      #38b0e3,
      #14171800
    ),
    #14171880;
}
.three__icon img {
  max-width: 100%;
}
.three__name {
  color: #38b0e3;
  font-size: 26px;
  font-weight: 700;
  font-family: DM Sans;
}
.three__info {
  color: #f6f6f6;
}
.four {
  position: relative;
}
.four:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(./fff-B8X96PKk.png);
  background-size: 100%;
}
@media (max-width: 998px) {
  .four:before {
    display: none;
  }
}
.four__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 130px;
}
.four__title {
  margin-top: 20px;
}
.four__block {
  columns: 3;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 998px) {
  .four__block {
    columns: 2;
  }
}
@media (max-width: 500px) {
  .four__block {
    columns: 1;
  }
}
.four__block:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, #1e2d36 5.28%, #1e2d3600 74.75%);
  z-index: 2;
  background-size: 100%;
  pointer-events: none;
  background-repeat: no-repeat;
}
@media (max-width: 998px) {
  .four__block:before {
    height: 20%;
  }
}
.four__item {
  page-break-inside: avoid;
  break-inside: avoid;
  border-radius: 28px;
  border: 1px solid rgba(56, 176, 227, 0.2);
  background: #14171880;
  box-shadow: 0 2px 12px #14142b14;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 40px;
  margin-bottom: 20px;
}
.four__text {
  color: #f6f6f6;
}
.four__user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #6c8590;
}
.four__img {
  flex: 0 0 42px;
}
.four__img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.four__info span {
  font-weight: 500;
}
.five__container {
  display: flex;
  align-items: center;
  margin-top: 150px;
}
@media (max-width: 998px) {
  .five__container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}
.five__block {
  background-color: #38b0e3;
  border-radius: 3vw;
  width: 100%;
  padding: 3vw 2.5vw;
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 998px) {
  .five__block {
    padding: 6vw 5vw;
    border-radius: 6vw;
  }
}
.five__m {
  position: absolute;
}
@media (max-width: 998px) {
  .five__m {
    display: none;
  }
}
.five__m img {
  width: 100%;
}
.five__m_1 {
  width: 14vw;
  z-index: 2;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  animation: oppo 3s infinite;
}
.five__m_2 {
  right: 0;
  width: 6vw;
  transform: translate(100%, -50%);
  top: 50%;
}
@keyframes oppo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.22;
  }
  to {
    opacity: 1;
  }
}
.five__m_3 {
  left: 0;
  bottom: 10%;
  transform: translate(-90%);
  width: 10vw;
}
.five__content {
  width: 55%;
}
@media (max-width: 998px) {
  .five__content {
    width: 100%;
  }
}
.five__title {
  text-align: left;
  font-size: 5vw;
}
@media (max-width: 998px) {
  .five__title {
    font-size: 10vw;
  }
}
.five__text {
  margin-top: 30px;
  font-size: 25px;
  text-align: left;
}
@media (max-width: 500px) {
  .five__text {
    font-size: 18px;
  }
}
.five__btns {
  margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 17px;
}
@media (max-width: 998px) {
  .five__btns {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.five__btns a {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 5px;
}
.five__btns a:nth-child(1) {
  border-radius: 10px;
  background: #fff;
  color: #38b0e3;
  padding: 10px 15px;
  font-weight: 500;
}
.five__img {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 30%;
  display: flex;
  justify-content: center;
}
@media (max-width: 998px) {
  .five__img {
    width: 100%;
    display: none;
  }
}
.five__img img {
  width: 100%;
  transform: scale(1.4);
}
@media (max-width: 998px) {
  .five__img img {
    transform: scale(1.2);
  }
}
.footer {
  border-radius: 124px 124px 0 0;
  background: #1a2228;
  margin-top: 0;
}
@media (max-width: 998px) {
  .footer {
    border-radius: 80px 80px 0 0;
    margin-top: 50px;
  }
}
.footer__container {
  padding-top: 40px;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 998px) {
  .footer__container {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
  }
}
.footer__right {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  max-width: 140px;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 35px;
}
@media (max-width: 998px) {
  .footer__right {
    align-items: flex-start;
  }
}
.footer__right span {
  opacity: 0.5;
}
.footer__right a {
  color: #f6f6f6;
  opacity: 0.6;
}
.footer__right a.footer__btn {
  text-align: center;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #2c6680 -2.68%, #38b0e3 94.19%);
  color: #fff;
  padding: 10px 15px;
  font-weight: 500;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__name {
  color: #fff;
  font-weight: 700;
  font-family: DM Sans;
  font-size: 38.802px;
}
.footer__text {
  color: #a3dcf4;
  max-width: 240px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.custom-select {
  position: relative;
  width: 200px;
  font-family: Arial, sans-serif;
}
.custom-select__trigger {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.custom-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  display: none;
  z-index: 1000;
}
.custom-select__option {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.custom-select--open .custom-select__options {
  display: block;
}
.ai {
  border-radius: 49px;
  border: 1px solid rgba(239, 240, 246, 0.5);
  background: #14171880;
  box-shadow: 0 4px 64px #2b4d5b40;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 20px;
  grid-template-columns: 30% 1fr;
  padding: 30px;
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 998px) {
  .ai {
    display: flex;
    flex-direction: column;
    padding: 12px;
  }
}
.ai__right {
  border-radius: 28px;
  border: 1px solid rgba(56, 176, 227, 0.2);
  background: #14171880;
  box-shadow: 0 2px 12px #14142b14;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 998px) {
  .ai__right {
    padding: 20px;
  }
}
.ai__name {
  font-family: DM Sans;
  font-size: 32px;
  font-weight: 700;
}
.ai__place {
  opacity: 0.5;
  color: #f6f6f6;
}
.ai__range {
  padding: 12px 20px;
  border-radius: 18px;
  border: 1px solid rgba(56, 176, 227, 0.2);
  background: #14171880;
  box-shadow: 0 2px 12px #14142b14;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ai__range input {
  max-width: 150px;
  border-radius: 10px;
  border: 1px solid #fff;
  opacity: 0.5;
  background-color: transparent;
  padding: 10px 13px;
  color: #fff;
  font-size: 13px;
}
.ai__range input::placeholder {
  font-size: 13px;
}
.ai__range span {
  font-size: 22px;
}
.ai__searth form {
  padding: 20px 32px;
  display: grid;
  align-items: center;
  width: 100%;
  grid-template-columns: 1fr 25px;
  border-radius: 49px;
  border: 1px solid rgba(239, 240, 246, 0.5);
  background: #1417181a;
  box-shadow: 0 4px 64px #2b4d5b40;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.ai__searth img {
  width: 100%;
}
.ai__searth input {
  background-color: transparent;
  color: #fff;
  font-size: 22px;
}
.ai__searth input::placeholder {
  font-size: 22px;
}
.ai__list {
  margin-top: 10px;
  border-radius: 49px;
  border: 1px solid rgba(239, 240, 246, 0.5);
  background: #fff;
  box-shadow: 0 4px 64px #2b4d5b40;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  flex-direction: column;
  display: flex;
  padding: 30px;
  gap: 24px;
}
.ai__list a {
  color: #6c8590;
}
.ai__list a:hover {
  text-decoration: underline;
  transform: scale(1);
}
.custom-select__trigger {
  border-radius: 18px;
  border: 1px solid rgba(56, 176, 227, 0.2);
  background: #14171880;
  box-shadow: 0 2px 12px #14142b14;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px;
  width: max-content;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-select__trigger:after {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  background-image: url(./ara-BODjCWoi.png);
  width: 12px;
  height: 8px;
  background-size: contain;
}
.custom-select__options {
  border-radius: 18px;
  border: 1px solid rgba(56, 176, 227, 0.2);
  background: #14171880;
  box-shadow: 0 2px 12px #14142b14;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px;
  width: max-content;
}
.app__container {
  padding-top: 50px;
  padding-bottom: 50px;
}
.app__wrapper {
  padding: 30px;
  border-radius: 49px;
  border: 1px solid rgba(239, 240, 246, 0.5);
  background: #14171880;
  box-shadow: 0 4px 64px #2b4d5b40;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}
@media (max-width: 998px) {
  .app__wrapper {
    padding: 20px;
    border-radius: 29px;
  }
}
.app__x {
  z-index: -1;
  position: absolute;
  width: 25vw;
}
@media (max-width: 998px) {
  .app__x {
    width: 50vw;
  }
}
.app__x_1 {
  bottom: 0;
  left: 0;
}
.app__x_2 {
  top: 0;
  right: 0;
}
.app__x img {
  filter: blur(4px);
  width: 100%;
}
.app__top {
  border-bottom: 1px solid rgba(239, 240, 246, 0.5);
  display: flex;
  gap: 40px;
  align-items: center;
  padding-bottom: 20px;
}
@media (max-width: 998px) {
  .app__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.app__logo {
  flex: 0 0 140px;
}
.app__logo img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.app__info span {
  font-family: DM Sans;
  font-size: 32px;
  font-weight: 700;
}
.app__info p {
  color: #6c8590;
  margin-top: 5px;
  font-size: 18px;
}
.app__info div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.app__info i {
  padding: 10px 20px;
  border-radius: 13px;
  border: 1px solid #38b0e3;
  background: #38b0e380;
  box-shadow: 0 2px 12px #14142b14;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-style: normal;
}
.app__last {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 998px) {
  .app__last {
    align-items: flex-start;
    margin-left: 0;
  }
}
.app__last span {
  background: linear-gradient(180deg, #f6f6f6 65.85%, #008ecb 125.2%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: DM Sans;
  font-size: 32px;
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 10px;
  -webkit-text-fill-color: transparent;
}
.app__last a {
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2c6680 -2.68%, #38b0e3 94.19%);
  color: #fff;
  font-weight: 500;
  margin-top: 13px;
  display: flex;
}
.app__wp {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 998px) {
  .app__wp {
    grid-template-columns: 1fr;
  }
}
.app__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.app__block {
  border-radius: 28px;
  border: 1px solid rgba(56, 176, 227, 0.2);
  background: #14171880;
  box-shadow: 0 2px 12px #14142b14;
  -webkit-backdrop-filter: blur(29.1000003815px);
  backdrop-filter: blur(29.1000003815px);
  padding: 32px;
}
.app__sub {
  font-family: DM Sans;
  font-size: 32px;
  font-weight: 700;
}
.app__sub span {
  color: #38b0e3;
}
.app__two-block {
  gap: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}
@media (max-width: 998px) {
  .app__two-block {
    grid-template-columns: 1fr;
  }
}
.app__item {
  border-radius: 18px;
  border: 1px solid rgba(56, 176, 227, 0.2);
  background: #14171880;
  box-shadow: 0 2px 12px #14142b14;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app__item span {
  font-size: 18px;
  opacity: 0.6;
}
.app__item p {
  color: #38b0e3;
  font-weight: 700;
  font-family: DM Sans;
  font-size: 32px;
}
.app__right {
  position: relative;
}
.app__right:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: 20px;
}
.app__right span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 15px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2c6680 -2.68%, #38b0e3 94.19%);
  color: #fff;
}
.app__right img {
  width: 100%;
  height: 100%;
}
.str {
  position: relative;
  width: 100vw;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.str__row-marque {
  display: flex;
  animation: row 20s linear infinite;
  will-change: transform;
  align-items: center;
  color: #fff;
  font-size: 2.2vw;
}
@media (max-width: 998px) {
  .str__row-marque {
    font-size: 6vw;
    -webkit-text-stroke-width: 0.3vw;
  }
}
.str__item {
  margin: 15px 20px;
  width: 150px;
}
.str__item img {
  width: 150px;
}
@keyframes row {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.ca-ready {
  position: fixed;
  pointer-events: none;
  top: 50%;
  left: 50%;
  z-index: 10;
  opacity: 0;
  font-size: 2vw;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  background: #000;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  max-width: 85%;
  line-height: 1.3;
}
@media (max-width: 998px) {
  .ca-ready {
    padding: 10px 20px;
    font-size: 6vw;
    max-width: 90%;
    width: 100%;
  }
}
.ca-ready._active {
  opacity: 1;
}
._ca {
  cursor: pointer;
}
.str2 {
  overflow: hidden; /* Скрываем всё, что выходит за пределы контейнера */
  position: relative;
  width: 100vw; /* Контейнер занимает всю ширину экрана */
  display: flex;
}

.str__row-marque2 {
  display: flex; /* Элементы располагаются в одну строку */
  white-space: nowrap; /* Запрещаем перенос строк */
  animation: row 20s linear infinite; /* Анимация бесконечного движения */
}

.str__item2 {
  white-space: nowrap;
  flex-shrink: 0; /* Элементы не сжимаются */
  margin: 0 10px; /* Отступы между элементами */
}

@keyframes row {
  0% {
    transform: translateX(0); /* Начинаем с нуля */
  }
  100% {
    transform: translateX(-50%); /* Двигаем строку ровно на половину её длины */
  }
}

.home__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  text-align-last: left;
}

.home__list li {
  text-decoration: wavy;
  margin-bottom: 8px;
}
.guide {
  display: flex;
  margin-top: 15px;
  justify-content: center;
}

.guide a {
  border-radius: 10px;
  background: linear-gradient(90deg, #2c6680 -2.68%, #38b0e3 94.19%);
  color: #fff;
  padding: 10px 15px;
  font-weight: 500;
}
