@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  color: #2F3035;
  height: 100%;
}

.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  min-height: auto;
}

.header {
  position: relative;
  text-align: center;
  max-width: 261px;
  width: 100%;
  margin-top: 40px;
}

.bonus__img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.bg1 {
  position: absolute;
  left: -37px;
  bottom: 49px;
  z-index: 1;
  width: 69px;
  height: 71px;
}

.bg2 {
  position: absolute;
  width: 181px;
  right: 0;
}

.hero {
  text-align: center;
  margin-top: 30px;
}

.logo {
  position: relative;
  z-index: 12;
}

.title {
  color: #FF6A12;
  text-align: center;
  font-size: 50px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.subtitle {
  color: #2F3035;
  text-align: center;
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.steps {
  margin: 20px 0;
  text-align: center;
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}

.step-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  background: #FF6A12;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  line-height: normal;
  font-weight: 700;
  margin-right: 6px;
  font-size: 14px;
}

.step-text {
  font-size: 16px;
  color: #333;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  background: #FF6A12;
  -webkit-box-shadow: 0 5px 20px 0 rgba(255, 124, 0, 0.5);
          box-shadow: 0 5px 20px 0 rgba(255, 124, 0, 0.5);
  padding: 15px 40px;
  max-width: 310px;
  width: 100%;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
}

.footer {
  color: #2F3035;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}