@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: "POI Carbonic Trial";
  src: url(../fonts/regular.woff);
  font-weight: 400;
}
@font-face {
  font-family: "POI Carbonic Trial";
  src: url(../fonts/bold.woff);
  font-weight: 700;
}
@font-face {
  font-family: "POI Carbonic Trial";
  src: url(../fonts/light.woff);
  font-weight: 300;
}
@font-face {
  font-family: "POI Carbonic Trial";
  src: url(../fonts/medium.woff);
  font-weight: 500;
}
@font-face {
  font-family: "POI Carbonic Trial";
  src: url(../fonts/thin.woff);
  font-weight: 100;
}
@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: "POI Carbonic Trial";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "POI Carbonic Trial";
  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-color: #0d0c0c;
  color: #fff;
}
body._lock {
  overflow: hidden;
}

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

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

/*
//Burger
.icon-menu {
	display: none;
	@media (max-width: $md3+px) {
		display: block;
		position: absolute;
		top: 18px;
		right: 10px;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
		span {
			transition: all 0.3s ease 0s;
			top: calc(50% - 1px);
			left: 0px;
			position: absolute;
			width: 100%;
			height: 2px;
			background-color: #000;
			&:first-child {
				top: 0px;
			}
			&:last-child {
				top: auto;
				bottom: 0px;
			}
		}
		&._active {
			span {
				transform: scale(0);
				&:first-child {
					transform: rotate(-45deg);
					top: calc(50% - 1px);
				}
				&: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;
}

.header {
  position: absolute;
  z-index: 5;
  width: 100%;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2vw;
}
@media (max-width: 998px) {
  .header__container {
    gap: 3vw;
    padding-top: 5vw;
  }
}
.header__logo {
  position: relative;
  z-index: 2;
}
@media (max-width: 998px) {
  .header__logo {
    width: 45vw;
  }
  .header__logo img {
    width: 100%;
  }
}
.header__itms {
  display: flex;
  font-weight: 300;
  gap: 2.2vw;
}
@media (max-width: 998px) {
  .header__itms {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    height: 100vh;
    top: 0;
    gap: 5vw;
    left: 0;
    transition: 0.3s;
    transform: translate(0px, -100%);
    background-color: #000;
  }
  .header__itms._active {
    transform: translate(0px, 0%);
  }
}
.header__itms a {
  color: #fff;
  position: relative;
}
.header__itms a span {
  transition: 0.3s;
  display: block;
}
.header__itms a:hover {
  transform: scale(1);
}
.header__itms a:hover span {
  transform: scale(1.1);
}
.header__itms a:nth-child(1)::before {
  display: none;
}
.header__itms a::before {
  position: absolute;
  top: 50%;
  left: -1.1vw;
  transform: translate(-50%, -50%);
  content: "";
  width: 0.5vw;
  height: 0.5vw;
  background-image: url(../img/pl.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 998px) {
  .header__itms a::before {
    display: none;
  }
}
.header__social {
  display: flex;
  gap: 1vw;
  position: relative;
  z-index: 2;
}
.header__social img {
  width: 2vw;
}
@media (max-width: 998px) {
  .header__social {
    margin-left: auto;
    gap: 3vw;
  }
  .header__social img {
    width: 8vw;
  }
}
.header__burger {
  display: none;
  position: relative;
  z-index: 2;
}
@media (max-width: 998px) {
  .header__burger {
    display: flex;
    flex-direction: column;
    border-radius: 7.014px;
    border: 1.169px solid #fff;
    width: 17vw;
    align-items: center;
    justify-content: center;
    padding: 2.5vw 0;
    gap: 2vw;
  }
  .header__burger span {
    height: 0.3vw;
    background-color: #fff;
    width: 50%;
    transition: 0.3s;
  }
  .header__burger._active {
    gap: 0;
    padding: 3.5vw 0;
  }
  .header__burger._active span {
    width: 40%;
    transform: rotate(45deg);
  }
  .header__burger._active span:nth-child(2) {
    transform: rotate(-45deg);
  }
}

.home {
  position: relative;
  z-index: 1;
}
.home .footer-screen__bg {
  position: absolute;
  left: 40%;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 998px) {
  .home .footer-screen__bg {
    display: none;
  }
}
.home .footer-screen__bg:nth-child(1) {
  width: 2vw;
  top: 17vw;
  left: 65vw;
}
.home .footer-screen__bg:nth-child(2) {
  width: 2.5vw;
  top: 25vw;
  left: 70vw;
}
.home .footer-screen__bg:nth-child(3) {
  width: 4vw;
  left: 60vw;
  top: 31vw;
}
.home .footer-screen__bg:nth-child(4) {
  width: 2vw;
  left: 50%;
  top: 33vw;
  z-index: 3;
}
.home .footer-screen__bg:nth-child(5) {
  width: 3vw;
  left: 40vw;
  top: 36vw;
}
.home .footer-screen__bg:nth-child(6) {
  width: 2vw;
  top: 45vw;
  left: 25vw;
}
.home .footer-screen__bg img {
  width: 100%;
}
.home__m {
  position: absolute;
}
.home__m img {
  width: 100%;
}
.home__m_1 {
  top: 13vw;
  left: 13vw;
  width: 5vw;
}
@media (max-width: 998px) {
  .home__m_1 {
    top: 20vw;
    left: 7vw;
    width: 10vw;
  }
}
.home__m_2 {
  right: 15vw;
  top: 22vw;
  width: 10vw;
}
@media (max-width: 998px) {
  .home__m_2 {
    top: 60vw;
    right: 0vw;
    width: 20vw;
  }
}
.home__33 {
  position: absolute;
  width: 40vw;
  pointer-events: none;
  left: 50%;
  top: 12vw;
  transform: translate(-50%);
}
@media (max-width: 998px) {
  .home__33 {
    top: 50vw;
    width: 60vw;
  }
}
.home__33 img {
  width: 100%;
}
.home__b {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.home__b_1 {
  top: 0;
  right: 0;
  width: 40vw;
}
.home__b_2 {
  left: 0;
  top: 10vw;
  width: 40vw;
}
.home__b img {
  width: 100%;
}
.home__bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -22;
  display: flex;
  justify-content: center;
}
.home__bg::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  height: 200px;
  z-index: 1;
  width: 100%;
  pointer-events: none;
  background: white;
  transform: rotate(180deg);
  background: linear-gradient(180deg, #0d0c0c 0%, rgba(13, 12, 12, 0) 100%);
}
.home__bg img,
.home__bg video {
  width: 100%;
  transition: 3s;
  mix-blend-mode: lighten;
}
@media (max-width: 998px) {
  .home__bg img,
.home__bg video {
    width: 230%;
  }
}
@keyframes op {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.home__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8vw;
}
@media (max-width: 998px) {
  .home__container {
    padding-top: 20vw;
  }
}
.home__title {
  font-size: 3.3vw;
  font-weight: 300;
  font-style: normal;
}
@media (max-width: 998px) {
  .home__title {
    font-size: 7vw;
  }
}
.home__logo {
  width: 9vw;
}
@media (max-width: 998px) {
  .home__logo {
    width: 20vw;
    margin-top: 5vw;
  }
}
.home__logo img {
  width: 100%;
}
.home__name {
  background: radial-gradient(81.56% 57.91% at 49.98% 19.98%, #fff 0%, #0d0c0c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 13vw;
  letter-spacing: -9.565px;
  margin-top: -2vw;
}
@media (max-width: 998px) {
  .home__name {
    font-size: 20vw;
    letter-spacing: -2.565px;
    margin-top: 0;
  }
}
.home__mol {
  width: 25vw;
  margin-top: -9vw;
}
@media (max-width: 998px) {
  .home__mol {
    width: 35vw;
    margin-top: -5vw;
  }
}
.home__mol img {
  width: 100%;
  animation: bt 6s infinite;
}
@keyframes bt {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(0, 10%);
  }
  100% {
    transform: translate(0);
  }
}
.home__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: -5vw;
}
@media (max-width: 998px) {
  .home__bottom {
    margin-top: 0;
    gap: 5vw;
    flex-direction: column;
  }
}
.home__txt {
  border-radius: 24px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  padding: 0.8vw 1.1vw;
  font-weight: 300;
}
@media (max-width: 998px) {
  .home__txt {
    padding: 2vw 3vw;
  }
}
.home__btn {
  display: flex;
  align-items: center;
  gap: 1vw;
  font-weight: 300;
}
.home__btn img {
  width: 4.5vw;
}
@media (max-width: 998px) {
  .home__btn {
    gap: 3vw;
  }
  .home__btn img {
    width: 10vw;
  }
}

.recent {
  position: relative;
  z-index: 1;
  /* Основной контейнер */
  /* Контейнер для движущегося контента */
  /* Дублируем контент, чтобы создать бесконечный эффект */
  /* Анимация */
  /* Остановка анимации при наведении */
}
.recent__title {
  font-size: 3vw;
  margin-top: 6vw;
}
@media (max-width: 998px) {
  .recent__title {
    font-size: 7vw;
    margin-top: 15vw;
  }
}
.recent__subtitle {
  opacity: 0.5;
  font-size: 3vw;
}
@media (max-width: 998px) {
  .recent__subtitle {
    font-size: 7vw;
  }
}
.recent__block {
  margin-top: 3vw;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  position: relative;
  overflow: hidden;
  padding: 1.1vw;
}
@media (max-width: 998px) {
  .recent__block {
    width: 100%;
    padding: 3vw 2vw;
  }
}
.recent__block::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 25%;
  height: 100%;
  background: linear-gradient(270deg, #0d0c0c 0%, rgba(13, 12, 12, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 998px) {
  .recent__block::before {
    display: none;
  }
}
.recent__wp .swiper-wrapper,
.recent__wp .slick-track {
  transition-timing-function: linear;
}
.recent__item {
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  display: flex;
  padding: 0.8vw;
  align-items: center;
  gap: 0.5vw;
  justify-content: space-between;
}
@media (max-width: 998px) {
  .recent__item {
    flex: 1 1 auto;
    padding: 2vw;
    gap: 1.5vw;
  }
}
.recent__img {
  width: 3.22vw;
}
@media (max-width: 998px) {
  .recent__img {
    width: 10vw;
  }
}
.recent__img img {
  width: 100%;
}
.recent__name {
  font-size: 1.2vw;
  margin-bottom: 0.3vw;
}
@media (max-width: 998px) {
  .recent__name {
    font-size: 3.6vw;
    margin-bottom: 0.6vw;
  }
}
.recent__ca {
  display: flex;
  align-items: center;
  gap: 0.3vw;
  cursor: pointer;
  transition: 0.3s;
}
.recent__ca:hover {
  transform: scale(1.1);
}
.recent__ca img {
  width: 0.9vw;
}
.recent__ca span {
  opacity: 0.5;
  font-size: 0.9vw;
}
@media (max-width: 998px) {
  .recent__ca {
    gap: 1vw;
  }
  .recent__ca span {
    font-size: 2.8vw;
  }
  .recent__ca img {
    width: 2.8vw;
  }
}
.recent__ca img,
.recent__ca span {
  pointer-events: none;
}
.recent__new {
  font-size: 0.7vw;
  border-radius: 24px;
  border: 1px solid rgba(241, 128, 33, 0.2);
  background: rgba(241, 128, 33, 0.2);
  color: #fe7400;
  padding: 0.2vw;
  padding-bottom: 0.1vw;
  text-align: center;
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
}
@media (max-width: 998px) {
  .recent__new {
    font-size: 2.5vw;
    padding: 0.8vw;
  }
}
.recent__new._updated {
  border: 1px solid rgba(46, 133, 255, 0.2);
  color: #2e85ff;
  background: rgba(46, 133, 255, 0.2);
}
.recent .marquee {
  white-space: nowrap;
  position: relative;
  display: flex;
}
.recent .marquee__inner {
  display: flex;
  min-width: 100vw;
  gap: 20px;
  animation: marquee 30s linear infinite;
}
.recent .marquee__content {
  display: flex;
  gap: 20px;
  /* Расстояние между элементами */
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.recent .marquee:hover .marquee__inner {
  animation-play-state: paused;
}

.enter {
  position: relative;
}
.enter__h {
  position: absolute;
  pointer-events: none;
}
.enter__h_1 {
  width: 11vw;
  top: 0;
  left: 5%;
}
@media (max-width: 998px) {
  .enter__h_1 {
    left: 0;
    top: 5vw;
    width: 15vw;
  }
}
.enter__h_2 {
  right: 10vw;
  top: 10vw;
  width: 5vw;
}
@media (max-width: 998px) {
  .enter__h_2 {
    right: 3%;
    width: 9vw;
  }
}
.enter__h img {
  width: 100%;
}
.enter__rer {
  position: absolute;
  width: 100%;
  pointer-events: none;
  z-index: -1;
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
}
@media (max-width: 998px) {
  .enter__rer {
    top: 20vw;
  }
}
.enter__rer img {
  width: 100%;
}
@media (max-width: 998px) {
  .enter__rer img {
    width: 200%;
  }
}
.enter__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.enter__title {
  font-size: 3vw;
  text-align: center;
  margin-top: 4vw;
}
@media (max-width: 998px) {
  .enter__title {
    margin-top: 15vw;
    font-size: 9vw;
    margin-bottom: 5vw;
  }
}
.enter__title span {
  color: #ff6e1d;
}
.enter__cec {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  margin-top: 1.5vw;
  width: max-content;
  padding: 12px;
  gap: 1.5vw;
}
.enter__input {
  color: #fff;
  background-color: transparent;
  padding: 0.1vw;
  line-height: 3;
}
.enter__btn {
  border-radius: 24px;
  border: 1px solid #f18021;
  box-shadow: 0px 0px 10px 0px #f18021;
  color: #f18021;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  transition: 0.3s;
}
.enter__btn:hover {
  transform: scale(1.1);
}
.enter__block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.3vw;
  margin-top: 1.6vw;
  width: 85%;
}
.enter__block._active .enter__item {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 998px) {
  .enter__block {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 5vw;
    margin-top: 5vw;
  }
}
.enter__item {
  padding: 1.6vw;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  transform: translate(-50%);
  transition-property: transform, opacity, scale;
  transition-duration: 0.4s, 0.4s, 0.4s;
  transition-delay: 0s, 0s, 0s;
  opacity: 0;
}
.enter__item:hover {
  scale: 1.1;
}
.enter__item:nth-child(2) {
  transition-delay: 0.4s, 0.4s, 0s;
}
.enter__item:nth-child(3) {
  transition-delay: 0.8s, 0.8s, 0s;
}
@media (max-width: 998px) {
  .enter__item {
    padding: 5vw;
  }
}
.enter__name {
  font-size: 2.2vw;
  margin-bottom: 1vw;
}
@media (max-width: 998px) {
  .enter__name {
    font-size: 6.6vw;
    margin-bottom: 3vw;
  }
}
.enter__img {
  margin-top: auto;
}
.enter__img img {
  width: 100%;
}
.enter__boost {
  border-radius: 24px;
  border: 1px solid #f18021;
  box-shadow: 0px 0px 10px 0px #f18021;
  margin-bottom: 1vw;
  width: max-content;
  color: #f18021;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 5px;
}
@media (max-width: 998px) {
  .enter__boost {
    margin-bottom: 2vw;
  }
}

.footer {
  position: relative;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5vw;
  padding-bottom: 3vw;
  flex-wrap: wrap;
}
@media (max-width: 998px) {
  .footer__container {
    margin-top: 20vw;
    padding-bottom: 9vw;
  }
}
.footer__l {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 998px) {
  .footer__l {
    width: 100%;
  }
}
.footer__l img {
  width: 100%;
}
.footer__logo {
  width: 11vw;
}
@media (max-width: 998px) {
  .footer__logo {
    width: 30vw;
  }
}
.footer__logo img {
  width: 100%;
}
.footer__social {
  display: flex;
  gap: 1vw;
}
.footer__social img {
  width: 2vw;
}
@media (max-width: 998px) {
  .footer__social {
    gap: 3vw;
  }
  .footer__social img {
    width: 6vw;
  }
}
.footer__txt {
  font-size: 0.9vw;
  opacity: 0.7;
}
@media (max-width: 998px) {
  .footer__txt {
    width: 100%;
    text-align: center;
    font-size: 3vw;
    margin-top: 3vw;
  }
}

.app {
  background-image: url(../img/bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.app._nobg {
  background-image: none;
}
@media (max-width: 998px) {
  .app {
    background-size: 250%;
  }
}
.app__b {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.app__b_1 {
  top: 0;
  right: 0;
  width: 40vw;
}
@media (max-width: 998px) {
  .app__b_1 {
    width: 70vw;
  }
}
.app__b_2 {
  left: 0;
  bottom: 0;
  width: 40vw;
  opacity: 0.5;
}
@media (max-width: 998px) {
  .app__b_2 {
    width: 50vw;
    top: 50vw;
    bottom: auto;
  }
}
.app__b_3 {
  display: none;
}
@media (max-width: 998px) {
  .app__b_3 {
    width: 70vw;
    right: 0;
    transform: scale(-1, 1);
    display: block;
    bottom: 35vw;
  }
}
.app__b img {
  width: 100%;
}
.app__m {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 998px) {
  .app__m {
    display: none;
  }
}
.app__m img {
  width: 100%;
  animation: trtr 5s infinite;
}
@keyframes trtr {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(0, 10%);
  }
  100% {
    transform: translate(0);
  }
}
.app__m_1 {
  width: 3vw;
  top: 20vw;
  left: 4vw;
}
.app__m_2 {
  width: 12vw;
  right: 1.5vw;
  top: 50vw;
}
.app__container {
  grid-template-columns: 1.3fr 1fr;
  gap: 1.22vw;
  display: grid;
  padding-top: 10vw;
}
@media (max-width: 998px) {
  .app__container {
    padding-top: 20vw;
    grid-template-columns: 1fr;
    gap: 5vw;
  }
}
.app__left {
  display: flex;
  flex-direction: column;
  gap: 1.3vw;
}
@media (max-width: 998px) {
  .app__left {
    gap: 5vw;
  }
}
.app__user {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(239.05% 97.94% at 104.69% 18.75%, rgba(255, 110, 29, 0.2) 0%, rgba(255, 110, 29, 0) 100%), rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.6vw;
  display: flex;
  align-items: center;
  gap: 1vw;
}
@media (max-width: 998px) {
  .app__user {
    padding: 4.5vw;
    gap: 3vw;
    flex-wrap: wrap;
  }
}
.app__wp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1vw;
}
@media (max-width: 998px) {
  .app__wp {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
}
.app__block {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 1.6vw;
}
@media (max-width: 998px) {
  .app__block {
    padding: 4.5vw;
  }
}
.app__title {
  font-size: 1.6vw;
  display: flex;
  align-items: center;
  padding-bottom: 1.2vw;
  gap: 1.5vw;
  margin-bottom: 1.3vw;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.app__title span {
  font-size: 0.9vw;
  border-radius: 24px;
  border: 1px solid #fff;
  background: transparent;
  padding: 0.25vw 0.4vw;
  padding-bottom: 0.15vw;
}
@media (max-width: 998px) {
  .app__title span {
    font-size: 3vw;
    padding: 0.75vw 1.2vw;
    padding-bottom: 0.45vw;
  }
}
@media (max-width: 998px) {
  .app__title {
    font-size: 4.5vw;
    padding-bottom: 3vw;
    margin-bottom: 5vw;
    gap: 5vw;
  }
}
.app__risk {
  display: flex;
  flex-direction: column;
  gap: 1.3vw;
}
@media (max-width: 998px) {
  .app__risk {
    gap: 4vw;
  }
}
.app__right {
  display: flex;
  flex-direction: column;
  gap: 1.3vw;
}
@media (max-width: 998px) {
  .app__right {
    gap: 5vw;
  }
}
.user-app__img {
  width: 4vw;
}
@media (max-width: 998px) {
  .user-app__img {
    width: 18vw;
  }
}
.user-app__img img {
  width: 100%;
}
.user-app__data {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 1vw;
}
@media (max-width: 998px) {
  .user-app__data {
    border-right: none;
  }
}
.user-app__name {
  font-size: 1.6vw;
}
@media (max-width: 998px) {
  .user-app__name {
    font-size: 5vw;
  }
}
.user-app__btns {
  display: flex;
  gap: 1vw;
  margin-top: 0.5vw;
}
@media (max-width: 998px) {
  .user-app__btns {
    flex-direction: column;
    gap: 1vw;
    margin-top: 1vw;
  }
}
.user-app__btns a {
  color: #ffffff63;
  display: flex;
  cursor: pointer;
  align-items: center;
  font-size: 0.9vw;
  gap: 0.5vw;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  padding: 0.4vw 0.5vw;
}
.user-app__btns a img {
  width: 0.9vw;
}
@media (max-width: 998px) {
  .user-app__btns a {
    gap: 1.5vw;
    padding: 1vw 1.5vw;
    font-size: 3vw;
  }
  .user-app__btns a img {
    width: 3vw;
  }
}
@media (max-width: 998px) {
  .user-app__chart {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3vw;
    width: 100%;
  }
}
.user-app__chart:hover {
  transform: scale(1);
}
.user-app__chart:hover img {
  transform: scale(1.15);
}
.user-app__chart img {
  transition: 0.3s;
  width: 5vw;
}
@media (max-width: 998px) {
  .user-app__chart img {
    width: 15vw;
  }
}

.risk-app__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2vw;
  padding: 1.2vw;
  color: #f12d21;
  border-radius: 18px;
  border: 1px solid #f12d21;
  box-shadow: 0px 0px 5px 0px #f12d21;
}
.risk-app__item img {
  width: 3vw;
}
@media (max-width: 998px) {
  .risk-app__item {
    font-size: 4vw;
    padding: 4vw;
  }
  .risk-app__item img {
    width: 10vw;
  }
}
.risk-app__item._danger {
  border: 1px solid #f18021;
  box-shadow: 0px 0px 5px 0px #f18021;
  color: #f18021;
}
.risk-app__item._good {
  border: 1px solid #21f15b;
  color: #21f15b;
  box-shadow: 0px 0px 5px 0px #21f15b;
}
.risk-app__message {
  border-radius: 24px;
  border: 1px solid rgba(241, 45, 33, 0.2);
  background: rgba(241, 45, 33, 0.2);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  gap: 0.5vw;
  padding: 0.4vw 0.5vw;
  width: max-content;
  color: #f12d21;
  font-size: 0.9vw;
}
.risk-app__message img {
  width: 0.9vw;
}
@media (max-width: 998px) {
  .risk-app__message {
    font-size: 3vw;
    gap: 1.5vw;
    padding: 1.2vw 1.5vw;
  }
  .risk-app__message img {
    width: 3vw;
  }
}

.overview-app {
  display: flex;
  flex-direction: column;
  gap: 0.9vw;
}
@media (max-width: 998px) {
  .overview-app {
    gap: 3vw;
  }
}
.overview-app__item {
  display: flex;
  justify-content: space-between;
  border-radius: 9px;
  background: rgba(13, 12, 12, 0.6);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  padding: 0.9vw;
  align-items: center;
}
.overview-app__head {
  font-size: 1.1vw;
}
@media (max-width: 998px) {
  .overview-app__head {
    font-size: 3.5vw;
  }
}
.overview-app__ca a {
  display: flex;
  color: inherit;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  gap: 0.5vw;
  align-items: center;
  padding: 0.4vw 0.5vw;
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
}
@media (max-width: 998px) {
  .overview-app__ca a {
    padding: 1.2vw 1.5vw;
  }
}
.overview-app__ca a img {
  width: 0.9vw;
}
@media (max-width: 998px) {
  .overview-app__ca a img {
    width: 3vw;
  }
}
.overview-app__ca span {
  font-size: 0.9vw;
  opacity: 0.5;
}
@media (max-width: 998px) {
  .overview-app__ca span {
    font-size: 3vw;
  }
}

.marketing-app {
  display: flex;
  flex-direction: column;
  gap: 0.7vw;
}
@media (max-width: 998px) {
  .marketing-app {
    gap: 3vw;
  }
}
.marketing-app__item {
  display: flex;
  justify-content: space-between;
  border-radius: 9px;
  background: rgba(13, 12, 12, 0.6);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  padding: 0.9vw;
  font-size: 1.1vw;
  align-items: center;
}
@media (max-width: 998px) {
  .marketing-app__item {
    font-size: 4vw;
    padding: 2vw;
  }
}
.marketing-app__star {
  color: #fe7400;
  border-radius: 24px;
  border: 1px solid rgba(241, 128, 33, 0.2);
  background: rgba(241, 128, 33, 0.2);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  font-size: 0.9vw;
  padding: 0.2vw;
  padding-bottom: 0;
}
@media (max-width: 998px) {
  .marketing-app__star {
    font-size: 3vw;
    padding: 0.6vw;
    padding-bottom: 0.2vw;
  }
}
.marketing-app__soon {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  padding: 0.4vw 0.5vw;
  color: #ffffff71;
  font-size: 0.9vw;
}
@media (max-width: 998px) {
  .marketing-app__soon {
    font-size: 3vw;
    padding: 1.2vw 1.5vw;
  }
}

.holders-app {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}
@media (max-width: 998px) {
  .holders-app {
    gap: 1.5vw;
  }
}
.holders-app a {
  color: inherit;
}
.holders-app a:hover {
  transform: scale(1.05);
}
.holders-app__item {
  border-radius: 9px;
  background: rgba(13, 12, 12, 0.6);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  padding: 0.8vw;
  text-align: center;
  font-size: 1vw;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 998px) {
  .holders-app__item {
    padding: 2.5vw;
    font-size: 4vw;
  }
}
.holders-app__item span {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8.4198932648px);
  -webkit-backdrop-filter: blur(8.4198932648px);
  padding: 0.4vw 0.5vw;
  color: #ffffff72;
  width: max-content;
}
@media (max-width: 998px) {
  .holders-app__item span {
    padding: 1.2vw 1.5vw;
  }
}
.holders-app__item div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 0.5vw;
}
.holders-app__item div:nth-child(1) img {
  width: 1.3vw;
}
@media (max-width: 998px) {
  .holders-app__item div:nth-child(1) {
    gap: 1.5vw;
  }
  .holders-app__item div:nth-child(1) img {
    width: 5vw;
  }
}
.holders-app__item div:last-child {
  text-align: right;
}
.holders-app__item_top {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  opacity: 0.5;
  font-size: 0.9vw;
}
@media (max-width: 998px) {
  .holders-app__item_top {
    font-size: 4vw;
  }
}
.holders-app__item_top span {
  width: auto;
  background: transparent;
  border: none;
}
.holders-app__item_top span:first-child {
  text-align: left;
}
.holders-app__item_top span:last-child {
  text-align: right;
}

a {
  transition: 0.3s;
}
a:hover {
  transform: scale(1.15);
}

.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: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  max-width: 85%;
  color: #000;
  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;
}

.popup::before {
  background: transparent;
}
.popup__body {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  max-width: 25vw;
  width: 100%;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 998px) {
  .popup__body {
    max-width: 90%;
    padding: 7vw;
  }
}
.popup__error {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #f18021;
  box-shadow: 0px 0px 10px 0px #f18021;
  display: flex;
  align-items: center;
  font-size: 1.2vw;
  color: #f18021;
  gap: 1vw;
  padding: 1vw;
  justify-content: center;
  text-align: center;
}
.popup__error img {
  width: 2.5vw;
}
@media (max-width: 998px) {
  .popup__error {
    gap: 3vw;
    font-size: 5vw;
    padding: 5vw;
  }
  .popup__error img {
    width: 12vw;
  }
}
.popup__btn {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5vw 3vw;
  font-size: 1vw;
  transition: 0.3s;
  margin-top: 2vw;
}
@media (max-width: 998px) {
  .popup__btn {
    padding: 4vw 10vw;
    font-size: 5vw;
    margin-top: 7vw;
  }
}
.popup__btn:hover {
  background: #fff;
  color: #000;
}