.header {
  background: #000;
  position: relative;
}
.header-container {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header-logo {
  width: 50px;
  height: 70px;
  z-index: 9;
}
.header-nav {
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-nav__item a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}
.header-nav__item a:hover {
  color: var(--accent-color);
}
.header-btn {
  width: 145px;
  height: 36px;
  font-size: 14px;
}

.hero {
  margin-top: -4px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/dark-bg.jpg");
}
.hero::before {
  position: absolute;
  content: "";
  top: -20px;
  left: -120px;
  width: 256px;
  height: 256px;
  border-radius: 100%;
  background: rgba(47, 118, 255, 0.46);
  filter: blur(110px);
  z-index: 1;
  pointer-events: none;
}
.hero-container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-title {
  width: 100%;
  max-width: 568px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--light-color);
}
.hero-title span {
  color: var(--accent-color);
}
.hero-text {
  margin-top: 32px;
  width: 100%;
  max-width: 348px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
  color: var(--light-color);
}
.hero-btn {
  margin-top: 38px;
  width: 188px;
  height: 48px;
}
.hero-mentors {
  margin-top: 55px;
  width: 100%;
  display: flex;
  gap: 12px;
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  line-height: 127%;
  letter-spacing: -0.01em;
  color: #122345;
}
.hero-mentors__card {
  width: 222px;
  height: 108px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  border-radius: 20px;
  background: var(--light-color);
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.13);
}
.hero-mentors__card:nth-of-type(2) {
  margin-top: 30px;
}
.hero-mentors__box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-mentors__photo {
  width: 36px;
  height: 36px;
  border-radius: 100px;
}
.hero-mentors__name {
  font-weight: 600;
}
.hero-wrapper {
  position: absolute;
  top: 60px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-wrapper::before {
  position: absolute;
  content: "";
  top: 50px;
  right: -20px;
  width: 356px;
  height: 356px;
  border-radius: 100%;
  background: rgba(47, 118, 255, 0.46);
  filter: blur(110px);
  z-index: 1;
  pointer-events: none;
}
.hero-wrapper__bg {
  margin-right: -50px;
  width: 546px;
  height: 442px;
  z-index: 2;
}
.hero-wrapper__card {
  margin-top: -60px;
  width: 314px;
  height: 122px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.13);
  background: #fff;
  border-radius: 20px;
  z-index: 3;
}
.hero-wrapper__container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-wrapper__container img {
  width: 144px;
  height: 36px;
}
.hero-wrapper__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-wrapper__box img {
  width: 94px;
  height: 14px;
}
.hero-wrapper__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: -0.02em;
  color: var(--accent-color);
}

.program {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/blue-bg.jpg");
}
.program-container {
  padding-top: 90px;
  padding-bottom: 160px;
}
.program-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--light-color);
}
.program-title span {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--light-color);
}
.program-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 25px;
}
.program-list__item {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  background: var(--light-color);
  border-radius: 20px;
}
.program-list__item::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: contain;
}
.program-list__item:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.program-list__item:nth-of-type(1)::after {
  top: -40px;
  right: -20px;
  background-image: url("../img/program-icon-1.png");
}
.program-list__item:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.program-list__item:nth-of-type(2) .program-list__title {
  padding-right: 80px;
}
.program-list__item:nth-of-type(2)::after {
  width: 140px;
  height: 140px;
  top: -40px;
  right: -40px;
  background-image: url("../img/program-icon-2.png");
}
.program-list__item:nth-of-type(3) {
  padding-right: 84px;
  grid-column: 1/3;
  grid-row: 2/3;
}
.program-list__item:nth-of-type(3)::after {
  width: 190px;
  height: 190px;
  bottom: -70px;
  right: -60px;
  background-image: url("../img/program-icon-3.png");
}
.program-list__item:nth-of-type(4) {
  grid-column: 3/4;
  grid-row: 1/3;
}
.program-list__item:nth-of-type(4)::after {
  top: -40px;
  right: -60px;
  background-image: url("../img/program-icon-4.png");
}
.program-list__title {
  padding-right: 30px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: var(--text-color);
}
.program-list__title span {
  color: var(--accent-color);
}
.program-list__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 142%;
  letter-spacing: -0.01em;
  color: #010101;
}
.program-list__link {
  width: 100%;
  padding: 13px;
}

.platform {
  padding: 65px 0;
}
.platform-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.platform-wrapper {
  width: 100%;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.platform-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 111%;
  color: var(--text-color);
}
.platform-title span {
  color: var(--accent-color);
}
.platform-text {
  max-width: 290px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-color);
}
.platform-hashtag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.platform-hashtag__item {
  padding: 10px 16px;
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--accent-color);
  border: 2px dashed rgba(47, 118, 255, 0.35);
  border-radius: 20px;
  background: rgba(47, 118, 255, 0.03);
}
.platform-box {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.platform-box__item {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  border: 4px dashed #2f76ff;
  border-radius: 15px;
}
.platform-box__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 92%;
  letter-spacing: -0.01em;
  color: var(--accent-color);
}
.platform-box__text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-color);
}
.platform .platform-list {
  width: 100%;
  max-width: 426px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.platform .platform-list__item {
  padding: 20px;
  display: flex;
  align-items: start;
  gap: 16px;
  border-radius: 20px;
  box-shadow: 0 4px 89px 0 rgba(0, 0, 0, 0.13);
  background: #fff;
}
.platform .platform-list__marker {
  width: 100%;
  max-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 100%;
}
.platform .platform-list__descr {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.platform .platform-list__descr h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: var(--accent-color);
}
.platform .platform-list__descr p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--text-color);
}

.mentors {
  padding-bottom: 100px;
}
.mentors-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.mentors-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  color: var(--text-color);
}
.mentors-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 45px;
}
.mentors-list__item {
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 301px;
  padding: 60px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  background: #f3f2f2;
  border-radius: 30px;
}
.mentors-list__item img {
  position: absolute;
  top: -38px;
  width: 76px;
  height: 76px;
}
.mentors-list__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: var(--text-color);
}
.mentors-list__descr {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--text-color);
}

.get {
  padding: 60px 0 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/blue-bg.jpg");
}
.get-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}
.get-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--light-color);
}
.get-list {
  display: flex;
  align-items: start;
  gap: 45px;
}
.get-list__item {
  width: 100%;
  max-width: 430px;
  height: 206px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  background: #f3f2f2;
  border-radius: 30px;
}
.get-list__item:nth-of-type(2) {
  height: 186px;
}
.get-list__box {
  display: flex;
  align-items: start;
  gap: 8px;
}
.get-list__box img {
  width: 76px;
  height: 76px;
}
.get-list__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 26px;
  line-height: 115%;
  letter-spacing: -0.01em;
  color: var(--text-color);
}
.get-list__descr {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 142%;
  letter-spacing: -0.01em;
  color: var(--text-color);
}

.result {
  position: relative;
  padding: 60px 0 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/dark-bg.jpg");
}
.result::after {
  position: absolute;
  content: "";
  bottom: -20px;
  right: -120px;
  width: 256px;
  height: 256px;
  border-radius: 100%;
  background: rgba(47, 118, 255, 0.46);
  filter: blur(110px);
  z-index: 1;
  pointer-events: none;
}
.result::before {
  position: absolute;
  content: "";
  top: -20px;
  left: -120px;
  width: 256px;
  height: 256px;
  border-radius: 100%;
  background: rgba(47, 118, 255, 0.46);
  filter: blur(110px);
  z-index: 1;
  pointer-events: none;
}
.result-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--light-color);
}
.result-offer {
  margin-top: 78px;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 60px;
}
.result-offer__mentors {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 100px;
  padding: 25px 40px;
  border-radius: 30px;
  background: var(--light-color);
}
.result-offer__mentors--title {
  margin-top: -80px;
  border-radius: 100px;
  padding: 10px 40px;
  width: 295px;
  height: 76px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--light-color);
  background: #2f76ff;
}
.result-offer__mentors--text {
  font-family: var(--third-family);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--text-color);
}
.result-offer__mentors--text:nth-of-type(2) {
  width: 276px;
  margin-top: 15px;
  padding: 18px 0;
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 156%;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--text-color);
  border-radius: 30px;
  border: 2px solid var(--accent-color);
}
.result-offer__mentors--btn {
  margin-top: 15px;
  border-radius: 100px;
  width: 303px;
  height: 47px;
}
.result-offer__independently {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 100px;
  padding: 25px 20px;
  border-radius: 30px;
  background: var(--light-color);
}
.result-offer__independently--title {
  border: 3px solid #cb2f2f;
  border-radius: 100px;
  padding: 10px 41px;
  width: 243px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-align: center;
  color: #cb2f2f;
}
.result-offer__independently--text {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--text-color);
}
.result-offer__independently--text:nth-of-type(2) {
  border: 2px solid #cb2f2f;
  border-radius: 30px;
  padding: 17px 0px;
  width: 293px;
  height: 209px;
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 156%;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--text-color);
}
.result-offer__independently--warn {
  padding: 14px 29px;
  width: 100%;
  max-width: 340px;
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  line-height: 136%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--light-color);
  background: #cb2f2f;
  border-radius: 30px 10px;
}

.reviews {
  padding: 88px 0;
}
.reviews-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.reviews-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--text-color);
}
.reviews-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.reviews-slider {
  position: relative;
  width: 100%;
  max-width: 596px;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 150px 0 rgba(0, 0, 0, 0.13);
  background: var(--light-color);
  overflow: hidden;
}
.reviews-slider::before {
  position: absolute;
  content: "";
  width: 136px;
  height: 113px;
  top: -92px;
  left: 214px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/quotes.svg");
  z-index: -1;
  pointer-events: none;
}
.reviews-slider__nav {
  position: absolute;
  top: 38px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 9;
}
.reviews-slider__btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 100%;
}
.reviews-slide {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.reviews-slide__wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}
.reviews-slide__photo {
  width: 56px;
  height: 56px;
  border-radius: 100%;
}
.reviews-slide__name {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: var(--text-color);
}
.reviews-slide__text {
  font-family: var(--third-family);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  color: var(--text-color);
}
.reviews-video {
  position: relative;
  width: 100%;
  max-width: 446px;
  height: 312px;
  border: 3px solid var(--accent-color);
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.reviews-video__item {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 20px;
}
.reviews-video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.offer {
  padding: 56px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/dark-bg.jpg");
  overflow: hidden;
}
.offer .container {
  position: relative;
}
.offer .container::before {
  position: absolute;
  content: "";
  bottom: -200px;
  right: 140px;
  width: 256px;
  height: 256px;
  border-radius: 100%;
  background: rgba(47, 118, 255, 0.46);
  filter: blur(110px);
  z-index: 1;
  pointer-events: none;
}
.offer-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-container::after, .offer-container::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.offer-container::before {
  width: 578px;
  height: 466px;
  bottom: -60px;
  left: -300px;
  background-image: url("../img/girl-with-glasses.png");
}
.offer-container::after {
  width: 578px;
  height: 466px;
  bottom: -56px;
  right: -300px;
  background-image: url("../img/man-with-glasses-2.png");
}
.offer-question {
  width: 100%;
  max-width: 474px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.offer-question__item {
  max-width: 330px;
  padding: 14px 30px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-color);
  background: var(--light-color);
  border-radius: 30px 10px;
}
.offer-question__item:nth-of-type(2) {
  max-width: 376px;
  align-self: self-end;
  color: var(--light-color);
  background: var(--accent-color);
}
.offer-title {
  margin-top: 25px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 125%;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--light-color);
}
.offer-title span {
  color: var(--accent-color);
}
.offer-places {
  margin-top: 24px;
  padding: 14px 26px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #f04040;
  backdrop-filter: blur(88.1999969482px);
  background: rgba(240, 64, 64, 0.05);
  border: 1px solid #f04040;
  border-radius: 30px 15px;
}
.offer-text {
  margin-top: 24px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #f04040;
}
.offer-timer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-timer__item {
  width: 89px;
  height: 69px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--third-family);
  font-weight: 600;
  line-height: 100%;
  color: #f04040;
  border: 1px solid #f04040;
  border-radius: 100px;
}
.offer-timer__digits {
  font-size: 24px;
}
.offer-timer span {
  font-weight: 500;
  font-size: 16px;
}
.offer-timer__dots {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #f04040;
}
.offer-link {
  margin-top: 24px;
  width: 303px;
  height: 47px;
}

.partners {
  padding: 88px 0 36px;
}
.partners-container {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  box-shadow: 0 4px 219px 0 rgba(0, 0, 0, 0.13);
  background: var(--light-color);
}
.partners-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: var(--text-color);
}
.partners-text {
  margin-top: 14px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--text-color);
}
.partners-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.faq {
  padding-bottom: 90px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-list__border {
  width: 100%;
  padding: 1px;
  border-radius: 15px;
  box-shadow: 0 4px 219px 0 rgba(0, 0, 0, 0.13);
  color: var(--text-color);
}
.faq-list__border h3, .faq-list__border p {
  color: inherit;
}
.faq-list__item {
  position: relative;
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
}
.faq-list__item-details h3 {
  padding-right: 40px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  text-align: left;
}
.faq-list__item-text {
  padding: 0 40px 20px 20px;
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 142%;
  text-align: left;
}
.faq-list__item-content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.6s;
}
.faq-list__item-body {
  overflow: hidden;
}
.faq-list__item-summary {
  width: 100%;
  padding: 20px;
  color: inherit;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-list__item-summary h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
}
.faq-list__item-summary::marker {
  list-style-type: none;
  content: "";
}
.faq-list__btn {
  position: absolute;
  top: 26px;
  right: 20px;
  transition: all 0.4s ease-in-out;
}
.faq-list__btn path {
  stroke: var(--text-color);
}
.faq-list__item-details[open] + .faq-list__item-content {
  display: grid;
  grid-template-rows: 1fr;
  transition-duration: 0.6s;
}
.faq-list__item-details[open] ~ .faq-list__btn {
  transform: rotate(180deg);
  stroke: var(--light-color);
}
.faq-list__item-details[open] ~ .faq-list__btn path {
  stroke: var(--light-color);
}

.footer {
  padding: 46px 0 70px;
  background: #000;
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-info {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
}
.footer-title {
  margin-bottom: 4px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  line-height: 176%;
  letter-spacing: -0.01em;
  color: var(--light-color);
}
.footer-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: var(--light-color);
}
.footer-privacy {
  max-width: 220px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: var(--light-color);
}

.quiz {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/dark-bg.jpg");
}
.quiz::before {
  position: absolute;
  content: "";
  top: -20px;
  left: -120px;
  width: 256px;
  height: 256px;
  border-radius: 100%;
  background: rgba(47, 118, 255, 0.46);
  filter: blur(110px);
  z-index: 1;
  pointer-events: none;
}

.form-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.form-list__wrapper {
  display: flex;
  flex-direction: column;
}
.form-list__title {
  margin-bottom: 35px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #fff;
}
.form-list__input {
  max-width: 422px;
  height: 47px;
  padding: 15px 32px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--light-color);
  border: 1px solid rgba(251, 251, 251, 0.19);
  border-radius: 100px;
  backdrop-filter: blur(3.2000000477px);
  background: rgba(255, 255, 255, 0.03);
}
.form-list__input.error {
  border: 1px solid #cb2f2f;
}
.form-list__nav {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-list__btn {
  width: 100%;
  max-width: 132px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--accent-color);
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
}
.form-list__btn:hover {
  color: var(--light-color);
  background: #000;
  border: 1px solid #2860cf;
}
.form-list__btn--dark {
  color: var(--light-color);
  border-radius: 100px;
  background: #000;
  border: 1px solid var(--accent-color);
  transition: color 0.3s ease, background 0.3s ease;
}
.form-list__btn--dark:hover {
  color: var(--light-color);
  background: var(--accent-color);
}
.form-select {
  max-width: 422px;
  margin-top: 16px;
  position: relative;
}
.form-select__toggle {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 156%;
  color: var(--light-color);
  border: 1px solid rgba(251, 251, 251, 0.19);
  border-radius: 100px;
  background: #000;
  transition: border 0.3s ease;
}
.form-select__toggle::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/arrow-down.svg);
}
.form-select .active {
  border-radius: 30px 30px 0 0;
  border-bottom: none;
}
.form-select__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: var(--light-color);
  border: 1px solid rgba(251, 251, 251, 0.19);
  border-top: none;
  border-radius: 0 0 30px 30px;
  background: #000;
  max-height: 0px;
  opacity: 0;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease;
}
.form-select .open {
  opacity: 1;
  max-height: 450px;
}
.form-select__option {
  padding: 12px 24px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  background: transparent;
  transition: background 0.3s ease;
}
.form-select .form-select__option:hover {
  background: rgba(94, 94, 94, 0.7019607843);
}

.thanks {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/dark-bg.jpg");
}
.thanks::before {
  position: absolute;
  content: "";
  top: -20px;
  right: -120px;
  width: 256px;
  height: 256px;
  border-radius: 100%;
  background: rgba(47, 118, 255, 0.46);
  filter: blur(110px);
  z-index: 1;
  pointer-events: none;
}
.thanks-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.thanks-wrapper {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.thanks-title {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--light-color);
}
.thanks-title img {
  width: 66px;
  height: 92px;
}
.thanks-text {
  margin-top: 22px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 150%;
  color: var(--light-color);
}
.thanks-text span {
  font-weight: 700;
  color: #fff953;
}
.thanks-text:nth-of-type(1) {
  border-radius: 30px 10px;
  padding: 14px 30px;
  background: var(--accent-color);
}
.thanks-text:nth-of-type(2) {
  padding: 0 22px;
}
.thanks-text:nth-of-type(3) {
  margin-left: 45px;
  padding: 12px 16px;
  border: 1px solid rgba(251, 251, 251, 0.19);
  border-radius: 10px;
}
.thanks-link {
  align-self: flex-end;
  margin: -10px -50px 0 0;
  border-radius: 100px;
  width: 196px;
  height: 47px;
}
.thanks-img {
  width: 100%;
  max-width: 500px;
}/*# sourceMappingURL=style.css.map */