* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Golos Text", sans-serif;
  line-height: 140%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
}

.header-wrap {
  width: 100%;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

main {
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  padding: 100px 15px 25px;
  display: flex;
  align-items: center;
}

main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
main > * {
  position: relative;
  z-index: 1;
}

.content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  gap: 30px;
  align-items: start;
  margin-right: 30px;
}

.left {
  display: flex;
  width: 100%;
  max-width: 619px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.first {
  color: #fff;
  font-family: "Golos Text";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
  padding-left: 40px;
}

h1 {
  color: #fff;
  font-family: "Golos Text";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}

h1 span {
  color: #fff;
  font-family: "Golos Text";
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 89.263px;
}

p {
  color: #fff;
  font-family: "Golos Text";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}

.right {
  width: 499px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 22px 22px 55px 0 rgba(0, 0, 0, 0.1);
}

.right-wrap {
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 32px;
  width: 100%;
}

.top-quest {
  color: #000;
  text-align: center;
  font-family: "Golos Text";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 36px */
  letter-spacing: -0.24px;
}

hr {
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
}
.answers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding-top: 32px;
}
.answer {
  width: 100%;
  cursor: pointer;
  display: flex;

  padding: 15px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--44, linear-gradient(0deg, #12506c 0%, #1bb8ed 100%));
}

.answer:hover {
  opacity: 0.9;
}

.quiz {
  width: 100%;
  text-align: center;
  display: none;
}

.quiz1 {
  display: block;
}

@media (max-width: 768px) {
  * {
    max-width: 100%;
  }
  .content {
    flex-direction: column;
    gap: 20px;
  }

  .left {
    text-align: center;
    gap: 15px;
  }

  .first {
    font-size: 21px;
  }
  h1 {
    font-size: 20px;
    line-height: 100%;
    padding: 10px 20px !important;
  }
  h1 span {
    font-size: 50px;
  }

  p {
    font-size: 18px;
  }

  .top-quest {
    color: #008669;
    font-size: 21px;
  }

  .quest {
    color: #008669;
    font-weight: 600;
  }

  .right {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 22px 22px 55px 0 rgba(0, 0, 0, 0.1);
  }
  .right-wrap {
    gap: 20px;
  }

  main {
    padding-top: 80px;
    background-image: url(../img/bg-mob.jpg);
  }
  .left {
    width: 100%;
  }
}
.black {
  color: #000;
}
.progress-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 0 4px;
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 0 4px;
}

.progress-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #1db954;
  background: transparent;
  opacity: 0.6;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.progress-dots .dot.active {
  background: #1db954;
  opacity: 1;
  transform: scale(1.1);
}

.progress-dots .dot.passed {
  background: #1db954;
  opacity: 1;
}
