header {
  position: relative;
  background-color: var(--bg-primary);
  background-image: url(../img/bg_hero.png);
  background-size: cover;
  background-position: center;
}

.logotype a {
  display: flex;
}

.hero__content>img {
  display: block;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: calc(330px - 1rem);
  padding: 0 1rem;
}

.hero__title {
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.partners {
  position: relative;
  background-color: var(--color-primary);
  background: var(--gradient-primary);
}

.partners__slider .swiper-slide>a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.partners__slider .swiper-slide>a:hover {
  opacity: 0.8;
}

.partners__slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.about__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media(max-width: 991px) {
  .about__content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
  }
}

.about__block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.about__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__benefits b {
  color: var(--black);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.about__benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about__image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  background-color: var(--color-primary);
  background-image: url("../img/bg_about.png"), var(--gradient-primary);
  background-position: top right, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
  border-radius: 64px;
  max-width: 575px;
  min-height: clamp(25.313rem, 20.245rem + 25.335vw, 35.938rem);
}

.about__image img {
  position: absolute;
  top: -2rem;
  left: 50%;
  translate: -50% 0;
  max-width: 80%;
}

@media(max-width: 991px) {
  .about__image img {
    position: absolute;
    top: -2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 75%;
  }
}

.about__image p {
  color: var(--text-accent);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.buy__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--color-primary);
  background-image: var(--gradient-primary);
  border-radius: 1.875rem;
  padding: 2rem 4rem;
}

.buy__content h2 {
  color: var(--text-accent);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media(max-width: 991px) {
  .buy__content {
    padding: 1.5rem;
  }
}

.buy__form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  grid-template-areas:
    "input-0 input-0 input-0 input-1"
    "input-2 input-3 input-4 input-5";
}

@media (max-width: 1024px) {
  .buy__form {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "input-0 input-0"
      "input-1 input-1"
      "input-2 input-3"
      "input-4 input-5";
  }
}

@media (max-width: 600px) {
  .buy__form {
    grid-template-columns: 1fr;
    grid-template-areas:
      "input-0"
      "input-1"
      "input-2"
      "input-3"
      "input-4"
      "input-5";
  }
}

.buy__form .input-0 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: input-0;
}

.buy__form .input-2 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: input-2;
}

.buy__form .input-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: input-1;
}

.buy__form .input-3 {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: input-3;
}

.buy__form .input-4 {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: input-4;
}

.buy__form .input-5 {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
  grid-area: input-5;
}

@media (max-width: 1024px) {
  .buy__form .input-0 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  .buy__form .input-2 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .buy__form .input-1 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  .buy__form .input-3 {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }

  .buy__form .input-4 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }

  .buy__form .input-5 {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
}

@media (max-width: 600px) {
  .buy__form .input-0 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .buy__form .input-2 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .buy__form .input-1 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .buy__form .input-3 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }

  .buy__form .input-4 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .buy__form .input-5 {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
}

.buy__form p {
  color: var(--text-accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.tokenom {
  position: relative;
  background-color: var(--color-primary);
  background-image: url("../img/bg_chart.png"), var(--gradient-primary);
  background-position: top right, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
}

.tokenom p {
  color: var(--text-accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.tokenom__header h3 {
  color: var(--text-accent);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 113%;
  margin-bottom: 1.875rem;
}

@media(max-width: 991px) {
  .tokenom__header h3 {
    text-align: center;
  }
}

.tokenom__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media(max-width: 991px) {
  .tokenom__title {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.tokenom__title h2 {
  color: var(--text-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 800;
  line-height: 113%;
  letter-spacing: -0.675px;
}

.tokenom__title p {
  max-width: 450px;
}

.tokenom__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tokenom__chart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
}

@media(max-width: 1399px) {
  .tokenom__chart {
    gap: 2rem;
  }
}

@media(max-width: 991px) {
  .tokenom__chart {
    flex-direction: column;
    gap: 2rem;
  }
}

.tokenom__description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tokenom__description h4 {
  color: var(--text-accent);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tokenom__points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tokenom__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tokenom__point-circle {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
}

.tokenom__point-circle.blue {
  background-color: var(--color-blue);
}

.tokenom__point-circle.green {
  background-color: var(--color-green);
}

.tokenom__point-circle.orange {
  background-color: var(--color-orange);
}

.tokenom__point-circle.pink {
  background-color: var(--color-pink);
}

.tokenom__point__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tokenom__point__text h2 {
  color: var(--text-accent);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tokenom__point__text p {
  color: var(--text-accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.roadmap {
  position: relative;
}

.roadmap p {
  color: var(--text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.roadmap__header h3 {
  color: var(--text-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 113%;
  margin-bottom: 1.875rem;
}

@media(max-width: 991px) {
  .roadmap__header h3 {
    text-align: center;
  }
}

.roadmap__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media(max-width: 991px) {
  .roadmap__title {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.roadmap__title p {
  max-width: 450px;
}

.roadmap__content {
  position: relative;
  border: 15px solid var(--color-primary);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  height: 280px;
  margin-top: 4.5rem;
  margin-bottom: 5.5rem;
  margin-left: 4rem;
}

@media(max-width: 991px) {
  .roadmap__content {
    height: auto;
    border: 0;
    display: block;
    margin-top: 2rem;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.roadmap__points {
  position: absolute;
  top: -57px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 57px;
  margin-left: -4.5rem;
}

@media(max-width: 1199px) {
  .roadmap__points {
    gap: 57px 0px;
  }
}

@media(max-width: 991px) {
  .roadmap__points {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-left: 0;
    top: 0;
    justify-items: center;
  }
}

@media(max-width: 410px) {
  .roadmap__points {
    grid-template-columns: 1fr;
  }
}

.roadmap__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 10px;
  max-width: 220px;
}

@media(max-width: 991px) {
  .roadmap__point {
    max-width: 315px;
  }
}

.roadmap__point p {
  height: 95px;
}

@media(max-width: 991px) {
  .roadmap__point p {
    height: auto;
  }
}

.roadmap__position {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.875rem;
  height: 4.875rem;
  background-color: var(--color-primary);
  box-shadow: 0 0 0 10px var(--border-primary);
  border-radius: 50%;
  color: var(--text-accent);
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 800;
  -webkit-animation: breathe-shadow 3s ease-in-out infinite;
  animation: breathe-shadow 3s ease-in-out infinite;
}

@-webkit-keyframes breathe-shadow {
  0% {
    box-shadow: 0 0 0 10px var(--border-primary);
  }

  50% {
    box-shadow: 0 0 0 7px var(--border-primary);
  }

  100% {
    box-shadow: 0 0 0 10px var(--border-primary);
  }
}

@keyframes breathe-shadow {
  0% {
    box-shadow: 0 0 0 10px var(--border-primary);
  }

  50% {
    box-shadow: 0 0 0 7px var(--border-primary);
  }

  100% {
    box-shadow: 0 0 0 10px var(--border-primary);
  }
}

@media(max-width: 991px) {

  .roadmap__position::before,
  .roadmap__position::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 10px;
    background-color: var(--color-primary);
  }

  .roadmap__position::before {
    left: calc(-100% + 1px);
    border-radius: 5px 0 0 5px;
  }

  .roadmap__position::after {
    right: calc(-100% + 1px);
    border-radius: 0 5px 5px 0;
  }
}

@media(max-width: 991px) {
  .contacts {
    padding-top: 0;
  }
}

.contacts__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background-color: var(--bg-secondary);
  border-radius: 1.875rem;
  padding: 2rem 4rem;
}

.contacts__content h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media(max-width: 991px) {
  .contacts__content {
    padding: 1.5rem;
  }
}

.contacts__information {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media(max-width: 991px) {
  .contacts__information {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contacts__datas {
  display: flex;
  gap: 1.5rem;
}

@media(max-width: 991px) {
  .contacts__datas {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contacts__data {
  display: flex;
  gap: 0.5rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contacts__data iconify-icon {
  font-size: 1.5rem;
}

.contacts__socials {
  display: flex;
  gap: 0.5rem;
}

.input-wrapper {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  padding: 0px 0.75rem;
  border-radius: 10px;
  background: var(--bg-accent);
  gap: 0px;
}

.input-wrapper svg {
  flex-shrink: 0;
}

.input-wrapper input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #333;
}