:root {
  --black: #000000;
  --background_primary: #e4e4e4;
  --text_primary: #4e454a;
  --background_dark: #60585c;
  --background_medium: #594f54;
  --accent_primary: #5cfd86;
  --accent_active: #39fd6c;
  --spacing: 22px;
}
@media (min-width: 900px) {
  :root {
    --spacing: 44px;
  }
}

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

a {
  text-decoration: none;
  cursor: pointer;
}

@font-face {
  font-family: "GT-Walsheim-Pro";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/GT-Walsheim-Pro-Regular.woff2");
}
@font-face {
  font-family: "GT-Walsheim-Pro";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/GT-Walsheim-Pro-Bold.woff2");
}
html {
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  font-family: "GT-Walsheim-Pro", sans-serif;
  background-color: var(--background_primary);
  color: var(--text_primary);
  line-height: 1.2;
}

.btn-main {
  color: var(--text_primary);
  background-color: var(--accent_primary);
  border-radius: 0.25rem;
  font-size: 28px;
  font-weight: 700;
  padding: 0.5rem 2.25rem;
  max-width: -moz-max-content;
  max-width: max-content;
  line-height: 1;
}
@media (hover: hover) {
  .btn-main:hover {
    background-color: var(--accent_active);
    color: var(--black);
  }
}

main article {
  /* Figure animation */
  /* Last figure animation */
  /* The last value is different */
  /* Figure animation */
}
main article.landing-page-head {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 0 var(--spacing) var(--spacing);
}
main article .landing-page-offer-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
main article .landing-page-offer {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin-top: var(--spacing);
}
main article .landing-page-offer .logo {
  display: flex;
  max-width: 88px;
  width: 100%;
  margin-bottom: var(--spacing);
}
main article .landing-page-offer span {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
main article .landing-page-offer h1 {
  font-size: 28px;
}
main article .landing-page-offer .btn-main {
  margin-block: var(--spacing);
  padding: 0.75rem 2.25rem 0.5rem 2.25rem;
}
main article .landing-page-offer p {
  font-size: 12px;
}
main article .login-text {
  position: absolute;
  top: var(--spacing);
  right: var(--spacing);
  font-size: 16px;
  font-weight: 700;
  color: var(--text_primary);
  height: -moz-max-content;
  height: max-content;
  text-align: right;
  z-index: 5;
}
main article .figure-holder {
  position: relative;
  top: 0;
  right: 0;
  width: 40%;
  height: auto;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main article .figure-holder .figure {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
}
main article .figure-holder .figure img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main article .figure-holder .figure img.character-shadow {
  filter: contrast(0) brightness(0.2) grayscale(1);
}
main article .figure-holder .figure img.character {
  opacity: 0;
}
main article .figure-holder .figure img.logo {
  opacity: 0;
  transform: translateX(10%);
}
main article .figure-holder .figure.one {
  transform: translateX(100%);
  animation: animation-figure 2000ms cubic-bezier(0, 0, 0, 1) forwards;
}
main article .figure-holder .figure.one .character {
  animation: animation-character 2000ms ease 125ms forwards;
}
main article .figure-holder .figure.one .logo {
  animation: animation-logo 2000ms ease 125ms forwards;
}
main article .figure-holder .figure.two {
  transform: translateX(100%);
  animation: animation-figure 2000ms cubic-bezier(0, 0, 0, 1) 2000ms forwards;
}
main article .figure-holder .figure.two .character {
  animation: animation-character 2000ms ease 2125ms forwards;
}
main article .figure-holder .figure.two .logo {
  animation: animation-logo 2000ms ease 2125ms forwards;
}
main article .figure-holder .figure.three {
  transform: translateX(100%);
  animation: animation-figure-last 2000ms cubic-bezier(0, 0, 0, 1) 4000ms forwards;
}
main article .figure-holder .figure.three .character {
  animation: animation-character 2000ms ease 4125ms forwards;
}
main article .figure-holder .figure.three .logo {
  animation: animation-logo 2000ms ease 4125ms forwards;
}
@keyframes animation-figure {
  0% {
    transform: translateX(100%);
    opacity: 1;
  }
  2% {
    transform: translateX(100%);
    opacity: 1;
  }
  30% {
    transform: translateX(0%);
    opacity: 1;
  }
  90% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 0;
  }
}
@keyframes animation-figure-last {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  2% {
    transform: translateX(100%);
    opacity: 1;
  }
  30% {
    transform: translateX(0%);
    opacity: 1;
  }
  90% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes animation-character {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation-logo {
  0% {
    opacity: 0;
    transform: translateX(10%);
  }
  25% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes animation-figure-1-desktop {
  0% {
    transform: translateX(0%);
    opacity: 0;
  }
  2% {
    transform: translateX(0%);
    opacity: 1;
  }
  30% {
    transform: translateX(-30%);
    opacity: 1;
  }
  90% {
    transform: translateX(-30%);
    opacity: 1;
  }
  100% {
    transform: translateX(-30%);
    opacity: 1;
  }
}
@keyframes animation-figure-2-desktop {
  0% {
    transform: translateX(30%);
    opacity: 0;
  }
  2% {
    transform: translateX(30%);
    opacity: 1;
  }
  30% {
    transform: translateX(0%);
    opacity: 1;
  }
  90% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes animation-figure-3-desktop {
  0% {
    transform: translateX(60%);
    opacity: 0;
  }
  2% {
    transform: translateX(60%);
    opacity: 1;
  }
  30% {
    transform: translateX(30%);
    opacity: 1;
  }
  90% {
    transform: translateX(30%);
    opacity: 1;
  }
  100% {
    transform: translateX(30%);
    opacity: 1;
  }
}
main article.offer-steps .steps-container {
  display: flex;
  gap: calc(var(--spacing) / 2);
  align-items: center;
  justify-content: flex-start;
  margin-inline: var(--spacing);
  flex-wrap: wrap;
}
main article.offer-steps .steps-container .step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 33px;
}
main article.offer-steps .steps-container .step::before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "1";
  font-weight: 700;
  color: var(--background_primary);
  background-color: var(--text_primary);
  border-radius: 100%;
  padding: calc(var(--spacing) / 4);
  width: 26px;
  height: 26px;
}
main article.offer-steps .steps-container .step:nth-of-type(2)::before {
  content: "2";
}
main article.offer-steps .steps-container .step:nth-of-type(3)::before {
  content: "3";
}
main article.offer-steps .steps-container .step .step-title {
  font-size: 16px;
  line-height: 1;
}
main article.offer-steps .steps-container .step .step-subtitle {
  font-size: 12px;
  line-height: 1;
}
main article.payment-methods {
  background-color: var(--text_primary);
  padding: var(--spacing);
  display: flex;
  gap: var(--spacing);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--spacing);
}
main article.payment-methods .payment-method {
  background-color: var(--background_medium);
  border-radius: 100%;
  width: 76px;
  height: 76px;
  padding: 12px;
}
main article.payment-methods .payment-method img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.75;
}
main article.terms-and-conditions {
  padding: 0 var(--spacing) var(--spacing);
  color: var(--background_primary);
  background-color: var(--text_primary);
}
main article.terms-and-conditions h3 {
  margin-bottom: calc(var(--spacing) / 2);
  font-size: 12px;
  font-weight: 400;
  border-top: 1px solid var(--background_primary);
  padding-top: var(--spacing);
}
main article.terms-and-conditions .terms-list {
  font-size: 12px;
}
main article.terms-and-conditions .terms-list li {
  margin-left: 22px;
  margin-bottom: 6px;
}
main article.terms-and-conditions .terms-list table {
  border-collapse: collapse;
  width: 100%;
  margin-block: 12px;
}
main article.terms-and-conditions .terms-list table thead {
  background-color: var(--background_dark);
  font-weight: 700;
}
main article.terms-and-conditions .terms-list table tbody td {
  border-bottom: 1px solid var(--background_dark);
}
main article.terms-and-conditions .terms-list table td {
  padding: 10px 20px;
}
main article.terms-and-conditions .terms-list > :last-child {
  margin-bottom: 0;
}

footer {
  display: flex;
  flex-direction: column;
  gap: var(--spacing);
  background-color: var(--text_primary);
  color: var(--background_primary);
  padding: 0 var(--spacing) var(--spacing);
}
footer .license {
  border-top: 1px solid var(--background_primary);
  padding-top: var(--spacing);
}
footer .license p {
  font-size: 12px;
}
footer .license p a {
  color: var(--background_primary);
}
footer .license-icons {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--spacing) / 2);
}
footer .license-icons .license-icon {
  display: flex;
  align-items: center;
}
footer .license-icons .license-icon a {
  display: flex;
  align-items: center;
}
footer .license-icons .license-icon img {
  width: auto;
  max-width: 100px;
  height: 24px;
}
footer .contacts {
  display: flex;
  justify-content: flex-start;
  gap: calc(var(--spacing) / 2);
  border-top: 1px solid var(--background_primary);
  padding-top: var(--spacing);
  margin-bottom: calc(44px + var(--spacing));
}
footer .contacts a {
  font-size: 12px;
  color: var(--background_primary);
  padding-right: calc(var(--spacing) / 2);
}
footer .contacts a:not(:last-child) {
  border-right: 1px solid var(--background_primary);
}
@media (hover: hover) {
  footer .contacts a:hover {
    color: var(--accent_active);
  }
}
footer .cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding-block: var(--spacing);
  background-color: var(--text_primary);
  z-index: 20;
  transform: translateY(100%);
  transition: transform 250ms ease;
}
footer .cta .btn-main {
  margin: 0 auto;
}
footer .cta.active {
  transform: translateY(0);
}

@media (min-width: 900px) {
  main article .landing-page-offer {
    width: 40%;
  }
  main article .landing-page-offer .logo {
    max-width: 132px;
  }
  main article .landing-page-offer h1 {
    font-size: 56px;
  }
  main article .landing-page-offer span {
    font-size: 32px;
  }
  main article .landing-page-offer .btn-main {
    padding: 1rem 3rem 0.75rem 3rem;
    font-size: 56px;
  }
  main article .login-text {
    font-size: 32px;
  }
  main article .figure-holder {
    width: 60%;
  }
  main article.offer-steps .steps-container {
    gap: var(--spacing);
  }
  main article.offer-steps .steps-container .step {
    padding-left: 66px;
  }
  main article.offer-steps .steps-container .step::before {
    width: 48px;
    height: 48px;
    font-size: 32px;
  }
  main article.offer-steps .steps-container .step .step-title {
    font-size: 32px;
  }
  main article.offer-steps .steps-container .step .step-subtitle {
    line-height: 1.5;
  }
  main article.payment-methods .payment-method {
    width: 112px;
    height: 112px;
  }
}
@media (min-width: 1200px) {
  main article .figure-holder .figure.one {
    transform: translateX(1%);
    animation: animation-figure-1-desktop 2000ms cubic-bezier(0, 0, 0, 1) forwards;
  }
  main article .figure-holder .figure.two {
    transform: translateX(30%);
    animation: animation-figure-2-desktop 2000ms cubic-bezier(0, 0, 0, 1) 1000ms forwards;
  }
  main article .figure-holder .figure.two .character {
    animation: animation-character 2000ms ease 1125ms forwards;
  }
  main article .figure-holder .figure.two .logo {
    animation: animation-logo 2000ms ease 1125ms forwards;
  }
  main article .figure-holder .figure.three {
    transform: translateX(60%);
    animation: animation-figure-3-desktop 2000ms cubic-bezier(0, 0, 0, 1) 2000ms forwards;
  }
  main article .figure-holder .figure.three .character {
    animation: animation-character 2000ms ease 2125ms forwards;
  }
  main article .figure-holder .figure.three .logo {
    animation: animation-logo 2000ms ease 2125ms forwards;
  }
}
@media (min-width: 1500px) and (min-width: 1200px) {
  main article .figure-holder {
    margin-bottom: -94px;
    margin-top: -160px;
  }
}
.cookies-text {
  color: var(--background_primary);
}/*# sourceMappingURL=style.css.map */