@charset "UTF-8";
body {
  background: linear-gradient(180deg, rgb(253, 157, 67) 0%, rgb(113, 79, 252) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Wix Madefor Text", sans-serif;
}

.startPage {
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: translateX(0);
}
.startPage .container {
  position: relative;
}
.startPage__bg {
  display: block;
  height: auto;
  z-index: 1;
  width: 100%;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}
.startPage__content {
  position: absolute;
  top: 30px;
  right: 50px;
  z-index: 10;
  color: white;
}
.startPage__title {
  position: absolute;
  top: 30px;
  left: 50px;
  color: white;
}
.startPage__title h1 {
  font-size: 46px;
}
.startPage .main-btn {
  position: absolute;
  bottom: 180px;
  right: 280px;
  padding: 20px 50px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(254, 132, 9, 0.9) 0%, rgba(252, 178, 27, 0.9) 50%, rgba(254, 132, 9, 0.9) 100%);
  color: white;
  font-weight: 600;
  font-size: 30px;
  outline: none;
  transition: transform 0.2s ease;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}
.startPage .main-btn:focus {
  outline: none;
}
.startPage .main-btn:hover {
  transform: scale(1.02);
}
.startPage .main-btn:active {
  transform: scale(0.98);
}

.main-btn-no {
  position: absolute;
  bottom: 180px;
  right: 280px;
  padding: 20px 50px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(254, 132, 9, 0.9) 0%, rgba(252, 178, 27, 0.9) 50%, rgba(254, 132, 9, 0.9) 100%);
  color: white;
  font-weight: 600;
  font-size: 30px;
  outline: none;
  transition: transform 0.2s ease;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}
.main-btn-no:focus {
  outline: none;
}
.main-btn-no:hover {
  transform: scale(1.02);
  text-decoration: none;
  text-underline: none;
  color: white;
}
.main-btn-no:active {
  transform: scale(0.98);
}

.main-btn-bottom {
  position: absolute;
  bottom: -85px;
  left: 14px;
  padding: 10px 30px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(254, 132, 9, 0.9) 0%, rgba(252, 178, 27, 0.9) 50%, rgba(254, 132, 9, 0.9) 100%);
  color: white;
  font-weight: 600;
  font-size: 30px;
  outline: none;
  transition: transform 0.2s ease;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}
.main-btn-bottom:focus {
  outline: none;
}
.main-btn-bottom:hover {
  transform: scale(1.02);
  color: white;
  text-decoration: none;
}
.main-btn-bottom:active {
  transform: scale(0.98);
}
.main-btn-bottom--questions {
  left: 0;
}

.empty-block {
  position: absolute;
  bottom: -100px;
  background: transparent;
  pointer-events: none;
  width: 20px;
  height: 300px;
}

.startPage.hide {
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.startPage.active {
  opacity: 1;
  transform: translateX(0);
}

.questions-main {
  position: absolute;
  bottom: 180px;
  left: 50px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 22px;
  font-weight: 600;
}
.questions-main p {
  margin-bottom: 0;
}

.question-bg {
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.questions-main__yellow {
  background-color: rgba(246, 246, 231, 0.85);
  padding: 20px 30px;
  border-radius: 20px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  max-width: 550px;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.questions-main__purple {
  background: linear-gradient(180deg, rgba(70, 51, 147, 0.75) 0%, rgba(172, 129, 186, 0.75) 50%, rgba(70, 51, 147, 0.75) 100%);
  padding: 20px 30px;
  border-radius: 20px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  max-width: 550px;
  color: white;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.counter {
  position: relative;
}
.counter__img {
  width: 210px;
  height: auto;
}
.counter__fraction {
  font-size: 56px;
  font-weight: 700;
  color: #463492;
}
.counter__fraction--stage {
  color: #463492;
}
.counter__status {
  font-size: 32px;
  font-weight: 700;
  color: #463492;
}
.counter__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 10%;
  box-sizing: border-box;
  overflow: hidden;
}
.counter__content--stage {
  position: absolute;
  margin-bottom: 10px;
}
.counter--stage {
  position: relative;
}

.counter-container {
  position: absolute;
  top: 30px;
  left: 50px;
  z-index: 10;
  color: white;
}

.slice {
  height: 200px;
  background-color: #868686;
}

.questions-bg {
  display: block;
  height: auto;
  z-index: 1;
  width: 100%;
}

.questions-stage {
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.questions-stage__block {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 20px;
}
.questions-stage__block p {
  margin-bottom: 0;
}
.questions-stage__yellow {
  background-color: rgba(246, 246, 231, 0.85);
  padding: 20px 30px;
  border-radius: 20px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  max-width: 640px;
  box-shadow: 0 7px 6px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0);
}
.questions-stage__purple {
  background: linear-gradient(90deg, rgba(70, 51, 147, 0.75) 0%, rgba(172, 129, 186, 0.75) 50%, rgba(70, 51, 147, 0.75) 100%);
  padding: 15px 30px;
  border-radius: 20px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: white;
  cursor: pointer;
  text-align: center;
  outline: none;
  border: 4px solid rgba(255, 255, 255, 0);
  transition: transform 0.2s ease;
  max-width: 310px;
  box-shadow: 0 7px 6px rgba(0, 0, 0, 0.3);
}
.questions-stage__purple:focus {
  outline: none;
}
.questions-stage__purple:hover {
  transform: scale(1.02);
}
.questions-stage__purple:active {
  transform: scale(0.98);
}

.questions-stage.hide {
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  width: 100%;
}

.questions-stage.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.next-btn {
  position: absolute;
  right: 0;
  bottom: -170px;
  display: inline-flex;
  gap: 20px;
  cursor: pointer;
  align-items: center;
  padding: 15px 40px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(254, 132, 9, 0.9) 0%, rgba(252, 178, 27, 0.9) 50%, rgba(254, 132, 9, 0.9) 100%);
  color: white;
  font-weight: 600;
  font-size: 30px;
  outline: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}
.next-btn:focus {
  outline: none;
}
.next-btn:hover {
  transform: scale(1.02);
}
.next-btn:active {
  transform: scale(0.98);
}
.next-btn--desktop {
  position: absolute;
  right: 0;
  bottom: -180px;
}
.next-btn--mobile {
  display: none;
  width: 100%;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.next-btn--short {
  bottom: -160px;
}
.next-btn--middle {
  bottom: -110px;
}

.next-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.arrow-img {
  width: 40px;
  height: 100%;
}

.accordion {
  background-color: white;
  color: black;
  font-size: 20px;
  font-weight: 600;
  max-height: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, margin-bottom 0.3s ease;
  opacity: 0;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}
.accordion.show {
  padding: 30px 30px;
  max-height: 2200px;
  opacity: 1;
}
.accordion ol {
  padding-left: 20px;
}
.accordion ol li {
  font-weight: 400;
  font-size: 16px;
}
.accordion__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}
.accordion__text {
  background: linear-gradient(90deg, rgba(70, 51, 147, 0.75) 0%, rgba(172, 129, 186, 0.75) 50%, rgba(70, 51, 147, 0.75) 100%);
  padding: 15px 30px;
  border-radius: 20px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: white;
  text-align: center;
  outline: none;
}
.accordion__btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(254, 132, 9, 0.9) 0%, rgba(252, 178, 27, 0.9) 50%, rgba(254, 132, 9, 0.9) 100%);
  color: white !important;
  text-align: center !important;
  font-weight: 600;
  font-size: 26px;
  outline: none;
  max-width: 400px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.accordion__btn:focus {
  outline: none;
}
.accordion__btn:hover {
  transform: scale(1.02);
  text-decoration: none;
}
.accordion__btn:active {
  transform: scale(0.98);
}
.accordion__btn-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Скрываем все экраны вопросов изначально */
.questions-stage {
  display: none;
}

.questions-stage__purple.correct {
  border: 4px solid rgb(255, 218, 0);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transform: scale(1.02);
  transition: all 0.2s ease;
}

.questions-stage__purple.wrong {
  border: 4px solid rgb(235, 0, 0);
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
  transition: all 0.2s ease;
}

.mark {
  position: absolute;
  bottom: 5px;
  left: 20px;
  margin-bottom: 0;
  background: transparent;
  color: white;
  font-size: 10px;
}

.min-p {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (min-width: 1540px) {
  .container {
    max-width: 1400px;
  }
}
@media screen and (max-width: 1540px) {
  .next-btn--long {
    bottom: -88px;
  }
  .questions-stage__yellow--long {
    max-width: 680px;
  }
  .questions-stage__purple--long {
    max-width: 330px;
  }
  .startPage__title h1 {
    font-size: 40px;
  }
  .startPage .main-btn {
    right: 45px;
  }
  .questions-main {
    bottom: 20px;
    gap: 20px;
  }
  .main-btn-no {
    right: 45px;
  }
}
@media screen and (max-width: 1200px) {
  .counter__img {
    width: 170px;
  }
  .counter__fraction {
    font-size: 44px;
  }
  .counter__status {
    font-size: 26px;
  }
  .startPage .main-btn {
    position: static;
    display: flex;
    margin: 0 auto;
  }
  .questions-main {
    position: static;
    margin: 20px 0;
    gap: 20px;
  }
  .questions-main__yellow {
    max-width: 100%;
  }
  .questions-main__purple {
    max-width: 100%;
  }
  .main-btn-bottom {
    position: static;
    display: flex;
    margin: 0 auto;
    padding: 15px 40px;
  }
  .main-btn-bottom--questions {
    display: inline-flex;
  }
  .main-btn-no {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
  }
  .empty-block {
    display: none;
  }
  .btn-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .questions-stage__block {
    position: static;
    margin-top: 20px;
  }
  .questions-stage__yellow {
    max-width: 100%;
  }
  .questions-stage__purple {
    max-width: 100%;
  }
  .grid-container {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .accordion.show {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .next-btn--desktop {
    display: none;
  }
  .next-btn--mobile.visible {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .next-btn.visible {
    position: static;
  }
}
@media screen and (max-width: 992px) {
  .counter__img--questions {
    width: 130px;
  }
  .counter__fraction {
    font-size: 44px;
  }
  .counter__fraction--stage {
    font-size: 38px;
  }
  .counter__status {
    font-size: 26px;
  }
  .counter__content--stage {
    margin-bottom: 5px;
  }
  .arrow-img {
    width: 30px;
  }
  .accordion__block {
    grid-template-columns: repeat(1, 1fr);
  }
  .accordion__btn {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .counter-container {
    top: 20px;
    left: 20px;
  }
  .counter__img {
    width: 170px;
  }
  .counter__img--questions {
    width: 130px;
  }
  .counter__fraction {
    font-size: 44px;
  }
  .counter__fraction--stage {
    font-size: 38px;
  }
  .counter__status {
    font-size: 26px;
  }
  .startPage .main-btn {
    font-size: 24px;
  }
  .startPage__content {
    top: 13%;
    left: 30px;
    right: inherit;
  }
  .startPage__title {
    left: 30px;
    top: 15px;
  }
  .startPage__title h1 {
    font-size: 28px;
  }
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .questions-main {
    font-size: 18px;
  }
  .main-btn-bottom {
    font-size: 24px;
  }
  .questions-stage__yellow {
    font-size: 18px;
  }
  .questions-stage__purple {
    font-size: 18px;
  }
  .accordion {
    font-size: 18px;
  }
  .accordion__btn {
    font-size: 24px;
  }
  .next-btn.visible {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .counter__img {
    width: 140px;
  }
  .counter__img--questions {
    width: 120px;
  }
  .counter__fraction {
    font-size: 32px;
  }
  .counter__fraction--stage {
    font-size: 34px;
  }
  .counter__status {
    font-size: 20px;
  }
  .counter__content {
    gap: 5px;
  }
  .startPage__content {
    top: 10%;
  }
  .startPage__title h1 {
    font-size: 24px;
  }
  .next-btn.visible {
    font-size: 22px;
  }
}
@media screen and (max-width: 420px) {
  .mark {
    font-size: 8px;
  }
  .counter__img {
    width: 125px;
  }
  .counter__img--questions {
    width: 120px;
  }
  .startPage__content {
    top: 8.5%;
  }
  .startPage .main-btn {
    padding: 20px 40px;
  }
  .next-btn.visible {
    font-size: 21px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22style.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAAA;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EAEE;EACA;EACA;EACA;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA;;AAGA;EACE;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIF;EACE;;AAIF;EACE;;;AASN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIF;EACE;EACA;EACA;EACA;;AAIF;EACE;;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIF;EACE;EACA;EACA;;AAIF;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;;;AAMJ;EACE;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAMF;EACE;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;;AAMJ;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;;;AAIF;EACE;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGA;EACE;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIF;EACE;;AAIF;EACE;;;AAMN;EACE;EACA;EACA;EAEA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAIA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIF;EACE;;AAIF;EACE;;AAOF;EACE;EACA;EACA;;AAOF;EACE;EACA;EACA;EACA;EACA;;AAOF;EACE;;AAGF;EACE;;;AAKJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAEA;EACE;EACA;;AAKJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIF;EACE;EACA;;AAIF;EACE;;AAIJ;EACE;EACA;EACA;;;AAIJ;AACA;EACE;;;AAIF;EACE;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;;;AAIF;EACE;IACE;;;AAKJ;EAKI;IACE;;EAQA;IACE;;EAKF;IACE;;EAWF;IACE;;EAKJ;IACE;;EAIJ;IACE;IACA;;EAGF;IACE;;;AAKJ;EAII;IACE;;EAOF;IACE;;EAGF;IACE;;EAKF;IACE;IACA;IACA;;EAKJ;IACE;IACA;IACA;;EAGA;IACE;;EAIF;IACE;;EAGJ;IACE;IACA;IACA;IACA;;EAEA;IACE;;EAIJ;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;;EAGF;IACE;IACA;IACA;IACA;;EAMA;IACE;IACA;;EAGF;IACE;;EAGF;IACE;;EAIJ;IACE;IACA;;EAMA;IACE;IACA;;EAQF;IACE;;EAKA;IACE;IACA;IACA;IACA;;EAON;IACE;;;AAKJ;EAOM;IACE;;EAIJ;IACE;;EAEA;IACE;;EAIJ;IACE;;EAIA;IACE;;EAKN;IACE;;EAQA;IACE;;EAGF;IACE;;;AAMN;EACE;IACE;IACA;;EAKA;IACE;;EAEA;IACE;;EAIJ;IACE;;EAEA;IACE;;EAIJ;IACE;;EAMF;IACE;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAEA;IACE;;EAKN;IACE;;EAGF;IACE;;EAIF;IACE;;EAMA;IACE;;EAGF;IACE;;EAGJ;IACE;;EAEA;IACE;;EAIJ;IACE;;;AAKJ;EAII;IACE;;EAEA;IACE;;EAIJ;IACE;;EAEA;IACE;;EAIJ;IACE;;EAGF;IACE;;EAMF;IACE;;EAOA;IACE;;EAKN;IACE;;;AAIJ;EACE;IACE;;EAGA;IACE;;EAEA;IACE;;EAOJ;IACE;;EAGF;IACE;;EAGJ;IACE%22,%22file%22:%22style.css%22%7D */
