@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%;
  /**
     Убираем скачок интерфейса по горизонтали
     при появлении / исчезновении скроллбара
    */
  scrollbar-gutter: stable;
}

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

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

@font-face {
  font-family: "Montserrat";
  src: url("..fonts/Montserrat-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "Montserrat";
  src: url("..fonts/Montserrat-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "Montserrat";
  src: url("..fonts/Montserrat-SemiBold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "Montserrat";
  src: url("..fonts/Montserrat-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "Montserrat";
  src: url("..fonts/Montserrat-ExtraBold.ttf") format("ttf");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "Montserrat";
  src: url("..fonts/Montserrat-Black.ttf") format("ttf");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
:root {
  --color-dark: #1e1e1e;
  --color-accent-blue: #304b6f;
  --color-accent-blue--low-opacity: #304b6f4b;
  --color-accent-orange: #ee9e51;
  --color-accent-orange-05: #ee9d5193;
  --color-light: #ffffff;
  --color-light-low: rgba(255, 255, 255, 0.8);
  --color-light-lowest: rgba(255, 255, 255, 0.2);
  --color-light-06: rgba(255, 255, 255, 0.6);
  --color-light-01: rgba(255, 255, 255, 0.1);
  --color-bg-colored: rgba(247, 247, 247, 1);
  --color-border: #d4d4d4;
  --color-bg: #fdfbfb;
  --color-blue: #0032ff;
  --color-bg-blue: #01104d;
  --color-bg-blue-07: #01104de0;
  --color-black: #000;
  --color-orange: #fc7727;
  --color-orange-low: #fc792779;
  --border-radius: 12px;
  --border-radius-bigger: 16px;
  --border-color-light: 1px solid var(--color-light);
  --border-color-dark: 1px solid var(--color-accent-blue);
  --border-base: 1px solid var(--color-border-dark);
  --indent-base: 1rem;
  --font-family-base: "Montserrat", sans-serif;
  --section-width: 1280px;
  --main-margin: 136px;
  --main-padding: 136px;
  --container-fluid-width: 100%;
  --container-width: 1110px;
  --container-padding-x: 20px;
  --container-padding-y: 40px;
  --input-height: 55px;
  --button-width: 55px;
  --button-height: 55px;
  --social-button-height: 45px;
  --social-button-width: 45px;
  --transition-duration: 0.3s;
  --transition-duration--slow: 0.6s;
}
@media (max-width: 992px) {
  :root {
    --main-margin: 90px;
    --main-padding: 90px;
  }
}
@media (max-width: 375px) {
  :root {
    --section-padding-y: 15px;
  }
}

.section {
  max-width: var(--section-width);
  width: 100%;
  margin: 0 auto;
}

.section-fluid {
  min-width: 100%;
  margin: 0 auto;
}
.section-fluid .container {
  max-width: var(--section-width);
}

.container-fluid {
  width: 100%;
  height: 100%;
  padding-inline: var(--container-padding-x);
}

.container {
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
.container__body {
  display: flex;
  align-items: center;
}
.container__body--header {
  height: calc(100% - 95px);
}
.container--inner {
  padding: var(--container-padding-y) var(--container-padding-x);
}
.container--inner-x {
  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;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(10 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 1280px) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (min-width: 1281px) {
  .visible-desktop {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 993px) {
  .visible-tablet {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hidden-tablet-low {
    display: none !important;
  }
}

@media (min-width: 577px) {
  .visible-tablet-low {
    display: none !important;
  }
}

@media (max-width: 375px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 376px) {
  .visible-mobile {
    display: none !important;
  }
}

.me-2 {
  margin-right: 6px;
}

body {
  font-size: clamp(0.875rem, 0.7610759494rem + 0.5063291139vw, 1.125rem);
  position: relative;
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 1.28;
  color: var(--color-dark);
  background-color: var(--color-bg);
  position: relative;
  padding-top: 75px;
  min-height: 100vh;
  width: 100%;
}
@media (max-width: 992px) {
  body {
    padding-top: 56px;
  }
}

#overlay {
  transition: var(--transition-duration);
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.74);
  z-index: 30;
}

.non-overflow {
  overflow: hidden;
}

#bg-circle {
  position: absolute;
  width: 994px;
  height: 994px;
  top: 375px;
  left: 50%;
  transform: translate(-50%, 0);
  filter: blur(600px);
  background-color: rgba(188, 211, 255, 0.3019607843);
  z-index: -100;
}
@media (max-width: 992px) {
  #bg-circle {
    width: 100%;
    height: auto;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2 {
  font-weight: 800;
}

h1 {
  font-size: clamp(2.0625rem, 1.6352848101rem + 1.8987341772vw, 3rem);
}

h2 {
  font-size: clamp(1.875rem, 1.5901898734rem + 1.2658227848vw, 2.5rem);
}

h3 {
  font-size: clamp(1.125rem, 1.0680379747rem + 0.253164557vw, 1.25rem);
  font-weight: 700;
}

.padding--y {
  padding: 40px 0;
}

.align-center {
  margin: 0 auto;
}

.button {
  padding: 0 1.4em;
  font-size: 0.875rem;
  font-weight: 700;
  height: 55px;
  border: 1px solid var(--color-light);
  border-radius: var(--border-radius);
  color: var(--color-light);
  background-color: transparent;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.button--accent {
  color: var(--color-accent-blue);
  background-color: var(--color-light);
}
@media (hover: hover) {
  .button:hover {
    background-color: var(--color-accent-orange);
    color: var(--color-light);
  }
}
@media (hover: none) {
  .button:active {
    background-color: var(--color-accent-orange);
    color: var(--color-light);
  }
}
.button--orange {
  border: 1px solid transparent;
  color: var(--color-light);
  background-color: var(--color-accent-orange);
}
@media (hover: hover) {
  .button--orange:hover {
    border: 1px solid var(--color-light);
    background-color: var(--color-light);
    color: var(--color-accent-orange);
  }
}
@media (hover: none) {
  .button--orange:active {
    border: 1px solid var(--color-light);
    background-color: var(--color-light);
    color: var(--color-accent-orange);
  }
}
.button--hover-border-orange:hover {
  border: 1px solid var(--color-accent-orange);
}
.button--blue {
  border: 1px solid var(--color-accent-blue);
  color: var(--color-accent-blue);
  background-color: var(--color-light);
}
@media (hover: hover) {
  .button--blue:hover {
    color: var(--color-light);
    background-color: var(--color-accent-blue);
  }
}
@media (hover: none) {
  .button--blue:active {
    color: var(--color-light);
    background-color: var(--color-accent-blue);
  }
}
.button__social {
  width: var(--social-button-width);
  height: var(--social-button-height);
}
.button--wide {
  padding: 0 4.3125rem;
}
@media (max-width: 576px) {
  .button--wide {
    max-width: 154px;
    max-height: 45px;
  }
}
.button--x-wide {
  padding: 0 4.3125rem;
  margin: 0 auto;
}

.button-marker {
  font-size: 1.9375rem;
}

/* the slides */
.slick-slide {
  margin: 0 15px;
}
/* the parent */
.slick-list {
  margin: 0 -15px;
}
.slick-prev:before,
.slick-next:before {
  font-family: initial !important;
  color: var(--color-secondary);
}

.slider-speaker-item {
  background-color: var(--color-light);
  max-width: 400px;
  width: 100%;
  height: 100%;
  min-height: 590px;
  border: 1px solid transparent;
  border-radius: 24px;
}
@media (max-width: 576px) {
  .slider-speaker-item {
    min-height: 100%;
  }
}
.slider-speaker-item__logo {
  height: 100%;
  width: 100%;
  aspect-ratio: 1;
}
.slider-speaker-item__logo img {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.slider-speaker-item__content {
  width: 100%;
  padding: 24px;
}
.slider-speaker-item__content__title {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1360759494rem + 0.5063291139vw, 1.5rem);
  line-height: 30px;
}
.slider-speaker-item__content__description {
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
}

.slider__button {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 35px;
  z-index: 1;
  background: 0 0;
  border: 1px solid var(--color-border);
  height: var(--button-height);
  line-height: 30px;
  width: var(--button-width);
  border-radius: var(--border-radius);
  font-weight: 100;
  text-align: center;
  transition: var(--transition-duration) ease;
  background-color: var(--color-light);
}
.slider__button:before {
  font-size: 30px;
  font-weight: bolder;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.slider__button--prev {
  left: 0;
  font-size: 0;
}
.slider__button--prev:before {
  content: "<";
}
@media (max-width: 1280px) {
  .slider__button--prev {
    left: -25px;
  }
}
@media (max-width: 992px) {
  .slider__button--prev {
    left: 15px;
  }
}
.slider__button--next {
  right: 0;
  font-size: 0;
}
.slider__button--next:before {
  content: ">";
}
@media (max-width: 1280px) {
  .slider__button--next {
    right: -25px;
  }
}
@media (max-width: 992px) {
  .slider__button--next {
    right: 15px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 75px;
  max-width: var(--section-width);
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 0 64px;
  z-index: 100;
  box-shadow: 0 2px 12px -4px rgba(12, 12, 13, 0.0196078431);
  box-shadow: 0 4px 24px -4px rgba(12, 12, 13, 0.0196078431);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
@media (max-width: 992px) {
  header {
    height: 56px;
    padding: 0 15px;
    border-radius: 0;
  }
}
header .header-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
  height: 100%;
}
header .header-row .header__left-part {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  -moz-column-gap: 58px;
       column-gap: 58px;
}
header .header-row .header__left-part .header-logo {
  max-width: 160px;
  height: auto;
  display: block;
  flex-grow: 1;
}
@media (max-width: 576px) {
  header .header-row .header__left-part .header-logo {
    max-width: 130px;
    min-width: 90px;
    width: 100%;
  }
}
header .header-row .header__left-part .header-nav {
  display: flex;
  gap: 32px;
}
@media (max-width: 992px) {
  header .header-row .header__left-part .header-nav {
    display: none;
  }
}
header .header-row .header__left-part .header-nav__link {
  font-weight: 300;
  font-size: 1rem;
}
header .header-row .header__left-part .header-nav__link:hover {
  color: var(--color-orange);
}
header .header-row .header__right-part {
  display: flex;
  align-items: center;
}
header .header-row .header__right-part #mobile-nav-btn {
  display: none;
  border: none;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
}
@media (max-width: 992px) {
  header .header-row .header__right-part #mobile-nav-btn {
    display: block;
  }
}
header .header-row .header__right-part #mobile-nav-btn img {
  height: 34px;
  width: auto;
}
header .header-row .header__right-part #mobile-close-btn {
  display: none;
  border: none;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  font-size: clamp(1.625rem, 1.3401898734rem + 1.2658227848vw, 2.25rem);
  margin-right: 10px;
  font-weight: 600;
}

.mobile-menu {
  transition: var(--transition-duration);
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  padding: 32px 0;
  background-color: var(--color-light);
  z-index: 50;
  width: 100%;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.mobile-menu__nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}
.mobile-menu__nav-link {
  font-size: clamp(1.5rem, 1.2151898734rem + 1.2658227848vw, 2.125rem);
  font-weight: 500;
}

.footer {
  margin-top: var(--main-margin);
  background-color: var(--color-bg-blue);
  display: flex;
  justify-content: space-between;
  color: var(--color-light);
}
.footer .footer__body {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 120px;
  padding: 56px 0 56px;
}
@media (max-width: 992px) {
  .footer .footer__body {
    flex-direction: column;
    gap: 50px;
  }
}
.footer .footer__body .footer-other-column {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .footer .footer__body .footer-other-column {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .footer .footer__body .footer-other-column {
    width: 100%;
    flex-direction: column;
  }
}
.footer .footer__body .footer__column .footer__column-title {
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0680379747rem + 0.253164557vw, 1.25rem);
  line-height: 140%;
  text-transform: uppercase;
  color: var(--color-light);
}
@media (max-width: 992px) {
  .footer .footer__body .footer__column--left {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .footer .footer__body .footer__column--left {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer__body .footer__column--left .footer__logo-wrap {
  min-width: 23%;
  margin-bottom: 20px;
}
@media (max-width: 1600px) {
  .footer .footer__body .footer__column--left .footer__logo-wrap {
    min-width: 30%;
  }
}
.footer .footer__body .footer__column--left .footer__logo-wrap .logo__image {
  min-width: 110px;
  width: 100%;
  max-width: 241px;
}
@media (max-width: 992px) {
  .footer .footer__body .footer__column--left .footer__logo-wrap .logo__image {
    margin: 0 auto;
  }
}
.footer .footer__body .footer__column--left .footer__register-btn {
  background-color: var(--color-orange);
  padding: 12px 32px;
  width: 300px;
  height: 72px;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  color: var(--color-light);
  margin-top: 70px;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8180379747rem + 0.253164557vw, 1rem);
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .footer .footer__body .footer__column--left .footer__register-btn {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .footer .footer__body .footer__column--left .footer__register-btn {
    padding: 12px 64px;
    width: auto;
  }
}
.footer .footer__body .footer__column--left .footer__register-btn:hover {
  color: var(--color-orange);
  background-color: var(--color-light);
  border-color: var(--color-orange);
}
.footer .footer__body .footer__column--center {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
}
@media (max-width: 992px) {
  .footer .footer__body .footer__column--center {
    align-items: center;
  }
}
@media (max-width: 576px) {
  .footer .footer__body .footer__column--center {
    width: 100%;
  }
}
.footer .footer__body .footer__column--center .footer__column-links {
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 140%;
  color: var(--color-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 992px) {
  .footer .footer__body .footer__column--center .footer__column-links {
    align-items: center;
  }
}
.footer .footer__body .footer__column--center .footer__column-links .footer__column-link:hover {
  color: var(--color-orange);
}
.footer .footer__body .footer__column--right {
  width: 50%;
}
@media (max-width: 992px) {
  .footer .footer__body .footer__column--right {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .footer .footer__body .footer__column--right {
    width: 100%;
    margin-top: 72px;
  }
}
.footer .footer__body .footer__column--right .footer__column-contact-row {
  margin: 16px 0;
  display: flex;
  gap: 16px;
}
@media (max-width: 992px) {
  .footer .footer__body .footer__column--right .footer__column-contact-row {
    justify-content: center;
  }
}
.footer .footer__body .footer__column--right .footer__column-contact-row img {
  width: 24px;
  height: -moz-fit-content;
  height: fit-content;
}
.footer .footer__body .footer__column--right .footer__column-contact-row span {
  font-weight: 500;
  font-size: clamp(1rem, 0.8860759494rem + 0.5063291139vw, 1.25rem);
  line-height: 140%;
}
.footer .footer__body .footer__column--right .footer__column-contact__social-buttons {
  margin-top: 36px;
  display: flex;
  gap: 10px;
}
@media (max-width: 992px) {
  .footer .footer__body .footer__column--right .footer__column-contact__social-buttons {
    justify-content: center;
  }
}
.footer .footer__body .footer__column--right .footer__column-contact__social-button {
  border: 1.14px solid #585d75;
  border-radius: 99px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer__body .footer__column--right .footer__column-contact__social-button:hover {
  color: var(--color-light);
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}
.footer .footer__body .footer__column--right .footer__column-contact__social-button img {
  height: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .footer__body .footer__column--right__social-buttons {
  display: flex;
  justify-content: space-between;
  margin: 17px 0;
}
@media (max-width: 992px) {
  .footer .footer__body .footer__column--right__social-buttons {
    justify-content: start;
    gap: 10px;
  }
}
.footer .footer__body .footer__column--right__social-button {
  display: flex;
  padding: 0;
  margin: 0;
}
.footer .footer__body .footer__column--right__social-button__image {
  width: 23px;
  height: auto;
}

.footer__subbody {
  background-color: var(--color-bg-blue-07);
  height: 60px;
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 140%;
  color: var(--color-light);
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-banner {
  margin-top: 75px;
}
@media (max-width: 576px) {
  .section-banner {
    margin-top: 45px;
  }
}
.section-banner__buttons-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.section-banner__buttons-row button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #e2ebfc;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  color: var(--color-blue);
  font-weight: 400px;
  font-size: clamp(0.875rem, 0.8180379747rem + 0.253164557vw, 1rem);
  cursor: default;
}
.section-banner__title {
  margin-top: 50px;
  font-weight: 700;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  line-height: 140%;
  color: var(--color-black);
  text-align: center;
}
.section-banner__title span {
  color: var(--color-orange);
}
.section-banner__subtitle {
  margin-top: 24px;
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
}
.section-banner__terms-of-participation-button {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.section-banner__terms-of-participation-button a.terms-of-participation-link {
  background-color: var(--color-orange);
  padding: 25px 50px;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  color: var(--color-light);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8180379747rem + 0.253164557vw, 1rem);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.section-banner__terms-of-participation-button a.terms-of-participation-link:hover {
  color: var(--color-orange);
  background-color: var(--color-light);
  border-color: var(--color-orange);
}
.section-banner__timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
}
.section-banner__timer-item {
  background-color: var(--color-light);
  width: 200px;
  height: 150px;
  border: 1px solid transparent;
  border-radius: var(--border-radius-bigger);
  box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.0509803922);
  box-shadow: 0 16px 32px -4px rgba(12, 12, 13, 0.1019607843);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .section-banner__timer-item {
    height: 110px;
  }
}
.section-banner__timer-item__count {
  font-weight: 700;
  font-size: clamp(2.5rem, 2.0443037975rem + 2.0253164557vw, 3.5rem);
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--color-blue);
}
.section-banner__timer-item__title {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8180379747rem + 0.253164557vw, 1rem);
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.section-block_01 {
  margin-top: var(--main-margin);
}
.section-block_01 .block-title-area .block-title h2 {
  font-weight: 700;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  line-height: 140%;
  color: var(--color-black);
}
@media (max-width: 576px) {
  .section-block_01 .block-title-area .block-title h2 {
    text-align: center;
  }
}
.section-block_01 .block-title-area .block__row {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .section-block_01 .block-title-area .block__row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }
}
.section-block_01 .block-title-area .block__row p {
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 150%;
}
.section-block_01 .block-title-area .block__row p strong {
  font-weight: 700;
}
.section-block_01 .block-title-area .block__row .block__item {
  width: 50%;
}
@media (max-width: 576px) {
  .section-block_01 .block-title-area .block__row .block__item {
    width: 100%;
  }
}
.section-block_01 .block-title-area .block__row .block__item--logo img.main-logo {
  display: block;
  margin: 0 auto;
  max-width: 350px;
  min-width: 250px;
  width: 100%;
  height: auto;
}
@media (max-width: 576px) {
  .section-block_01 .block-title-area .block__row .block__item--logo img.main-logo {
    max-width: 250px;
    margin-top: 56px;
  }
}
.section-block_01 .block__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .section-block_01 .block__row {
    flex-direction: column;
  }
}
.section-block_01 .block__row .block__item--left {
  flex-shrink: 0;
}
.section-block_01 .block__row .block__item--flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-block_01 .block__row .block__item .partner-title {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1360759494rem + 0.5063291139vw, 1.5rem);
  line-height: 30px;
  color: var(--color-orange);
}
.section-block_01 .block__row .block__item img.partner-logo {
  max-height: 128px;
  min-height: 95px;
  height: 100%;
  width: auto;
}
@media (max-width: 576px) {
  .section-block_01 .block__row .block__item img.partner-logo {
    height: auto;
    width: 170px;
  }
}
.section-block_01 .block__row .block__item img.partner-logo--general {
  max-height: 133px;
  min-height: 105px;
}
@media (max-width: 576px) {
  .section-block_01 .block__row .block__item img.partner-logo--general {
    height: auto;
    width: 150px;
  }
}

.section-block_02 {
  margin-top: var(--main-margin);
  color: var(--color-light);
  background-image: url("./../images/block_01_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.section-block_02 .container {
  padding-top: 190px;
  padding-bottom: 190px;
}
@media (max-width: 992px) {
  .section-block_02 .container {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.section-block_02 .container .block-row {
  display: flex;
  gap: 125px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .section-block_02 .container .block-row {
    flex-direction: column;
  }
}
.section-block_02 .container .block-row .block-content__left-part {
  width: 50%;
}
@media (max-width: 992px) {
  .section-block_02 .container .block-row .block-content__left-part {
    width: 75%;
  }
}
@media (max-width: 576px) {
  .section-block_02 .container .block-row .block-content__left-part {
    width: 100%;
  }
}
.section-block_02 .container .block-row .block-content__left-part .block-title {
  font-weight: 700;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  line-height: 140%;
}
.section-block_02 .container .block-row .block-content__left-part .block-title span {
  color: var(--color-orange);
}
.section-block_02 .container .block-row .block-content__left-part .block-content {
  margin-top: 50px;
  font-weight: 300;
  font-size: clamp(0.875rem, 0.7610759494rem + 0.5063291139vw, 1.125rem);
  font-size: 18px;
  line-height: 150%;
}
.section-block_02 .container .block-row .block-content__left-part .block-content strong {
  font-weight: 600;
}
.section-block_02 .container .block-row .block-content__right-part {
  width: 50%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .section-block_02 .container .block-row .block-content__right-part {
    width: 75%;
  }
}
@media (max-width: 576px) {
  .section-block_02 .container .block-row .block-content__right-part {
    width: 100%;
  }
}
.section-block_02 .container .block-row .block-content__right-part .block-content {
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 32px;
  font-weight: 300;
  line-height: 150%;
  font-size: clamp(0.875rem, 0.8180379747rem + 0.253164557vw, 1rem);
}

.section-block_03 {
  margin-top: var(--main-margin);
}
.section-block_03 .block-row {
  display: flex;
  gap: 16px;
}
@media (max-width: 992px) {
  .section-block_03 .block-row {
    flex-direction: column;
  }
}
.section-block_03 .block-row .block--title h2 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  line-height: 140%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .section-block_03 .block-row .block--title h2 {
    text-align: center;
  }
}
.section-block_03 .block-row .block--title h2 span {
  color: var(--color-orange);
}
.section-block_03 .block-row .block-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 956px;
  gap: 24px;
  grid-auto-rows: 1fr;
}
@media (max-width: 992px) {
  .section-block_03 .block-row .block-items {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .section-block_03 .block-row .block-items {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}
.section-block_03 .block-row .block-items .block-item {
  padding: 37px 15px;
  display: flex;
  background-color: var(--color-light);
}
.section-block_03 .block-row .block-items .block-item__number {
  margin-right: 24px;
  font-weight: 700;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
  color: var(--color-orange);
}
.section-block_03 .block-row .block-items .block-item__logo {
  min-width: 56px;
  height: 56px;
  border-radius: var(--border-radius);
  margin-right: 16px;
  background-color: #e6e7fb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-block_03 .block-row .block-items .block-item__logo img {
  height: 28px;
  width: auto;
}
@media (max-width: 576px) {
  .section-block_03 .block-row .block-items .block-item__logo {
    min-width: 36px;
    height: 36px;
  }
  .section-block_03 .block-row .block-items .block-item__logo img {
    height: 18px;
    width: auto;
  }
}
.section-block_03 .block-row .block-items .block-item__content {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8465189873rem + 0.1265822785vw, 0.9375rem);
  line-height: 140%;
}
.section-block_04 {
  margin-top: var(--main-margin);
  padding: 100px 0;
  background-color: var(--color-light);
}
@media (max-width: 992px) {
  .section-block_04 {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .section-block_04 {
    padding: 30px 0;
  }
}
.section-block_04 .block-title h2 {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  line-height: 140%;
}
.section-block_04 .block-title h2 span {
  color: var(--color-orange);
}
.section-block_04 .block-subtitle {
  margin: 32px auto;
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
  text-align: center;
}
.section-block_04 .block-subtitle strong {
  font-weight: 600;
}
.section-block_04 .block-assets {
  padding: 40px;
  border-radius: 40px;
  gap: 16px;
  display: flex;
  background-color: #f9fbff;
}
@media (max-width: 992px) {
  .section-block_04 .block-assets {
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
  }
}
.section-block_04 .block-assets__title {
  min-width: 300px;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1360759494rem + 0.5063291139vw, 1.5rem);
  line-height: 30px;
  color: var(--color-orange);
}
@media (max-width: 992px) {
  .section-block_04 .block-assets__title {
    min-width: auto;
  }
}
.section-block_04 .block-assets__items {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.section-block_04 .block-assets__items .block-assets__item {
  padding: 1.5rem;
  border: 1px solid #dfeaff;
  border-radius: var(--border-radius);
}
@media (max-width: 576px) {
  .section-block_04 .block-assets__items .block-assets__item {
    padding: 20px 5px;
  }
}
.section-block_04 .block-assets__items .block-assets__item ul {
  font-size: clamp(1.125rem, 1.0680379747rem + 0.253164557vw, 1.25rem);
  line-height: 30px;
  margin: 0;
}
.section-block_04 .block-assets__items .block-assets__item ul li.margin-left {
  margin-left: 25px;
}
.section-block_05 {
  margin-top: var(--main-margin);
}
@media (max-width: 992px) {
  .section-block_05 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.section-block_05 h2.block-title {
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  line-height: 140%;
}
.section-block_05 h2.block-title span {
  color: var(--color-orange);
}
.section-block_05 .block-subtitle {
  margin: 32px auto;
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
  text-align: center;
}
.section-block_05 .block-subtitle strong {
  font-weight: 600;
}
.section-block_05 .block-content--first-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .section-block_05 .block-content--first-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .section-block_05 .block-content--first-row {
    grid-template-columns: 1fr;
  }
}
.section-block_05 .block-content--first-row .block-content__item--right {
  background-image: url("./../images/block_05_bg_01.png");
  background-repeat: no-repeat;
  background-position: center right;
}
@media (max-width: 576px) {
  .section-block_05 .block-content--first-row .block-content__item--right {
    background-image: none;
  }
}
.section-block_05 .block-content--second-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 992px) {
  .section-block_05 .block-content--second-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .section-block_05 .block-content--second-row {
    grid-template-columns: 1fr;
  }
}
.section-block_05 .block-content--second-row .block-content__item--left {
  background-image: url("./../images/block_05_bg_02.png");
  background-repeat: no-repeat;
  background-position: center right;
}
@media (max-width: 576px) {
  .section-block_05 .block-content--second-row .block-content__item--left {
    background-image: none;
  }
}
.section-block_05 .block-content--second-row .block-content__item--right {
  background-color: var(--color-bg-blue) !important;
  color: var(--color-light);
}
.section-block_05 .block-content .block-content__item {
  padding: 48px;
  background-color: var(--color-light);
  border-radius: 1.5rem;
}
@media (max-width: 576px) {
  .section-block_05 .block-content .block-content__item {
    padding: 24px;
  }
}
.section-block_05 .block-content .block-content__item .block-content__item__wrap {
  max-width: 320px;
}
@media (max-width: 992px) {
  .section-block_05 .block-content .block-content__item .block-content__item__wrap {
    max-width: inherit;
    width: 100%;
  }
}
.section-block_05 .block-content .block-content__item img.block-content__item__logo {
  height: 40px;
  width: auto;
}
.section-block_05 .block-content .block-content__item h3.block-content__item__title {
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1360759494rem + 0.5063291139vw, 1.5rem);
  margin: 76px 0 16px;
  line-height: 30px;
}
@media (max-width: 576px) {
  .section-block_05 .block-content .block-content__item h3.block-content__item__title {
    margin: 38px 0 16px;
  }
}
.section-block_05 .block-content .block-content__item .block-content__item__text {
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
}

.section-block_06 {
  margin-top: var(--main-margin);
  color: var(--color-light);
  background-image: url("./../images/block_06_bg.png");
  min-height: 638px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.section-block_06 .container {
  padding-top: var(--main-padding);
  padding-bottom: var(--main-padding);
  display: flex;
  gap: 16px;
}
@media (max-width: 992px) {
  .section-block_06 .container {
    flex-direction: column;
  }
}
.section-block_06 .container h2.block-title {
  min-width: 420px;
  font-weight: 700;
  font-size: 45px;
  line-height: 140%;
  color: var(--color-light);
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
}
.section-block_06 .container ul.block-content {
  list-style-type: disc;
  list-style-position: inside;
  padding-inline-start: 1ch;
}
.section-block_06 .container ul.block-content li.block-content__item {
  position: relative;
  margin: 8px 0;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.0680379747rem + 0.253164557vw, 1.25rem);
  line-height: 30px;
  background-color: rgba(255, 255, 255, 0.1019607843);
  padding: 24px;
  border-radius: var(--border-radius);
  color: var(--color-light);
}
.section-block_06 .container ul.block-content li.block-content__item::marker {
  color: var(--color-orange);
}
.section-block_06 .container ul.block-content li.block-content__item span {
  color: var(--color-orange);
  font-weight: 600;
}

.section-block_07 {
  margin-top: var(--main-margin);
}
.section-block_07 .container {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
@media (max-width: 992px) {
  .section-block_07 .container {
    flex-direction: column;
    padding-inline: var(--container-padding-x);
  }
}
.section-block_07 .container h2.block-title {
  flex-shrink: 0;
  min-width: 350px;
  font-weight: 700;
  line-height: 140%;
  color: var(--color-orange);
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
}
.section-block_07 .container .block-schedule-wrap {
  display: block;
}
.section-block_07 .container .block-schedule-wrap .schedule-item {
  display: flex;
  margin-bottom: 16px;
  position: relative;
}
@media (max-width: 992px) {
  .section-block_07 .container .block-schedule-wrap .schedule-item {
    flex-direction: column;
  }
}
.section-block_07 .container .block-schedule-wrap .schedule-item::before {
  content: "";
  margin-top: 34px;
  margin-bottom: -50px;
  width: 3px;
  left: -2px;
  position: absolute;
  height: 119%;
  background-color: #0032ff;
}
@media (max-width: 992px) {
  .section-block_07 .container .block-schedule-wrap .schedule-item::before {
    height: 113%;
  }
}
@media (max-width: 576px) {
  .section-block_07 .container .block-schedule-wrap .schedule-item::before {
    height: 110%;
  }
}
.section-block_07 .container .block-schedule-wrap .schedule-item:last-child::before {
  content: none;
}
.section-block_07 .container .block-schedule-wrap .schedule-item:nth-last-child(2)::before {
  height: 105%;
}
.section-block_07 .container .block-schedule-wrap .schedule-item__time {
  min-width: 180px;
  padding-top: 24px;
  padding-left: 34px;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.1360759494rem + 0.5063291139vw, 1.5rem);
  line-height: 30px;
  position: relative;
}
.section-block_07 .container .block-schedule-wrap .schedule-item__time__marker {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  box-shadow: 0 0 6px 6px rgba(0, 50, 255, 0.2);
  left: -9px;
  top: 33px;
  background-color: #0032ff;
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body {
  width: 100%;
  padding: 24px;
  background-color: #e8edfa;
  border-radius: var(--border-radius);
}
@media (max-width: 992px) {
  .section-block_07 .container .block-schedule-wrap .schedule-item__body {
    margin-left: 30px;
    margin-top: 10px;
    width: auto;
  }
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content {
  font-weight: 400;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 1.875rem;
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content strong {
  font-weight: 600;
  font-size: clamp(1.125rem, 1.0680379747rem + 0.253164557vw, 1.25rem);
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content strong span {
  color: var(--color-orange);
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content p {
  margin: 20px 0;
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content p.mini-title {
  font-weight: 600;
  margin-top: 40px;
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content p.mini-title--orange {
  color: var(--color-orange);
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content .schedule-speakers {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content .schedule-speakers .schedule-speaker {
  display: flex;
  gap: 12px;
  padding: 1rem;
  background-color: #ced9f4;
  border-radius: var(--border-radius);
}
@media (max-width: 576px) {
  .section-block_07 .container .block-schedule-wrap .schedule-item__body__content .schedule-speakers .schedule-speaker {
    flex-direction: column;
  }
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content .schedule-speakers .schedule-speaker__logo {
  width: 64px;
  height: 64px;
  border-radius: 100px;
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content .schedule-speakers .schedule-speaker__content {
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
}
.section-block_07 .container .block-schedule-wrap .schedule-item__body__content .schedule-speakers .schedule-speaker__content strong {
  font-weight: 600;
}

.section-block_08 {
  margin-top: var(--main-margin);
  position: relative;
}
.section-block_08 h2.block-title {
  font-weight: 700;
  font-size: 45px;
  line-height: 140%;
  color: var(--color-orange);
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  margin-bottom: 32px;
}

.section-block_09 {
  margin-top: var(--main-margin);
  padding: 136px 0;
  background-color: var(--color-light);
}
@media (max-width: 992px) {
  .section-block_09 {
    padding: 80px 0;
  }
}
.section-block_09 h2.block-title {
  min-width: 310px;
  font-weight: 700;
  line-height: 140%;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  text-align: center;
}
.section-block_09 h2.block-title span {
  color: var(--color-orange);
}
.section-block_09 .block-subtitle {
  font-weight: 400;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
  text-align: center;
  margin-top: 16px;
}
.section-block_09 .block-tickets {
  display: flex;
  margin-top: 32px;
  margin-bottom: 32px;
  gap: 16px;
}
@media (max-width: 992px) {
  .section-block_09 .block-tickets {
    flex-direction: column;
    align-items: center;
  }
}
.section-block_09 .block-tickets .block-ticket {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  max-width: 416px;
  width: 100%;
  background-color: #f9fbff;
  border-radius: 32px;
  padding: 35px;
}
.section-block_09 .block-tickets .block-ticket__title {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1360759494rem + 0.5063291139vw, 1.5rem);
  line-height: 30px;
  padding: 16px 8px;
  border-radius: var(--border-radius);
  background-color: var(--color-light);
  box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.0509803922);
  box-shadow: 0 16px 32px -4px rgba(12, 12, 13, 0.0509803922);
  text-align: center;
}
.section-block_09 .block-tickets .block-ticket__date {
  font-weight: 400;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
  text-align: center;
  margin-top: 16px;
  padding-bottom: 40px;
}
.section-block_09 .block-tickets .block-ticket__price {
  padding-top: 40px;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  border-top: 1px solid #e8f0ff;
  color: var(--color-orange);
}
.section-block_09 .block-content {
  border-top: 1px solid #efefef;
  margin-top: 32px;
  padding-top: 32px;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
}
.section-block_09 .block-content__title {
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1360759494rem + 0.5063291139vw, 1.5rem);
  line-height: 30px;
}
.section-block_09 .block-content span {
  display: block;
  margin-top: 32px;
  color: var(--color-orange);
  font-weight: 500;
  line-height: 30px;
}
.section-block_09 .block-content ul {
  font-weight: 300;
  line-height: 30px;
}
.section-block_09 .block-content ul strong {
  font-weight: 700;
}
.section-block_09 .block-content .block-postscriptum {
  display: block;
  margin-top: 32px;
  font-weight: 400;
  line-height: 30px;
  background-color: #e8edfa;
  border-radius: var(--border-radius);
  padding: 24px;
}

.section-block_10 {
  color: var(--color-light);
  padding: 136px 0;
  background-image: url("./../images/block_10_bg.png");
  min-height: 517px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 992px) {
  .section-block_10 {
    padding: 80px 0;
    height: 300px;
    background-position: right center;
  }
}
.section-block_10 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .section-block_10 .container {
    padding-inline: var(--container-padding-x);
  }
}
.section-block_10 h2.block-title {
  min-width: 310px;
  font-weight: 700;
  line-height: 140%;
  color: var(--color-light);
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
}
@media (max-width: 992px) {
  .section-block_10 h2.block-title {
    text-align: center;
  }
}
.section-block_10 .block-subtitle {
  margin: 24px 0 56px;
  font-weight: 400;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
}
@media (max-width: 992px) {
  .section-block_10 .block-subtitle {
    text-align: center;
  }
}
.section-block_10 .register-button {
  background-color: var(--color-orange);
  padding: 25px 100px;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  color: var(--color-light);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8180379747rem + 0.253164557vw, 1rem);
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.section-block_10 .register-button:hover {
  color: var(--color-orange);
  background-color: var(--color-light);
  border-color: var(--color-light);
}

.section-block_11 {
  margin-top: var(--main-margin);
}
.section-block_11 .block-title {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .section-block_11 .block-title {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.section-block_11 .block-title h2 {
  font-weight: 700;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  padding: 0;
  margin: 0;
}
.section-block_11 .block-title .subscribe-button {
  background-color: var(--color-light);
  padding: 25px 50px;
  border: 1px solid var(--color-orange);
  border-radius: var(--border-radius);
  color: var(--color-orange);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8180379747rem + 0.253164557vw, 1rem);
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.section-block_11 .block-title .subscribe-button:hover {
  color: var(--color-light);
  background-color: var(--color-orange);
  border-color: var(--color-light);
}
.section-block_11 .block-news {
  margin-top: 36px;
  display: flex;
  gap: 72px 32px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .section-block_11 .block-news {
    justify-content: center;
  }
}
.section-block_11 .block-news__item {
  display: flex;
  flex-direction: column;
  max-width: 390px;
  width: 100%;
  transition: var(--transition-duration);
}
.section-block_11 .block-news__item:hover .block-news__item__logo {
  filter: opacity(0.7);
  transition: var(--transition-duration);
}
.section-block_11 .block-news__item__logo {
  width: 100%;
  height: 100%;
  background-image: url(/images/news_logo_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.section-block_11 .block-news__item__date {
  position: absolute;
  top: 16px;
  left: 16px;
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6930379747rem + 0.253164557vw, 0.875rem);
  line-height: 100%;
  vertical-align: middle;
  color: var(--color-light);
  border-radius: var(--border-radius);
  padding: 12px;
}
.section-block_11 .block-news__item__date::before {
  content: url(./../images/ico-calendar.png);
  padding: 10px;
  width: 20px;
  height: 25px;
  top: 0;
  left: 0;
}
.section-block_11 .block-news__item__title {
  margin: 24px 0 16px;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1360759494rem + 0.5063291139vw, 1.5rem);
  line-height: 30px;
}
.section-block_11 .block-news__item__description {
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 30px;
}

.section-block_12 {
  margin-top: var(--main-margin);
  padding-top: 136px;
  border-top: 1px solid #efefef;
}
@media (max-width: 992px) {
  .section-block_12 {
    padding-top: 80px;
  }
}
@media (max-width: 576px) {
  .section-block_12 {
    padding-top: 80px;
  }
}
.section-block_12 .block-title {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .section-block_12 .block-title {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.section-block_12 .block-title h2 {
  font-weight: 700;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
  padding: 0;
  margin: 0;
}
.section-block_12 .block-title .subscribe-button {
  background-color: var(--color-light);
  padding: 25px;
  border: 1px solid var(--color-orange);
  border-radius: var(--border-radius);
  color: var(--color-orange);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8180379747rem + 0.253164557vw, 1rem);
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.section-block_12 .block-title .subscribe-button:hover {
  color: var(--color-light);
  background-color: var(--color-orange);
  border-color: var(--color-light);
}
.section-block_12 .block-content {
  margin-top: 36px;
}

.section-block_13 {
  margin-top: var(--main-margin);
}
.section-block_13 .container {
  display: flex;
}
@media (max-width: 992px) {
  .section-block_13 .container {
    flex-direction: column;
  }
}
.section-block_13 .container h2.block-title {
  min-width: 210px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 24px;
  font-size: clamp(2rem, 1.6297468354rem + 1.6455696203vw, 2.8125rem);
}
@media (max-width: 992px) {
  .section-block_13 .container h2.block-title {
    text-align: center;
  }
}
.section-block_13 .container .block-columns {
  flex-grow: 1;
  display: flex;
  gap: 8px;
}
@media (max-width: 576px) {
  .section-block_13 .container .block-columns {
    flex-direction: column;
  }
}
.section-block_13 .container .block-columns .block-column {
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-block_13 .container .block-columns .block-column .block-item {
  position: relative;
  width: 100%;
  border: 1px solid #e8edfa;
  border-radius: var(--border-radius);
  background-color: var(--color-light);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition-duration);
  color: inherit;
}
.section-block_13 .container .block-columns .block-column .block-item, .section-block_13 .container .block-columns .block-column .block-item:hover {
  text-decoration: none;
}
.section-block_13 .container .block-columns .block-column .block-item::after {
  position: absolute;
  content: url(./../images/ico-arrow.png);
  width: 30px;
  height: 30px;
  top: 8px;
  right: 25px;
  padding: 5px;
  display: flex;
  align-items: center;
  padding-top: 0;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.5s;
}
@media (max-width: 992px) {
  .section-block_13 .container .block-columns .block-column .block-item::after {
    right: 8px;
  }
}
@media (hover: hover) {
  .section-block_13 .container .block-columns .block-column .block-item:hover {
    transition: var(--transition-duration);
    border-color: var(--color-orange-low);
  }
}
@media (hover: none) {
  .section-block_13 .container .block-columns .block-column .block-item:active {
    transition: var(--transition-duration);
    border-color: var(--color-orange-low);
  }
}
.section-block_13 .container .block-columns .block-column .block-item__title {
  width: 100%;
  font-weight: 600;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
  line-height: 100%;
}
.section-block_13 .container .block-columns .block-column .block-item__content__wraper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 200ms;
}
.section-block_13 .container .block-columns .block-column .block-item__content__wraper .block-item__content {
  min-height: 0;
  margin-top: 16px;
  font-weight: 300;
  font-size: clamp(1rem, 0.9430379747rem + 0.253164557vw, 1.125rem);
}
.section-block_13 .container .block-columns .block-column .block-item.active {
  background-color: #e8edfa;
}
.section-block_13 .container .block-columns .block-column .block-item.active .block-item__content__wraper {
  grid-template-rows: 1fr;
}
.section-block_13 .container .block-columns .block-column .block-item.active::after {
  transform: rotate(180deg);
}