:root {
  --white: #fff;
  --black: #000;
  --black-2: #202020;
  --blue-1: #0077ff;
  --blue-2: #005eff;
  --gray-1: #e8ecf5;
  --gray-2: #7c8a9a;
  --gray-3: rgba(237, 243, 252, 0.86);
  --gray-4: #f8fafe;
  --gray-5: rgba(10, 20, 40, 0.08);
  --red: #ff6c6c;
}

body {
  color: var(--white);
  font-family: "VK Sans Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  background-color: #060608;
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.main {
  padding-top: 80px;
}

.section {
  padding: 100px 0 0;
}

.page-title {
  font-size: 155px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -2.325px;
  text-transform: uppercase;
}

.text-48 {
  font-size: 48px;
  line-height: 120%;
}

.text-44 {
  font-size: 44px;
  line-height: 120%;
}

.text-32 {
  font-size: 32px;
  line-height: 125%;
}

.text-28 {
  font-size: 28px;
  line-height: 120%;
}

.text-24 {
  font-size: 24px;
  line-height: 120%;
}

.text-22 {
  font-size: 22px;
  line-height: 130%;
}

.text-18 {
  font-size: 18px;
  line-height: 125%;
}

.text-16 {
  font-size: 16px;
  line-height: 110%;
}

.text-15 {
  font-size: 15px;
  line-height: 110%;
}

.text-14 {
  font-size: 14px;
  line-height: 150%;
}

.text-13 {
  font-size: 13px;
  line-height: 100%;
}

.text-12 {
  font-size: 12px;
  line-height: 100%;
}

.text-10 {
  font-size: 10px;
  line-height: 100%;
}

.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.gray-text {
  color: #8f8f9e;
}

.tt-uc {
  text-transform: uppercase;
}

.content p:not(:last-child) {
  margin-bottom: 1em;
}

.content ul li {
  padding-left: 30px;
  position: relative;
}

.content ul li::after {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--black);
  position: absolute;
  left: 12px;
  top: 14px;
}

.btn {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  padding: 12px 24px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-weight: 600;
  background-color: var(--blue-1);
  gap: 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.btn:hover {
  border-radius: 50px;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.checkbox__checkmark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
}

.checkbox__checkmark svg:nth-child(2) {
  display: none;
}

.checkbox__checkmark svg:nth-child(3) {
  display: none;
}

.checkbox__input {
  display: none;
}

.checkbox__input:checked~.checkbox__checkmark svg:nth-child(1) {
  display: none;
}

.checkbox__input:checked~.checkbox__checkmark svg:nth-child(2) {
  display: block;
}

.checkbox__text a {
  color: var(--blue-1);
}

.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

.select__btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 12px 24px;
  padding-right: 16px;
  background-color: var(--black-2);
  border: 1px solid transparent;
  cursor: pointer;
}

.select__btn-text {
  width: 100%;
}

.select__caret {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select__field {
  display: none;
}

.select__body {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--black-2);
  border: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
}

.select__item {
  padding: 12px 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
}

.select__item_disabled {
  padding: 0;
  pointer-events: none;
}

.select_open .select__body {
  pointer-events: all;
  opacity: 1;
}

.select_open .select__caret {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.title {
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 48px;
  color: #95c6ff;
  font-family: "VK Sans Display Expanded";
}

.title-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.title-tag__num {
  color: #005eff;
}

.header {
  background-color: #060608;
  position: fixed;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid #22222e;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 23px 0;
  background-color: #060608;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.header__menu-btn {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 25px;
  cursor: pointer;
  display: none;
  position: relative;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.header__menu-btn::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background-color: var(--white);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header__menu-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: absolute;
  top: 0;
  left: 0;
}

.header__menu-btn:hover::after {
  width: 100%;
}

.header .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.header .nav__bottom {
  display: none;
}

.header .nav__link {
  position: relative;
  color: #8f8f9e;
}

.header .nav__link:hover {
  color: #fff;
}

.footer {
  border-top: 1px solid #22222e;
  margin-top: 100px;
}

.footer__wrapper {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #22222e;
  padding: 6px 12px;
  background-color: #0d0d11;
  border-radius: 4px;
}

.footer__logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__logo-text span:nth-child(2) {
  display: none;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__bottom-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 8px;
  background-color: #22222e;
  border-radius: 4px;
}

.window-frame {
  border: 1px solid #1a2436;
  background-color: #0d0d11;
  border-radius: 12px;
  overflow: hidden;
}

.window-frame__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;
  gap: 20px;
  padding: 10px 16px;
  background-color: #13131a;
  border-bottom: 1px solid #1a2436;
}

.window-frame__top-icons {
  display: flex;
  width: fit-content;
}

.slider-navigation {
  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;
  width: 100%;
  position: absolute;
  top: calc(50% - 17px);
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.swiper:hover .slider-navigation {
  opacity: 1;
}

.slider-prev,
.slider-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--gray-5);
  cursor: pointer;
  background-image: url(../img/icons/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  pointer-events: all;
}

.slider-next {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.slider-pagination {
  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: 10px;
  margin-top: 24px;
}

.slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: var(--black-2);
}

.slider-pagination .swiper-pagination-bullet-active {
  background-color: var(--blue-1);
}

.entrance {
  padding: 120px 0;
}

.entrance__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 58px;
}

.entrance__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 723px;
}

.entrance__desc {
  margin-top: 28px;
}

.entrance__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}

.entrance__bottom-text::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #f45fff;
}

.entrance__bottom-label {
  margin-top: 15px;
}

.entrance__bottom-label a {
  color: #0077ff;
  font-weight: 600;
}

.entrance__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.entrance__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.entrance__btn {
  padding: 16px 32px;
}

.entrance__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.entrance__title img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top left;
  object-position: top left;
}

.entrance__window {
  -webkit-box-shadow: 0 12px 32px #0077ff24;
  box-shadow: 0 12px 32px #0077ff24;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.line {
  padding: 18px 0;
  border: solid #1a2436;
  border-width: 1px 0;
  background-color: #0d0d11;
  font-family: "VK Sans Display Expanded";
  font-weight: 700;
  text-transform: lowercase;
}

.line__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 40px;
}

.line__item:first-child {
  color: #95c6ff;
}

.line__text {
  white-space: nowrap;
}

.line__icon {
  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;
}

.line__slider-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.line__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #22222e;
}

.about {
  padding-bottom: 50px;
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.about__item {
  width: 100%;
  height: auto;
}

.about__item-wrapper {
  padding: 32px;
  background-color: #0d0d11;
  height: 100%;
}

.about__item-title {
  font-family: "VK Sans Display Expanded";
}

.about__item-desc {
  margin-top: 12px;
}

.about__tags {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about__tag {
  border: 1px solid #22222e;
  padding: 6px 12px;
  border-radius: 100px;
  color: #0077ff;
}

.about__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.program {
  padding-bottom: 34px;
}

.program__wrapper {
  padding-top: 48px;
  border-top: 1px solid #1a2436;
}

.program__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 160px auto;
  grid-template-columns: 160px auto;
  gap: 24px;
  padding: 24px;
  background-color: #0d0d11;
}

.program__item:not(:last-child) {
  border-bottom: 1px solid #22222e;
}

.program__item_marker .program__body {
  padding-left: 28px;
  border-left: 8px solid var(--blue-1);
}

.program__time {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #0077ff;
}

.program__text {
  margin-top: 8px;
}

.program__speaker {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.program__speaker-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.program__speaker-name {
  font-family: "VK Sans Display Condensed";
}

.program__name {
  font-family: 'VK Sans Display Expanded';
}

.location {
  padding: 120px 0;
  background-color: #0d0d11;
  border: solid #1a2436;
  border-width: 1px 0;
}

.location__title {
  margin-top: 40px;
  margin-bottom: 16px;
}

.location__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 32px;
  gap: 12px;
}

.location__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.location__list-icon {
  display: flex;
}

.contacts__wrapper {
  padding-top: 48px;
  border-top: 1px solid #1a2436;
}

.contacts__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.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;
  width: 100%;
  padding: 32px;
  background-color: #0d0d11;
  border-radius: 12px;
  border: 1px solid #1a2436;
}

.contacts__name {
  font-family: "VK Sans Display Expanded";
  margin-bottom: 16px;
}

.contacts__link {
  color: #0077ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.faq__wrapper {
  padding-top: 48px;
  border-top: 1px solid #1a2436;
}

.faq .accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.faq .accordion__item {
  background-color: #0d0d11;
  border: 1px solid #1a2436;
  padding: 24px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
}

.faq .accordion__item_open .accordion__caret {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.faq .accordion__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq .accordion__btn-text {
  width: 100%;
  font-family: "VK Sans Display Expanded";
}

.faq .accordion__caret {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.faq .accordion__caret svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.faq .accordion__body {
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: auto;
  width: 100%;
}

.faq .accordion__body::before {
  display: block;
  content: "";
  width: 100%;
  height: 12px;
}

.popup {
  display: none;
  background-color: var(--black);
  color: var(--white);
  padding: 48px;
  width: 100%;
  max-width: 872px;
}

.popup__heading {
  text-align: center;
  margin-bottom: 48px;
}

.popup__subtitle {
  margin-top: 8px;
}

.popup__info {
  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;
  width: 100%;
  height: auto;
  aspect-ratio: 1.15;
  text-align: center;
}

.popup__info-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}

.popup__info-btn {
  margin-top: 40px;
}

.popup__info-desc {
  margin-top: 8px;
}

.popup .f-button.is-close-btn {
  width: 36px;
  height: 36px;
  top: 16px !important;
  right: 16px !important;
  opacity: 1 !important;
  --f-button-color: var(--gray-2) !important;
  --f-button-bg: rgba(0, 0, 0, 0) !important;
}

.popup .f-button.is-close-btn svg {
  width: 100%;
  height: 100%;
}

.form__label {
  margin-bottom: 8px;
}

.form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  width: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.form__item {
  width: 100%;
}

.form__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 12px 24px;
  background-color: var(--black-2);
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.form__input::-webkit-input-placeholder {
  color: #ced2d4;
}

.form__input:-ms-input-placeholder {
  color: #ced2d4;
}

.form__input::-ms-input-placeholder {
  color: #ced2d4;
}

.form__input::placeholder {
  color: #ced2d4;
}

.form__input_textarea {
  height: 135px;
  resize: none;
}

.form__submit {
  margin: 0 auto;
  margin-top: 40px;
}

.form__checkbox {
  margin-top: 40px;
}

.form__message {
  color: var(--red);
  margin-top: 28px;
  display: none;
}

.form_error .form__input:required:invalid {
  border-color: var(--red);
}

.form_error .form__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_error .checkbox__input:required:not(:checked)~.checkbox__checkmark svg {
  display: none;
}

.form_error .checkbox__input:required:not(:checked)~.checkbox__checkmark svg:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_error .select__field:required:invalid~.select__btn {
  border-color: var(--red);
}

.fancybox__backdrop {
  background-color: rgba(255, 255, 255, 0.2);
}

#popup-success {
  padding: 0;
  background: none;
  max-width: 570px;
}

.popup#popup-success .f-button.is-close-btn {
  display: none;
}

.popup__window {
  padding: 40px 24px 24px;
}

.popup__window-heading-title {
  margin-top: 32px;
}

.popup__window-heading {
  padding-bottom: 32px;
  border-bottom: 1px solid #22222E;
  margin-bottom: 32px;
}

.popup__window-desc {
  padding-bottom: 32px;
  border-bottom: 1px solid #22222E;
  margin-bottom: 32px;
}

.popup__window-desc a {
  font-weight: 600;
  color: #0077ff;
}

.popup__window-bottom {
  color: #0077ff;
}

.popup__window-bottom a {
  text-decoration: underline;
}

.popup__window-bottom-label {
  margin-top: 10px;
}

@media screen and (max-width: 1200px) {
  .entrance__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 18px;
    line-height: 130%;
  }

  .text-48 {
    font-size: 40px;
    line-height: 120%;
  }

  .text-32 {
    font-size: 24px;
    line-height: 125%;
  }

  .text-28 {
    font-size: 24px;
    line-height: 120%;
  }

  .title {
    font-size: 48px;
    line-height: 120%;
    margin-bottom: 40px;
  }

  .header__menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #060608;
    font-size: 32px;
    line-height: 125%;
    color: var(--white);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -webkit-transform: translateY(-101%);
    transform: translateY(-101%);
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px;
    padding-bottom: 100px;
  }

  .header .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto 0;
  }

  .header .nav__btn {
    width: 100%;
  }

  .header-open .header__nav {
    -webkit-transform: none;
    transform: none;
  }

  .header-open .header__menu-btn span {
    width: 0;
    opacity: 0;
  }

  .header-open .header__menu-btn::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    left: 50%;
    top: 50%;
  }

  .header-open .header__menu-btn::after {
    width: 100%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
    left: 50%;
    bottom: 50%;
  }

  .line {
    padding: 11px 0;
  }

  .line__slide {
    gap: 20px;
  }

  .slider-pagination {
    margin-top: 20px;
  }

  .form__checkbox {
    margin-top: 32px;
  }

  .form__submit {
    margin-top: 32px;
  }

  .popup {
    padding: 40px 32px;
  }

  .popup__heading {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 991px) {
  .contacts__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .slider-navigation {
    display: none;
  }

  .text-48 {
    font-size: 36px;
    line-height: 120%;
  }

  .text-44 {
    font-size: 36px;
    line-height: 120%;
  }

  .text-24 {
    font-size: 18px;
    line-height: 120%;
  }

  .header__btn {
    display: none;
  }

  .header .nav__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }

  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .entrance__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 48px;
  }

  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }

  .program__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: 12px;
  }
}

@media screen and (max-width: 570px) {
  body {
    font-size: 16px;
    line-height: 130%;
  }

  .container {
    padding: 0px 16px;
  }

  .text-48 {
    font-size: 26px;
    line-height: 120%;
  }

  .text-44 {
    font-size: 20px;
    line-height: 120%;
  }

  .text-32 {
    font-size: 22px;
    line-height: 125%;
  }

  .text-28 {
    font-size: 20px;
    line-height: 120%;
  }

  .text-24 {
    font-size: 16px;
    line-height: 120%;
  }

  .text-18 {
    font-size: 13px;
    line-height: 110%;
  }

  .text-16 {
    font-size: 12px;
    line-height: 140%;
  }

  .text-15 {
    font-size: 12px;
    line-height: 110%;
  }

  .text-14 {
    font-size: 12px;
    line-height: 140%;
  }

  .btn {
    font-size: 14px;
    line-height: 120%;
  }

  .section {
    padding-top: 48px;
  }

  .title {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 24px;
  }

  .title-tag {
    margin-bottom: 16px;
  }

  .popup {
    padding: 32px 24px;
  }

  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form__submit {
    width: 100%;
  }

  .footer {
    margin-top: 48px;
  }

  .footer__wrapper {
    padding: 40px 0;
    gap: 24px;
  }

  .footer__row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__logo-text span:nth-child(1) {
    display: none;
  }

  .footer__logo-text span:nth-child(2) {
    display: block;
  }

  .footer__social {
    gap: 8px;
  }

  .entrance {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .entrance__btn {
    width: 100%;
    padding: 14px;
  }

  .entrance__bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .about {
    padding-bottom: 0;
  }

  .about__wrapper {
    gap: 16px;
  }

  .program {
    padding-bottom: 48px;
  }

  .program__wrapper {
    padding-top: 24px;
  }

  .location {
    padding: 48px 0;
  }

  .location__title {
    margin-top: 32px;
    margin-bottom: 12px;
  }

  .location__list {
    margin-top: 24px;
  }

  .contacts__wrapper {
    padding-top: 24px;
  }

  .contacts__list {
    gap: 12px;
  }

  .contacts__item {
    padding: 20px;
  }

  .contacts__name {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 110%;
  }

  .contacts__icon {
    margin-bottom: 10px;
  }

  .contacts__icon svg {
    width: 24px;
    height: 24px;
  }

  .faq__wrapper {
    padding-top: 24px;
  }

  .faq__list {
    gap: 10px;
  }

  .faq__item {
    padding: 16px;
  }

  .program__item {
    gap: 8px;
    padding: 16px;
  }

  .about__item-wrapper {
    padding: 20px;
  }

  .about__tags {
    margin-top: 16px;
    gap: 6px;
  }

  .about__tag {
    background-color: #22222E;
  }

  .about__item-desc {
    margin-top: 8px;
  }

  .about__location {
    margin-top: 16px;
  }

  .about__location svg {
    width: 16px;
    height: 16px;
  }

  .program__name {
    font-size: 15px;
    line-height: 100%;
  }

  .location__list-icon svg {
    width: 14px;
    height: 14px;
  }

  .entrance__bottom-label {
    text-align: center;
  }
}