@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Prompt:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900&display=swap&subset=cyrillic-ext);
@font-face {
  font-family: "Gilroy-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;
}
@font-face {
  font-family: "Old English Text MT";
  src: url(../fonts/diploma.woff);
  font-weight: 400;
}
@font-face {
  font-family: "Pricedown Rus";
  src: url(../fonts/pricedownrus.woff);
  font-weight: 400;
}
* {
  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: "Prompt";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

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

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

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

.preload {
  position: fixed;
  width: 100vw;
  top: 0;
  z-index: 40;
  left: 0;
  height: 100vh;
  background-color: #000;
  transition: 0.3s;
}
.preload._ready {
  pointer-events: none;
  opacity: 0;
}
.preload._text .preload__text {
  opacity: 1;
}
.preload .preload__text {
  position: absolute;
  bottom: 50px;
  font-size: 60px;
  font-family: "Old English Text MT";
  color: #fff;
  transition: 0.3s;
  width: 100%;
  opacity: 0;
  text-align: center;
}
@media (max-width: 998px) {
  .preload .preload__text {
    font-size: 50px;
  }
}
.preload._animation .preload__fonn img:nth-child(1) {
  animation: first 0.3s forwards;
}
.preload._animation .preload__fonn img:nth-child(2) {
  animation: two 0.3s 0.3s forwards;
}
.preload._animation .preload__fonn img:nth-child(3) {
  animation: three 0.3s 0.6s linear forwards;
}

.preload__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
}
@media (max-width: 700px) {
  .preload__logo {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
.preload__logo img {
  width: 100%;
}

.preload__fonn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.preload__fonn img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 150%;
}
.preload__fonn img:nth-child(1) {
  top: -160px;
  left: -170px;
}
@keyframes first {
  0% {
    transform: translate(0px);
  }
  100% {
    transform: translate(100%, -30%);
  }
}
.preload__fonn img:nth-child(2) {
  height: 60%;
  top: 60px;
  left: -30px;
}
@keyframes two {
  0% {
    transform: translate(0px);
  }
  100% {
    transform: translate(-100%, 30%);
  }
}
.preload__fonn img:nth-child(3) {
  top: 100px;
  left: -30px;
}
@keyframes three {
  0% {
    transform: translate(0px);
  }
  100% {
    transform: translate(100%, -50%);
  }
}

.preload__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  cursor: pointer;
}
.preload__play._read {
  opacity: 0;
}

.home {
  position: relative;
}
@media (max-width: 998px) {
  .home {
    background-color: #000;
  }
}
.home__fon {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 998px) {
  .home__fon {
    display: none;
  }
}
.home__fon::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 20%;
  pointer-events: none;
  background-image: url(../img/rec.png);
  background-size: 100%;
  z-index: 2;
  background-repeat: no-repeat;
  pointer-events: none;
}
.home__fon img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: scfon 40s 4s infinite;
}
@keyframes scfon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.home__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
}
@media (max-width: 998px) {
  .home__container {
    flex-direction: column;
  }
}
.home__content {
  transform: translate(-150%);
  transition: 0.5s;
  position: relative;
  z-index: 3;
  padding-top: 130px;
  max-width: 40%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 120px;
}
.home__content._active {
  transform: translate(0%);
}
@media (max-width: 1300px) {
  .home__content {
    max-width: 50%;
  }
}
@media (max-width: 998px) {
  .home__content {
    max-width: 100%;
    padding-top: 70px;
  }
}
.home__head {
  width: 25vw;
  font-size: 154.828px;
  font-family: "Pricedown Rus";
  color: #fff;
}
@media (max-width: 998px) {
  .home__head {
    width: 50vw;
  }
}
.home__head img {
  width: 100%;
}
.home__title {
  max-width: 80%;
  margin-top: -0px;
}
@media (max-width: 998px) {
  .home__title {
    margin-top: -0px;
  }
}
.home__title img {
  width: 100%;
}
.home__text {
  margin-top: 100px;
  text-align: center;
  text-shadow: 0px 4px 4px #000;
  font-size: 30px;
  line-height: 1.5;
}
@media (max-width: 1500px) {
  .home__text {
    font-size: 24px;
  }
}
@media (max-width: 1300px) {
  .home__text {
    font-size: 20px;
    margin-top: 80px;
  }
}
@media (max-width: 998px) {
  .home__text {
    margin-top: 60px;
  }
}
@media (max-width: 998px) {
  .home__btn {
    width: 80%;
    position: relative;
    z-index: 4;
  }
}
.home__btn a {
  margin-top: 97px;
  padding: 21px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  border-radius: 24px;
  border: 3px solid #e8a42a;
  background: #e8a42a;
  gap: 10px;
  transition: 0.3s;
}
.home__btn a:hover {
  transform: scale(1.15);
}
.home__btn a img {
  width: 46px;
  animation: imm 1s linear infinite;
}
@keyframes imm {
  0% {
    transform: translate(0px);
  }
  30% {
    transform: translate(0px, -10px);
  }
  60% {
    transform: translate(0px);
  }
  100% {
    transform: translate(0px);
  }
}
@media (max-width: 1500px) {
  .home__btn a {
    font-size: 24px;
    padding: 14px 24px;
    margin-top: 80px;
  }
  .home__btn a img {
    width: 40px;
  }
}
@media (max-width: 1300px) {
  .home__btn a {
    font-size: 20px;
    border-radius: 18px;
    margin-top: 70px;
  }
  .home__btn a img {
    width: 30px;
  }
}
@media (max-width: 998px) {
  .home__btn a {
    width: 100%;
    font-size: 25px;
    margin-top: -90px;
    justify-content: space-between;
  }
}
.home__img {
  max-width: 40%;
  transform: translate(100vw);
  transition: 1s;
  transition-delay: 0.3s;
}
.home__img div {
  display: none;
}
.home__img._active {
  transform: translate(-10%);
}
@media (max-width: 998px) {
  .home__img {
    width: 120%;
    max-width: 120%;
    transform: translate(0%);
    overflow: hidden;
  }
  .home__img div {
    width: 100%;
    position: absolute;
    display: block;
    height: 100%;
    background-image: url(../img/fon.png);
    background-size: cover;
    animation: scfon 40s 4s infinite;
  }
  .home__img._active {
    transform: translate(0%);
  }
  .home__img::before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 200%;
    height: 20%;
    pointer-events: none;
    background-image: url(../img/rec.png);
    background-size: 100%;
    z-index: 2;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .home__img::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 200%;
    height: 20%;
    pointer-events: none;
    background-image: url(../img/Rectangle1.png);
    background-size: 100%;
    z-index: 2;
    background-repeat: no-repeat;
    pointer-events: none;
  }
}
.home__img img {
  width: 100%;
}
@media (max-width: 998px) {
  .home__img img {
    position: relative;
    z-index: 2;
  }
}

.roadmap {
  margin-top: -50px;
  position: relative;
}
@media (max-width: 998px) {
  .roadmap {
    background-color: #000;
  }
}
.roadmap::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 20%;
  pointer-events: none;
  background-image: url(../img/rec.png);
  background-size: 100%;
  z-index: 2;
  background-repeat: no-repeat;
  pointer-events: none;
}
.roadmap__fon {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 998px) {
  .roadmap__fon {
    height: 50%;
    display: none;
  }
}
.roadmap__fon img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: scfon 40s 4s infinite;
}
.roadmap__conttainer {
  display: flex;
  position: relative;
  z-index: 2;
}
.roadmap__content {
  max-width: 45%;
  width: 100%;
  position: relative;
  z-index: 3;
  padding-bottom: 200px;
}
@media (max-width: 998px) {
  .roadmap__content {
    max-width: 100%;
    padding-bottom: 0;
  }
}
.roadmap__contract {
  padding-top: 2.5vw;
  font-size: 30px;
}
@media (max-width: 1500px) {
  .roadmap__contract {
    font-size: 20px;
  }
}
@media (max-width: 998px) {
  .roadmap__contract {
    word-break: break-all;
    text-align: center;
    font-size: 18px;
    padding-top: 0px;
  }
}
.roadmap__head {
  margin-top: 126px;
}
@media (max-width: 1500px) {
  .roadmap__head {
    margin-top: 90px;
  }
}
.roadmap__head img {
  width: 100%;
}
.roadmap__head img:nth-child(2) {
  display: none;
}
@media (max-width: 998px) {
  .roadmap__head img:nth-child(2) {
    display: block;
    width: 180px;
  }
  .roadmap__head img:nth-child(1) {
    display: none;
  }
}
.roadmap__tiitle {
  font-family: "Old English Text MT";
  font-size: 54px;
  margin-top: 123px;
}
@media (max-width: 1500px) {
  .roadmap__tiitle {
    font-size: 50px;
    margin-top: 90px;
  }
}
.roadmap__block {
  margin-top: 66px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 55px;
  max-width: 80%;
}
@media (max-width: 998px) {
  .roadmap__block {
    max-width: 100%;
    flex-direction: column;
  }
}
.roadmap__item {
  width: 45%;
}
@media (max-width: 998px) {
  .roadmap__item {
    width: 60%;
  }
}
.roadmap__item:nth-child(even) {
  transform: translate(0px, 70px);
}
@media (max-width: 998px) {
  .roadmap__item:nth-child(even) {
    transform: translate(0px, 0px);
    margin-left: auto;
  }
}
.roadmap__sta {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.roadmap__sta img {
  width: 100%;
  animation: imm 1s linear infinite;
}
.roadmap__text {
  margin-top: 15px;
  font-size: 25px;
  line-height: 1.2;
}
.roadmap__text span {
  font-size: 35px;
  font-family: "Old English Text MT";
}
@media (max-width: 1500px) {
  .roadmap__text span {
    font-size: 30px;
  }
}
@media (max-width: 1500px) {
  .roadmap__text {
    font-size: 20px;
  }
}
.roadmap__text p {
  margin-top: 10px;
}
.roadmap__img {
  position: absolute;
  left: 40%;
  bottom: 0;
  width: 53%;
}
.roadmap__img div {
  display: none;
}
@media (max-width: 1500px) {
  .roadmap__img {
    left: 38%;
  }
}
@media (max-width: 998px) {
  .roadmap__img {
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100vw;
    overflow: hidden;
  }
  .roadmap__img div {
    background-image: url(../img/fon2.png);
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    animation: scfon 40s 4s infinite;
  }
  .roadmap__img img {
    transform: translate(20%);
    position: relative;
    z-index: 2;
  }
  .roadmap__img::before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 180%;
    height: 20%;
    pointer-events: none;
    background-image: url(../img/rec.png);
    background-size: 100%;
    z-index: 2;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .roadmap__img::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 20%;
    pointer-events: none;
    background-image: url(../img/rec.png);
    background-size: 100%;
    z-index: 2;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: rotate(180deg) scale(-1, 1);
  }
}
.roadmap__img img {
  width: 100%;
}

.header {
  position: fixed;
  width: 800px;
  right: 0;
  z-index: 3;
}
@media (max-width: 1500px) {
  .header {
    width: 500px;
  }
}
@media (max-width: 998px) {
  .header {
    display: none;
  }
}
.header__container {
  padding-top: 150px;
  display: flex;
  justify-content: end;
}
@media (max-width: 1500px) {
  .header__container {
    padding-top: 100px;
    padding-right: 30px;
  }
}
.header__block {
  width: max-content;
}
.header__him {
  width: 480px;
}
@media (max-width: 1500px) {
  .header__him {
    width: 350px;
  }
}
@media (max-width: 1300px) {
  .header__him {
    width: 320px;
  }
}
.header__him img {
  width: 100%;
}
.header__links {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1300px) {
  .header__links {
    gap: 5px;
  }
}
@media (max-width: 998px) {
  .header__links {
    flex-wrap: wrap;
    max-width: 300px;
  }
}
.header__links a {
  width: 30%;
  transition: 0.3s;
}
.header__links a:hover {
  transform: scale(1.15);
}
.header__links img {
  width: 74px;
}
@media (max-width: 1500px) {
  .header__links img {
    width: 60px;
  }
}
@media (max-width: 1500px) {
  .header__links img {
    width: 50px;
  }
}
@media (max-width: 998px) {
  .header__links img {
    width: 100%;
  }
}

.tri {
  background-image: url(../img/3fon.png);
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media (max-width: 998px) {
  .tri {
    background-color: #000;
    background-image: none;
  }
}
.tri::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  pointer-events: none;
  background-image: url(../img/q1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  height: 30%;
}
.tri::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  pointer-events: none;
  background-image: url(../img/w2.png);
  background-size: 100%;
  background-repeat: no-repeat;
  height: 30%;
  background-position: bottom;
}
.tri__container {
  padding-top: 140px;
  min-height: 1080px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 4;
}
@media (max-width: 1500px) {
  .tri__container {
    min-height: 920px;
  }
}
@media (max-width: 998px) {
  .tri__container {
    min-height: auto;
  }
}
.tri__head {
  margin-bottom: 150px;
}
@media (max-width: 998px) {
  .tri__head {
    margin-bottom: 30px;
  }
}
.tri__head img {
  max-width: 80%;
}
.tri__btn {
  margin-top: auto;
}
@media (max-width: 998px) {
  .tri__btn {
    position: relative;
    margin-top: 0px;
  }
}
.tri__btn a {
  margin-top: 97px;
  padding: 21px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  color: #e8a42a;
  border-radius: 24px;
  border: 3px solid #e8a42a;
  background: #000;
  width: max-content;
  gap: 10px;
  transition: 0.3s;
}
.tri__btn a:hover {
  transform: scale(1.15);
}
.tri__btn a img {
  animation: imm 1s linear infinite;
}
@media (max-width: 998px) {
  .tri__btn a {
    position: relative;
  }
}
.tri__btn a img {
  width: 46px;
}
@media (max-width: 1500px) {
  .tri__btn a {
    font-size: 24px;
    padding: 14px 24px;
    margin-top: 80px;
  }
  .tri__btn a img {
    width: 40px;
  }
}
@media (max-width: 1300px) {
  .tri__btn a {
    font-size: 20px;
    border-radius: 18px;
    margin-top: 70px;
  }
  .tri__btn a img {
    width: 30px;
  }
}
@media (max-width: 998px) {
  .tri__btn a {
    width: 80%;
    margin: 0px auto;
    font-size: 25px;
    margin-top: -30px;
    justify-content: space-between;
  }
}
.tri__contract {
  margin-top: 76px;
  text-align: right;
  padding-bottom: 1vw;
  text-shadow: 0px 4px 4px #000;
  font-size: 30px;
}
@media (max-width: 998px) {
  .tri__contract {
    font-size: 18px;
    padding-bottom: 20px;
    word-break: break-all;
    text-align: center;
    margin-top: 27px;
  }
}
.tri__gif {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 998px) {
  .tri__gif {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translate(-50%);
  }
}
.tri__gif video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 998px) {
  .tri__gif video {
    position: relative;
  }
}
.tri .header__links {
  margin-top: 30px;
}
@media (min-width: 998px) {
  .tri .header__links {
    display: none;
  }
}
