@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background: #fff;
}
.header-mobile__hamburger {
  font: inherit;
  display: flex;
  overflow: visible;
  margin: 0;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}
.header-mobile__hamburger-box {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 16px;
}
.header-mobile__hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19);
  transition-duration: 75ms;
}
.header-mobile__hamburger-inner, 
.header-mobile__hamburger-inner:after, 
.header-mobile__hamburger-inner:before {
  position: absolute;
  width: 24px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  background-color: #2B57BC;
}
.header-mobile__hamburger-inner:after, 
.header-mobile__hamburger-inner:before {
  display: block;
  content: "";
}
.header-mobile__hamburger-inner:before {
  top: -8px;
}
.header-mobile__hamburger-inner:after {
  top: 8px;
}
.header {
  padding: 24px 0 0 0;
  margin-bottom: 24px;
}
.header-mobile {
  display: none;
  padding: 5px 16px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
  background: #fff;
  position: relative;
  z-index: 1000;
}
.header-mobile__hamburger.is-active .header-mobile__hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1);
  transform: rotate(45deg);
}
.header-mobile__hamburger.is-active .header-mobile__hamburger-inner:before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease .12s;
  opacity: 0;
}
.header-mobile__hamburger.is-active .header-mobile__hamburger-inner:after {
  top: 0;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
  transform: rotate(-90deg);
}
.header-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  overflow: hidden;
  overflow-y: auto;
  display: none;
}
.header-mobile-menu.active {
  display: flex;
}
.header-mobile-menu::-webkit-scrollbar {
  width: 4px;
}
.header-mobile-menu::-webkit-scrollbar-track {
  background: #fff;
}
.header-mobile-menu::-webkit-scrollbar-thumb {
  background: #2B57BC;
}
.header-mobile-menu::-webkit-scrollbar-thumb:hover {
  background: #2B57BC;
}
.header-mobile-menu__container {
  width: calc(100vw - 43px);
  min-width: calc(100vw - 43px);
  background: #fff;
  padding: 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease-in-out;
}
.header-mobile-menu__container.hidden {
  transform: translateX(-100%);
}
.header-mobile-menu__list-submenu {
  width: calc(100vw - 43px);
  min-width: calc(100vw - 43px);
  background: #fff;
  padding: 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease-in-out;
}
.header-mobile-menu__list-submenu.hidden {
  display: none;
}
.header-mobile-menu__list-submenu-container {
  position: relative;
  transform: translateX(43px);
  transition: transform 0.3s ease-in-out;
}
.header-mobile-menu__list-submenu-container.active {
  transform: translateX(-100%);
}
.header-mobile-menu__list-submenu-back {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #111214;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-mobile-menu__list-submenu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header-mobile-menu__list-submenu-link {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #333;
  text-decoration: none;
}
.header-mobile-menu__list-submenu-link:hover {
  color: #2b57bc;
}
.header-mobile-menu__cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -8px;
}
.header-mobile-menu__cards .header__contact-card {
  border-radius: 16px;
  padding: 16px;
}
.header-mobile-menu__cards .header__contact-content {
  gap: 8px;
}
.header-mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-mobile-menu__link {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #111214;
  text-decoration: none;
  padding: 10px 8px 10px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-mobile-menu__list>:last-child .header-mobile-menu__link {
  border-bottom: none;
}
.header-mobile-menu__link-icon {
  margin-left: auto;
}
.header__container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  gap: 23px;
  align-items: flex-start;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 2px 0;
  width: 267px;
  flex-shrink: 0;
}
.header__logo-image {
  width: 95px;
  height: 104px;
  object-fit: cover;
  border-radius: 0;
}
.header__divider {
  width: 1px;
  height: 92px;
  background: rgba(43, 87, 188, 0.21);
  flex-shrink: 0;
}
.header__logo-text {
  width: 139px;
  font-size: 16px;
  line-height: 1.25;
  color: #2A5680;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #2b57bc;
}
.header__contact-card {
  flex: 1;
  background: #F3F7FA;
  border-radius: 16px;
  display: flex;
  align-items: stretch;
  padding: 16px 40px;
}
.header__contact-card--social .header__contact-content {
  gap: 8px;
}
.header__contact-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.header__contact-text {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.header__contact-phones {
  display: flex;
  gap: 16px;
}
.header__phone {
  font-size: 16px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.header__phone:hover {
  color: #2b57bc;
}
.header__link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  transition: color 0.2s;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #2b57bc;
}
.header__link:hover {
  color: rgba(43, 87, 188, 0.8);
}
.header__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header__actions .header__link {
  gap: 16px;
}
.header__action {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.header__social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E2EBF7;
  transition: opacity 0.2s;
}
.header__social-link:hover {
  opacity: 0.8;
}
.header__social-icon {
  width: 24px;
  height: 24px;
  color: #2A5680;
}
.header__icon {
  color: #2A5680;
  flex-shrink: 0;
}
.menu {
  padding: 0;
  margin-bottom: 24px;
}
.menu__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  padding: 10px 0;
  margin: 0 -16px;
}
.menu__item {
  display: flex;
  align-items: center;
  position: relative;
}
.menu__link--dropdown {
  position: relative;
}
.menu__item:hover .menu__link--dropdown + .menu__dropdown-content {
  display: flex;
}
.menu__dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 20px 0 rgba(0, 38, 124, 0.16);
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
  min-width: 383px;
}
.menu__dropdown-content-item {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #333;
  text-decoration: none;
}
.menu__dropdown-content-item:hover {
  color: #1840b2;
}
.menu__link {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #111214;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.menu__link:hover {
  opacity: 0.7;
}
.menu__link--dropdown {
  gap: 16px;
}
.menu__dropdown-icon {
  width: 10px;
  height: 6px;
  color: #2559DB;
  flex-shrink: 0;
}
.menu__divider {
  width: 1px;
  height: 21px;
  background: rgba(0, 48, 157, 0.14);
  flex-shrink: 0;
}
.menu__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-right: 8px;
}
.menu__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #F3F7FA;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.2s;
}
.menu__action-btn:hover {
  opacity: 0.8;
}
.menu__action-btn:hover {
  transform: scale(1.1);
}
.menu__action-icon {
  width: 24px;
  height: 24px;
  color: #0F1322;
  transition: transform 0.2s;
}
.search {
  position: fixed;
  top: 190px;
  max-width: 998px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  display: none;
}
.search.active {
  display: flex;
}
.search__input {
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 24px 150px 24px 24px;
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #2b57bc;
}
.search__input:focus {
  outline: none;
}
.search__input::placeholder {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.2);
}
.search__button {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: #2b57bc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 16px 16px;
  border: 0;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}
.search__button:hover {
  opacity: 0.9;
}
.search__button-icon-mobile {
  display: none;
}
.search-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none;
}
.search-overlay.active {
  display: block;
}
.content__container {
  max-width: 1400px;
  margin: 0 auto;
}
.banner-swiper {
  padding-bottom: 40px;
  margin-bottom: 32px;
}
.banner-swiper .swiper-slide {
  border-radius: 24px;
  overflow: hidden;
}
.banner-swiper .swiper-slide img {
  display: block;
  width: 100%;
}
.swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 16px !important;
  background: rgba(0, 48, 157, 0.11);
  opacity: 1 !important;
}
.swiper .swiper-pagination-bullet:hover,
.swiper .swiper-pagination-bullet-active {
  background: #2b57bc;
}
.swiper .swiper-pagination {
  bottom: 0 !important;
}
.banner-swiper .btn {
  padding: 15px 24px;
  border: 1px solid #fff;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.banner-swiper .btn__icon {
  transition: transform 0.2s;
}
.banner-swiper .btn:hover {
  opacity: 0.8;
}
.banner-swiper .btn:hover .btn__icon {
  transform: translateX(4px);
}
.banner-swiper__content {
  position: absolute;
  top: 48px;
  left: 83px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 546px;
  z-index: 2;
}
.banner-swiper__content-year {
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
  color: #65bcff;
  margin-bottom: 16px;
}
.banner-swiper__content-title {
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 23px;
}
.banner-swiper .swiper-slide .banner-swiper__image-mobile {
  display: none;
}
.page-block-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 24px;
}
.format-learn {
  margin-bottom: 64px;
}
.format-learn__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.format-learn__item {
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2b57bc;
  background: #f3f7fa;
  border-radius: 16px;
  padding: 24px 24px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: calc(50% - 16px);
}
.format-learn__item:hover {
  opacity: 0.8;
}
.format-learn__item--purple {
  color: #7c51a8;
  background: #faf1ff;
}
.format-learn__item-title-icon {
  width: 48px;
  height: 48px;
}
.format-learn__item-title-icon img,
.format-learn__item-title-icon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.programs-variants {
  margin-bottom: 64px;
}
.programs-variants__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.programs-variants__item {
  width: calc(33.3% - 16px);
  border: 2px solid rgba(43, 87, 188, 0.1);
  border-radius: 16px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.11111;
  letter-spacing: -0.02em;
  color: #2b57bc;
  text-decoration: none;
  transition: opacity 0.2s;
  min-height: 112px;
}
.programs-variants__item:hover {
  opacity: 0.8;
}
.programs-variants__item:hover .programs-variants__item-icon-link  {
  transform: translateX(8px);
}
.programs-variants__item-icon {
  border-radius: 50%;
  width: 64px;
  min-width: 64px;
  height: 64px;
  background: #f3f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.programs-variants__item-icon img,
.programs-variants__item-icon svg {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.programs-variants__item-icon-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid #2c4eaf;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.programs-variants__item-text-descr {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.16667;
  letter-spacing: -0.02em;
  color: #2b57bc;
}
.programs-variants__item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
  position: relative;
}
.programs-variants__item-text::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(43, 87, 188, 0.21);
}
.where-start {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 24px 24px 32px;
  background: #2C4EAF url(../img/bg-where-start.svg) no-repeat 0 0;
  border-radius: 16px;
  margin-bottom: 64px;
}
.where-start .page-block-title {
  margin-bottom: 0;
  line-height: 1.33333;
  color: #fff;
}
.where-start__list {
  display: flex;
  gap: 16px;
}
.where-start__item {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #2b57bc;
  transition: opacity 0.2s;
  padding: 24px 24px;
  box-shadow: 0 4px 16px 0 rgba(24, 64, 178, 0.04);
  background: #fff;
  border-radius: 16px;
  width: 100%;
}
.where-start__item-icon {
  background: #2c4eaf;
  border-radius: 50%;
  padding: 16px 16px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}
.where-start__item--green {
  color: #0088bd;
}
.where-start__item--green .where-start__item-icon {
  background: #0088bd;
}
.where-start__item--purple {
  color: #7c51a8;
}
.where-start__item--purple .where-start__item-icon {
  background: #7c51a8;
}
.where-start__item:hover .where-start__item-icon {
  opacity: 0.8;
  transform: translateX(4px);
}
.where-start__item-text {
  flex-grow: 1;
}
.content-colums {
  display: flex;
  gap: 56px;
  margin-bottom: 64px;
}
.content-colums__item {
  flex: 1;
}
.content-colums__item--left {
  flex: 1;
}
.content-colums__item--right {
  flex: 1;
  max-width: 508px;
}
.popular-programs {
  margin-bottom: 64px;
}
.popular-programs .page-block-title {
  margin-bottom: 32px;
}
.popular-programs__list {
  display: flex;
  gap: 24px;
  row-gap: 25px;
  flex-wrap: wrap;
}
.popular-programs__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 12px);
  border-radius: 24px;
  padding: 24px;
  background: #f3f7fa;
}
.popular-programs__item-title {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(180deg, #3167d1 0%, #214391 100%);
  border-radius: 8px;
  position: relative;
  z-index: 2;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.popular-programs__item-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.popular-programs__item--blue .popular-programs__item-title::before {
  background: url(../img/bg-popular-programs-blue.svg) no-repeat center center;
}
.popular-programs__item--purple .popular-programs__item-title {
  background: linear-gradient(180deg, #8b57bf 0%, #5d3883 100%);
}
.popular-programs__item--purple .popular-programs__item-title::before {
  background: url(../img/bg-popular-programs-purple.svg) no-repeat center center;
}
.popular-programs__item--green .popular-programs__item-title {
  background: linear-gradient(180deg, #0088bd 0%, #005a7d 100%);
}
.popular-programs__item--green .popular-programs__item-title::before {
  background: url(../img/bg-popular-programs-green.svg) no-repeat center center;
}
.popular-programs__item-divider {
  background: rgba(14, 78, 152, 0.12);
  width: 100%;
  height: 1px;
}
.popular-programs__item-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.14286;
  letter-spacing: -0.02em;
  color: #2b57bc;
}
.popular-programs__item-list-item--purple {
  color: #a554d0;
}
.popular-programs__item-list-item {
  display: flex;
  gap: 8px;
}
.btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.8;
}
.btn--blue {
  border: 1px solid rgba(43, 87, 188, 0.4);
  color: #2b57bc;
}
.btn--blue-fill {
  background: #2b57bc;
  color: #fff;
  transition: all .3s;
}
.btn--blue-fill:hover {
  opacity: 0.8;
}
.help-block {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px;
  background: #7c51a8;
  border-radius: 16px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 56px;
}
.help-block__text {
  flex-grow: 1;
}
.help-block__icon {
  display: flex;
}
.help-block__icon img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tabs__nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2b57bc;
  text-decoration: none;
  transition: opacity 0.2s;
  border-radius: 8px 8px 0 0;
  background: #f3f7fa;
  flex-grow: 1;
  width: 50%;
}
.tabs__nav-item:hover,
.tabs__nav-item--active {
  background: #2b57bc;
  color: #fff;
}
.accordion__item-title {
  padding: 10px 8px;
  background: #f3f7fa;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.33333;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #333;
  display: flex;
  align-items: center;
}
.accordion__item-title-icon {
  margin-left: auto;
  display: none;
  transition: transform 0.2s;
}
.list {
  margin-bottom: 24px;
  font-size: 14px;
}
.list__item {
  padding: 7px 16px;
  border-bottom: 1px solid rgba(14, 78, 152, 0.12);
}
.list__item:last-child {
  border-bottom: none;
}
.tabs__content-item {
  display: none;
}
.tabs__content-item--active {
  display: block;
}
.page-block-title-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.page-block-title-wrap .link {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #2b57bc;
}
.page-block-title-wrap .link:hover {
  text-decoration: none;
}
.page-block-title-wrap .page-block-title {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.upcoming-events__list {
  padding: 24px 48px;
  background: #f3f7fa;
  border-radius: 24px;
}
.upcoming-events__list-item {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(14, 78, 152, 0.12);
}
.upcoming-events__list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.upcoming-events__list-item-content {
  display: flex;
}
.upcoming-events__list-item-content-data {
  flex-grow: 1;
  padding-right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.upcoming-events__list-item-content-data-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.14286;
  letter-spacing: -0.02em;
  color: #333;
}
.upcoming-events__list-item-content-data-item--calendar {
  color: #2b57bc;
}
.news__list {
  overflow: hidden;
}
.news__list-item-image {
  border-radius: 16px;
  position: relative;
}
.news__list-item-image img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.2s;
}
.news__list-item-image:hover img {
  transform: scale(1.05);
}
.news__list-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news__list-item-content-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #333;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(43, 87, 188, 0.12);
  margin-bottom: 16px;
}
.news__list-item-content-date {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: -0.02em;
  color: #2b57bc;
}
.program-composition__list-controls,
.news__list-controls {
  display: flex;
  gap: 8px;
}
.program-composition__list-controls {
  margin-bottom: 8px;
}
.news__list-item-next,
.news__list-item-prev,
.reviews__list-item-next,
.reviews__list-item-prev,
.video__list-item-prev,
.video__list-item-next,
.program-composition__list-item-next,
.program-composition__list-item-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f7fa;
  transition: opacity 0.2s;
  cursor: pointer;
}
.news__list-item-next:hover,
.news__list-item-prev:hover,
.reviews__list-item-next:hover,
.reviews__list-item-prev:hover,
.video__list-item-prev:hover,
.video__list-item-next:hover,
.program-composition__list-item-next:hover,
.program-composition__list-item-prev:hover {
  opacity: 0.7;
}
.news {
  margin-bottom: 64px;
}
.page-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #333;
  margin-bottom: 64px;
}
.page-text p {
  margin-bottom: 16px;
}
.other-projects {
  margin-bottom: 64px;
}
.other-projects__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.other-projects__item {
  padding: 20px 24px;
  background: #f3f7fa;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: calc(33.3% - 16px);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.33333;
  letter-spacing: -0.02em;
  color: #2b57bc;
  text-decoration: none;
}
.other-projects__item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.other-projects__item-content-descr {
  font-size: 14px;
  line-height: 1.71429;
}
.other-projects__item-content-title--uppercase {
  text-transform: uppercase;
}
.other-projects__item-image {
  width: 130px;
  min-width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.other-projects__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.other-projects__item:hover .other-projects__item-image {
  transform: rotate(6deg);
}
.other-projects__item:hover {
  color: rgba(43, 87, 188, 0.8);
}
.footer {
  background: #204bae;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer__container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 52px 0;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  min-width: 275px;
}
.footer__social-links {
  display: flex;
  gap: 10px;
}
.footer__social-links-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: opacity 0.2s;
}
.footer__social-links-item:hover {
  background: rgba(255, 255, 255, 0.3);
}
.footer__divider {
  min-width: 1px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 32px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
}
.footer__menu-item {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.footer__menu-item:hover {
  text-decoration: underline;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 340px;
}
.footer__link {
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__address-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff
}
.footer__address-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__email {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__email-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer__email-value:hover {
  text-decoration: none;
}
.footer__email-title {
  font-weight: 600;
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: -0.02em;
}
.footer__copyright-desclaimer {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.5;
  padding-top: 4px;
}
.page-title {
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  color: #2b57bc;
  margin-bottom: 40px;
}
.neuro-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.neuro-blocks__item {
  width: calc(25% - 18px);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f3f7fa;
  min-height: 145px;
  position: relative;
}
.neuro-blocks__item-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #2b57bc;
}
.neuro-blocks__item-list {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.neuro-blocks__item-text {
  font-size: 14px;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-align: center;
}
.neuro-blocks__item-list-item span {
  color: #2b57bc;
}
.neuro-blocks__item--number {
  align-items: center;
}
.neuro-blocks__item--number .neuro-blocks__item-title {
  text-align: center;
}
.neuro-blocks__item-number {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #333;
  padding: 4px 24px;
  border-radius: 40px;
  background: #fff;
  margin: auto 0;
  text-align: center;
}
.content {
  padding-top: 32px;
}
.btn-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}
.btn-action .btn {
  padding: 10px 40px;
  margin: 0 16px;
  text-align: center;
}
.btn-action__divider {
  flex-grow: 1;
  height: 1px;
  background: rgba(43, 87, 188, 0.21);
}
.blockquote {
  padding: 24px 40px;
  background: #f3f7fa;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.02em;
  color: #333;
  margin-bottom: 16px;
}
.blockquote-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blockquote-content-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.page-block-title-badge {
  padding: 6px 8px;
  background: #f3f7fa;
  border-radius: 40px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #2b57bc;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
}
.page-block-title-badge svg {
  width: 16px;
  height: 16px;
}
.disciplines {
  margin-bottom: 48px;
}
.disciplines__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #333;
  border-radius: 16px;
  padding: 24px;
  background: #f3f7fa;
}
.disciplines__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.disciplines__list-item-icon {
  min-width: 16px;
  width: 16px;
  height: 16px;
  border: 1px solid #2c4eaf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.neuro-blocks--module .neuro-blocks__item {
  padding: 24px 40px 16px 40px;
}
.neuro-blocks--module .neuro-blocks__item-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #333;
}
.neuro-blocks__item--purple {
  background: #eef0ff;
}
.neuro-blocks__item--pink {
  background: #f3efff;
}
.neuro-blocks__item--blue {
  background: #e1f2ff;
}
.neuro-blocks__item--green {
  background: #e5f3ec;
}
.neuro-blocks__item-ques {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.neuro-blocks__item-ques:hover .program-composition-table-head-item-ques-text {
  display: block;
  opacity: 1;
  visibility: visible;
}
.program-composition-table {
  padding: 16px;
  background: #f3f7fa;
  border-radius: 24px;
}
.program-composition-table-head {
  display: flex;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #2b57bc;
  margin-bottom: 16px;
  padding: 0 16px;
}
.program-composition-table-head-item {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.program-composition-table-head>:first-child {
  justify-content: flex-start;
}
.program-composition-table-body-row {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
}
.program-composition-table-body-item {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.14286;
  letter-spacing: -0.02em;
  text-align: center;
  color: #333;
}
.program-composition-table-head>:first-child,
.program-composition-table-body-row>:first-child {
  max-width: 224px;
  min-width: 224px;
  justify-content: flex-start;
}
.program-composition-table-head>:nth-child(2),
.program-composition-table-body-row>:nth-child(2) {
  max-width: 125px;
  min-width: 125px;
}
.program-composition-table-head>:nth-child(3),
.program-composition-table-body-row>:nth-child(3),
.program-composition-table-head>:nth-child(4),
.program-composition-table-body-row>:nth-child(4),
.program-composition-table-head>:nth-child(5),
.program-composition-table-body-row>:nth-child(5) {
  max-width: 169px;
  min-width: 169px;
}
.program-composition-table-head>:nth-child(6),
.program-composition-table-body-row>:nth-child(6) {
  max-width: 110px;
  min-width: 110px;
}
.program-composition-table-head>:nth-child(7),
.program-composition-table-body-row>:nth-child(7) {
  max-width: 100px;
  min-width: 100px;
}
.program-composition-table-body-item-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: 1px solid rgba(43, 87, 188, 0.21);
}
.program-composition-table-body-item-actions .btn {
  white-space: nowrap;
}
.program-composition-table-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.label {
  padding: 2px 8px;
  background: #f3f7fa;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: -0.02em;
  text-align: center;
  color: #333;
}
.label {
  padding: 2px 8px;
  background: #f3f7fa;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: -0.02em;
  text-align: center;
  color: #333;
}
.label--pink {
  background: #efeafd;
}
.label--blue {
  background: #e1f2ff;
}
.label--green {
  background: #E4F3EC;
}
.label--violet {
  background: #EEF0FE;
}
.label-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.cost {
  background: #f3f7fa;
  border-radius: 20px;
  padding: 6px 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.14286;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2b57bc;
}
.program-composition-table-body-row>:nth-child(7) {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.14286;
  letter-spacing: -0.02em;
  text-align: center;
  color: #d3686a;
}
.program-composition {
  margin-bottom: 48px;
}
.program-composition-mobile__list-item {
  padding: 16px;
  background: #f3f7fa;
  border-radius: 16px;
}
.program-composition-mobile__content {
  padding: 6px 8px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 1px 0;
  font-size: 14px;
}
.program-composition-mobile__content--line {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.program-composition-mobile__content .title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: -0.02em;
  color: #2b57bc;
  min-width: 120px;
}
.sale {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.14286;
  letter-spacing: -0.02em;
  color: #d3686a;
}
.program-composition-mobile {
  display: none;
  position: relative;
  padding-bottom: 44px;
  overflow: hidden;
}
.swiper-program-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 48, 157, 0.11);
  opacity: 1;
}
.swiper-program-pagination .swiper-pagination-bullet-active {
  background: #2b57bc;
}
.swiper-teachers .swiper-slide {
  padding: 31px 24px;
  background: #f3f7fa;
  border-radius: 16px;
}
.swiper-teachers .news__list-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-teachers .news__list-item-image img {
  border-radius: 50%;
  width: 184px;
  height: 184px;
  object-fit: cover;
}
.swiper-teachers .news__list-item-content-date {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: -0.02em;
  text-align: center;
  color: #333;
}
.swiper-teachers .news__list-item-content-title {
  padding: 16px 0 0 0;
  border-top: 1px solid rgba(43, 87, 188, 0.12);
  margin-top: 0;
  border-bottom: 0;
  text-align: center;
}
.doc-template {
  margin-bottom: 32px;
}
.doc-template__list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.blockquote-content-title span {
  color: #2b57bc;
}
.news--video .news__list-item-content-title {
  padding-bottom: 0;
  border: 0;
  margin-bottom: 0;
}
.news__list-item-image-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2b57bc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews__list-item {
  padding: 48px;
  border-radius: 16px;
  background: #f3f7fa;
}
.reviews {
  margin-bottom: 48px;
}
.reviews__list-item-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.reviews__list-item-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: -0.02em;
  color: #333;
}
.reviews__list {
  overflow: hidden;
  margin-bottom: 48px;
}
.other-view-learn {
  margin-bottom: 48px;
}
.other-view-learn-block {
  padding: 24px 32px;
  border: 2px solid rgba(43, 87, 188, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.other-view-learn-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f3f7fa;
}
.other-view-learn-block__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #333;
  flex-grow: 1;
}
.other-view-learn-block__content-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.11111;
  letter-spacing: -0.02em;
  color: #2b57bc;
}
.other-view-learn-block__divider {
  background: rgba(43, 87, 188, 0.21);
  width: 1px;
  height: 64px;
}
.other-view-learn-block__content-text--mobile {
  display: none;
}
.form-consultation-form {
  padding: 48px 0;
}
.form-consultation-form__content {
  width: 690px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}
.form-consultation-form {
  background: #f3f7fa;
  border-radius: 16px;
}
.form-consultation-form .page-block-title {
  text-align: center;
  margin-bottom: 0;
}
.form-consultation-form__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-consultation-form__item-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #333;
}
.form-consultation-form__item-input {
  background: #fff;
  height: 52px;
  border: 2px solid rgba(43, 87, 188, 0.4);
  border-radius: 8px;
  padding: 16px;
  color: #2b57bc;
  font-size: 16px;
  letter-spacing: -0.02em;
  outline: none;
}
.form-consultation-form__item-input:focus {
  border: 2px solid #2b57bc;
}
.form-consultation-form__item-input::placeholder {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #ababab;
}
.form-consultation-form__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.53846;
  letter-spacing: -0.02em;
  color: #333;
  user-select: none;
}
.checkbox-container a {
  color: #2b57bc;
  text-decoration: underline;
}
.checkbox-container a:hover {
  text-decoration: none;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(43, 87, 188, 0.4);
  border-radius: 6px;
  width: 24px;
  height: 24px;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/icon-checkbox.svg) no-repeat 50% 50%;
}
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #333;
  user-select: none;
  min-height: 25px;
  display: flex;
  align-items: center;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid rgba(43, 87, 188, 0.4);
  border-radius: 50%;
}
.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-container input:checked ~ .checkmark:after {
  display: block;
}
.radio-container .checkmark:after {
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2b57bc;;
}
.form-consultation-form__item-radio {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-submit {
  margin: 0 auto;
  border-radius: 8px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}
.structure-program .page-block-title {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
.structure-program .page-block-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(43, 87, 188, 0.21);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.structure-program .page-block-title span {
  padding: 0 16px;
  background: #fff;
  position: relative;
}
.structure-program__list {
  display: flex;
  gap: 23px;
}
.structure-program__list-item {
  border-radius: 16px;
  padding: 24px;
  background: #f3f7fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(20% - 16px);
  text-align: center;
  position: relative;
}
.structure-program__list-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -43px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff url(../img/icon-plus.svg) no-repeat 50% 50%;
  z-index: 2;
}
.structure-program__list-item-icon {
  background: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.structure-program__list-item-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #2b57bc;
  margin-bottom: 8px;
}
.structure-program__list-item-text {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #333;
}
.structure-program__list-item--last::before {
  background: #fff url(../img/icon-equals.svg) no-repeat 50% 50%;
  left: -43px;
  right: auto;
}
.structure-program {
  margin-bottom: 48px;
}
.page-text--more {
  margin-bottom: 24px;
}
.page-text-line {
  display: flex;
  gap: 64px;
  margin-bottom: 40px;
}
.page-text-line img {
  max-width: 510px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.page-text__list {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.02em;
  color: #333;
}
.ul-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ul-list-item::marker {
  color: #2b57bc;
}
.accordion--big {
  margin-bottom: 48px;
}
.accordion--big .accordion__item-title {
  padding: 5px 0;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  color: #2b57bc;
  background: none;
  cursor: pointer;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(43, 87, 188, 0.1);
}
.accordion--big .accordion__item-title-icon {
  border: 1px solid #2b57bc;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.accordion--big .accordion__item-content {
  display: none;
}
.accordion--big .accordion__item-content.active {
  display: block;
}
.accordion--big .accordion__item-title.active {
  border-bottom: none;
}
.doc-template__item-link img {
  max-width: 100%;
}
.event-info__img {
  width: 510px;
  max-width: 510px;
  min-width: 510px;
  border-radius: 24px;
  overflow: hidden;
}
.event-info {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
}
.event-info__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-info .neuro-blocks__item {
  width: calc(33.3% - 18px);
  min-height: auto;
}
.neuro-blocks__item-number-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.neuro-blocks__item-number-items .neuro-blocks__item-number {
  font-size: 20px;
}
.event-info .neuro-blocks {
  margin-bottom: 24px;
}
.event-info .disciplines__list {
  padding: 16px 0 0 0;
  margin-left: -32px;
}
.event-info .disciplines__list a {
  text-decoration: underline;
  color: #2b57bc;
}
.event-info .disciplines__list a:hover {
  text-decoration: none;
}
.tabs--full {
  margin-bottom: 48px;
}
.tabs--full .tabs__nav-item {
  flex-grow: 0;
  width: auto;
  padding: 12px 40px;
}
.tabs__content-item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tabs__content-item-content .ul-list {
  padding-left: 16px;
}
.program-composition-mobile__content .program-composition-table-body-item-actions {
  width: 100%;
  flex-direction: row;
  padding-left: 0;
}
.program-composition-mobile__content .program-composition-table-body-item-actions .btn {
  flex-grow: 1;
}
.program-composition-table-head-item-ques {
  position: relative;
  display: flex;
  cursor: pointer;
}
.program-composition-table-head-item-ques:hover .program-composition-table-head-item-ques-text {
  display: block;
  opacity: 1;
  visibility: visible;
}
.program-composition-table-head-item-ques-text {
  position: absolute;
  bottom: 38px;
  right: -39px;
  width: 100%;
  min-width: 348px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  z-index: 1;
  box-shadow: 0 2px 10px 0 rgba(0, 38, 124, 0.1);
  background: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.46154;
  letter-spacing: -0.02em;
  color: #333;
  display: none;
  opacity: 0;
  transition: opacity 0.2s;
  visibility: hidden;
}
.program-composition-table-head-item-ques-text:before {
  content: "";
  display: block;
  width: 9px;
  height: 4px;
  background: #fff;
  position: absolute;
  top: 100%;
  right: 47px;
  z-index: 2;
  background: url(../img/icon-arrow.svg) no-repeat 0 0;
}
