@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Neucha:regular);
@font-face {
  font-family: "Renju";
  src: url("../fonts/renju.regular.woff") format("woff"), url("../fonts/renju.regular.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

html {
  font-size: 20px;
}

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

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

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

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

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

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

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

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #211618;
  color: #DACFD0;
  line-height: 1.2;
}
._container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0px 80px;
}
@media (max-width: 900px) {
  ._container {
    padding: 0px 25px;
  }
}

._btn {
  font-size: 50px;
  display: block;
  margin: 0px auto;
  font-family: "Renju";
  text-align: center;
  text-transform: uppercase;
  background-image: url(../img/disbg.png);
  color: #211618;
  width: max-content;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 5px 30px;
}
@media (max-width: 600px) {
  ._btn {
    font-size: 30px;
    padding: 5px;
    width: 100%;
    max-width: 320px;
  }
}

.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: absolute;
  width: 100%;
  z-index: 20;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
}
.header__menu ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__menu ul a {
  color: #DACFD0;
}
@media (max-width: 900px) {
  .header__menu {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #211618;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0px, -100%);
    transition: 0.3s;
  }
  .header__menu._active {
    transform: translate(0px);
  }
  .header__menu ul {
    flex-direction: column;
    gap: 30px;
    font-size: 25px;
  }
}
.header__link {
  display: flex;
  align-items: center;
  gap: 17px;
}
@media (max-width: 500px) {
  .header__link {
    gap: 14px;
  }
  .header__link img {
    width: 20px;
  }
}
.header__burger {
  display: none;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .header__burger {
    display: block;
  }
}

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

._title {
  text-align: center;
  color: #FFFFFF;
  font-size: 100px;
  font-family: "Renju";
}
@media (max-width: 600px) {
  ._title {
    font-size: 40px;
  }
}

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

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

.mint {
  position: relative;
}
.mint::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/bb1.png);
  aspect-ratio: 1/1;
  width: max(100%, 1920px);
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}
@media (max-width: 1500px) {
  .mint::before {
    background-position: -100px top;
  }
}
@media (max-width: 700px) {
  .mint::before {
    background-image: url(../img/nbg2.png);
    background-position: top left;
    width: 100%;
    background-size: 100%;
    height: 1500px;
  }
}
@media (max-width: 500px) {
  .mint::before {
    width: 520px;
  }
}
.mint__container {
  padding-top: 130px;
  position: relative;
  z-index: 2;
  min-height: 770px;
}
@media (max-width: 700px) {
  .mint__container {
    min-height: 650px;
  }
}
.mint__title {
  color: #FFFFFF;
  font-size: 150px;
  font-family: "Renju";
  text-transform: uppercase;
  line-height: 1.1;
}
@media (max-width: 700px) {
  .mint__title {
    font-size: 60px;
  }
}
.mint__subtitle {
  margin-top: 5px;
  max-width: 455px;
  color: #DACFD0;
  font-size: 25px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .mint__subtitle {
    font-size: 20px;
  }
}
.mint__btn {
  cursor: pointer;
  margin-top: 50px;
  color: #211618;
  font-size: 50px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  width: max-content;
  padding: 4px 40px;
  background-image: url(../img/bgmint.svg);
  font-family: "Renju";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 700px) {
  .mint__btn {
    margin-top: 40px;
    font-size: 30px;
  }
}

.storyline {
  position: relative;
  z-index: 2;
}
.storyline::before {
  position: absolute;
  top: -320px;
  left: 0;
  content: "";
  background-image: url(../img/stbg.png);
  aspect-ratio: 1/2;
  width: max(100%, 1920px);
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 1500px) {
  .storyline::before {
    background-position: -100px top;
  }
}
@media (max-width: 700px) {
  .storyline::before {
    background-size: 100%;
    background-position: center top;
    width: max(100%, 500px);
    top: -100px;
  }
}
.storyline__container {
  padding-top: 320px;
  position: relative;
  z-index: 3;
}
@media (max-width: 700px) {
  .storyline__container {
    padding-top: 70px;
  }
}
.storyline__text {
  max-width: 860px;
  margin: 0px auto;
  text-align: center;
  margin-top: 30px;
  font-size: 25px;
}
@media (max-width: 600px) {
  .storyline__text {
    font-size: 16px;
    margin-top: 15px;
  }
}
.storyline__text p {
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .storyline__text p {
    margin-bottom: 10px;
  }
}
.storyline__btn {
  margin-top: 50px;
}
@media (max-width: 700px) {
  .storyline__btn {
    margin-top: 30px;
  }
}
.storyline__btn a {
  font-size: 50px;
  display: block;
  margin: 0px auto;
  font-family: "Renju";
  text-align: center;
  text-transform: uppercase;
  background-image: url(../img/disbg.png);
  color: #211618;
  width: max-content;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 5px 30px;
}
@media (max-width: 600px) {
  .storyline__btn a {
    font-size: 30px;
    padding: 5px;
    width: 100%;
    max-width: 320px;
  }
}

.roadmap {
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .roadmap {
    background-image: url(../img/starss.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
.roadmap::before {
  position: absolute;
  top: -320px;
  left: 0;
  content: "";
  background-image: url(../img/roadbg.png);
  aspect-ratio: 1/2;
  width: max(100%, 1920px);
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .roadmap::before {
    top: -220px;
    background-position: -150px top;
    width: max(100%, 1820px);
  }
}
@media (max-width: 1100px) {
  .roadmap::before {
    width: max(100%, 1320px);
    top: -20px;
  }
}
@media (max-width: 700px) {
  .roadmap::before {
    top: 0px;
    width: max(100%, 545px);
    background-size: 100%;
    background-position: center top;
    background-image: url(../img/rnb.png);
  }
}
.roadmap__container {
  padding-top: 250px;
  position: relative;
  z-index: 3;
}
@media (max-width: 700px) {
  .roadmap__container {
    padding-bottom: 200px;
  }
}
@media (max-width: 700px) {
  .roadmap__title {
    text-align: left;
  }
}
.roadmap__block {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 800px) {
  .roadmap__block {
    gap: 70px;
  }
}
.roadmap__item {
  max-width: calc(33.33% - 15px);
}
.roadmap__item:nth-child(2) {
  margin-top: 150px;
}
.roadmap__item:nth-child(3) {
  margin-top: 300px;
}
@media (max-width: 998px) {
  .roadmap__item {
    max-width: 100%;
    margin-top: 0px !important;
  }
}
.roadmap__head {
  font-family: "Renju";
  color: #FFFFFF;
  font-size: 50px;
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  .roadmap__head {
    font-size: 25px;
    margin-bottom: 16px;
  }
}
.roadmap ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 700px) {
  .roadmap ul {
    gap: 10px;
  }
}
.roadmap ul li {
  position: relative;
  padding-left: 35px;
  font-size: 25px;
}
@media (max-width: 700px) {
  .roadmap ul li {
    font-size: 16px;
  }
}
.roadmap ul li::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  width: 14px;
  height: 2px;
  background-color: #DACFD0;
}

.whitepaper {
  position: relative;
  z-index: 3;
}
.whitepaper::before {
  position: absolute;
  top: -320px;
  left: 0;
  content: "";
  background-image: url(../img/whb.png);
  aspect-ratio: 1/2;
  width: max(100%, 1920px);
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .whitepaper::before {
    top: -220px;
    background-position: -250px top;
    width: max(100%, 1820px);
  }
}
@media (max-width: 1100px) {
  .whitepaper::before {
    width: max(100%, 1320px);
    top: -20px;
  }
}
@media (max-width: 700px) {
  .whitepaper::before {
    top: -200px;
    width: max(100%, 545px);
    background-size: 100%;
    background-position: center top;
    background-image: url(../img/whmb.png);
  }
}
.whitepaper__container {
  padding-top: 750px;
  position: relative;
  z-index: 4;
}
@media (max-width: 700px) {
  .whitepaper__container {
    padding-top: 300px;
  }
}
.whitepaper__subtitle {
  text-align: center;
  max-width: 500px;
  font-size: 25px;
  margin: 0px auto;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .whitepaper__subtitle {
    margin-top: 15px;
    margin-bottom: 40px;
    font-size: 20px;
  }
}
.team {
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.team::before {
  position: absolute;
  top: -220px;
  left: 0;
  content: "";
  background-image: url(../img/tbg.png);
  aspect-ratio: 1/2;
  width: max(100%, 1920px);
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .team::before {
    top: -220px;
    background-position: -250px top;
    width: max(100%, 1820px);
  }
}
@media (max-width: 1100px) {
  .team::before {
    width: max(100%, 1100px);
    top: -20px;
    background-position: -150px top;
  }
}
@media (max-width: 700px) {
  .team::before {
    top: 50px;
    width: max(100%, 485px);
    background-size: 100%;
    background-position: center top;
    background-image: url(../img/tmb.png);
  }
}
.team__container {
  padding-top: 250px;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .team__container {
    padding-top: 450px;
  }
}
.team__block {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 700px) {
  .team__block {
    margin-top: 30px;
    gap: 30px;
  }
}
.team__item {
  max-width: 310px;
  width: 100%;
}
.team__img img {
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 500px) {
  .team__img {
    padding: 0px 30px;
  }
}
.team__name {
  font-family: "Renju";
  font-size: 25px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 20px;
}
@media (max-width: 700px) {
  .team__name {
    font-size: 20px;
  }
}
.team__text {
  margin-top: 15px;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
}
@media (max-width: 700px) {
  .team__text {
    font-size: 16px;
    margin-top: 10px;
  }
}

.faq {
  position: relative;
  z-index: 1;
}
.faq::before {
  position: absolute;
  top: -120px;
  left: 0;
  content: "";
  background-image: url(../img/fbg.png);
  aspect-ratio: 1/2;
  width: max(100%, 1920px);
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .faq::before {
    top: -220px;
    background-position: -250px top;
    width: max(100%, 1820px);
  }
}
@media (max-width: 1100px) {
  .faq::before {
    width: max(100%, 1320px);
    top: -20px;
  }
}
@media (max-width: 700px) {
  .faq::before {
    top: -200px;
    width: max(100%, 545px);
    background-size: 100%;
    background-position: center top;
    background-image: url(../img/lbg.png);
  }
}
.faq__container {
  padding-top: 250px;
  position: relative;
  z-index: 4;
}
@media (max-width: 700px) {
  .faq__container {
    padding-top: 430px;
    padding-bottom: 100px;
  }
}
.faq__block {
  max-width: 860px;
  margin: 0px auto;
  margin-top: 50px;
}
.faq__quest {
  padding: 30px 60px;
  font-size: 30px;
  line-height: 100%;
  font-family: "Renju";
  color: #211618;
  background-image: url(../img/qu.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 100px;
  position: relative;
}
.faq__quest::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  content: "";
  right: 40px;
  background-image: url(../img/plus.svg);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .faq__quest::before {
    right: 30px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 700px) {
  .faq__quest {
    font-size: 18px;
    padding: 16px 25px;
    padding-right: 100px;
  }
}
.faq__resp {
  box-sizing: border-box;
  padding: 30px 60px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-image: url(../img/resp.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  color: #413437;
}
@media (max-width: 700px) {
  .faq__resp {
    font-size: 16px;
    padding: 30px 30px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.faq__resp._padding {
  padding: 0px 60px;
}
@media (max-width: 700px) {
  .faq__resp._padding {
    padding: 0px 30px;
  }
}

.footer {
  position: relative;
  z-index: 3;
}
@media (max-width: 700px) {
  .footer {
    display: none;
  }
}
.footer__container {
  padding-top: 100px;
  padding-bottom: 60px;
}
.footer__menu ul {
  display: flex;
  gap: 30px;
}
.footer__menu ul a {
  color: #DACFD0;
}

.popup__body {
  background: #211618;
  border: 2px solid #000000;
  border-radius: 50px;
  display: flex;
  max-width: 860px;
  gap: 20px;
  padding: 52px 100px;
  color: #fff;
}
@media (max-width: 900px) {
  .popup__body {
    padding: 40px;
  }
}
@media (max-width: 700px) {
  .popup__body {
    flex-direction: column;
  }
}
.popup__close {
  background-image: url(../img/x.png);
  background-size: contain;
  width: 22px;
  height: 22px;
  transform: translate(0px, -100%);
}
.popup__img {
  flex: 0 0 310px;
  position: relative;
  height: max-content;
}
.popup__img span {
  position: absolute;
  background: #FFFFFF;
  border-radius: 0px 20px;
  display: block;
  bottom: 0px;
  left: 0;
  padding: 5px 10px;
  font-family: "Renju";
  font-size: 25px;
  line-height: 1;
  color: #211618;
}
.popup__img img {
  width: 100%;
  aspect-ratio: 1/1;
}
.popup__wp {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.popup__title {
  text-align: left;
  font-size: 60px;
}
.popup__mint {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-family: "Renju";
  border-bottom: 3px solid #fff;
  align-items: center;
}
.popup__plus {
  font-size: 40px;
  cursor: pointer;
}
.popup__minus {
  font-size: 40px;
  cursor: pointer;
}
.popup__btn {
  font-size: 30px;
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  background-size: 100% 100%;
  cursor: pointer;
}
.popup__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup__block {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.popup__block .popup__item {
  flex: 0 0 110px;
}
.popup__block .popup__item:nth-child(1), .popup__block .popup__item:nth-child(3), .popup__block .popup__item:nth-child(4) {
  flex: 0 0 85px;
}
.popup__item span {
  font-size: 15px;
  font-family: "Renju";
  margin-bottom: 5px;
}
.popup__item p {
  color: #DACFD0;
  font-size: 20px;
}
.popup__erorr {
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.3;
  margin-top: auto;
}

.preloader {
  position: absolute;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #211618;
  overflow: hidden;
  opacity: 1;
  transition: 0.3s;
}
.preloader img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
}
.preloader img._active {
  animation: preload 3s forwards;
}
@media (max-width: 900px) {
  .preloader img {
    width: 100px;
  }
}

@keyframes preload {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 400px);
  }
}
@media (max-width: 998px) {
  @keyframes preload {
    0% {
      left: 0;
    }
    100% {
      left: calc(100% - 100px);
    }
  }
}