@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Almarai";
  src: url("../Almarai-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Almarai";
  src: url("../Almarai-Bold.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  border: none;
}

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

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: transparent;
}

ul,
ul li {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Satoshi", Arial, sans-serif;
  color: #262119;
  background: #ffffff;
}

body.ar {
  font-family: "Almarai", "Satoshi", Arial, sans-serif;
  direction: rtl;
}

body.ar .select-lang__current {
  padding-right: 0;
  padding-left: 20px;
  background-position: left center;
}

body.ar .select-lang__list {
  right: auto;
  left: 0;
}

body.ar .select-lang__list li a {
  justify-content: flex-start;
}

body.ar .flag {
  margin-right: 0;
  margin-left: 8px;
}

.site-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.hw-header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 72px;
  margin-bottom: 24px;
}

.hw-header .site-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  width: 204px;
  height: 34px;
  background: url("./images/logo.svg") no-repeat transparent center center;
  background-size: contain;
}

.hw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #262119;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  background: #dbb454;
  transition: background-color 0.2s ease;
}

.hw-button:hover {
  background-color: #d0ab50;
}

.hw-button:active {
  background-color: #c5a24c;
}

.hw-button_m {
  padding: 0 24px;
  min-height: 40px;
  font-size: 16px;
  line-height: 40px;
  white-space: nowrap;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 16px;
  color: #262119;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  background-color: #f8cb00;
  transition: background-color 0.2s ease;
}

.site-button:hover {
  background-color: #f9d86e;
}

.select-lang {
  position: relative;
}

.select-lang__current {
  display: flex;
  align-items: center;
  padding-right: 20px;
  color: #262119;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  background: url("./images/chevron-down.svg") no-repeat transparent right center;
  cursor: pointer;
}

.select-lang__list {
  position: absolute;
  top: 48px;
  right: 0;
  z-index: 99;
  display: none;
  padding: 8px 20px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 6px 24px rgba(34, 56, 80, 0.1),
    0 0 1.5px rgba(34, 56, 80, 0.1);
}

.select-lang__list.active {
  display: block;
}

.select-lang__list li a {
  display: flex;
  align-items: center;
  width: 200px;
  padding: 8px 0;
  color: #262119;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}

.flag {
  display: flex;
  width: 28px;
  height: 22px;
  margin-right: 8px;
  border-radius: 2px;
  background-color: transparent;
  background-position: center top 1px;
  background-repeat: no-repeat;
  background-size: contain;
}

.flag-en {
  background-image: url("./images/flag-en.png");
}

.flag-id {
  background-image: url("./images/flag-id.png");
}

.flag-ms {
  background-image: url("./images/flag-ms.png");
}

.flag-pt {
  background-image: url("./images/flag-pt.png");
}

.flag-es {
  background-image: url("./images/flag-es.png");
}

.flag-ar {
  background-image: url("./images/flag-ar.png");
}

.signup-block__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #262119;
  background-color: #ffffff;
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.05);
}

.signup-block__button::before {
  content: "";
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.signup-block__button--google::before {
  background-image: url("./images/google-icon.png");
}

.signup-block__button--facebook::before {
  background-image: url("./images/fb-icon.png");
}

.signup-block__or-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}

.signup-block__or-wrapper::before,
.signup-block__or-wrapper::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ffffff;
}

.signup-block__input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #e6e5e5;
  color: #262119;
  border-radius: 16px;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

.signup-block__input-wrapper:focus-within {
  border-color: #b3b3b3;
}

.signup-block__input-wrapper--error {
  border-color: #d7504b;
}

.signup-block__input-wrapper input {
  flex-grow: 1;
  min-width: 0;
  padding: 12px 0;
  font: inherit;
  font-size: 16px;
  line-height: 1;
  background-color: transparent;
  outline: none;
}

.signup-block__input-wrapper input::placeholder {
  color: #b3b3b3;
}

.signup-block__input-error {
  min-height: 18px;
  margin: 6px 0 12px;
  color: #d7504b;
  font-size: 12px;
  line-height: 18px;
  display: none;
}

.signup-block--input-error .signup-block__input-error {
  display: block;
}

.signup-block__submit-button {
  margin-top: 8px;
  width: 100%;
}

.event-header__signup-wrapper--attention,
.signup-block--attention {
  animation: signup-block-attention 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes signup-block-attention {
  0%,
  100% {
    translate: 0 0;
  }

  15% {
    translate: -6px 0;
  }

  30% {
    translate: 6px 0;
  }

  45% {
    translate: -3px 0;
  }

  60% {
    translate: 3px 0;
  }

  75% {
    translate: -2px 0;
  }
}

.event-header {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 120px;
  padding: 0 120px;
}

.event-header__content-container {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px;
  border-radius: 56px;
  background-color: #262119;
}

.event-header__start-column {
  padding: 0 24px;
}

.event-header__title {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  text-align: start;
  color: #ffffff;
}

.event-header__desc {
  font-size: 16px;
  line-height: 1.4;
  text-align: start;
  color: #ffffff;
}

.event-header__signup-wrapper {
  width: 290px;
  margin: 40px auto 0;
}

.event-header__image {
  flex-shrink: 0;
  width: 578px;
  height: 592px;
  object-fit: cover;
  object-position: center center;
  border-radius: 40px;
}

.bonus-features {
  margin: 120px auto;
  padding: 0 120px;
  max-width: 1440px;
}

.bonus-features__title {
  margin-bottom: 40px;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.bonus-features__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.bonus-features__item-wrapper {
  height: 280px;
  padding: 24px;
  text-align: center;
  border-radius: 40px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-color: #dfdede;
}

.bonus-features__item-wrapper--capital {
  background-image: url("./images/bonus-features-capital.webp");
}

.bonus-features__item-wrapper--duration {
  background-color: #f8cb00;
  background-image: url("./images/bonus-features-duration.webp");
}

.bonus-features__item-wrapper--markets {
  background-color: #99bbfb;
  background-image: url("./images/bonus-features-markets.webp");
}

.bonus-features__item-wrapper--risk {
  background-image: url("./images/bonus-features-risk.webp");
}

.bonus-features__item-title {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 500;
  white-space: nowrap;
}

.bonus-features__item-desc {
  font-size: 16px;
  line-height: 1.45;
}

.dark-wrapper {
  position: relative;
  padding-bottom: 120px;
  color: #ffffff;
  background-color: #19191d;
  border-radius: 56px 56px 0 0;
}

.markets-block {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.markets-block__title {
  position: sticky;
  top: 0;
  max-width: 420px;
  margin-inline-end: 56px;
  padding: 120px 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
}

.markets-block__list {
  padding: 120px 0;
  display: grid;
  gap: 137px;
}

.markets-block__item {
  transition: color 0.5s ease;
}

.markets-block__item--active {
  color: #fce57f;
}

.markets-block__period {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
}

.markets-block__market-name {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
}

.bonus-boosters {
  margin: 0 auto 160px;
  max-width: 1440px;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: #19191d;
  text-align: center;
}

.bonus-boosters__column {
  padding: 12px 12px 40px;
  background-color: #ffffff;
  border-radius: 48px;
}

.bonus-boosters__column--opportunities {
  background-color: #f8cb00;
}

.bonus-boosters__column::before {
  content: '';
  display: block;
  margin-bottom: 32px;
  width: 100%;
  height: 220px;
  border-radius: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bonus-boosters__column--opportunities::before {
  background-image: url('./images/bonus-boosters-1.webp');
}

.bonus-boosters__column--education::before {
  background-image: url('./images/bonus-boosters-2.webp');
}

.bonus-boosters__title {
  margin: 0 auto;
  margin-bottom: 12px;
  max-width: 450px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
}

.bonus-boosters__desc {
  margin: 0 auto;
  margin-bottom: 12px;
  max-width: 450px;
  font-size: 18px;
}

.about-us {
  margin-bottom: 160px;
}

.about-us__title {
  margin-bottom: 12px;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.about-us__desc {
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
}

.about-us__awards-container {
  width: 416px;
  margin: 40px auto 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-us__awards-container::before,
.about-us__awards-container::after {
  content: '';
  width: 40px;
  height: 85px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url('./images/branch.png');
}

.about-us__awards-container::after {
  transform: scaleX(-1);
}

.about-us__awards-list {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-us__awards-list::before,
.about-us__awards-list::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100%;
  top: 0;
  z-index: 2;
}

.about-us__awards-list::before {
  left: 0;
  background-image: linear-gradient(to left, transparent, #19191d);
}

.about-us__awards-list::after {
  right: 0;
  background-image: linear-gradient(to right, transparent, #19191d);
}

.about-us__awards-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  will-change: transform;
  animation: about-us-awards-scroll 120s linear infinite;
}

.about-us__awards-track li {
  flex: 0 0 auto;
}

.about-us__award-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@keyframes about-us-awards-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 16px));
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-us__awards-track,
  .notifications__item,
  .notifications__item--hidden,
  .event-header__signup-wrapper--attention,
  .signup-block--attention {
    animation: none;
    translate: none;
  }
}

.about-us__photos-wrapper {
  --about-us-photos-offset: 0px;
  margin-top: 64px;
  display: grid;
  gap: 24px;
  overflow: hidden;
}

.about-us__top-photos,
.about-us__bottom-photos {
  --about-us-photos-base-offset: 0px;
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.about-us__top-photos {
  justify-self: start;
  transform: translateX(calc(var(--about-us-photos-base-offset) + var(--about-us-photos-offset)));
}

.about-us__bottom-photos {
  justify-self: start;
  transform: translateX(calc(var(--about-us-photos-base-offset) - var(--about-us-photos-offset)));
}

.about-us__photo {
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 32px;
}

.reviews-block {
  margin: 0 auto 140px;
  max-width: 1440px;
  padding: 0 120px;
}

.reviews-block__title {
  margin-bottom: 64px;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
}

.reviews-block__columns {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  height: 500px;
  align-items: start;
  overflow: hidden;
}

.reviews-block__columns::before,
.reviews-block__columns::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 2;
}

.reviews-block__columns::before {
  top: 0;
  background-image: linear-gradient(to bottom, #19191d, transparent);
}

.reviews-block__columns::after {
  bottom: 0;
  background-image: linear-gradient(to top, #19191d, transparent);
}

.reviews-block__column {
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.reviews-block__column-track {
  display: grid;
  will-change: transform;
  animation: reviews-block-scroll-up 120s linear infinite;
}

.reviews-block__column--down .reviews-block__column-track {
  animation-name: reviews-block-scroll-down;
}

.reviews-block__column-group {
  display: grid;
  gap: 16px;
  padding-bottom: 16px;
}

@keyframes reviews-block-scroll-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes reviews-block-scroll-down {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

.reviews-block__review-wrapper {
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.15);
}

.reviews-block__review {
  margin: 0;
  padding: 16px;
}

.reviews-block__review::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 8px;
  background-image: url("./images/quotes.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.reviews-block__review-text {
  margin-bottom: 16px;
  color: #b3b3b3;
  font-size: 16px;
  line-height: 1.4;
}

.reviews-block__review-footer {
  display: grid;
  gap: 8px;
}

.reviews-block__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-block__author-avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  object-fit: cover;
  object-position: center center;
}

.reviews-block__author-name {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1;
  font-style: normal;
  font-weight: 500;
}

.reviews-block__author-country {
  font-size: 14px;
  line-height: 1;
}

.reviews-block__rating {
  width: 100px;
  height: auto;
}

.reviews-block__source-logo {
  display: block;
  width: 100px;
  height: auto;
}

.reviews-block__source-logo--fpa {
  width: 30px;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-block__columns {
    height: auto;
    overflow: visible;
  }

  .reviews-block__column {
    overflow: visible;
  }

  .reviews-block__column-track {
    animation: none;
    transform: none;
  }

  .reviews-block__column-group[aria-hidden="true"] {
    display: none;
  }
}

.trade-banner {
  max-width: 1440px;
  margin: 80px auto 0;
  padding: 0 120px;
}

.trade-banner__content-container {
  display: grid;
  align-content: center;
  justify-items: center;
  height: 499px;
  border-radius: 56px;
  background-color: #19191d;
  background-image: url("./images/trade-banner-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.trade-banner__title {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
}

.trade-banner__desc {
  font-size: 18px;
  line-height: 1.45;
  color: #ffffff;
}

.trade-banner__signup-wrapper {
  width: 290px;
  margin-top: 40px;
}

.notifications {
  position: fixed;
  top: 72px;
  inset-inline-end: 32px;
  z-index: 4;
  pointer-events: none;
  text-align: end;
  font-size: 14px;
  line-height: 1.25;
}

.notifications__list {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.notifications__item {
  min-width: 200px;
  max-width: 240px;
  padding: 6px 8px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 16px 0px #00000040;
  animation: notifications-item-in 450ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.notifications__item--hidden {
  animation: notifications-item-out 350ms ease both;
}

.notifications__header {
  display: inline;
  margin: 0;
}

.notifications__header::after {
  content: " ";
}

.notifications__time {
  color: #007aff;
  font-weight: 500;
}

.notifications__text {
  display: inline;
  margin: 0;
  color: #19191d;
}

@keyframes notifications-item-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes notifications-item-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

.trading-timer {
  position: fixed;
  z-index: 4;
  bottom: 32px;
  left: 50%;
  width: max-content;
  padding: 16px 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
  align-items: center;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
}

.trading-timer__title {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.trading-timer__title::before {
  content: '';
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.trading-timer__title--currency::before {
  background-image: url('./images/instruments/currency.png');
}

.trading-timer__title--stocks::before {
  background-image: url('./images/instruments/stocks.png');
}

.trading-timer__title--metals::before {
  background-image: url('./images/instruments/metals.png');
}

.trading-timer__title--synthetic::before {
  background-image: url('./images/instruments/synthetic.png');
}

.trading-timer__timer-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
}

.trading-timer__timer-separator {
  font-size: 12px;
  line-height: 18px;
}

.trading-timer__timer-column {
  width: 48px;
  text-align: center;
}

.trading-timer__timer-value {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.trading-timer__timer-title {
  font-size: 10px;
  line-height: 1;
  color: #666666;
}

.trading-timer__button {
  min-width: 240px;
}

body.modal-opened {
  overflow: hidden;
}

.signup-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  padding: 16px 20px;
  overflow-y: auto;
  color: #262119;
  text-align: center;
  background-color: #ffffff;
}

.signup-modal--opened {
  display: flex;
}

.signup-modal__close-button {
  position: absolute;
  top: 42px;
  inset-inline-end: 20px;
  width: 48px;
  height: 48px;
  background-color: transparent;
  background-image: url("./images/cross-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
}

.signup-modal__logo-wrapper {
  position: absolute;
  top: 42px;
  inset-inline-start: 20px;
}

.signup-modal__logo-image {
  width: auto;
  height: 25px;
}

.signup-modal__title {
  max-width: 424px;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.signup-modal__subtitle {
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
}

.signup-modal__email-form {
  width: 100%;
  padding-top: 91px;
}

.signup-modal__form-wrapper {
  display: flex;
  flex-direction: column;
  width: 424px;
  margin: 80px auto 0;
}

.signup-modal__fields-wrapper {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.signup-modal__form-field {
  text-align: start;
}

.signup-modal__input-label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 18px;
}

.signup-modal__input-wrapper {
  display: flex;
  padding: 13px 12px;
  border: 1px solid #dfdede;
  border-radius: 8px;
  cursor: text;
  transition: border-color 0.1s;
}

.signup-modal__input-wrapper:hover {
  border-color: #dbb454;
}

.signup-modal__input-wrapper--success,
.signup-modal__input-wrapper--success:hover {
  border-color: #45b892;
}

.signup-modal__input-wrapper--success::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-inline-start: 8px;
  background-image: url("./images/check-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.signup-modal__input-wrapper--error,
.signup-modal__input-wrapper--error:hover {
  border-color: #d7504b;
}

.signup-modal__input-wrapper input {
  width: 100%;
  padding: 0;
  border: none;
  color: #262119;
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  background-color: transparent;
  box-shadow: none;
  outline: none;
}

.signup-modal__input-wrapper input::placeholder {
  color: #b3b3b3;
}

.signup-modal__input-error {
  display: none;
  margin-top: 6px;
  color: #d7504b;
  font-size: 14px;
  line-height: 21px;
}

.signup-modal__input-error--visible {
  display: inline-block;
}

.signup-modal__email-tip {
  display: none;
  align-items: center;
  margin-top: 4px;
  font-size: 12px;
  line-height: 18px;
}

.signup-modal__email-tip--visible {
  display: flex;
}

.signup-modal__email-tip::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-inline-end: 6px;
  background-image: url("./images/info-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.signup-modal__text-highlight {
  color: #b38344;
}

.signup-modal__site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  padding: 8px 24px;
  border-radius: 4px;
  color: #262119;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
  background-color: #dbb454;
  transition:
    color 0.1s,
    background-color 0.1s;
}

.signup-modal__site-button:hover:not(:disabled) {
  background-color: #d0ab50;
}

.signup-modal__site-button:active:not(:disabled) {
  background-color: #c5a24c;
}

.signup-modal__site-button:disabled {
  color: #666666;
  background-color: #f1e1bb;
  cursor: not-allowed;
}

.signup-modal__site-button:disabled svg path {
  stroke: #666666;
}

.signup-modal__site-button--tertiary {
  background-color: transparent;
}

.signup-modal__site-button--tertiary:hover:not(:disabled) {
  background-color: #fafafa;
}

.signup-modal__site-button--tertiary:active:not(:disabled) {
  background-color: #f5f5f5;
}

.signup-modal__back-button {
  margin-top: 16px;
}

.signup-modal__terms-text {
  margin-top: auto;
  color: #666666;
  font-size: 14px;
  line-height: 21px;
}

.signup-modal__terms-link {
  color: #007aff;
}

.hw-footer {
  background-color: #fafafa;
}

.hw-footer .site-container {
  padding-top: 40px;
  padding-bottom: 64px;
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.21s ease-out;
}

.socials__link img {
  width: 40px;
  height: 40px;
}

.socials__link:hover {
  opacity: 0.72;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(179, 179, 179, 0.4);
}

.footer-content p,
.footer-copyright p {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 1399px) {
  .event-header__content-container {
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-radius: 48px;
    background-image: url('./images/trade-banner-bg.webp');
    background-size: cover;
    background-position: center center;
  }

  .event-header__start-column {
    max-width: 500px;
  }

  .event-header__title,
  .event-header__desc {
    text-align: center;
  }

  .event-header__image {
    display: none;
  }

  .trade-banner__content-container {
    border-radius: 48px;
  }
}

@media (max-width: 1299px) {
  .bonus-features__list {
    grid-template-columns: repeat(2, 348px);
    justify-content: center;
  }

  .bonus-features__item-wrapper {
    height: 300px;
  }
}

@media (max-width: 990px) {
  .site-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hw-header {
    height: 64px;
  }

  .header-right {
    gap: 16px;
  }

  .hw-button_m {
    min-height: 30px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 30px;
  }

  .select-lang__current {
    padding-right: 12px;
    font-size: 0;
  }

  body.ar .select-lang__current {
    padding-right: 0;
    padding-left: 12px;
  }

  .logo {
    width: 137px;
    height: 32px;
  }

  .event-header {
    margin-bottom: 224px;
    padding: 0 32px;
  }

  .event-header__content-container {
    position: relative;
    padding: 60px 32px 223px;
    gap: 20px;
    background-image: url('./images/header-bg-tablet.webp');
  }

  .event-header__start-column {
    max-width: 100%;
    padding: 0 24px;
  }

  .event-header__title {
    color: #19191d;
  }

  .event-header__desc {
    font-size: 16px;
    line-height: 1.4;
    color: #19191d;
  }

  .event-header__signup-wrapper {
    position: absolute;
    top: calc(100% - 159px);
    left: 50%;
    width: 290px;
    margin-top: 0;
    padding: 24px;
    border-radius: 32px;
    background-color: #f5f5f5;
    box-shadow:
      0 0 32px rgba(0, 0, 0, 0.04),
      0 32px 32px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
  }

  .event-header__signup-wrapper .signup-block__or-wrapper {
    color: #262119;
  }

  .event-header__signup-wrapper .signup-block__or-wrapper::before,
  .event-header__signup-wrapper .signup-block__or-wrapper::after {
    background-color: #dfdede;
  }

  .bonus-features {
    margin: 80px auto;
    padding: 0 32px;
  }

  .bonus-features__title {
    margin-bottom: 32px;
    font-size: 36px;
  }

  .bonus-features__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-wrapper {
    border-radius: 48px 48px 0 0;
  }

  .markets-block {
    margin-bottom: 20px;
    padding: 0 32px;
  }

  .markets-block__title {
    padding: 60px 0;
    max-width: 300px;
    margin-inline-end: 24px;
    font-size: 30px;
    line-height: 1.45;
  }

  .markets-block__list {
    padding: 60px 0;
  }

  .bonus-boosters {
    margin-bottom: 120px;
    padding: 0 32px;
    gap: 16px;
  }

  .bonus-boosters__column {
    padding: 8px 8px 32px;
  }

  .bonus-boosters__column::before {
    margin-bottom: 16px;
    height: 130px;
  }

  .bonus-boosters__title {
    max-width: 100%;
    padding: 0 12px;
    font-size: 30px;
    line-height: 1.45;
  }

  .bonus-boosters__desc {
    max-width: 100%;
    padding: 0 12px;
    font-size: 16px;
    line-height: 1.4;
  }

  .about-us {
    margin-bottom: 120px;
  }

  .about-us__title {
    font-size: 36px;
  }

  .about-us__desc {
    font-size: 16px;
    line-height: 1.4;
  }

  .about-us__awards-container {
    margin-top: 32px;
    margin-bottom: 40px;
  }

  .reviews-block {
    margin-bottom: 160px;
    padding: 0 8px;
  }

  .reviews-block__title {
    font-size: 28px;
  }

  .trade-banner {
    padding: 0 32px;
  }

  .trade-banner__content-container {
    padding: 60px 72px;
    height: auto;
    background-image: url("./images/trade-banner-bg.webp");
  }

  .trade-banner__title {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.45;
  }
}

@media (max-width: 767px) {
  .markets-block {
    margin-bottom: 120px;
    padding: 60px 16px 0;
    grid-template-columns: 1fr;
  }

  .markets-block__title {
    position: static;
    margin-bottom: 24px;
    margin-inline-end: 0;
    max-width: 100%;
    padding: 0 12px;
    text-align: center;
    font-size: 26px;
  }

  .markets-block__list {
    padding: 0;
    justify-items: center;
    text-align: center;
    gap: 60px;
  }

  .markets-block__item {
    min-height: 148px;
    display: grid;
    align-items: center;
    align-content: center;
  }

  .markets-block__period {
    font-size: 16px;
    line-height: 1.4;
  }

  .reviews-block {
    padding: 0;
  }

  .reviews-block__title {
    padding: 0 8px;
  }

  .reviews-block__columns {
    grid-template-columns: repeat(3, 220px);
    justify-content: center;
  }

  .trading-timer {
    left: 0;
    transform: none;
    bottom: 0;
    width: 100%;
    padding: 8px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    border-radius: 16px 16px 0 0;
  }

  .trading-timer__title {
    font-size: 14px;
  }

  .trading-timer__timer-column {
    width: 32px;
  }

  .trading-timer__timer-value {
    font-size: 14px;
  }

  .trading-timer__button {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .signup-modal {
    justify-content: start;
    padding: 64px 16px 16px;
  }

  .signup-modal__close-button {
    top: 76px;
    inset-inline-end: 16px;
    width: 24px;
    height: 24px;
  }

  .signup-modal__logo-wrapper {
    top: 0;
    inset-inline-start: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 64px;
    border-bottom: 1px solid #f5f5f5;
  }

  .signup-modal__logo-image {
    height: 32px;
  }

  .signup-modal__title {
    width: 311px;
    margin-top: 64px;
  }

  .signup-modal__subtitle {
    margin-top: 4px;
  }

  .signup-modal__email-form {
    padding-top: 0;
  }

  .signup-modal__form-wrapper {
    margin-top: 32px;
  }

  .signup-modal__fields-wrapper {
    gap: 12px;
    margin-bottom: 32px;
  }

  .signup-modal__back-button {
    margin-bottom: 32px;
  }

  .signup-modal__terms-text {
    text-align: start;
  }

  .hw-footer .site-container {
    padding-bottom: 120px;
  }
}

@media (max-width: 599px) {
  .site-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hw-header {
    margin-bottom: 16px;
  }

  .event-header {
    padding: 0 8px;
  }

  .event-header__content-container {
    gap: 20px;
    padding: 60px 8px 224px;
    background-image: url('./images/header-bg-mobile.webp');
    background-position: top center;
  }

  .event-header__title {
    font-size: 36px;
  }

  .event-header__desc {
    font-size: 18px;
    line-height: 1.45;
  }

  .event-header__signup-wrapper {
    top: calc(100% - 152px);
  }

  .bonus-features {
    padding: 0 8px;
  }

  .bonus-features__title {
    margin-bottom: 24px;
  }

  .bonus-features__list {
    grid-template-columns: 359px;
  }

  .bonus-features__item-title {
    font-size: 26px;
    line-height: 1.45;
  }

  .bonus-boosters {
    padding: 0 16px;
    grid-template-columns: 1fr;
  }

  .bonus-boosters__column {
    padding: 8px 8px 24px;
  }

  .bonus-boosters__column::before {
    margin-bottom: 20px;
    height: 140px;
  }

  .bonus-boosters__title {
    font-size: 24px;
    line-height: 1.3;
  }

  .about-us {
    margin-bottom: 160px;
  }

  .about-us__awards-container {
    margin-bottom: 56px;
    width: 375px;
  }

  .about-us__awards-track {
    gap: 16px;
  }

  .about-us__photo {
    width: 218px;
    height: 180px;
  }

  .reviews-block__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .trade-banner {
    padding: 0 8px;
  }

  .trade-banner__content-container {
    padding: 32px 24px;
    align-content: start;
    height: 700px;
    background-image: url("./images/trade-banner-bg-mobile.webp");
    background-position: top center;
  }

  .trade-banner__signup-wrapper {
    width: 100%;
  }

  .trade-banner__title {
    font-size: 36px;
    line-height: 1.2;
  }

  .trade-banner__desc {
    font-size: 16px;
  }

  .notifications {
    top: 64px;
    inset-inline-end: 8px;
    font-size: 12px;
  }

  .notifications__item {
    min-width: 180px;
    max-width: 200px;
  }

  .hw-footer .site-container {
    padding-top: 48px;
  }

  .socials {
    justify-content: center;
    gap: 16px;
  }

  .footer-content {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .signup-modal__form-wrapper {
    width: 100%;
  }
}
