@charset "UTF-8";
:root {
  --font-family: "Geologica", sans-serif;
  --second-family: "Geometria", sans-serif;
  --third-family: "DaysOne", sans-serif;
  --content-width: 1210px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "DaysOne";
  src: url("../fonts/DaysOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p, ul, li {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.header {
  padding: 15px 0;
  position: absolute;
  z-index: 999;
  width: 100%;
}
.header__container {
  padding: 20px 40px;
  border-radius: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
}
.header__logo {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 24px;
  background: linear-gradient(26deg, #4315ab 0%, #b94562 43.05%, #5742b9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__nav-link {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
}
.header__log-in {
  border: 1px solid #414141;
  border-radius: 100px;
  padding: 16px 32px;
  max-width: 113px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #222;
}
.header__nav-list {
  max-width: 800px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 80px;
}

@media (max-width: 768px) {
  .header__container {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    row-gap: 10px;
  }
  .nav {
    grid-column: 1/-1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .nav__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* Центрируем пункты меню (опционально) */
  }
}
.hero-quiz {
  padding-top: 130px;
  padding-bottom: 100px;
}
.hero-quiz__container {
  padding: 120px 15px;
  position: relative;
}
.hero-quiz__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 62px;
  text-align: center;
  color: #222;
  margin-bottom: 20px;
}
.hero-quiz__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #222;
  margin-bottom: 90px;
}
.hero-quiz__text-second {
  margin: 0 auto;
  max-width: 255px;
  width: 100%;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #222;
}
.hero-quiz__img-1 {
  position: absolute;
  right: 14%;
  top: 23%;
  width: 4rem;
  height: 4rem;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.hero-quiz__img-2 {
  position: absolute;
  bottom: 31%;
  right: 21%;
  width: 4rem;
  height: 4rem;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.hero-quiz__img-3 {
  position: absolute;
  bottom: 23%;
  left: 2.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.hero-quiz__img-4 {
  position: absolute;
  top: 20%;
  left: 13%;
  width: 4rem;
  height: 4rem;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.hero-quiz__emoji-1 {
  position: absolute;
  width: 3rem;
  height: 3rem;
  bottom: 20%;
  left: 25%;
  margin: 0;
}
.hero-quiz__emoji-2 {
  position: absolute;
  width: 3rem;
  height: 3rem;
  left: auto;
  right: 3.3125rem;
  bottom: auto;
  top: 29%;
  margin: 0;
}
.hero-quiz__back-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #222;
  width: 15.625rem;
  height: 3.3125rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
  position: absolute;
  left: 0;
  top: 37%;
  z-index: 2;
}
.hero-quiz__back-text2 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #222;
  width: 15.625rem;
  height: 3.3125rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
  position: absolute;
  left: 6.5625rem;
  top: 55%;
}
.hero-quiz__back-text3 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #222;
  width: 15.625rem;
  height: 3.3125rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
  position: absolute;
  left: auto;
  right: 3.125rem;
  top: 44%;
}

.another-hits {
  background: #f6f6f6;
}
.another-hits__container {
  padding: 60px;
  border-radius: 40px;
  background: linear-gradient(214deg, rgba(134, 104, 207, 0.8) 0.51%, rgba(162, 140, 216, 0.8) 49.35%, rgba(233, 142, 86, 0.8) 100%);
}
.another-hits__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.another-hits__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[2];
  grid-template-columns: repeat(2, 2fr);
  gap: 24px;
  margin-bottom: 40px;
}
.another-hits__item {
  position: relative;
  padding: 22px 40px;
  border-radius: 30px;
  background: #f9f9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.another-hits__inner {
  max-width: 239px;
  width: 100%;
  padding: 20px 0;
}
.another-hits__item-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: #222;
  margin-bottom: 16px;
}
.another-hits__item-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
}
.another-hits__btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #222;
  display: block;
  margin: 0 auto;
  border-radius: 100px;
  padding: 20px 56px;
  max-width: 330px;
  width: 100%;
  background: #fff;
}

.interquiz {
  padding-bottom: 100px;
  margin-top: -5rem !important;
  position: relative;
  z-index: 3;
  padding-top: 100px;
  background: #f6f6f6;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}
.interquiz__title {
  margin: 0 auto;
  max-width: 666px;
  width: 100%;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  color: #222;
  margin-bottom: 16px;
}
.interquiz__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #222;
}
.interquiz__img {
  position: absolute;
  bottom: 57%;
  left: 71%;
}
.interquiz__img2 {
  position: absolute;
  bottom: 40%;
  left: 60%;
}
.interquiz__img3 {
  position: absolute;
  bottom: 40%;
  left: 72%;
}

.interquiz__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.quiz-container {
  position: relative;
  min-height: 712px;
}

/* Ракета */
.rocket {
  position: absolute;
  width: 60px;
  height: 60px;
  -webkit-transition: -webkit-transform 1.5s ease;
  transition: -webkit-transform 1.5s ease;
  transition: transform 1.5s ease;
  transition: transform 1.5s ease, -webkit-transform 1.5s ease;
  z-index: 10;
  pointer-events: none;
}

.quiz-steps {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 100px;
}

.step {
  width: 45%;
  padding: 25px;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.step.active {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-left {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.step-right {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.step-content {
  position: relative;
}

.step {
  height: 250px;
}

.quiz-line {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 88%;
  z-index: 0;
  pointer-events: none;
}

.step-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: #222;
  margin-bottom: 16px;
}

.step-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
}

.step-number svg {
  margin-bottom: 30px;
}

.all-online {
  background: #f6f6f6;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.all-online__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
.all-online__left, .all-online__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.all-online__right {
  margin-top: 70px;
}
.all-online__text-first {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
  background: url("../img/all-onlinesvg.svg") no-repeat;
  background-size: contain;
  width: 253px;
  height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.04));
}
.all-online__text-second {
  background: url("../img/all-onlinesvg2.svg") no-repeat;
  background-size: contain;
  width: 253px;
  height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.04));
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.all-online__container::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  bottom: 0;
  left: 0;
  background-image: url("../img/emoji.png");
  background-repeat: no-repeat;
  z-index: 0;
}

/* Правый верхний угол */
.all-online__container::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  right: 0;
  background-image: url("../img/emoji4.png");
  background-repeat: no-repeat;
  z-index: 0;
}

.whatis {
  padding-bottom: 285px;
  background: #f6f6f6;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  position: relative;
  z-index: 1;
}
.whatis__container {
  position: relative;
  padding: 60px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: linear-gradient(205deg, rgba(233, 142, 86, 0.8) 0%, rgba(162, 140, 216, 0.8) 52.9%, rgba(134, 104, 207, 0.8) 100%);
  border-radius: 40px;
}
.whatis__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  color: #fff;
}
.whatis__img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 273px;
  max-width: 273px;
  width: 100%;
  position: absolute;
  top: 80px;
  left: 40px;
}
.whatis__text {
  text-align: center;
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  line-height: 150%;
  color: #222;
  -webkit-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  transform: rotate(-6deg);
}
.whatis__list {
  position: absolute;
  top: 60px;
  right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 654px;
  width: 100%;
  padding: 40px;
  border-radius: 30px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
}
.whatis__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.whatis__item-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  color: #222;
}

.best-quiz {
  position: relative;
  background: #f6f6f6;
  padding-bottom: 50px;
}
.best-quiz__container {
  position: relative;
}
.best-quiz__title {
  display: block;
  margin: 0 auto;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  color: #222;
  margin-bottom: 16px;
}
.best-quiz__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #222;
  margin-bottom: 24px;
}
.best-quiz__img {
  display: block;
  margin: 0 auto;
}
.best-quiz__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}
.best-quiz__item {
  background: #fff;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #222;
  border-radius: 30px;
  padding: 40px 116px;
}

.best-quiz {
  position: relative;
  z-index: 0;
}

.best-quiz::before,
.best-quiz::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
}

.best-quiz::before {
  width: 51.9356rem;
  height: 14.09rem;
  top: -5rem;
  left: -7rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='718' height='227' viewBox='0 0 718 227' fill='none'%3E%3Cpath d='M717.716 64.1531C717.716 -25.3171 537.426 6.036 307.961 6.036C78.4961 6.036 -113.25 -25.3171 -113.25 64.1531C-113.25 153.623 72.7683 226.153 302.233 226.153C531.698 226.153 717.716 153.623 717.716 64.1531Z' fill='url(%23paint0_linear_167_1229)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_167_1229' x1='487.03' y1='117.745' x2='238.788' y2='-50.4543' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%235742B9'/%3E%3Cstop offset='0.616742' stop-color='%23AE47B2'/%3E%3Cstop offset='1' stop-color='%23EB7D00'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  -webkit-transform: matrix(-0.94, 0.34, 0.34, 0.94, 0, 0);
  -ms-transform: matrix(-0.94, 0.34, 0.34, 0.94, 0, 0);
  transform: matrix(-0.94, 0.34, 0.34, 0.94, 0, 0);
  -webkit-filter: blur(140px);
  filter: blur(140px);
}

.best-quiz::after {
  width: 51.9356rem;
  height: 14.09rem;
  top: 0rem;
  left: 66rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='823' height='216' viewBox='0 0 823 216' fill='none'%3E%3Cpath d='M916.336 53.3875C916.336 -36.0827 709.286 16.1186 456.486 16.1186C203.686 16.1186 0.866089 -36.0827 0.866089 53.3875C0.866089 142.858 205.801 215.387 458.601 215.387C711.401 215.387 916.336 142.858 916.336 53.3875Z' fill='url(%23paint0_linear_167_1230)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_167_1230' x1='343.913' y1='51.5108' x2='563.781' y2='-146.537' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EB7D00'/%3E%3Cstop offset='1' stop-color='%23A93EC4'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  -webkit-transform: matrix(0.94, 0.34, -0.34, 0.94, 0, 0);
  -ms-transform: matrix(0.94, 0.34, -0.34, 0.94, 0, 0);
  transform: matrix(0.94, 0.34, -0.34, 0.94, 0, 0);
  -webkit-filter: blur(140px);
  filter: blur(140px);
}

.choice-quiz {
  background: #f6f6f6;
}
.choice-quiz__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}
.choice-quiz__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .choice-quiz__list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 16px;
    margin-left: -16px;
    margin-right: -16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
}
@media (max-width: 768px) {
  .choice-quiz__list::-webkit-scrollbar {
    display: none;
  }
}
.choice-quiz__item {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #222;
  border: 1px solid #414141;
  border-radius: 100px;
  padding: 18px 32px;
}
@media (max-width: 768px) {
  .choice-quiz__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }
}
.choice-quiz__img-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.choice-quiz__img {
  margin-left: -6.65%;
}
.choice-quiz__img:first-child {
  margin-left: 0;
}
.choice-quiz__img-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 24px;
  color: #222;
  min-width: 25.323%;
  width: 25.323%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  border: 0.0625rem solid #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -5.65%;
  z-index: 2;
}
.choice-quiz__btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: block;
  margin: 0 auto;
  border-radius: 100px;
  padding: 20px 56px;
  max-width: 353px;
  width: 100%;
  background: linear-gradient(19deg, #5f3bc1 0%, #df7124 100%);
}

.numberone {
  background: #f6f6f6;
  padding: 100px 0;
}
.numberone__inner {
  position: relative;
  border-radius: 40px;
  padding: 40px;
  margin: 0 auto;
  max-width: 1030px;
  width: 100%;
  background: linear-gradient(210deg, #e98e56 0%, #8668cf 100%);
}
.numberone__title {
  margin: 0 auto;
  max-width: 620px;
  width: 100%;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
}
.numberone__text {
  margin: 0 auto;
  max-width: 523px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}
.numberone__img {
  position: absolute;
}
.numberone__back-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #222;
  position: absolute;
  bottom: 7%;
  left: -10%;
  width: 15.625rem;
  height: 3.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.04));
  margin: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='53' viewBox='0 0 250 53' fill='none'%3E%3CforeignObject x='0' y='0' width='0' height='0'%3E%3Cdiv xmlns='http://www.w3.org/1999/xhtml' style='backdrop-filter:blur(0.3125rem);clip-path:url(%23bgblur_0_2011_1364_clip_path);height:100%25;width:100%25'%3E%3C/div%3E%3C/foreignObject%3E%3Cpath data-figma-bg-blur-radius='10' d='M0 26.5C0 11.8645 11.8645 0 26.5 0H201C223.091 0 241 17.9086 241 40V43.5L250 53H26.5C11.8645 53 0 41.1355 0 26.5Z' fill='white' fill-opacity='0.7'/%3E%3Cdefs%3E%3CclipPath id='bgblur_0_2011_1364_clip_path'%3E%3Cpath transform='translate(0 0)' d='M0 26.5C0 11.8645 11.8645 0 26.5 0H201C223.091 0 241 17.9086 241 40V43.5L250 53H26.5C11.8645 53 0 41.1355 0 26.5Z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.numberone__back-text2 {
  top: 1.5rem;
  right: -6.5625rem;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #222;
  position: absolute;
  width: 15.625rem;
  height: 3.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.04));
  margin: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='53' viewBox='0 0 250 53' fill='none'%3E%3CforeignObject x='0' y='0' width='0' height='0'%3E%3Cdiv xmlns='http://www.w3.org/1999/xhtml' style='backdrop-filter:blur(0.3125rem);clip-path:url(%23bgblur_0_2011_2918_clip_path);height:100%25;width:100%25'%3E%3C/div%3E%3C/foreignObject%3E%3Cpath data-figma-bg-blur-radius='10' d='M250 26.5C250 11.8645 238.136 0 223.5 0H49C26.9086 0 8.99998 17.9086 8.99998 40V43.5L0 53H223.5C238.136 53 250 41.1355 250 26.5Z' fill='white' fill-opacity='0.7'/%3E%3Cdefs%3E%3CclipPath id='bgblur_0_2011_2918_clip_path'%3E%3Cpath transform='translate(0 0)' d='M250 26.5C250 11.8645 238.136 0 223.5 0H49C26.9086 0 8.99998 17.9086 8.99998 40V43.5L0 53H223.5C238.136 53 250 41.1355 250 26.5Z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.catalogue-shop {
  background: #f6f6f6;
  padding-bottom: 50px;
}
.catalogue-shop__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  color: #222;
  margin-bottom: 24px;
}
.catalogue-shop__subtitle {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #222;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 24px 24px 24px 24px;
}
.catalogue-shop__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[3];
  grid-template-columns: repeat(3, 2fr);
  gap: 24px;
}

.catalogue-only__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  color: #222;
}
.catalogue-only__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #222;
  margin-bottom: 40px;
}

.breadcrumbs-q,
.breadcrumbs-q-link {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #797979;
}

.breadcrumbs-q {
  margin-bottom: 45px;
}

.page__body {
  margin: 0;
  min-height: 100vh;
  /* Занимает всю высоту экрана */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.site-container {
  background: #f6f6f6;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* Растягивается на всё свободное пространство */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* Прижимает футер к низу */
}

.main-padding-sec {
  padding-top: 180px;
}

.main-padding-another {
  padding-top: 130px;
}

footer {
  /* Стили футера (если нужно) */
  background: #333;
  color: white;
  padding: 20px 0;
}

.catalogue-only__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.catalogue-only__filter {
  position: relative;
}

.catalogue-only__dropdown-toggle {
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  padding: 12px 24px;
  background: white;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.catalogue-only__chevron {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.catalogue-only__filter--open .catalogue-only__chevron {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.catalogue-only__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.catalogue-only__filter--open .catalogue-only__dropdown-menu {
  display: block;
}

.catalogue-only__dropdown-item {
  padding: 8px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.catalogue-only__dropdown-item:hover {
  background-color: #f5f5f5;
}

.catalogue-only__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.catalogue-only__card {
  background: #f9f9f9;
}

.catalogue-only__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalogue-only__page-btn {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: none;
  background: #f0f0f0;
  cursor: pointer;
}

.catalogue-only__page-btn--active {
  background: linear-gradient(215deg, #d5a9b8 0%, #b7a8dd 100%);
  color: white;
}

.catalogue-only__dropdown-toggle svg {
  width: 9px;
  height: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  vertical-align: middle;
}

.catalogue-only__dropdown-item:hover {
  background-color: #9e8fca;
  color: #fff;
}

.catalogue-only__filter[data-type=sort] {
  margin-left: auto;
}

.catalogue-only__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalogue-only__pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.catalogue-only__pagination-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #f0f0f0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.catalogue-only__pagination-link:hover {
  background: #9e8fca;
  color: #fff;
}

.catalogue-only__pagination-link--active {
  background: linear-gradient(215deg, #d5a9b8 0%, #b7a8dd 100%);
  color: #fff;
  pointer-events: none;
}

.catalogue-only__pagination-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
  color: #444;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.catalogue-only__pagination-btn:hover {
  color: #9e8fca;
}

.catalogue-only__pagination-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  color: #aaa;
}

.video-q__container {
  border-radius: 40px;
  padding: 40px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.video-q__add-video {
  max-width: 568px;
  width: 100%;
}
.video-q__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  color: #222;
  margin-bottom: 8px;
}
.video-q__price {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: #222;
  margin-bottom: 24px;
}
.video-q__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
  margin-bottom: 24px;
}
.video-q__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 85px;
}
.video-q__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.video-q__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.video-q__buy-btn {
  border: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  padding: 20px 56px;
  max-width: 264px;
  width: 100%;
  height: 60px;
  background: linear-gradient(19deg, #5f3bc1 0%, #df7124 100%);
}
.video-q__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #222;
  text-align: center;
  border: 1px solid #414141;
  border-radius: 100px;
  padding: 16px 32px;
  max-width: 264px;
  width: 100%;
  height: 60px;
}

.video-q__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 568px;
  aspect-ratio: 568/448;
}

.video-q__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.video-q__poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.video-q__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}

.video-q__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.video-q__video-wrapper {
  position: relative;
  width: 568px; /* или 100%, если нужно */
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.video-q__video {
  display: block;
  width: 100%;
  border-radius: 20px;
  background: black;
}

.video-q__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}

.video-q__video-wrapper {
  position: relative;
  width: 568px;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.video-q__toggle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.video-q__toggle-btn.hide {
  opacity: 0;
  pointer-events: none;
}

.time-q {
  padding-top: 50px;
  padding-bottom: 100px;
}
.time-q__container {
  background: linear-gradient(189deg, rgba(134, 104, 207, 0.8) 0%, rgba(162, 140, 216, 0.8) 48.4%, rgba(233, 142, 86, 0.8) 100%);
  height: 160px;
  position: relative;
  border-radius: 40px;
}
.time-q__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.time-q__item {
  width: 23.9375rem;
  height: 16.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--geometria);
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  margin: 0 auto;
}
.time-q__item p {
  max-width: 120px;
}
.time-q__item strong {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  color: #222;
}

.card-descr {
  position: relative;
  z-index: 2;
}
.card-descr__tabs {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
  padding: 24px;
  border-radius: 40px;
}
.card-descr__tabs-nav {
  border-radius: 100px;
  max-width: 860px;
  background: #f6f6f6;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.card-descr__nav-btn {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #222;
  border-radius: 100px;
  padding: 16px 56px;
}
.card-descr__tabs-panel {
  padding-top: 40px;
}
.card-descr__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #222;
  margin-bottom: 16px;
}
.card-descr__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #222;
}

.tabs__nav-btn--active {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #a996db;
}

.tabs__nav-btn:active,
.tabs__nav-btn:focus {
  background: #a996db !important;
  /* Фиксируем цвет */
  color: white !important;
  outline: none !important;
  /* Убираем outline при фокусе */
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

/* Отключаем подсветку при нажатии на мобильных */
.tabs__nav-btn {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .card-descr__tabs-nav {
    display: none;
    /* скрываем табы-навигацию */
  }
  .tabs__content {
    display: block !important;
  }
  .tabs__panel {
    display: block !important;
    visibility: visible !important;
    position: static !important;
    opacity: 1 !important;
    height: auto !important;
    pointer-events: auto !important;
  }
  .card-descr__tabs {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background: unset;
    padding: 0;
  }
  .card-descr__tabs-panel {
    padding: 24px;
    background: #FFFFFF;
    border-radius: 40px;
    margin-top: 24px;
  }
}
.real-q {
  padding: 50px 0;
  z-index: 1;
}
.real-q__container {
  position: relative;
  z-index: 1;
}
.real-q__help {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
}
.real-q__help a {
  font-weight: 600;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #a996db;
}
.real-q__img-add {
  position: absolute;
  top: 27%;
}
.real-q__img-add2 {
  position: absolute;
  top: 60%;
  right: 1%;
}
.real-q__img-add3 {
  position: absolute;
  top: 60%;
  left: 1%;
}
.real-q__img-add4 {
  position: absolute;
  top: 30%;
  right: 10%;
}
.real-q__help {
  margin-bottom: 80px;
}
.real-q__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #222;
  margin-bottom: 24px;
}
.real-q__inner {
  margin: 0 auto;
  max-width: 690px;
  width: 100%;
  padding: 40px;
  border-radius: 40px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
}
.real-q__image {
  margin-bottom: 24px;
}
.real-q__question {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #222;
}

.real-q__container::before {
  content: "";
  position: absolute;
  width: 51.9356rem;
  height: 14.09rem;
  top: 17rem;
  left: -7rem;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22718%22%20height%3D%22227%22%20viewBox%3D%220%200%20718%20227%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M717.716%2064.1531C717.716%20-25.3171%20537.426%206.036%20307.961%206.036C78.4961%206.036%20-113.25%20-25.3171%20-113.25%2064.1531C-113.25%20153.623%2072.7683%20226.153%20302.233%20226.153C531.698%20226.153%20717.716%20153.623%20717.716%2064.1531Z%22%20fill%3D%22url(%23paint0_linear_167_1229)%22/%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22paint0_linear_167_1229%22%20x1%3D%22487.03%22%20y1%3D%22117.745%22%20x2%3D%22238.788%22%20y2%3D%22-50.4543%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%235742B9%22/%3E%3Cstop%20offset%3D%220.616742%22%20stop-color%3D%22%23AE47B2%22/%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23EB7D00%22/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") center center no-repeat;
  -webkit-filter: blur(12.5rem);
  filter: blur(12.5rem);
  -webkit-transform: matrix(-0.94, 0.34, 0.34, 0.94, 0, 0);
  -ms-transform: matrix(-0.94, 0.34, 0.34, 0.94, 0, 0);
  transform: matrix(-0.94, 0.34, 0.34, 0.94, 0, 0);
  z-index: -1;
  pointer-events: none;
}

.real-q__container::after {
  content: "";
  position: absolute;
  width: 57.2169rem;
  height: 13.4006rem;
  right: -12rem;
  top: 19rem;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22823%22%20height%3D%22216%22%20viewBox%3D%220%200%20823%20216%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M916.336%2053.3875C916.336%20-36.0827%20709.286%2016.1186%20456.486%2016.1186C203.686%2016.1186%200.866089%20-36.0827%200.866089%2053.3875C0.866089%20142.858%20205.801%20215.387%20458.601%20215.387C711.401%20215.387%20916.336%20142.858%20916.336%2053.3875Z%22%20fill%3D%22url(%23paint0_linear_167_1230)%22/%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22paint0_linear_167_1230%22%20x1%3D%22343.913%22%20y1%3D%2251.5108%22%20x2%3D%22563.781%22%20y2%3D%22-146.537%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%23EB7D00%22/%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23A93EC4%22/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") center center no-repeat;
  background-size: cover;
  -webkit-filter: blur(12.5rem);
  filter: blur(12.5rem);
  -webkit-transform: matrix(-0.96, -0.29, -0.29, 0.96, 0, 0);
  -ms-transform: matrix(-0.96, -0.29, -0.29, 0.96, 0, 0);
  transform: matrix(-0.96, -0.29, -0.29, 0.96, 0, 0);
  z-index: -1;
  pointer-events: none;
}

.real-q__item {
  margin-bottom: 20px;
}

.real-q__img img {
  max-width: 100%;
  border-radius: 8px;
}

.real-q__question {
  font-weight: 600;
  margin: 15px 0 12px;
  font-size: 18px;
}

.real-q__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.real-q__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 6px 8px;
  margin-bottom: 8px;
  border-radius: 20px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  border: none;
}

/* Радио кнопки */
.real-q__option input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #000;
  border-radius: 50%;
  margin-right: 12px;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  outline: none;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}

/* Выбранная радио кнопка: белый круг с черным внутренним обводом */
.real-q__option input[type=radio]:checked {
  background-color: #fff;
  /* белый центр */
  -webkit-box-shadow: inset 0 0 0 8px #000;
  box-shadow: inset 0 0 0 8px #000;
  /* внутренний черный круг */
  border-color: #000;
}

/* Правильный ответ — зеленая рамка у лейбла */
.real-q__option.correct {
  border: 1px solid #5ba55e !important;
  padding: 6px 8px;
}

/* Галочка справа у правильного ответа */
.real-q__option.correct::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12.9585' r='9' stroke='%235ba55e' stroke-width='6' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

/* Кнопки навигации */
.real-q__controls {
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}

.real-q__button {
  padding: 8px 16px;
  background-color: #5742b9;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 100%;
  padding: 1.25rem 3.5rem;
  background: linear-gradient(77.82deg, #5F3BC1 -3.54%, #DF7124 169.52%) !important;
  border-radius: 6.25rem;
  font-weight: 500;
  border: 0;
}

.real-q__button:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.real-q__button:hover:not(:disabled) {
  background-color: #462fa2;
}

/* Блок результатов */
.real-q__results {
  margin-top: 30px;
  font-size: 16px;
}

.real-q__thanks {
  font-weight: bold;
  margin-bottom: 15px;
}

.real-q__results-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.real-q__results-list div {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.real-q__option input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.real-q__option--correct {
  border: 1px solid #5ba55e !important;
  border-radius: 20px;
  padding: 6px 8px;
  position: relative;
}

.real-q__option--incorrect {
  border: 1px solid red !important;
  border-radius: 20px;
  padding: 6px 8px;
  position: relative;
}

.reviews-q {
  padding: 50px 0;
}
.reviews-q__swiper-slider {
  border-radius: 30px;
  padding: 30px;
  background: #fff;
  min-height: 330px;
}
.reviews-q__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  color: #222;
}
.reviews-q__subtitle {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}
.reviews-q__svg {
  margin-bottom: 24px;
}
.reviews-q__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #222;
}

.reviews-q__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  /* отступ перед слайдером */
}

.reviews-q__nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.swiper-button-prev-reviews-q,
.swiper-button-next-reviews-q {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 1. Сбросим у Prev полупрозрачность */
.swiper-button-prev-reviews-q svg circle {
  fill-opacity: 1 !important;
  fill: url(#paint0_linear_2087_9727) !important;
}

.swiper-button-prev-similar-g svg circle {
  fill-opacity: 1 !important;
  fill: url(#paint0_linear_2087_9727) !important;
}

.swiper-button-prev-more-article svg circle {
  fill-opacity: 1 !important;
  fill: url(#paint0_linear_2087_9727) !important;
}

/* 2. Полупрозрачные disabled-стрелки */
.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.similar-g {
  background: #fff;
  padding: 50px 0;
  margin-bottom: 100px;
}
.similar-g__content {
  padding: 24px;
  border-radius: 0 0 30px 30px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
}
.similar-g__slide {
  padding-bottom: 20px;
}
.similar-g__subtitle {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #222;
  margin-bottom: 12px;
}
.similar-g__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #222;
  margin-bottom: 24px;
}
.similar-g__img {
  display: block;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.similar-g__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 300px;
  width: 100%;
  height: 48px;
  border-radius: 100px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  color: #222;
  background: linear-gradient(236deg, #df7124 0%, #5f3bc1 100%);
  text-decoration: none;
  overflow: hidden;
}

.similar-g__link::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: inherit;
  z-index: 1;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.similar-g__price {
  position: relative;
  z-index: 2;
}

.similar-g__price {
  padding: 8px 16px;
  border-radius: 100px;
  background: linear-gradient(236deg, #df7124 0%, #5f3bc1 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  padding: 16px 20px;
  width: 89px;
  height: 48px;
}

.similar-g__add-text {
  padding-left: 20px;
  position: relative;
  z-index: 2;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  color: #222;
}

.similar-g__link:hover::before {
  background: linear-gradient(27deg, #5f3bc1 11.13%, #df7124 100%);
}

.similar-g__link:hover span {
  color: #fff;
}

.great-article {
  padding-bottom: 100px;
}
.great-article__container {
  max-width: 820px;
}
.great-article__img {
  margin-bottom: 24px;
}
.great-article__date {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  color: #222;
  margin-bottom: 16px;
}
.great-article__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  color: #222;
  margin-bottom: 40px;
}
.great-article__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
  margin-bottom: 16px;
}
.great-article__text-mb {
  margin-bottom: 40px;
}
.great-article__why-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: #222;
  margin-bottom: 24px;
}
.great-article__why {
  padding-left: 15px;
  list-style-type: decimal;
  margin-bottom: 40px;
}
.great-article__why-item {
  list-style-type: decimal;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #222;
  margin-bottom: 14px;
}
.great-article__why-item:last-child {
  margin-bottom: 0;
}
.great-article__why-item p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
  padding-top: 8px;
}
.great-article__popular {
  list-style-type: disc;
}
.great-article__popular-item {
  list-style-type: disc;
}

.more-article {
  background-color: #fff;
  border-radius: 40px;
  padding: 60px 0px;
}

.signin-q__log-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.signin-q__btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #222;
  border: 1px solid #414141;
  border-radius: 100px;
  padding: 16px 32px;
  max-width: 240px;
  width: 100%;
  text-align: center;
}
.signin-q__inner {
  border-radius: 40px;
  padding: 40px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}
.signin-q__list {
  margin-bottom: 45px;
}
.signin-q__start {
  max-width: 316px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.signin-q__start span {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto 0;
  color: #FFFFFF;
  width: 38px;
  height: 38px;
}
.signin-q__start span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='40' viewBox='0 0 38 40' fill='none'%3E%3Cpath d='M32.8313 19.6487C33.1112 23.498 31.8037 27.0971 29.4634 29.8043C27.124 32.5107 23.7518 34.3246 19.9016 34.6046C16.0523 34.8844 12.4531 33.5769 9.74596 31.2367C7.03962 28.8973 5.2257 25.5251 4.94574 21.675C4.66586 17.8256 5.97339 14.2264 8.31358 11.5192C10.653 8.81288 14.0252 6.99896 17.8754 6.71898C17.9788 6.71143 18.0354 6.70739 18.0468 6.7067C18.1438 6.70086 18.2038 6.69817 18.2209 6.69736L18.161 5.36936C18.0566 5.37432 17.9924 5.37754 17.9679 5.37901C17.8594 5.38553 17.7953 5.39032 17.7776 5.39161C13.5608 5.6982 9.86739 7.68511 7.30482 10.6496C4.74294 13.6133 3.31169 17.5552 3.61836 21.7728C3.92497 25.9894 5.91187 29.6829 8.87638 32.2455C11.84 34.8073 15.7819 36.2386 19.9994 35.9319C24.2161 35.6254 27.9096 33.6384 30.4722 30.6739C33.0341 27.7103 34.4654 23.7684 34.1587 19.5508L32.8313 19.6487Z' fill='%23FFFFFE'/%3E%3Cpath d='M14.4707 3.50563L18.0502 5.94711L15.1756 9.78958L16.2413 10.588L19.5327 6.18851L19.9494 5.63145L19.374 5.23898L15.2191 2.40498L14.4707 3.50563Z' fill='%23FFFFFE'/%3E%3C/svg%3E");
}
.signin-q__link {
  max-width: 316px;
  width: 100%;
}
.signin-q__btn-hidden {
  display: none;
}
.signin-q__img {
  width: 463px;
  height: 314px;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.review-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
}

.review-modal__content-inner {
  max-width: 472px;
  width: 100%;
}

.review-modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: white;
  padding: 30px 20px;
  border-radius: 40px;
  max-width: 818px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 2;
}

.review-modal__title {
  font-size: 24px;
  margin-bottom: 10px;
}

.review-modal__subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
}

.review-modal__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
  cursor: pointer;
}

.review-modal__input,
.review-modal__textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.review-modal__textarea {
  resize: vertical;
  height: 80px;
}

.review-modal__submit {
  background-color: #F68D2B;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.review-modal__close {
  position: absolute;
  top: 35px;
  right: 35px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.review-modal__decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.decor-1 {
  top: 10%;
  left: 5%;
}

.decor-2 {
  bottom: 15%;
  right: 10%;
}

.decor-3 {
  top: 40%;
  right: 20%;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 40px;
  position: relative;
  text-align: center;
}

.login__modal-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #222;
  margin-bottom: 24px;
}

.login__modal-input {
  border: 1px solid #414141;
  border-radius: 15px;
  padding: 16px 24px;
  height: 52px;
  margin-bottom: 16px;
}

.login__modal-inner {
  padding: 40px;
  max-width: 650px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#step-id,
#step-email,
#step-registration {
  max-width: 472px;
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 35px;
  right: 35px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.modal-submit {
  margin-top: 40px;
  cursor: pointer;
  border-radius: 40px;
  border: 0;
  border-radius: 100px;
  padding: 20px 56px;
  background: linear-gradient(19deg, #5f3bc1 0%, #df7124 100%);
  max-width: 472px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

input[type=email],
input[type=text] {
  width: 100%;
  padding: 8px;
}

.modal-content {
  max-width: 818px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#finalText {
  margin-bottom: 24px;
}

.modal-submit-change {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-align: center;
  color: #222;
  border: none;
  background: none;
}

.order-modal-inner {
  max-width: 472px;
  width: 100%;
}

.order-modal-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #222;
  margin-bottom: 16px;
}

.order-modal-subtitle {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #222;
  margin-bottom: 16px;
}

.login__modal-add-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #414141;
  margin-bottom: 6px;
  text-align: left;
}

.login-modal-final-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #222;
  padding-bottom: 5px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 24px;
}

.login-confin-accept {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  color: #222;
}

.login-confin-accept a {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  color: #222;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.review-modal__textarea {
  min-height: 200px;
}

.instructions-q {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='1194' viewBox='0 0 1440 1194' fill='none'%3E%3Cg filter='url(%23filter0_f_2019_5544)'%3E%3Cpath d='M-25.8055 447.568C4.17623 363.271 163.536 453.227 379.733 530.122C595.931 607.016 787.097 641.731 757.115 726.028C727.133 810.325 527.565 816.326 311.368 739.431C95.1705 662.537 -55.7872 531.866 -25.8055 447.568Z' fill='url(%23paint0_linear_2019_5544)'/%3E%3C/g%3E%3Cg filter='url(%23filter1_f_2019_5544)'%3E%3Cpath d='M668.977 702.129C642.588 616.639 855.823 605.448 1097.38 530.884C1338.93 456.319 1517.33 346.618 1543.72 432.108C1570.11 517.598 1395.68 647.347 1154.13 721.911C912.577 796.475 695.367 787.618 668.977 702.129Z' fill='url(%23paint1_linear_2019_5544)'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_2019_5544' x='-429.6' y='13.6192' width='1589.83' height='1179.78' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='200' result='effect1_foregroundBlur_2019_5544'/%3E%3C/filter%3E%3Cfilter id='filter1_f_2019_5544' x='266.761' y='0.961365' width='1679.6' height='1171.56' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='200' result='effect1_foregroundBlur_2019_5544'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_2019_5544' x1='173.584' y1='575.365' x2='463.837' y2='500.078' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%235742B9'/%3E%3Cstop offset='0.616742' stop-color='%23AE47B2'/%3E%3Cstop offset='1' stop-color='%23EB7D00'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_2019_5544' x1='1215.38' y1='531.498' x2='946.879' y2='407.111' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EB7D00'/%3E%3Cstop offset='1' stop-color='%23A93EC4'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  padding-bottom: 130px;
}
.instructions-q__title {
  margin-bottom: 16px;
}
.instructions-q__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 40px;
  padding: 0px 40px;
}
.instructions-q__subtitle {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: #222;
  margin-bottom: 16px;
}
.instructions-q__item-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
  margin-bottom: 16px;
}
.instructions-q__item-text span {
  font-weight: 700;
}
.instructions-q__item-inner {
  margin-top: 32px;
  border-radius: 20px;
  padding: 16px 24px;
  background: #a996db;
}
.instructions-q__item-atten {
  font-family: var(--font3);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}
.instructions-q__item-atten2 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}
.instructions-q__item-left {
  padding: 40px 0;
}

.private-prob {
  border-radius: 100px;
  background: #fff;
  padding: 60px 100px;
  margin-top: -90px;
}
.private-prob__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  color: #222;
  margin-bottom: 24px;
}
.private-prob__item {
  padding: 32px;
  border: 1px solid #a996db;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.private-prob__left {
  position: relative;
}
.private-prob__add {
  position: absolute;
  top: 68%;
  right: 0;
}
.private-prob__right {
  max-width: 678px;
  width: 100%;
}
.private-prob__right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.private-prob__right-content:last-child {
  margin: 0;
}
.private-prob__subtitle {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: #222;
}
.private-prob__margin {
  margin-top: 14px;
}
.private-prob__text-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #222;
  margin-bottom: 4px;
}
.private-prob__text-p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #222;
}
.private-prob__hidden {
  display: none;
}

.another-prob {
  position: relative;
  z-index: 3;
}
.another-prob__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.another-prob__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.another-prob__container {
  position: relative;
  padding: 68px;
  border-radius: 40px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
  background: linear-gradient(202deg, #e98e56 0%, #8668cf 100%);
}
.another-prob__img {
  position: absolute;
  left: 5%;
  top: 20%;
}
.another-prob__img2 {
  position: absolute;
  right: 5%;
  top: 20%;
}

.good-game {
  position: relative;
}

.articles-q__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  color: #222;
  margin-bottom: 24px;
}

.articles-q__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-card {
  border-radius: 30px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.article-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.arrow-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-block;
}

.article-content {
  background: #fff;
  padding: 16px;
}

.article-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: #222;
  margin-bottom: 12px;
}

.article-description {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #222;
  margin-bottom: 24px;
}

.article-date {
  font-size: 12px;
  color: #999;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.pagination a {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-decoration: none;
  color: #333;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.pagination a:hover {
  background: #f0f0f0;
}

.footer {
  background-color: #f6f6f6;
}
.footer__logo-link {
  margin-bottom: 20px;
  display: block;
}
.footer__add-container {
  background: #fff;
  border-radius: 40px;
  padding: 40px 0;
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 28px;
}
.footer__contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer__contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.footer__contacts-item-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #222;
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
}
.footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-link {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #222;
}
.footer__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
}
.footer__conf {
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__conf-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.footer__conf-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #222;
}

@media (max-width: 1200px) {
  .interquiz__img {
    max-width: 100px;
    bottom: 100%;
    left: 77%;
  }
  .interquiz__img2 {
    max-width: 150px;
    bottom: 85%;
    left: 67%;
  }
  .interquiz__img3 {
    max-width: 100px;
    bottom: 95%;
    left: 72%;
  }
  .whatis__title {
    font-size: 36px;
  }
  .whatis__list {
    padding: 30px;
    max-width: 474px;
    gap: 10px;
    right: 10px;
  }
  .whatis__item-text {
    font-size: 13px;
  }
  .numberone__inner {
    padding: 40px 10px;
    max-width: 930px;
  }
  .numberone__img {
    top: 2rem;
    left: 2rem;
  }
  .last-step {
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .numberone__title {
    font-size: 36px;
    max-width: 400px;
  }
  .numberone__text {
    font-size: 12px;
    max-width: 400px;
  }
  .numberone__back-text {
    font-size: 14px;
    left: 1%;
    width: 11.625rem;
  }
  .numberone__back-text2 {
    right: 1%;
    font-size: 14px;
    width: 11.625rem;
  }
  .another-hits__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .best-quiz__item {
    padding: 20px 40px;
  }
  .choice-quiz__img-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .choice-quiz__img-text {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 10;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    width: 55.5%;
    min-width: 55.5%;
  }
  .choice-quiz__img {
    margin-left: 0%;
  }
  .whatis {
    padding-bottom: 48px;
  }
  .best-quiz {
    padding-top: 50px;
  }
  .video-q__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .video-q__list {
    margin-bottom: 20px;
  }
  .breadcrumbs-q {
    margin-bottom: 20px;
  }
  .main-padding-another {
    padding-top: 150px;
  }
  .catalogue-only__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .signin-q__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .private-prob {
    padding: 50px 20px;
  }
  .another-prob__img, .another-prob__img2 {
    max-width: 200px;
  }
}
@media (max-width: 966px) {
  .step {
    width: 50%;
  }
  .hero-quiz__back-text,
  .hero-quiz__back-text2,
  .hero-quiz__back-text3 {
    width: 13.625rem;
  }
  .hero-quiz__back-text {
    top: 33%;
  }
  .hero-quiz__back-text3 {
    right: 1.125rem;
    top: 47%;
  }
  .time-q__container {
    height: 700px;
  }
  .time-q__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .card-descr__tabs-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 30px;
  }
  .real-q__img-add, .real-q__img-add2, .real-q__img-add3, .real-q__img-add4 {
    display: none;
  }
  .articles-q__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .catalogue-only__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .interquiz__title {
    font-size: 32px;
  }
  .hero-quiz__text-second {
    font-size: 18px;
  }
  .hero-quiz__back-text {
    display: none;
  }
  .hero-quiz__img-1 {
    top: auto;
    right: 10px;
    bottom: 135px;
  }
  .hero-quiz__img-2 {
    right: auto;
    left: 10px;
    bottom: 5px;
  }
  .hero-quiz__img-3 {
    display: none;
  }
  .hero-quiz__img-4 {
    display: none;
  }
  .hero-quiz__emoji-1 {
    width: 2rem;
    height: 2rem;
    bottom: 14%;
    left: 68%;
  }
  .hero-quiz__emoji-2 {
    width: 2rem;
    height: 2rem;
    right: 19.3125rem;
    top: 58%;
  }
  .hero-quiz__back-text2 {
    left: auto;
    top: auto;
    bottom: 150px;
    right: 85px;
  }
  .hero-quiz__back-text3 {
    bottom: 25px;
    top: auto;
    right: auto;
    left: 85px;
  }
  .hero-quiz__title {
    font-size: 40px;
  }
  .hero-quiz__text {
    margin-bottom: 40px;
  }
  .hero-quiz__container {
    padding-bottom: 250px;
  }
  .whatis__text {
    font-size: 12px;
    max-width: 100px;
  }
  .numberone__img {
    max-width: 56px;
    top: -1rem;
    left: -1rem;
  }
  .numberone__back-text {
    left: 0;
    bottom: auto;
    top: calc(100% + 30px);
  }
  .numberone__back-text2 {
    right: 0;
    top: calc(100% + 100px);
    width: 13.625rem;
  }
  .numberone {
    padding-bottom: 200px;
  }
  .step {
    width: 100%;
    padding: 20px;
  }
  .rocket {
    width: 40px;
    height: 40px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-text {
    font-size: 15px;
  }
  .whatis {
    padding-left: 15px;
    padding-right: 15px;
  }
  .whatis__title {
    text-align: center;
    margin-bottom: 30px;
  }
  .whatis__list {
    position: static;
    padding: 20px;
  }
  .whatis__container {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .whatis__img-container {
    top: auto;
    right: -35px;
    left: auto;
    bottom: -145px;
    max-width: 200px;
  }
  .best-quiz__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .best-quiz {
    padding-top: 50px;
  }
  .footer__logo-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__logo-img {
    display: block;
    margin: 0 auto;
    max-width: 230px;
    width: 100%;
  }
  .footer__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__contacts-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__contacts-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__nav-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__conf {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .footer__conf-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .choice-quiz__img {
    max-width: 250px;
  }
  .catalogue-shop__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .signin-q__btn {
    display: none;
  }
  .signin-q__btn-hidden {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .signin-q__help {
    margin-bottom: 20px;
    text-align: center;
  }
  .signin-q__title {
    font-size: 32px;
  }
  .good-game {
    padding-top: 30px;
    padding-bottom: 45px;
  }
  .instructions-q__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .instructions-q__item-left {
    padding-bottom: 10px;
  }
  .private-prob__item {
    padding: 24px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .private-prob__none {
    display: none;
  }
  .private-prob__hidden {
    display: block;
  }
  .private-prob__margin {
    max-width: 250px;
  }
  .private-prob__add {
    max-width: 150px;
    z-index: 3;
    top: 85%;
  }
  .private-prob {
    padding: 50px 0px;
  }
  .another-prob__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 570px;
  }
  .another-prob__img, .another-prob__img2 {
    position: static;
    max-width: 300px;
  }
  .another-prob {
    margin-top: 40px;
  }
}
@media (max-width: 560px) {
  .catalogue-only__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .step-number svg {
    margin-bottom: 10px;
  }
  .another-hits__list {
    gap: 60px;
  }
  .another-hits__inner {
    padding: 0;
  }
  .another-hits__item {
    height: 213px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .another-hits__btn {
    margin-top: 60px;
    padding: 20px 0;
  }
  .another-hits__container {
    padding: 40px 24px;
  }
  .another-hits {
    padding: 40px 24px;
  }
  .another-hits__img {
    width: 100px;
    height: 100px;
    position: relative;
    bottom: -10%;
    left: 30%;
  }
  .all-online__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .all-online__right {
    gap: 12px;
    margin-top: 40px;
  }
  .all-online__left {
    gap: 12px;
  }
  .all-online__container::before {
    left: auto;
    bottom: 100%;
    right: 6%;
  }
  /* Правый верхний угол */
  .all-online__container::after {
    right: auto;
    top: 44%;
    left: 24%;
  }
  .all-online__text-second {
    width: 220px;
    height: 64px;
  }
  .interquiz__img {
    max-width: 93px;
    width: 100%;
    bottom: 97%;
  }
  .interquiz__img2 {
    max-width: 120px;
    width: 100%;
    bottom: 97%;
  }
  .interquiz__img3 {
    max-width: 93px;
    width: 100%;
  }
  .step {
    width: 70%;
    height: 290px;
  }
  .quiz-steps {
    gap: 30px;
  }
  .quiz-line {
    width: 106%;
    height: 84%;
  }
  .step-title {
    margin-bottom: 8px;
  }
  .step-number svg {
    max-width: 40px;
    width: 100%;
    height: 40px;
  }
  .choice-quiz__img {
    max-width: 170px;
  }
  .best-quiz__title {
    font-size: 40px;
  }
  .footer__nav-link {
    text-align: center;
  }
  .another-hits__title {
    font-size: 32px;
  }
  .choice-quiz__title {
    font-size: 32px;
  }
  .footer__social-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .real-q__controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .real-q__inner {
    padding: 20px;
  }
  .reviews-q__nav {
    display: none;
  }
  .reviews-q {
    padding: 0;
  }
  .similar-g {
    padding: 20px 0;
    margin-bottom: 10px;
  }
  .more-article__title {
    font-size: 30px;
  }
  .articles-q__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .signin-q__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .signin-q__inner {
    padding: 20px;
  }
  .signin-q__log-in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 402px) {
  .last-step {
    height: 300px;
  }
  .step {
    width: 77%;
  }
  .quiz-line {
    width: 108%;
    height: 83%;
  }
}/*# sourceMappingURL=main.css.map */

.article-image {
  border-radius: 16px; /* Закругление 16px */
  overflow: hidden; /* Обрезает углы контента */
}

@media (max-width: 768px) {
  .article-image {
    border-radius: 12px; /* Меньшее закругление на мобильных */
  }
}

.catalogue-shop__img {
  border-top-left-radius: 1.875rem;
  border-top-right-radius: 1.875rem;/* Закругление правого верхнего угла */
  width: 100%;
  height: 15rem;
  object-fit: cover;
  margin: 0;
}

/* 1) Грид тянет элементы по высоте строки */
.catalogue-only__grid {
  /* у вас уже grid; главное — растягивать элементы */
  align-items: stretch; /* на всякий случай явно */
}

/* 2) Карточка растягивается по высоте строки */
.catalogue-only__card {
  position: relative;         /* для overlay-ссылки */
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 30px;        /* чтобы фон был ровный по всей высоте */
  overflow: hidden;           /* закругления и обрезка картинки */
  background: #f9f9f9;
}

/* 3) Картинка одинаковой высоты во всех карточках */
.similar-g__img {
  width: 100%;
  aspect-ratio: 16 / 9;       /* или 4/3, подберите под ваш макет */
  object-fit: cover;
  display: block;
}

/* 4) Контент растягивается, CTA — внизу */
.similar-g__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;                    /* тянем контент на доступную высоту */
}

.similar-g__cta {
  margin-top: auto;           /* прижимаем блок с кнопкой к низу */
}

/* 5) Кликабельный overlay (если используете) */
.similar-g__link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Если нужно, чтобы внутренняя кнопка была кликабельна поверх overlay: */
.similar-g__link { position: relative; z-index: 2; }

/* Адаптивно можно поменять соотношение сторон картинки */
@media (max-width: 768px) {
  .similar-g__img { aspect-ratio: 3 / 2; }
}
