@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --main-bg-color: #EEF2FE;
  --color-light: #FFFFFF;
  --dark-color: #000000;
  --alt-bg-color-light: #443FC7;
  --alt-bg-color-dark: #31317F;
  --main-font-color: #646BED;
  --alt-dark-color: #1E293A;
  --alt2-bg-color: #EEF2FE;
  --main-font-color-dark: #08087A;
  --border-radius: 111px;
  --border-radius-small: 7px;
  --border-radius-large: 200px;
  --shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  --font-family-base: "Gotham Pro", sans-serif;
  --container-width: 75rem;
  --container-padding-x: 1.25rem;
  --transition-duration: 0.2s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 32.56125rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 32.56125rem) {
  .visible-mobile {
    display: none !important;
  }
}

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(0.875rem, 0.7944214876rem + 0.3305785124vw, 1.125rem);
  font-family: var(--font-family-base);
  color: var(--dark-color);
  background-color: var(--color-light);
}

h1, .h1,
h2, .h2 {
  font-size: clamp(1.875rem, 1.1900826446rem + 2.8099173554vw, 4rem);
  color: var(--main-font-color);
  font-weight: 500;
}

h3, .h3 {
  font-size: clamp(0.75rem, 0.6089876033rem + 0.5785123967vw, 1.1875rem);
  font-weight: 500;
  color: var(--dark-color);
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  text-decoration: none;
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--main-font-color);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--main-font-color);
  }
}

:focus-visible {
  outline: 0.125rem dashed var(--color-light);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

.burger-button {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
}
@media (width <= 32.56125rem) {
  .burger-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.59375rem 0.203125rem;
    color: var(--alt-dark-color);
    margin: auto 0;
    margin-right: 24px;
    background-color: transparent;
    border: 0;
  }
}
@media (width <= 32.56125rem) and (any-hover: hover) {
  .burger-button:hover {
    color: var(--alt-bg-color-light);
  }
}
@media (width <= 32.56125rem) and (any-hover: none) {
  .burger-button:active {
    color: var(--alt-bg-color-light);
  }
}
@media (width <= 32.56125rem) {
  .burger-button.is-active .burger-button__line:first-child {
    rotate: 45deg;
    transform-origin: 0;
    translate: 0.25em -0.2em;
  }
  .burger-button.is-active .burger-button__line:nth-child(2) {
    rotate: -45deg;
  }
  .burger-button.is-active .burger-button__line:last-child {
    width: 0;
  }
  .burger-button__line {
    width: 100%;
    height: 0.1875rem;
    border-radius: 0.1875rem;
    background-color: currentColor;
    transition-duration: var(--transition-duration);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--main-bg-color);
  padding-top: 2.3125rem;
  padding-bottom: 1.4375rem;
  color: var(--main-font-color-dark);
  font-weight: 500;
}
@media (width <= 48.81125rem) {
  .header {
    padding-top: 5px;
  }
}
@media (width <= 32.56125rem) {
  .header {
    padding: 0;
  }
}
@media (width <= 32.56125rem) {
  .header__body {
    position: relative;
  }
}
@media (width <= 32.56125rem) {
  .header__promo {
    display: flex;
    justify-content: space-between;
  }
}
.header__promo-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 32.56125rem) {
  .header__promo-inner {
    flex-direction: row-reverse;
    justify-content: start;
    column-gap: 10px;
    margin: 5px;
  }
}
@media (width <= 32.56125rem) {
  .header__promo-contacts {
    display: none !important;
  }
}
.header__promo-subtitle {
  display: flex;
}
@media (width <= 48.81125rem) {
  .header__promo-subtitle {
    width: 200px;
    flex-wrap: wrap;
    justify-content: start;
  }
}
@media (width <= 48.81125rem) {
  .header__promo-item {
    font-size: clamp(0.75rem, 0.7097107438rem + 0.1652892562vw, 0.875rem);
  }
}
.header__promo-item.item-medium {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
@media (width <= 48.81125rem) {
  .header__promo-item.item-medium {
    display: none;
  }
}
.header__promo-item.item-slim {
  font-weight: 400;
}
@media (width <= 48.81125rem) {
  .header__promo {
    font-size: 1rem;
  }
}
.header__menu {
  height: 70px;
  background-color: var(--color-light);
  margin-top: 1.4375rem;
  border-radius: 0.875rem;
  color: var(--alt-dark-color);
  box-shadow: 0 4px 10px 0 rgba(169, 180, 248, 0.2);
}
@media (width <= 48.81125rem) {
  .header__menu {
    height: auto;
    margin-top: 0.375rem;
  }
}
@media (width <= 32.56125rem) {
  .header__menu {
    display: none;
  }
}
.header__menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 2.1875rem;
  font-size: clamp(0.9375rem, 0.8770661157rem + 0.2479338843vw, 1.125rem);
  height: inherit;
}
@media (width <= 64.06125rem) {
  .header__menu-list {
    padding-inline: 0.9375rem;
    line-height: 1.1;
  }
}
@media (width <= 48.81125rem) {
  .header__menu-list {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
}
@media (width <= 32.56125rem) {
  .header__menu-list {
    display: none;
  }
}
@media (any-hover: hover) {
  .header__menu-item:hover {
    box-shadow: 0 4px 10px 0 rgba(169, 180, 248, 0.2);
    border-radius: 0.875rem;
    font-weight: 700;
  }
}
@media (any-hover: none) {
  .header__menu-item:active {
    box-shadow: 0 4px 10px 0 rgba(169, 180, 248, 0.2);
    border-radius: 0.875rem;
    font-weight: 700;
  }
}
@media (width <= 48.81125rem) {
  .header__menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 46px;
    text-align: center;
  }
}
.header__menu-link {
  display: block;
  padding-inline: 0.625rem;
  text-align: center;
}
@media (width <= 64.06125rem) {
  .header__menu-link {
    font-size: 15px;
    padding-inline: 0.3125rem;
  }
}
.header__mobilemenu {
  display: none;
  background-color: var(--color-light);
  padding-inline: 0;
}
@media (width <= 32.56125rem) {
  .header__mobilemenu.is-active {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 300px;
    padding-top: 36px;
    padding-bottom: 36px;
    padding-right: 36px;
    border-radius: 9px;
    box-shadow: 0 4px 10px 0 rgba(169, 180, 248, 0.2);
    filter: none;
    z-index: 10;
  }
}
@media (width <= 32.56125rem) {
  .header__mobilemenu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: var(--alt-dark-color);
    column-gap: 1.8125rem;
    row-gap: 1.8125rem;
  }
}
.header__mobilemenu-link {
  display: flex;
  justify-content: flex-end;
}

.logo {
  max-width: clamp(3.875rem, 3.1699380165rem + 2.8925619835vw, 6.0625rem);
}
.logo__menu {
  min-width: 60px;
  width: 100%;
}
@media (width <= 48.81125rem) {
  .logo__menu {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.logo__promo {
  display: none;
}
@media (width <= 48.81125rem) {
  .logo__promo {
    display: block;
  }
}

.contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.75rem;
}
@media (width <= 32.56125rem) {
  .contacts {
    column-gap: 0.9375rem;
    justify-content: end;
  }
}
.contacts__telephone {
  text-align: center;
}
.contacts__telephone a {
  display: block;
  height: 1.375rem;
}
@media (width <= 48.81125rem) {
  .contacts__telephone a {
    display: inline;
    font-size: clamp(0.75rem, 0.7097107438rem + 0.1652892562vw, 0.875rem);
  }
}

.wellcome {
  height: 100%;
  background: url("../../images/bg-main2.png") no-repeat center/cover var(--main-bg-color);
  border-radius: 0 0 clamp(0rem, -4.0289256198rem + 16.5289256198vw, 12.5rem) 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (width <= 32.56125rem) {
  .wellcome.is-active {
    filter: blur(10px);
  }
}
.wellcome__body {
  padding-top: 52px;
  padding-bottom: 20px;
}
@media (width <= 64.06125rem) {
  .wellcome__body {
    padding-top: 2px;
  }
}
@media (width <= 32.56125rem) {
  .wellcome__body {
    padding-top: 165px;
  }
}
.wellcome__title {
  position: relative;
}
.wellcome__title::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 806px;
  display: inline-block;
  width: clamp(15.625rem, 12.7241735537rem + 11.9008264463vw, 24.625rem);
  height: clamp(15.625rem, 12.7241735537rem + 11.9008264463vw, 24.625rem);
  border-radius: 19px 111px 19px 19px;
  background: url("/images/before.png") no-repeat center/contain var(--main-bg-color);
}
@media (width <= 1172px) {
  .wellcome__title::before {
    width: 14.375rem;
    height: 14.375rem;
    border-radius: 9px 72px 9px 9px;
    left: calc(96vw - clamp(9.6875rem, 7.2701446281rem + 9.9173553719vw, 17.1875rem));
  }
}
@media (width <= 64.06125rem) {
  .wellcome__title::before {
    width: 12.5rem;
    height: 12.5rem;
    border-radius: 7px 41px 7px 7px;
    top: 200px;
    left: calc(93vw - 12.5rem);
  }
}
@media (width <= 48.81125rem) {
  .wellcome__title::before {
    top: 250px;
    left: calc(85vw - 140px);
  }
}
@media (width <= 700px) {
  .wellcome__title::before {
    width: 11.25rem;
    height: 11.25rem;
    left: calc(90vw - 170px);
  }
}
@media (width <= 32.56125rem) {
  .wellcome__title::before {
    border-radius: 5px 34px 5px 5px;
    top: -165px;
    width: 150px;
    height: 150px;
    left: 50%;
    translate: -100% 0;
  }
}
.wellcome__title::after {
  content: "";
  position: absolute;
  top: 365px;
  left: 594px;
  width: clamp(18.75rem, 15.6275826446rem + 12.8099173554vw, 28.4375rem);
  height: clamp(18.75rem, 15.6275826446rem + 12.8099173554vw, 28.4375rem);
  border-radius: 19px 19px 111px 19px;
  background: url("/images/After.jpg") no-repeat center/contain var(--main-bg-color);
}
@media (width <= 1172px) {
  .wellcome__title::after {
    width: 20.625rem;
    height: 20.625rem;
    top: 260px;
  }
}
@media (width <= 64.06125rem) {
  .wellcome__title::after {
    width: 14.375rem;
    height: 14.375rem;
    top: 350px;
    left: calc(83vw - 14.375rem);
    border-radius: 9px 9px 72px 9px;
  }
}
@media (width <= 48.81125rem) {
  .wellcome__title::after {
    border-radius: 7px 7px 41px 7px;
    top: 420px;
    left: calc(78vw - 200px);
  }
}
@media (width <= 700px) {
  .wellcome__title::after {
    width: 11.25rem;
    height: 11.25rem;
    top: 480px;
    left: calc(90vw - 170px);
  }
}
@media (width <= 32.56125rem) {
  .wellcome__title::after {
    border-radius: 5px 5px 34px 5px;
    top: -150px;
    width: 150px;
    height: 150px;
    left: 50%;
    translate: -12% 0;
  }
}
.wellcome__description {
  padding-top: 10px;
  font-size: clamp(0.875rem, 0.7944214876rem + 0.3305785124vw, 1.125rem);
}
.wellcome__description-list {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.wellcome__description-item1 {
  max-width: 770px;
  display: flex;
  position: relative;
}
@media (width <= 64.06125rem) {
  .wellcome__description-item1 {
    max-width: 100%;
  }
}
.wellcome__description-item2 {
  max-width: 543px;
  position: relative;
}
@media (width <= 64.06125rem) {
  .wellcome__description-item2 {
    max-width: 50vw;
  }
}
@media (width <= 48.81125rem) {
  .wellcome__description-item2 {
    max-width: 300px;
  }
}
@media (width <= 32.56125rem) {
  .wellcome__description-item2 {
    max-width: 100%;
  }
}
.wellcome__description-item3 {
  max-width: 543px;
  position: relative;
}
@media (width <= 64.06125rem) {
  .wellcome__description-item3 {
    max-width: 420px;
  }
}
@media (width <= 48.81125rem) {
  .wellcome__description-item3 {
    max-width: 343px;
  }
}
@media (width <= 700px) {
  .wellcome__description-item3 {
    max-width: 300px;
  }
}
@media (width <= 32.56125rem) {
  .wellcome__description-item3 {
    max-width: 100%;
  }
}

.title {
  line-height: 1.1;
  width: 420px;
}
@media (width <= 1124px) {
  .title-long {
    width: 100%;
  }
}
.title-short {
  width: 327px;
}
.title-medium {
  width: 380px;
}
@media (width <= 32.56125rem) {
  .title-medium {
    width: 280px;
  }
}
.title-all {
  width: 100%;
}
.title-white {
  color: var(--color-light);
}

.questions {
  background-color: #fff;
  padding-top: 80px;
  scroll-margin-top: 7rem;
}
@media (width <= 64.06125rem) {
  .questions {
    padding-top: 30px;
  }
}
@media (width <= 1124px) {
  .questions__inner {
    padding-top: 30px;
  }
}
.questions__subtitle {
  padding-bottom: 20px;
}
@media (width <= 32.56125rem) {
  .questions__subtitle {
    padding-bottom: 10px;
  }
}
.questions__subtitle-description {
  padding-top: 11px;
  font-weight: 500;
}
.questions__item {
  display: flex;
  height: 65px;
  align-items: center;
  border-bottom: 1px solid var(--alt2-bg-color);
}
@media (width <= 32.56125rem) {
  .questions__item {
    height: 85px;
  }
}
.questions__item-number {
  padding-right: 10px;
  font-weight: 700;
  font-size: 26px;
  line-height: 20px;
  color: var(--main-font-color);
}
@media (width <= 32.56125rem) {
  .questions__item-number {
    font-size: 16px;
  }
}
.questions__item-text {
  padding-left: 5px;
  padding-right: 15px;
  font-weight: 400;
  font-size: clamp(0.8125rem, 0.7117768595rem + 0.4132231405vw, 1.125rem);
  line-height: 20px;
  color: var(--dark-color);
}
@media (width <= 32.56125rem) {
  .questions__item-text {
    line-height: 1.2;
    padding-right: 5px;
  }
}
.questions__item-answer {
  display: flex;
  margin-left: auto;
}
.questions__item-yes {
  margin-right: 4px;
}
.questions__item-yes, .questions__item-no {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 34px;
  color: var(--main-font-color-dark);
  color: var(--main-font-color);
  font-weight: 500;
  background: var(--alt2-bg-color);
  border-radius: 4px;
  font-size: clamp(0.8125rem, 0.7722107438rem + 0.1652892562vw, 0.9375rem);
  border: none;
}
@media (width <= 32.56125rem) {
  .questions__item-yes, .questions__item-no {
    width: 38px;
    height: 26px;
  }
}
.questions__item-yes.is-active, .questions__item-no.is-active {
  background: var(--main-font-color);
  color: var(--alt2-bg-color);
}
.questions__resultinfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.8125rem, 0.7520661157rem + 0.2479338843vw, 1rem);
  height: 70px;
  margin-bottom: 20px;
  border-radius: 4px;
}
@media (width <= 600px) {
  .questions__resultinfo {
    height: 90px;
  }
}
@media (width <= 32.56125rem) {
  .questions__resultinfo {
    height: 100px;
  }
}
.questions__resultinfo-text {
  opacity: 0;
  visibility: hidden;
}
.questions__resultinfo-text.is-active {
  opacity: 1;
  visibility: visible;
}
.questions__resultinfo-text1, .questions__resultinfo-text2 {
  padding: 5px;
  font-weight: 500;
}
.questions__resultinfo-text1.is-active, .questions__resultinfo-text2.is-active {
  display: block;
}
.questions__resultinfo-text1:not(.is-active), .questions__resultinfo-text2:not(.is-active) {
  display: none;
}
.questions__actions {
  display: flex;
  column-gap: 12px;
  padding: 5px;
}
@media (width <= 32.56125rem) {
  .questions__actions {
    flex-direction: column;
    row-gap: 5px;
  }
}
.questions__actions-result, .questions__actions-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: none;
  background-color: var(--alt2-bg-color);
  width: 108px;
  height: 40px;
  font-weight: 500;
  color: var(--main-font-color);
}
@media (width <= 32.56125rem) {
  .questions__actions-result, .questions__actions-cancel {
    width: 68px;
    padding: 2px;
    font-size: 12px;
  }
}
@media (any-hover: hover) {
  .questions__actions-result:hover, .questions__actions-cancel:hover {
    color: var(--alt2-bg-color);
    background-color: var(--main-font-color);
  }
}
@media (any-hover: none) {
  .questions__actions-result:active, .questions__actions-cancel:active {
    color: var(--alt2-bg-color);
    background-color: var(--main-font-color);
  }
}

.novice {
  padding-top: 69px;
  background: url("../../images/bg-novice.png") no-repeat center/cover;
  border-radius: clamp(0rem, -4.0289256198rem + 16.5289256198vw, 12.5rem) 0 0 0;
  scroll-margin-top: 9rem;
}
@media (width <= 32.56125rem) {
  .novice {
    padding-top: 40px;
  }
}
.novice__manifest {
  padding-bottom: 100px;
}
.novice__manifest-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-top: 25px;
}
.novice__manifest-item {
  display: flex;
  background-color: var(--color-light);
  border-radius: 14px;
}
.novice__manifest-img {
  padding-left: 30px;
}
.novice__manifest-text {
  padding-top: 27px;
  padding-bottom: 27px;
  padding-left: 30px;
  padding-right: 30px;
}

.faq {
  padding-top: 80px;
  scroll-margin-top: 9rem;
}
@media (width <= 48.81125rem) {
  .faq {
    padding-top: 30px;
  }
}
.faq__subtitle {
  padding-bottom: 20px;
}
@media (width <= 32.56125rem) {
  .faq__subtitle {
    padding-bottom: 10px;
  }
}
.faq__answers-item {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  cursor: pointer;
}
.faq__answers-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 27px 20px 27px;
  border: 1px solid #dbe4ff;
  border-radius: 14px;
  font-weight: 500;
  transition-duration: 0.2s;
}
.faq__answers-body.is-active {
  background-color: var(--main-font-color);
  color: var(--color-light);
  transition-duration: 0.5s;
}
.faq__answers-question {
  padding-right: 15px;
}
.faq__answers-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
  padding-left: 20px;
  padding-top: 5px;
  transition-duration: 0.3s;
}
.faq__answers-answer.is-active {
  max-height: 500px;
  transition-duration: 0.3s;
}
.faq__answers-imgUp {
  width: 21px;
  height: 13px;
}
.faq__answers-imgUp:not(.is-active) {
  display: none;
}
.faq__answers-imgDown {
  width: 21px;
  height: 13px;
}
.faq__answers-imgDown:not(.is-active) {
  display: none;
}

.programms {
  margin-top: 80px;
  scroll-margin-top: 9rem;
}
.programms__inner {
  background-color: var(--main-font-color);
  border-radius: 10px 200px 10px 10px;
  box-shadow: 3px 3px 20px 2px rgba(49, 49, 127, 0.5);
  position: relative;
  overflow: hidden;
}
@media (width <= 1172px) {
  .programms__inner {
    border-radius: 0px 60px 0px 0px;
  }
}
.programms__inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 590px;
  height: 198px;
  top: 0;
  right: 0;
  background: url("/images/Vector1.svg") no-repeat center/cover;
}
@media (width <= 1172px) {
  .programms__inner::after {
    width: clamp(12.5rem, 4.6435950413rem + 32.2314049587vw, 36.875rem);
    height: clamp(4.1875rem, 1.548553719rem + 10.826446281vw, 12.375rem);
  }
}
@media (width <= 48.81125rem) {
  .programms__inner::after {
    display: none;
  }
}
.programms__subtitle {
  padding-top: 80px;
  padding-left: 30px;
}
.programms__subtitle-title {
  font-size: 64px;
  font-weight: 700;
}
@media (width <= 1172px) {
  .programms__subtitle-title {
    font-size: clamp(1.875rem, 1.4519628099rem + 1.7355371901vw, 3.1875rem);
  }
}
.programms__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 50px 74px 30px;
}
@media (width <= 64.06125rem) {
  .programms__list {
    width: 100%;
  }
}
.programms__item {
  display: flex;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--alt-bg-color-light);
}
.programms__item-number {
  font-size: clamp(1.0625rem, 0.8811983471rem + 0.7438016529vw, 1.625rem);
  font-weight: 500;
  padding: 10px;
  color: var(--alt-bg-color-dark);
}
.programms__item-text {
  color: var(--color-light);
  font-size: clamp(0.875rem, 0.7944214876rem + 0.3305785124vw, 1.125rem);
  padding: 10px 0 10px 0;
}
.programms-unity {
  background-color: var(--alt-bg-color-dark);
  border-radius: 10px 10px 200px 10px;
}
@media (width <= 1172px) {
  .programms-unity {
    border-radius: 0px 0px 60px 0px;
  }
}

.item-unity {
  height: 100%;
  padding: 10px 0 10px 0;
}
.item-number {
  color: var(--main-font-color);
}

.schedule {
  margin-top: 80px;
}
.schedule__inner {
  position: relative;
  padding-bottom: 304px;
}
.schedule__info {
  position: absolute;
  padding: 43px 20px 43px 20px;
  border-radius: 40px 0 0 0;
  top: 150px;
  left: 20px;
  background-color: var(--alt2-bg-color);
  z-index: 10;
  box-shadow: 3px 3px 20px 2px rgba(49, 49, 127, 0.5);
}
@media (width <= 1210px) {
  .schedule__info {
    top: 125px;
  }
}
@media (width <= 64.06125rem) {
  .schedule__info {
    top: 0;
    right: 30px;
    left: auto;
    max-width: 392px;
    max-height: 246px;
  }
}
@media (width <= 608px) {
  .schedule__info {
    top: 75px;
    width: 90vw;
    left: 50%;
    translate: -50% 0;
    right: auto;
    max-width: none;
    max-height: none;
  }
}
.schedule__info-days {
  color: var(--color-dark);
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7520661157rem + 0.2479338843vw, 1rem);
  padding-bottom: 50px;
}
@media (width <= 64.06125rem) {
  .schedule__info-days {
    padding-bottom: 20px;
  }
}
.schedule__info-contacts {
  display: flex;
  justify-content: flex-start;
  color: var(--main-font-color-dark);
  font-weight: 500;
  padding-bottom: 20px;
}
.schedule__info-adress {
  font-size: clamp(0.8125rem, 0.7520661157rem + 0.2479338843vw, 1rem);
  padding-bottom: 20px;
}
.schedule__info-info {
  font-size: clamp(0.8125rem, 0.7520661157rem + 0.2479338843vw, 1rem);
  text-transform: uppercase;
  color: var(--main-font-color);
  font-weight: 700;
}
.schedule__map {
  position: absolute;
  left: 400px;
  top: 0;
  width: 784px;
  height: 500px;
  border-radius: 100px 0 0 0;
  box-shadow: 3px 3px 20px 2px rgba(49, 49, 127, 0.5);
  overflow: hidden;
}
@media (width <= 1210px) {
  .schedule__map {
    width: 65vw;
    height: 100%;
    left: 350px;
  }
}
@media (width <= 64.06125rem) {
  .schedule__map {
    top: 100px;
    width: 90vw;
    left: auto;
    left: 50%;
    translate: -50% 0;
    border-radius: 40px 0 0 0;
  }
}
@media (width <= 608px) {
  .schedule__map {
    top: 308px;
    left: 50%;
    translate: -50% 0;
    right: auto;
  }
}
.schedule__map iframe {
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
}

.footer__wrapp {
  padding-top: 90px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
@media (width <= 1210px) {
  .footer__wrapp {
    padding-top: 0;
  }
}
@media (width <= 64.06125rem) {
  .footer__wrapp {
    padding-top: 125px;
  }
}
@media (width <= 608px) {
  .footer__wrapp {
    padding-top: 322px;
  }
}

.about {
  height: 100%;
  padding-block: 70px;
  scroll-margin-top: 9rem;
}
@media (width <= 48.81125rem) {
  .about {
    padding-block: 30px;
  }
}
.about__list {
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-indent: 20px;
}/*# sourceMappingURL=style.css.map */