@font-face {
  font-family: 'Futura PT';
  src: url(../fonts/FUTURAPT-LIGHT.TTF);
  font-weight: 300;
}

@font-face {
  font-family: 'Futura PT';
  src: url(../fonts/FUTURAPT-BOOK.TTF);
  font-weight: 400;
}

@font-face {
  font-family: 'Futura PT';
  src: url(../fonts/FUTURAPT-MEDIUM.TTF);
  font-weight: 450;
}

@font-face {
  font-family: 'Futura PT';
  src: url(../fonts/FUTURAPT-DEMI.TTF);
  font-weight: 500;
}

@font-face {
  font-family: 'Futura PT';
  src: url(../fonts/FUTURAPT-HEAVY.TTF);
  font-weight: 600;
}

@font-face {
  font-family: 'Futura PT';
  src: url(../fonts/FUTURAPT-BOLD.TTF);
  font-weight: 700;
}

@font-face {
  font-family: 'Bebas Neue Cyrillic';
  src: url(../fonts/Bebas_Neue_Cyrillic.ttf);
  font-weight: 400;
}

html{
    background: #090909;
    height: 100%;
    min-height: 100vh;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
}

img {
  display: block;
}

.link {
  text-decoration: none;
  cursor: pointer;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  padding-left: 14px;
  padding-right: 14px;
  margin-left: auto;
  margin-right: auto;

  max-width: 375px;
}

.section {
  padding: 60px 0;
  max-width: 430px;
  margin: 0 auto;
}

@keyframes pulseScale {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}

/* header */

.header {
  padding-top: 20px;
  padding-bottom: 70px;

  background-image: url(../img/header/background-mobile-1x.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;

  max-width: 430px;
  margin: 0 auto;
}

@media (min-device-pixel-ratio: 2),
  (min-resolution: 192dpi),
  (min-resolution: 2dppx) {
  .header {
    background-image: url(../img/header/background-mobile-2x.jpg);
  }
}

.header .container {
  position: relative;
}

.verify-wrapper {
  position: absolute;
  right: 18px;
  top: 60px;

  transform: rotate(15deg);

  padding: 4px 10px;
  max-width: 88px;
  border-radius: 5px;
  background: #007861;
}

.verify-text {
  color: #fff;
  text-align: center;
  font-family: 'Futura PT';
  font-size: 11px;
  font-style: normal;
  font-weight: 450;
  line-height: 100%; /* 11px */
  letter-spacing: -0.33px;
}

.free-header-wrapper {
  padding: 9px;
  border-radius: 3px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  max-width: 283px;
  margin: 0 auto 32px auto;
}

.free-text {
  color: #ffd676;
  text-align: center;
  font-family: 'Futura PT';
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 16px */
  letter-spacing: -0.48px;
}

.free-text span {
  color: #fff;
  text-transform: lowercase;
}

.header-title {
  text-align: center;
  font-family: 'Bebas Neue Cyrillic';
  font-size: 43px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.86px;

  background: linear-gradient(90deg, #eaa800 0%, #ffeb80 50%, #eaa800 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-subtitle {
  color: #fff;
  text-align: center;
  font-family: 'Futura PT';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 22px */
  letter-spacing: -0.54px;
  text-transform: uppercase;

  max-width: 312px;
  margin: 0 auto;

  margin-bottom: 10px;
}

.header-subtitle span {
  color: #fee87b;
}

.header-desc {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: 'Futura PT';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  letter-spacing: -0.48px;

  max-width: 320px;
  margin: 0 auto 240px auto;
}

.facts-wrapper {
  padding: 4px 10px;
  border-radius: 5px;
  background: #007861;
  max-width: 233px;
  margin: 0 auto 30px auto;

  transform: rotate(-4deg);
}

.facts-text {
  color: #fff;
  text-align: center;
  font-family: 'Futura PT';
  font-size: 13px;
  font-style: normal;
  font-weight: 450;
  line-height: 100%; /* 13px */
  letter-spacing: -0.39px;
}

.header-button-container {
  position: relative;

  max-width: 345px;
  width: 100%;
  margin: 0 auto;
}

.header-button {
  display: block;

  color: #101010;
  text-align: center;
  font-family: 'Futura PT';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: -0.28px;
  text-transform: uppercase;

  width: 100%;
  border: inherit;

  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, #eaa800 0%, #ffeb80 50%, #eaa800 100%);

  cursor: pointer;

  animation: pulseScale 1500ms linear infinite;
}

/* bonus */

.bonus-container {
  padding-top: 0;
  padding-bottom: 40px;

  max-width: 430px;
  margin: 0 auto;
}

.bonus-container.background {
  background: #090909;
  background-image: url(../img/bonus/bonus-ellipse-bg.svg);
  background-repeat: no-repeat;
  background-position: 50% 72%;
  background-size: 420px;
}

.about-author .bonus-container {
  background: #090909;
  background-image: url(../img/bonus/bonus-ellipse-bg.svg);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 420px;
}

.bonus-title {
  color: #0dad8f;
  text-align: center;
  font-family: 'Bebas Neue Cyrillic';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;

  max-width: 247px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.bonus-title span {
  color: #fff;
}

.take-gift-text {
  color: #fff;
  text-align: center;
  font-family: 'Futura PT';
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 100%; /* 16px */
  letter-spacing: -0.48px;

  max-width: 190px;
  margin: 0 auto 10px auto;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 30px;

  margin-bottom: 40px;
}

.bonus-list .list-item {
  color: #fff;
  text-align: center;
  font-family: 'Futura PT';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  letter-spacing: -0.39px;
  max-width: 300px;
  margin: 0 auto;
}

.bonus-list .list-item span {
  font-weight: 450;
}

.bonus-list .bonus-image {
  display: block;
  margin: 0 auto 10px auto;
}

.timer-wrapper {
  border-radius: 10px;
  border: 2px dashed #0dad8f;

  padding: 5px;
  max-width: 242px;
  margin: 0 auto 32px auto;
}

.timer-wrapper.margin {
  margin-bottom: 20px;
}

/* timer */

.countdown {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.countdown-time {
  display: block;
  color: #fff;
  text-align: center;
  font-family: 'Futura PT';
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.56px;
  width: 70px;
}

.countdown-doubledot {
  content: '';
  display: flex;
  height: 25px;
  width: 1px;
  background: #fff;
  margin: 0 auto;
}

/* form */

.form {
  background: #090909;
}

.form.section {
  padding: 0;
}

.form-title {
  color: #fff;
  text-align: center;
  font-family: 'Bebas Neue Cyrillic';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;

  max-width: 278px;
  margin: 0 auto 20px auto;
}

.form-title span {
  color: #0dad8f;
}

.form-container {
  border: 10px solid white;
  border-radius: 20px;
}

/* footer */

.footer {
  background: #090909;
}

/* disign creator */

.disign-creator-link {
  display: block;
}

.disign-creator {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;

  max-width: 189px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.create-by-text {
  color: #fff;
  font-family: 'Futura PT';
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* modal */

body.modal-open {
  overflow: hidden;
}

.backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 47, 66, 0.4);

  opacity: 1;
  visibility: none;

  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 250ms cubic-bezier(0.4, 0, 0.2, 1);

  z-index: 999;
}

.backdrop.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.modal {
  position: absolute;
  left: 50%;
  top: 50%;

  padding-top: 50px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;

  max-width: 400px;
  width: 100%;
  max-height: 700px;

  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 1px 3px rgba(0, 0, 0, 0.12),
    0px 2px 1px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.close-button {
  position: absolute;
  top: 20px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: inherit;
  border: none;
  cursor: pointer;
}
