@font-face {
  font-family: "Good";
  src: url("goodheadlinepro-bold.ttf");
  font-style: normal;
  font-weight: bold;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style: none;
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 10px;
  background-color: #0B69B1;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 150rem;
  text-align: center;
  font-family: "Good", system-ui, sans-serif;
  color: #0B69B1;
  font-size: 1.6rem;
  background: url("bg.jpg") top / cover no-repeat;
}

.page {
  /* overflow: hidden; */
  width: 100%;
  height: 100%;
  min-height: 150rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section {
  padding: 2rem 0;
}

.container {
  width: min(1440px, 100%);
  padding: 0 20px;
  margin: 0 auto;
}

.header {
  width: 100%;
  padding: 5% 0 0;
}

.images__wrapper {
  margin: 0 0 10rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5rem;
}

.images__wrapper img {
  width: min(40rem, 40%);
}

.main__text {
  width: min(1062px, 100%);
  margin: 0 auto;
  color: #0B69B1;
  text-align: center;
  font-size: 2.6rem;
}

.body__text {
  width: min(1059px, 100%);
  margin: 0 auto 5rem;
  color: #0B69B1;
  text-align: center;
  font-size: 2.2rem;
  line-height: 120%;
}

/* questions */
.dots {
  width: min(150px, 100%);
  margin: 2.6rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.dot {
  width: 1.6rem;
  height: 1.6rem;
  stroke-width: 1px;
  stroke: #0B69B1;
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #0B69B1;
  vertical-align: middle;
  transition: all 0.4s;
}

.dot-done {
  transition: all 0.4s;
}

.dot-active {
  background: #0B69B1;
  transition: all 0.4s;
}

.quest-txt {
  margin: 0 auto 2.6rem;
  color: #0B69B1;
  text-align: center;
  font-size: 2.6rem;
  line-height: 130%;
  text-transform: uppercase;
}

button {
  cursor: pointer;
  margin: 0 auto 2rem;
  width: min(447px, 100%);

  color: #fff;
  font-family: "Good", system-ui, sans-serif;
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.78px;
  text-transform: uppercase;

  display: flex;
  padding: 15px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 100px;
  background: #0B69B1;

  transition: all 0.4s;
}
.final-txt {
  width: min(1059px, 100%);
  margin: 0 auto 4rem;
  color: #0B69B1;
  font-size: 2.2rem;
  line-height: 120%;
}
.q3,
.q2,
.q4,
.q5,
.final {
  display: none;
  opacity: 0;
}

/* footer */

.footer {
  padding: 11rem 0 0;
  width: 100%;
  height: 40rem;
  
}

.footer__text {
  width: min(341px, 100%);
  margin: 0 auto;
  color: #0B69B1;
  text-align: center;
  font-family: "Inter";
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
}

/* MEDIA */

@media (width < 900px) {
  body {
    background-position: 0 -7rem;
  }

  .footer {
    background-position: 37% 0;
  }
}

@media (max-width: 575px) {
  body {
    background-position: 0 -20rem;
  }
  body,
  .page {
    min-height: 90rem;
  }

  .section {
    padding: 0.5rem;
  }

  .main__text {
    font-size: 1.6rem;
  }

  .body__text {
    font-size: 1.2rem;
  }

  .dots {
    margin: 1rem auto;
  }

  .quest-txt {
    font-size: 1.6rem;
  }

  button {
    font-size: 1.6rem;
    padding: 11px 7px;
  }

  .final-txt {
    font-size: 1.2rem;
  }

  .footer {
    padding: 30rem 0 0;
    
  }
  .footer__text {
    width: min(171px, 100%);
    color: #fff;
    font-size: 0.8rem;
  }
}
