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

body {
  min-height: 100vh;
  background-image: url(./img/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo {
  width: 100%;
  border-radius: 0 0 12px 12px;
  background: #fff;
  display: flex;
  max-width: 665px;
  margin: 0 auto;

  padding: 14px 0 13px 0;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.wrapper {
  width: 100%;
  max-width: 665px;
  margin: 0 auto;
  min-height: 90vh;
}

.start {
  color: #fff;
  display: flex;

  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.start h1 span {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.start h1 {
  font-size: 88px;
}

p {
  font-size: 21px;
}

.btn {
  display: flex;
  padding: 24px 40px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 179px;
  background: #fff;
  color: #253b70;
  cursor: pointer;
  font-size: 24px;
  border: none;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -1px;
  margin-top: 40px;
}

.start-btn img {
  background: #253b70;
  border-radius: 50%;
  padding: 3px;
}

.wrapper.feat-quiz {
  background: #fff;
  transition: all 0.5s;
  padding: 0;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.question {
  color: #253b70;
  text-align: center;

  font-weight: 600;
  letter-spacing: -0.42px;
  padding-bottom: 20px;
}
.answer {
  padding: 15px 32px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(0deg, #253b70 0%, #5b7fd6 100%);

  color: #fff;
  text-align: center;

  font-size: 20px;

  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
}

.answer.active,
.answer:hover {
  background: linear-gradient(0deg, #cc4634 0%, #ec8341 100%);
}

.quiz-wrap {
  max-width: 500px;
  width: 100%;
}

.quiz,
.quiz-footer {
  display: none;
}

h3 {
  color: #253b70;
  text-align: center;

  font-size: 32px;
  padding-bottom: 15px;
  font-weight: 600;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #7c7c7c;
  font-size: 12px;
  letter-spacing: -0.12px;
}

.form input {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #bebebe;
  background: #fff;
  padding: 16px;
  color: #253b70;
  font-size: 18px;
  margin-bottom: 10px;
}

.form input::placeholder {
  color: #a7a7a7;
}

.form-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1deb81;
  cursor: pointer;
  padding: 15px 32px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

.progress {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  display: flex;

  justify-content: space-between;
  align-items: center;
}

.progress-bar {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stepper {
  border: 1px solid #253b70;
  display: flex;
  min-width: 12px;
  min-height: 12px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.stepper.active::before {
  transition: all 0.2s;
  content: "";
  min-width: 6px;
  min-height: 6px;
  background: #253b70;
  border-radius: 50%;
  display: block;
}
.stepper.done {
  background: #253b70;
}

.current {
  color: #cfcfcf;
  font-size: 13px;
}


@media(max-width: 768px) {
  .start  {
    text-align: center;
    align-items: center;
    padding: 30px 15px;
  }
  .start h1 {
    font-size: 56px;
  }

  .start h1 span {
    font-size: 24px;
  }
  .progress, .quiz-wrap {
    padding: 0 15px;
  }
}

/*banks*/
.bank-ticker {
  background: transparent;

  padding: 15px 0 30px;
}

.ticker-viewport {
  --item-width: 115px; /* logo-card width */
  --gap: 12px;
  --row-height: 40px; /*  img max-height) */
  --item-count: 18;

  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: var(--gap);

  width: max-content;

  animation: scroll var(--duration, 18s) linear infinite;
}

.ticker-item {
  flex: 0 0 var(--item-width);
  width: var(--item-width);
  height: var(--row-height);
  display: grid;
  place-items: center;
  background: transparent;

  border-radius: 5px;
  padding: 5px 10px;
  border-radius: 14.306px;
  border: 0.447px solid #dbdbdb;
  background: #fff;
}

.ticker-item img {
  max-height: calc(var(--row-height) - 8px);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(0);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--shift)));
  }
}
