html {
  font-family: "Lato", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  background-color: #fff;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body main {
  flex-grow: 1;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

input,
button {
  outline: none;
  border: none;
}

.container {
  padding-inline: 15px;
  max-width: 1368px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container {
    padding-inline: 84px;
  }
}

.no-scroll {
  overflow: hidden;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  padding-block: 20px;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.header__btn {
  width: 150px !important;
  height: 46px !important;
}
@media (min-width: 1200px) {
  .header__btn {
    width: 205px !important;
  }
}

.logo__img {
  width: 50px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .logo__img {
    width: 50px;
  }
}

.btn {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn--orange {
  background-color: #f79e1b;
}
.btn--orange:hover {
  background-color: #e97911;
}
.btn--blue {
  background-color: #1c85fb;
}
.btn--blue:hover {
  background-color: #106cd4;
}

.hero {
  padding-block: 124px 0px;
  margin-bottom: 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../index/hero-bg.png") center/cover no-repeat;
}
@media (min-width: 1200px) {
  .hero {
    padding-block: 145px 0px;
  }
}
.hero__box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .hero__inner {
    flex-direction: row;
  }
}
.hero__title {
  font-family: Inter;
  font-weight: 900;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 6px;
  color: #fff;
}
.hero__title span {
  font-weight: 900;
  font-size: 64px;
  line-height: 100%;
}
.hero__left {
  width: 100%;
}
@media (min-width: 1200px) {
  .hero__left {
    width: 506px;
    padding-bottom: 40px;
  }
}
.hero__subtitle {
  font-family: Inter;
  font-weight: 900;
  font-size: 34px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 40px;
  color: #fff;
}
.hero__small-text {
  margin-bottom: 40px;
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.8);
}
.hero__reviews {
  display: flex;
  gap: 12px;
}
.hero__reviews-left {
  display: flex;
  align-items: center;
}
.hero__reviews-img {
  margin-left: -15px;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.hero__reviews-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 6px;
}
.hero__text {
  margin-bottom: 40px;
  font-family: Inter;
  font-weight: 900;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
.hero__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .hero__img {
    width: 300px;
  }
}

.tokens {
  width: fit-content;
  height: 48px;
  border-radius: 50px;
  background-color: #0d1210;
  padding: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.tokens__img {
  width: 36px;
  height: 36px;
}

.form {
  width: 340px;
  background: url("../index/form-bg.png") center/cover no-repeat;
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
@media (min-width: 1200px) {
  .form {
    width: 354px;
  }
}
.form__logo {
  width: 70px;
  height: auto;
  object-fit: contain;
}
.form__title {
  color: #fff;
  font-family: Inter;
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.form__input {
  border-radius: 6px;
  padding: 12px;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}
.form__input::placeholder {
  color: rgba(25, 29, 32, 0.6);
}
.form__text {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}
.form__btn {
  width: 100%;
  height: 43px;
}
.form__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.text {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(25, 29, 32, 0.6);
}

.bold-text {
  font-family: Inter;
  font-weight: 900;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #191d20;
}

.orange-text {
  color: #f79e1b;
}

.white-text {
  color: #fff;
}

.green-text {
  color: #93ff09;
}

.celebrities {
  margin-bottom: 60px;
}
.celebrities__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.celebrity {
  border-radius: 15px;
  border: 1px solid rgba(25, 29, 32, 0.1019607843);
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1200px) {
  .celebrity {
    flex-direction: row;
    justify-content: space-between;
  }
}
.celebrity__left {
  width: 100%;
}
@media (min-width: 1200px) {
  .celebrity__left {
    width: 768px;
  }
}
.celebrity__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.celebrity__icon {
  width: 62px;
  height: auto;
  object-fit: contain;
}
.celebrity__name {
  margin-bottom: 6px;
}
.celebrity__info {
  font-family: Inter;
  font-weight: 900;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: rgba(25, 29, 32, 0.5019607843);
}
.celebrity__img {
  width: 340px;
  height: auto;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .celebrity__img {
    width: 360px;
  }
}

.benefits {
  margin-bottom: 60px;
}
.benefits__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 85px;
}
@media (min-width: 1200px) {
  .benefits__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.benefits__top-left {
  width: 100%;
}
@media (min-width: 1200px) {
  .benefits__top-left {
    width: 646px;
  }
}
.benefits__subtitle {
  margin-bottom: 10px;
}
.benefits__btn {
  width: 100%;
  height: 43px;
}
@media (min-width: 1200px) {
  .benefits__btn {
    width: 340px;
  }
}
.benefits__content {
  position: relative;
  border-radius: 15px;
  padding: 30px 15px 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2a2c34;
  margin-block: 0px 156px;
}
@media (min-width: 1200px) {
  .benefits__content {
    padding: 96px 50px;
    margin-block: 85px;
  }
}
.benefits__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.benefits__list:last-of-type {
  display: none;
}
@media (min-width: 1200px) {
  .benefits__list {
    width: 300px;
  }
  .benefits__list:last-of-type {
    display: flex;
  }
}
.benefits__token {
  background-color: rgba(255, 255, 255, 0.0509803922);
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
  padding: 10px 20px;
}
.benefits__token-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.benefits__token-name {
  font-family: Inter;
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.benefits__token-subname {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.4);
}
.benefits__token-price {
  color: #75c22b;
  font-family: Inter;
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
.benefits__img {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%);
  width: 250px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .benefits__img {
    top: -20%;
    left: 50%;
    width: 450px;
  }
}

.reviews__top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .reviews__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.reviews__top-left {
  width: 100%;
}
@media (min-width: 1200px) {
  .reviews__top-left {
    width: 646px;
  }
}
.reviews__text {
  width: 100%;
}
@media (min-width: 1200px) {
  .reviews__text {
    width: 328px;
  }
}
.reviews__subtitle {
  margin-bottom: 10px;
}
.reviews__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1200px) {
  .reviews__cards {
    flex-direction: row;
    justify-content: space-between;
  }
}

.review {
  width: 100%;
  height: auto;
  padding: 20px;
  background-color: #f6f6f6;
  border-radius: 15px;
  margin-bottom: 60px;
}
@media (min-width: 1200px) {
  .review--additional {
    width: 387px !important;
    height: 300px !important;
  }
}
@media (min-width: 1200px) {
  .review {
    width: 387px;
    height: 340px;
  }
}
.review__stars {
  margin-bottom: 20px;
}
.review__text {
  padding-bottom: 20px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(25, 29, 32, 0.1019607843);
}
.review__bottom {
  display: flex;
  gap: 15px;
  align-items: center;
}
.review__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.review__name {
  font-family: Inter;
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #191d20;
  margin-bottom: 7px;
}
.review__btn {
  width: 135px;
  height: 43px;
}

.register {
  padding-block: 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../index/register-bg.png") center/cover no-repeat;
}
.register__top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .register__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.register__top-left {
  width: 100%;
}
@media (min-width: 1200px) {
  .register__top-left {
    width: 646px;
  }
}
.register__title {
  color: #fff;
}
.register__subtitle {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6) !important;
}
.register__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1200px) {
  .register__cards {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.register__text {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF99;
}

.benefit {
  width: 100%;
  height: auto;
  border-width: 0px, 0px, 1px, 1px;
  border-style: solid;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
@media (min-width: 1200px) {
  .benefit {
    width: 386px;
    height: 192px;
  }
}
.benefit__title {
  margin-bottom: 20px;
  font-family: Inter;
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
.benefit__bottom {
  display: flex;
  gap: 20px;
  align-items: center;
}
.benefit__img {
  width: 80px;
  height: 80px;
}
.benefit__text {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff !important;
}

.alert {
  padding-block: 30px;
  background-color: #1c85fb;
}
.alert__text {
  font-family: Inter;
  font-weight: 900;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

.exchange {
  padding-block: 50px;
}
.exchange__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1200px) {
  .exchange__inner {
    flex-direction: row;
  }
}
.exchange__right {
  width: 100%;
}
@media (min-width: 1200px) {
  .exchange__right {
    width: 780px;
  }
}
.exchange__img {
  width: 340px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .exchange__img {
    width: 390px;
  }
}
.exchange__subtitle {
  margin-bottom: 10px;
}
.exchange__top {
  margin-bottom: 30px;
}
.exchange__text {
  margin-bottom: 50px;
  color: #191D2099;
}
.exchange__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1200px) {
  .exchange__bottom {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .exchange__markets {
    margin-left: -200px;
    z-index: 100;
  }
}
.exchange__btn {
  width: 100%;
  height: 43px;
}
@media (min-width: 1200px) {
  .exchange__btn {
    width: 340px;
  }
}

.markets {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  border-radius: 12px;
  padding: 24px 32px;
  background-color: rgba(246, 246, 246, 0.8980392157);
}
.markets__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.section-subtitle {
  font-family: Inter;
  font-weight: 900;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(25, 29, 32, 0.6);
}

.reviews-second {
  margin-bottom: 60px;
}
.reviews-second__cards {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.reviews-second__btn {
  width: 100%;
  height: 88px;

  font-weight: 900;
  font-size: 24px;
  line-height: 100%;
  text-align: center;

}

.review-second {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-block: 20px;
}
.review-second:nth-of-type(1), .review-second:nth-of-type(3) {
  background-color: #f6f6f6;
}
@media (min-width: 1200px) {
  .review-second {
    flex-direction: row;
    justify-content: space-between;
  }
}
.review-second__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1200px) {
  .review-second__left {
    flex-direction: row;
    width: 367px;
  }
}
.review-second__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.review-second__name {
  font-family: Inter;
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 5px;
  color: #191d20;
}
.review-second__stars {
  margin-bottom: 10px;
}
.review-second__btns {
  display: flex;
  gap: 10px;
  align-items: center;
}
.review-second__btn {
  padding: 5px 8px;
  border: 1px solid #546880;
  border-radius: 4px;
  color: #546880;
  display: flex;
  gap: 4px;
  align-items: center;
}
.review-second__text {
  color: rgba(25, 29, 32, 0.6);
  width: 100%;
}
@media (min-width: 1200px) {
  .review-second__text {
    width: 780px;
  }
}

.advantage__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (min-width: 1200px) {
  .advantage__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.advantage__img {
  width: 340px;
  height: auto;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .advantage__img {
    width: 572px;
  }
}
.advantage__title {
  font-family: Inter;
  font-weight: 900;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
  color: #191d20;
}
@media (min-width: 1200px) {
  .advantage__title {
    font-size: 36px;
  }
}
.advantage__subtitle {
  font-family: Inter;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(25, 29, 32, 0.6);
}
@media (min-width: 1200px) {
  .advantage__subtitle {
    font-size: 32px;
  }
}
.advantage__text {
  font-family: Inter;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;

  color: #191D2099;
}
@media (max-width: 1200px) {
  .advantage__text {
    margin-bottom: 60px;
  }
}

.footer {
  background-color: #2a2c34;
  padding-block: 30px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1200px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__img {
  width: 165px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .footer__img {
    width: 204px;
  }
}
.footer__slogan {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
.footer__text {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.footer__rights {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

.nav-footer__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1200px) {
  .nav-footer__list {
    flex-direction: row;
  }
}
.nav-footer__link {
  color: #fff;
  transition: color 0.3s;
}
.nav-footer__link:hover {
  color: #1c85fb;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}
