:root {
  --font-main: "Rubik", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
}

.container {
  padding: 0 15px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s transform;
}
.button:hover {
  transform: scale(0.9);
}
.button--base {
  height: 60px;
  width: 264px;
  padding: 20px;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 12px;
}
.button--step {
  max-width: 215px;
  width: 100%;
  height: 68px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(0, 0, 0);
  background: var(--bg-color);
  gap: 10px;
  border-radius: 12px;
  box-shadow: rgb(0, 0, 0) 0px -5px 0px 0px inset;
  border: 3px solid #000;
}
.button--step--dark {
  color: #000;
}
.button--step img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.button--red {
  border: solid 2px #000;
  background-color: #f96d6d;
  color: #fff;
}
.button--white {
  color: #e75252;
  box-shadow: 0px 5px 0 0 #000;
  border: solid 4px #000;
}
.button--full {
  max-width: 100%;
  width: 100%;
}

.title--small {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
}
@media screen and (max-width: 767px) {
  .title--small {
    font-size: 30px;
  }
}
.title--base {
  font-size: 80px;
  font-weight: 900;
  line-height: 1.05;
}
@media screen and (max-width: 767px) {
  .title--base {
    font-size: 40px;
  }
}
.title--large {
  font-size: 233px;
  font-weight: 900;
  text-shadow: 2.5px 4.3px 0 #b62f2f;
  line-height: 0.92;
}
@media screen and (max-width: 1280px) {
  .title--large {
    font-size: 100px;
  }
}
@media screen and (max-width: 767px) {
  .title--large {
    font-size: 50px;
  }
}
.title--black {
  color: #2a4c75;
}
.title--red {
  color: #ff7878;
}
.title--center {
  text-align: center;
}

.text--base {
  font-size: 24px;
  line-height: 1.33;
}
.text--base--small {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .text--base {
    font-size: 18px;
  }
}
.text--black {
  color: #2a4c75;
}
.text--green {
  color: #66dd7c;
}
.text--purple {
  color: #b55ad5;
}
.text--extrabold {
  font-weight: 800;
}
.text--center {
  text-align: center;
}

.header {
  position: fixed;
  left: 0;
  top: 72px;
  width: 100%;
  padding: 0 35px;
  z-index: 12;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 15px;
  }
}
.header--active .header__nav {
  opacity: 1;
  visibility: visible;
}
.header__button {
  margin-left: auto;
}
.header__wrapper {
  padding: 30px;
  box-shadow: 0px 6px 0 0 #d2e9e4;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 50px;
  border-radius: 20px;
}
.header__logo {
  width: 220px;
  height: 60px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 991px) {
  .header__logo {
    width: 120px;
    height: 30px;
  }
}
@media screen and (max-width: 991px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 3;
    padding: 200px 15px 50px 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s opacity, 0.5s visibility;
  }
}
.header__burger {
  position: relative;
  z-index: 4;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .header__burger {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header__button {
    display: none;
  }
}
.header-list {
  display: flex;
  align-items: center;
  gap: 38px;
}
@media screen and (max-width: 991px) {
  .header-list {
    flex-direction: column;
  }
}
.header-list__link {
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
}

.burger {
  width: 27px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger:hover {
  cursor: pointer;
}
.burger__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 6px;
}
.burger__item:nth-child(1) {
  transition: 0.3s transform, 0.3s top, 0.3s background-color;
}
.burger__item:nth-child(2) {
  top: calc(50% - 1.5px);
  transition: 0.3s left, 0.3s opacity, 0.5s visibility, 0.3s background-color;
}
.burger__item:nth-child(3) {
  top: calc(100% - 3px);
  transition: 0.3s transform, 0.3s top, 0.3s background-color;
}
.burger--active .burger__item {
  top: 8px;
}
.burger--active .burger__item:nth-child(1) {
  transform: rotate(45deg);
}
.burger--active .burger__item:nth-child(2) {
  left: -10px;
  opacity: 0;
  visibility: hidden;
}
.burger--active .burger__item:nth-child(3) {
  transform: rotate(-45deg);
}

.question {
  padding: 130px 0 160px 0;
}
@media screen and (max-width: 767px) {
  .question {
    padding: 60px 0 80px;
  }
}
.question__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 46px;
}
@media screen and (max-width: 767px) {
  .question__wrapper {
    gap: 30px;
  }
}
.question__icon {
  width: 170px;
  height: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .question__icon {
    width: 125px;
    height: 150px;
  }
}
.question__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 530px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .question__header {
    gap: 15px;
  }
}
.question__text {
  max-width: 465px;
  width: 100%;
}

.states {
  padding: 70px 102px;
}
@media screen and (max-width: 1440px) {
  .states {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 767px) {
  .states {
    padding: 60px 15px;
  }
}
.states__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 45px;
  margin: 0 0 85px 0;
}
.states__title {
  max-width: 870px;
  width: 100%;
}
.states__text {
  max-width: 655px;
  width: 100%;
}
.states__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .states__grid {
    gap: 20px;
    grid-template-columns: minmax(0, 1fr);
  }
}
.states-item {
  padding: 69px 36px 74px 38px;
  border: solid 1px #cd3d3d;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .states-item {
    padding: 30px 15px;
    gap: 30px;
  }
}
.states-item__header {
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .states-item__header {
    gap: 15px;
  }
}
.states-item__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex-grow: 1;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .states-item__content {
    gap: 30px;
  }
}
.states-item__img {
  width: 270px;
  height: 245px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .states-item__img {
    width: 200px;
    height: 175px;
  }
}
.states-item__gif {
  width: 100%;
  aspect-ratio: 3/1;
  background: #d8dfe7;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.states-item__title {
  font-size: 52px;
  font-weight: 800;
  color: #2a4c75;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .states-item__title {
    font-size: 26px;
  }
}
.states-block {
  padding: 36px 30px;
  background: #f1ebf7;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 20px;
  fill: #813af4;
  stroke: #3e1fb9;
}
@media screen and (max-width: 767px) {
  .states-block {
    padding: 15px;
  }
}
.states-block--green {
  background-color: #ebf7ec;
  fill: #2fca4b;
  stroke: #2d9640;
}
.states-block--transparent {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
  stroke: #1f76b9;
  fill: #3aa3f4;
}
.states-block__title {
  font-size: 31px;
  line-height: 1;
  color: #2a4c75;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .states-block__title {
    font-size: 21px;
  }
}
.states-block__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.states-block__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .states-block__item {
    gap: 15px;
  }
}
.states-block__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .states-block__icon {
    width: 20px;
    height: 20px;
  }
}
.states-block__tag {
  padding: 17px 15px;
  border: solid 1px #3aa3f4;
  border-radius: 30px;
}

.hero {
  min-height: 100svh;
  background: url("../../images/hero/hero-bg.jpg") center center/cover no-repeat;
  padding: 150px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .hero {
    min-height: auto;
    justify-content: space-between;
    padding: 60px 0 0 0;
  }
}
.hero__title {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.hero__img {
  width: 450px;
  max-width: 60vw;
  margin: 0 auto;
  display: block;
  transform: translateY(-60px);
}
@media screen and (max-width: 767px) {
  .hero__img {
    transform: translateY(-15px);
  }
}

.about {
  scroll-margin-block-start: 180px;
}
.about__header {
  padding: 70px 15px 40px 15px;
}
.about__title {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.about__text {
  max-width: 710px;
  width: 100%;
  margin: 45px auto 0 auto;
}
@media screen and (max-width: 767px) {
  .about__text {
    margin: 20px auto 0 auto;
  }
}
.about__img {
  max-width: 720px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 120px auto 0 auto;
}
@media screen and (max-width: 767px) {
  .about__img {
    margin: 40px auto 0 auto;
  }
}
.about__grid {
  padding: 100px 64px 130px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: url("../../images/about/about-bg.png") bottom center/cover no-repeat;
}
@media screen and (max-width: 1440px) {
  .about__grid {
    padding: 60px 15px;
  }
}
@media screen and (max-width: 767px) {
  .about__grid {
    flex-direction: column;
  }
}
.about-item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 526px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about-item {
    gap: 15px;
  }
}
.about-item__number {
  font-size: 85px;
  font-weight: 800;
  line-height: 1;
  color: #e75252;
}
@media screen and (max-width: 1440px) {
  .about-item__number {
    font-size: 40px;
  }
}
.about-item__title {
  font-size: 46px;
  font-weight: 900;
  color: #2a4c75;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .about-item__title {
    font-size: 21px;
  }
}

.steps {
  padding: 0 40px;
  transform: translateY(-80px);
}
@media screen and (max-width: 1440px) {
  .steps {
    padding: 0;
    transform: translateY(-40px);
  }
}
.steps__wrapper {
  background: #f5fafb;
  border-radius: 20px;
  box-shadow: inset 0px -5px 0 0 #649ac0;
  padding: 86px 81px 72px 93px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 1440px) {
  .steps__wrapper {
    padding: 30px 15px;
    gap: 30px;
  }
}
.steps__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .steps__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.steps__title {
  max-width: 620px;
  width: 100%;
  flex-shrink: 0;
}
.steps__text {
  max-width: 760px;
  width: 100%;
  font-size: 22px;
  line-height: 1.14;
  color: #010000;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .steps__text {
    font-size: 16px;
  }
}
.steps__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .steps__content {
    grid-template-columns: minmax(0, 1fr);
  }
}
.steps__footer {
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .steps__footer {
    font-size: 16px;
  }
}
.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr) minmax(0, 400px);
  gap: 30px;
}
@media screen and (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.steps-grid__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.steps-block {
  padding: 70px 30px 30px 30px;
  border: 3px solid #000;
  border-radius: 12px;
}
.steps-block--small {
  padding: 15px 30px;
}
@media screen and (max-width: 767px) {
  .steps-block {
    padding: 15px;
  }
}
.steps-block--transparent {
  padding: 0;
  border: none;
}
.steps-block--blue {
  background-color: rgb(152, 213, 251);
}
.steps-block--light {
  background-color: rgba(100, 154, 192, 0.2);
}
.steps-block__icon {
  width: 96px;
  height: 96px;
  display: block;
  margin: 0 auto;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .steps-block__icon {
    margin-bottom: 20px;
  }
}
.steps-block__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps-block__img {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
}
.steps-block__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.steps-block__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.steps-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.steps-block__title {
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  font-size: 36px;
  font-weight: 900;
}
.steps-block__title--blue {
  color: rgb(58, 163, 244);
}
.steps-block__title--tiny {
  font-size: 22px;
  font-weight: 700;
}
.steps-block__title--small {
  font-size: 26px;
}
.steps-block__text {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.steps-block__text--number {
  overflow-wrap: break-word;
}
.steps-block__text--small {
  font-size: 14px;
}
.steps-block__text--red {
  color: rgb(251, 0, 0);
}
.steps-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.steps-info__text {
  font-size: 21px;
  font-weight: 700;
  color: #f5d682;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .steps-info__text {
    font-size: 16px;
  }
}
.steps-info__title {
  font-size: 27px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .steps-info__title {
    font-size: 20px;
  }
}
.steps-timer {
  padding: 41px 40px 46px 41px;
  background-color: #2a4c75;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .steps-timer {
    padding: 15px;
  }
}
.steps-timer__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.steps-timer__title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .steps-timer__title {
    font-size: 20px;
  }
}
.steps-timer__text {
  font-size: 20px;
  font-weight: 600;
  color: #b2cae8;
  line-height: 1.25;
  max-width: 420px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .steps-timer__text {
    font-size: 16px;
  }
}
.steps-timer__footer {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  font-size: 19px;
  font-weight: 600;
  color: #b2cae8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .steps-timer__footer {
    font-size: 14px;
  }
}
.steps-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.steps-row__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.steps-row__title {
  font-size: 18px;
  font-weight: 700;
  color: #48de74;
  line-height: 1;
}
.steps-row__line {
  width: 100%;
  height: 40px;
  background-color: #395e8b;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.steps-row__line span {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 17px;
  min-width: -moz-max-content;
  min-width: max-content;
  width: var(--line-width);
  height: 100%;
  background-color: #57c878;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0px 2px 0 #517b5c;
}
.steps-list {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}
@media screen and (max-width: 991px) {
  .steps-list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.steps-list__desc {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: #f0415a;
}
.steps-list__item {
  counter-increment: steps;
  padding: 21px 31px 99px 23px;
  border: solid 3px #2a4c75;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps-list__item--small {
  padding: 21px 31px 19px 23px;
}
@media screen and (max-width: 767px) {
  .steps-list__item {
    padding: 15px;
  }
}
.steps-list__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.19;
  color: #000;
  text-transform: uppercase;
}
.steps-list__title span {
  color: #ee5b5b;
}
.steps-list__text {
  font-size: 16px;
  font-weight: 500;
  color: #4a4d50;
  line-height: 1.56;
}
.steps-list__text a {
  color: #b1d0db;
  text-decoration: underline;
  display: inline-flexbox;
  align-items: center;
  justify-content: center;
}
.steps-list__text a img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
  padding-right: 5px;
}
.steps-list__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.steps-list__content::before {
  content: counter(steps);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 3px #2a4c75;
  background-color: #fff;
  border-radius: 10px;
  font-size: 26px;
  line-height: 1;
  color: #ee5b5b;
  font-weight: 800;
}

.timer {
  padding: 34px 30px 32px 29px;
  background-color: #234165;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .timer {
    padding: 15px;
    gap: 20px;
  }
}
.timer__title {
  font-size: 41px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .timer__title {
    font-size: 30px;
  }
}
.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 100px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .timer-grid {
    grid-template-columns: repeat(4, 60px);
  }
}
.timer-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .timer-item {
    gap: 10px;
  }
}
.timer-item:not(:last-child) .timer-item__number {
  position: relative;
}
.timer-item:not(:last-child) .timer-item__number::after {
  content: ":";
  position: absolute;
  font-size: 36px;
  line-height: 1;
  height: 40px;
  font-weight: 700;
  color: #57c878;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .timer-item:not(:last-child) .timer-item__number::after {
    font-size: 18px;
    height: 20px;
  }
}
.timer-item__number {
  font-size: 36px;
  color: #57c878;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .timer-item__number {
    font-size: 18px;
  }
}
.timer-item__text {
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .timer-item__text {
    font-size: 14px;
  }
}
.timer-copy {
  padding: 10px 10px 10px 31px;
  border: solid 3px #b1d0db;
  background-color: #e7faff;
  border-radius: 30px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .timer-copy {
    flex-direction: column;
    height: auto;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
  }
}
.timer-copy__text {
  font-size: 20px;
  font-weight: 600;
  color: #2a4c75;
  flex-grow: 1;
}
.timer-copy__button {
  width: 115px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: #234165;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .timer-copy__button {
    width: 100%;
  }
}

.roadmap {
  background: url("../../images/roadmap/roadmap-bg.png") top center/cover no-repeat;
  padding: 0 0 150px 0;
  margin-top: 150px;
  scroll-margin-block-start: 180px;
}
@media screen and (max-width: 767px) {
  .roadmap {
    padding: 0 0 50px 0;
    margin-top: 50px;
  }
}
.roadmap__header {
  margin: 0 0 300px 0;
}
@media screen and (max-width: 767px) {
  .roadmap__header {
    margin: 0 0 60px 0;
  }
}
.roadmap__grid {
  max-width: 1440px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 70px;
}
@media screen and (max-width: 1280px) {
  .roadmap__grid {
    flex-direction: column;
    gap: 30px;
  }
}
.roadmap__arrow {
  width: 160px;
  height: 120px;
}
.roadmap-item {
  padding: 50px 60px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  box-shadow: 0px 5px 0 0 rgba(50, 39, 26, 0.38);
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1280px) {
  .roadmap-item {
    max-width: 100%;
  }
}
.roadmap-item:nth-child(2) {
  position: relative;
}
.roadmap-item:nth-child(2)::before, .roadmap-item:nth-child(2)::after {
  content: "";
  width: 160px;
  height: 120px;
  display: block;
  position: absolute;
  top: 0;
  left: -180px;
  background: url("../../images/roadmap/roadmap-arrow.png") center center/contain no-repeat;
  z-index: 4;
}
@media screen and (max-width: 1280px) {
  .roadmap-item:nth-child(2)::before, .roadmap-item:nth-child(2)::after {
    width: 100px;
    height: 60px;
    left: calc(50% - 50px);
    top: -50px;
  }
}
.roadmap-item:nth-child(2)::after {
  bottom: 0;
  top: unset;
  transform: rotate(180deg) scaleY(-1);
}
@media screen and (max-width: 1280px) {
  .roadmap-item:nth-child(2)::after {
    bottom: -50px;
  }
}
.roadmap-item:nth-child(3) {
  transform: translateY(-120px);
}
@media screen and (max-width: 1280px) {
  .roadmap-item:nth-child(3) {
    transform: translate(0);
  }
}
.roadmap-item:nth-child(4) {
  position: relative;
}
.roadmap-item:nth-child(4)::before {
  content: "";
  width: 160px;
  height: 120px;
  display: block;
  position: absolute;
  top: calc(50% - 80px);
  left: -180px;
  background: url("../../images/roadmap/roadmap-arrow.png") center center/contain no-repeat;
  z-index: 4;
}
@media screen and (max-width: 1280px) {
  .roadmap-item:nth-child(4)::before {
    width: 100px;
    height: 60px;
    left: calc(50% - 50px);
    top: -50px;
  }
}
.roadmap-item:not(:first-child) {
  margin-top: 200px;
}
@media screen and (max-width: 1280px) {
  .roadmap-item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .roadmap-item {
    padding: 30px 15px;
    gap: 15px;
  }
}
.roadmap-item__icon {
  width: 180px;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .roadmap-item__icon {
    width: 100px;
    height: 100px;
  }
}
.roadmap-item__title {
  text-shadow: 0px 3px 0 #6336a9;
  color: #9b66f0;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .roadmap-item__title {
    font-size: 30px;
  }
}
.roadmap-item__content {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 29px;
  font-weight: 600;
  color: #4a4b4b;
  max-width: 420px;
  width: 100%;
}
.roadmap-item__content span {
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .roadmap-item__content {
    font-size: 18px;
    gap: 10px;
  }
}

.footer__wrapper {
  padding: 140px 15px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    padding: 60px 15px;
    gap: 40px;
  }
}
.footer__logo {
  max-width: 410px;
  width: 100%;
  height: 110px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 280px;
    width: 100%;
  }
}
.footer__content {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .footer__content {
    gap: 15px;
  }
}
.footer__title {
  font-size: 48px;
  font-weight: 800;
  color: #737373;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 20px;
  }
}
.footer__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 21px;
  text-align: center;
  color: #737373;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 16px;
  }
}

.banner {
  padding: 0 20px;
  position: relative;
}
.banner::before, .banner::after {
  content: "";
  width: 380px;
  height: 500px;
  display: block;
  bottom: -150px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../../images/banner/banner-img.png");
}
@media screen and (max-width: 1280px) {
  .banner::before, .banner::after {
    width: 250px;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .banner::before, .banner::after {
    width: 100px;
    height: 200px;
    bottom: -100px;
  }
}
.banner::before {
  left: 0;
  background-position: left center;
  transform: scaleX(-1);
}
.banner::after {
  right: 0;
  background-position: right center;
}
.banner__wrapper {
  padding: 180px 15px;
  background: url("../../images/banner/banner-bg.jpg") center center/cover no-repeat;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
@media screen and (max-width: 767px) {
  .banner__wrapper {
    gap: 30px;
    padding: 60px 15px;
  }
}
.banner__title {
  font-size: 165px;
  font-weight: 900;
  text-shadow: 0px 5px 0 rgba(99, 45, 45, 0.75);
  letter-spacing: -3.3px;
  line-height: 0.9;
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .banner__title {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .banner__title {
    font-size: 40px;
  }
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .social {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.social__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .social__item {
    width: 100%;
  }
}
.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 75px;
  width: 290px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.56px;
  color: #fff;
  box-shadow: 0px 7px 0 0 rgba(0, 0, 0, 0.75);
  border: solid 3px #000;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .social__link {
    width: 100%;
    font-size: 20px;
    height: 50px;
  }
}
.social__link .icon {
  width: 35px;
  height: 30px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .social__link .icon {
    width: 20px;
    height: 20px;
  }
}
.social__link--tg {
  background-color: #8a7fcc;
}
.social__link--twitter {
  background-color: #4672eb;
}

.slider {
  padding: 90px 15px;
  overflow: hidden;
}
.slider__header {
  margin: 0 0 60px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .slider__header {
    margin: 0 0 30px 0;
    gap: 15px;
  }
}
.slider__text {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  color: #ee5b5b;
}
@media screen and (max-width: 767px) {
  .slider__text {
    font-size: 18px;
  }
}
.slider__title {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  font-size: 77px;
  font-weight: 900;
  line-height: 1.09;
  text-align: center;
  color: #2a4c75;
  text-transform: uppercase;
}
.slider__title span {
  color: #ee5b5b;
}
@media screen and (max-width: 767px) {
  .slider__title {
    font-size: 30px;
  }
}
.slider-element {
  max-width: 820px;
  width: 100%;
  overflow: visible;
}
.slider-element .swiper-wrapper {
  overflow: visible;
}
.slider-element__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.slider-element__pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  border: solid 2px #bccbdd;
  background-color: #f8f8f8;
  opacity: 1;
}
.slider-element__pagination .swiper-pagination-bullet-active {
  border-color: #ee5b5b;
  background: #ee5b5b;
}
@media screen and (max-width: 767px) {
  .slider-element__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.slider-element__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .slider-element__navigation {
    gap: 15px;
    margin-top: 15px;
  }
}
.slider-element__button {
  width: 75px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0px 4px 0 0 #ee5b5b;
  border-radius: 50px;
  background-color: #f3f9fe;
  fill: #a0b4c5;
  transition: 0.3s fill;
}
@media screen and (max-width: 767px) {
  .slider-element__button {
    width: 50px;
    height: 30px;
  }
}
.slider-element__button--prev .icon {
  transform: rotate(180deg);
}
.slider-element__button:hover {
  fill: #ee5b5b;
}
.slider-element__button .icon {
  width: 33px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .slider-element__button .icon {
    width: 14px;
    height: 14px;
  }
}
.slider-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.slider-item__img {
  height: 434px;
  border-radius: 20px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .slider-item__img {
    height: 200px;
  }
}
.slider-item__content {
  padding: 36px 49px 51px 42px;
  background-color: #f7f7f7;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .slider-item__content {
    padding: 15px;
    gap: 15px;
  }
}
.slider-item__title {
  font-size: 47px;
  font-weight: 900;
  color: #2a4c75;
}
.slider-item__title span {
  color: #ee5b5b;
}
@media screen and (max-width: 767px) {
  .slider-item__title {
    font-size: 20px;
  }
}
.slider-item__text {
  font-size: 23px;
  font-weight: 600;
  color: #66676c;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .slider-item__text {
    font-size: 16px;
  }
}

.presale {
  padding: 100px 20px;
}
@media screen and (max-width: 767px) {
  .presale {
    padding: 60px 0;
  }
}
.presale__wrapper {
  padding: 50px 75px;
  background: url("../../images/presale/presale-bg.png") center center/cover no-repeat;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .presale__wrapper {
    padding: 15px;
    border-radius: 0;
  }
}
.presale__title {
  text-shadow: 2.5px 4.3px 0 #273f06;
  font-size: 124px;
  font-weight: 800;
  line-height: 0.9;
  color: #fff;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 1280px) {
  .presale__title {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .presale__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .presale__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
.presale-info {
  width: 374px;
  height: 374px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  color: #fff;
  background: url("../../images/presale/presale-info-bg.png") center center/contain no-repeat;
  position: absolute;
}
.presale-info--first {
  right: 70px;
  top: -100px;
}
@media screen and (max-width: 1440px) {
  .presale-info--first {
    right: 0;
  }
}
.presale-info--second {
  top: calc(50% - 120px);
  right: 400px;
}
@media screen and (max-width: 1440px) {
  .presale-info--second {
    right: 200px;
  }
}
@media screen and (max-width: 1440px) {
  .presale-info {
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 767px) {
  .presale-info {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    aspect-ratio: 1;
  }
}
.presale-info__text {
  -webkit-text-stroke: 2px #1c1d19;
  font-size: 24px;
  font-weight: 800;
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .presale-info__text {
    font-size: 16px;
    -webkit-text-stroke: 1px #1c1d19;
    max-width: 120px;
  }
}
.presale-info__title {
  font-size: 115px;
  line-height: 0.9;
  font-weight: 800;
  -webkit-text-stroke: 4px #1c1d19;
}
@media screen and (max-width: 1440px) {
  .presale-info__title {
    font-size: 40px;
    -webkit-text-stroke: 1px #1c1d19;
  }
}

.features {
  padding: 100px 0;
  overflow: hidden;
  scroll-margin-block-start: 180px;
}
@media screen and (max-width: 767px) {
  .features {
    padding: 50px 0;
  }
}
.features__wrapper {
  position: relative;
}
.features__text {
  font-size: 21px;
  color: #2a4c8b;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .features__text {
    font-size: 16px;
  }
}
.features__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  min-height: 500px;
}
@media screen and (max-width: 1280px) {
  .features__header {
    margin-bottom: 30px;
  }
}
.features__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .features__info {
    gap: 15px;
  }
}
.features__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  position: absolute;
  left: -100px;
}
.features__tags--right {
  left: unset;
  right: 0;
  gap: 150px;
}
@media screen and (max-width: 1280px) {
  .features__tags {
    gap: 30px;
    position: relative;
    left: 0;
    right: 0;
    align-items: center;
    order: 3;
  }
}
.features__tag {
  font-size: 25px;
  font-weight: 700;
  color: #2a4c75;
  height: 90px;
  padding: 35px 47px 36px 44px;
  box-shadow: 0px 10px 0 0 #2a4c75;
  border: solid 3px #2a4c75;
  background-color: #fff;
  width: -moz-max-content;
  width: max-content;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .features__tag {
    width: 100%;
    padding: 15px;
    height: 70px;
    font-size: 18px;
  }
}
.features__tag--top {
  transform: rotate(13.161deg);
}
@media screen and (max-width: 1280px) {
  .features__tag--top {
    transform: translate(0);
  }
}
.features__tag--bottom {
  transform: rotate(-8deg);
}
@media screen and (max-width: 1280px) {
  .features__tag--bottom {
    transform: translate(0);
  }
}
.features__title {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.features__title::before, .features__title::after {
  content: "";
  width: 80px;
  height: 130px;
  display: block;
  position: absolute;
  background: url("../../images/features/decor.png") center center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .features__title::before, .features__title::after {
    width: 40px;
    height: 60px;
  }
}
.features__title::before {
  left: -80px;
  top: 0;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .features__title::before {
    left: 0;
  }
}
.features__title::after {
  right: -80px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .features__title::after {
    right: 0;
  }
}
.features__wrapper {
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1280px) {
  .features__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.features-card {
  box-shadow: 0px 7px 0 0 var(--color);
  border: solid 3px var(--color);
  padding: 30px 30px 60px 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}
.features-card--big {
  grid-column-end: span 2;
  grid-row-end: span 2;
}
@media screen and (max-width: 1280px) {
  .features-card--big {
    grid-column-end: auto;
    grid-row-end: auto;
  }
}
.features-card--blue {
  --color: #58b7e7;
}
.features-card--orange {
  --color: #f79422;
}
.features-card--purple {
  --color: #bf8dff;
}
.features-card--green {
  --color: #57bb7a;
}
@media screen and (max-width: 767px) {
  .features-card {
    padding: 15px;
  }
}
.features-card__icon {
  width: 65px;
  height: 65px;
  margin: 0 0 20px 0;
}
.features-card__img {
  width: 100%;
  height: 336px;
  margin-bottom: 30px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .features-card__img {
    height: 200px;
  }
}
.features-card__title {
  color: var(--color);
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .features-card__title {
    font-size: 20px;
  }
}
.features-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-card__text {
  color: #000000;
  font-weight: 500;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .features-card__text {
    font-size: 16px;
  }
}

.marquee {
  --gap: 1rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: var(--gap);
  background: #b94848;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  background: #b94848;
  animation: scroll 30s linear infinite;
}

.marquee__item {
  font-size: 20px;
  color: #fff;
  font-weight: 800;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.economics {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .economics {
    padding: 60px 0;
  }
}
.economics__header {
  display: flex;
  gap: 30px;
  justify-content: center;
  position: relative;
  margin: 0 0 50px 0;
}
.economics__header::before, .economics__header::after {
  content: "";
  max-width: 370px;
  width: 100%;
  height: 600px;
  display: block;
  right: 0;
  position: absolute;
  background: url("../../images/economics/decor.png") top left/contain no-repeat;
}
@media screen and (max-width: 1100px) {
  .economics__header::before, .economics__header::after {
    display: none;
  }
}
.economics__header::before {
  right: unset;
  left: 0;
  transform: scaleX(-1);
}
.economics__decor {
  max-width: 360px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.economics__decor--left {
  -o-object-position: left top;
     object-position: left top;
}
.economics__title {
  font-size: 116px;
  font-weight: 800;
  flex-shrink: 0;
  color: #f36060;
  text-shadow: 0px 5px 0 #be2b2b;
  line-height: 1;
  position: relative;
  z-index: 3;
  text-align: center;
  text-transform: uppercase;
  padding-top: 60px;
}
@media screen and (max-width: 1100px) {
  .economics__title {
    font-size: 40px;
    padding-top: 0;
  }
}
.economics-content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px minmax(0, 1fr);
}
@media screen and (max-width: 1100px) {
  .economics-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}
.economics-content__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 70px;
}
@media screen and (max-width: 1100px) {
  .economics-content__list {
    gap: 30px;
    grid-row-start: 2;
  }
}
.economics-content__list--right {
  padding-bottom: 100px;
  gap: 150px;
}
@media screen and (max-width: 1100px) {
  .economics-content__list--right {
    gap: 30px;
    padding-bottom: 0;
    grid-row-start: 3;
  }
}
.economics-content__icon {
  width: 120px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-text-stroke: 3px #6a8821;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  background: url("../../images/economics/icon.png") center center/contain no-repeat;
}
.economics-content__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 26px;
  font-weight: 700;
  color: #4d4d4d;
}
.economics-content__item::before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #6a8821;
  position: absolute;
  top: calc(50% + 20px);
  left: 100px;
}
@media screen and (max-width: 1100px) {
  .economics-content__item::before {
    left: 0;
    display: none;
  }
}
.economics-content__item::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
  background: #6a8821;
  right: -100px;
  position: absolute;
  top: calc(50% + 14px);
}
@media screen and (max-width: 1100px) {
  .economics-content__item::after {
    display: none;
  }
}
@media screen and (min-width: 1101px) {
  .economics-content__item--right {
    flex-direction: row-reverse;
  }
  .economics-content__item--right::before {
    left: unset;
    right: 100px;
  }
  .economics-content__item--right::after {
    right: unset;
    left: -100px;
  }
}
.economics-content__img {
  max-width: 500px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1100px) {
  .economics-content__img {
    margin: 0 auto;
  }
}/*# sourceMappingURL=index.css.map */