@charset "UTF-8";

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_bold.woff2") format("woff2"), url("../fonts/gotham_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_medium.woff2") format("woff2"), url("../fonts/gotham_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_regular.woff2") format("woff2"), url("../fonts/gotham_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: TimesGothic;
  font-display: swap;
  src: url("../fonts/TimesGothic.woff2") format("woff2"), url("../fonts/TimesGothic.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

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

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #000000;
  font-size: 18px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 100px 0;
}

.title {
  color: #060A37;
  font-size: 35px;
  line-height: 113%;
  margin-bottom: 50px;
  font-weight: 400;
}

.blue-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 40px;
  color: #FFF;
  font-size: 16px;
  line-height: 112%;
  text-align: center;
  background: #052C8B;
  transition: 0.2s ease-in-out;
}

.blue-btn:hover {
  background: #1e4bbd;
}

.wrapper {
  padding: 50px 0;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #ffffff;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.header__top {
  background: #ffffff;
}

.header__top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__lang-item {
  padding: 5px 10px;
  font-size: 14px;
  color: #060A37;
  letter-spacing: -0.18px;
  border-radius: 17.5px;
  border: 1px solid #45BFFF;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.header__lang-item:hover {
  background: #45BFFF;
}

.header__lang-item.active {
  background: #45BFFF;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__socials a {
  display: flex;
  transition: 0.2s ease-in-out;
}

.header__socials a:hover {
  transform: scale(1.05);
}

.header__bot {
  position: relative;
  background: #052C8B;
}

.header__bot-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav {
  width: 100%;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header__nav-item:nth-child(4) {
  margin-right: 60px;
}

.header__nav-item:nth-child(5) {
  margin-left: 60px;
}

.header__nav-link {
  font-size: 16px;
  color: #ffffff;
}

.header__nav-link:hover {
  text-decoration: underline;
}

.header-space {
  padding-top: 88px;
}
.header__nav-link.active {
    position: relative;
    font-weight: 600;
    color: #45BFFF;
}

.header__nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #45BFFF;
    border-radius: 2px;
}

.footer {
  margin-top: auto;
  background: #0077DC;
}

.footer__container {
  padding: 50px 0;
  display: flex;
  align-items: flex-start;
}

.footer__col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-right: 100px;
}

.footer__col-pol {
  font-size: 14px;
  opacity: 0.8;
  color: #ffffff;
}

.footer__col-pol:hover {
  text-decoration: underline;
}

.footer__logo {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__nav-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.footer__nav-list li {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  gap: 10px;
  max-width: 300px;
  line-height: 125%;
}

.footer__nav-list li svg {
  flex-shrink: 0;
}

.footer__nav-list li a {
  transition: 0.2s ease-in-out;
}

.footer__nav-list li a:hover {
  color: #052C8B;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer__bot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 14px;
  color: #ffffff;
}

.footer__bot-container a,
.footer__bot-container span {
  opacity: 0.5;
}

.footer__bot-container a {
  transition: 0.2s ease-in-out;
}

.footer__bot-container a:hover {
  color: #052C8B;
}

.breadcrumbs__container {
  padding: 50px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
  font-size: 14px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  color: #040B37;
  transition: 0.2s ease-in-out;
}

.breadcrumbs__list-link:hover {
  color: #052C8B;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #45BFFF;
}

.hero__slider { position: relative; }

/* слайд — на всю ширину, высоту оставь как было */
.hero__slider .swiper-slide{
    /* УБРАТЬ width:100px */
    width: 100%; /* или вообще эту строку не задавать */
    height: calc(100dvh - 88px);
}

.hero__slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* пагинация — пусть будет центром и повыше */
.hero__pagination.swiper-pagination{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    z-index: 3;
    width: auto;
    display: flex;
    gap: 10px;
}

/* белые кружочки */
.hero .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: #fff;
    opacity: .5;
    transition: transform .2s, opacity .2s;
    border: 1px solid rgba(255,255,255,.9);
}
.hero .swiper-pagination-bullet-active{
    opacity: 1;
    transform: scale(1.1);
}
.preview__block {
  display: flex;
}

.preview__image {
  width: 50%;
  height: -webkit-fill-available;
}

.preview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.preview__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  background: #45BFFF;
  padding: 70px;
}

.preview__title {
  margin-bottom: 20px;
  font-size: 40px;
  color: #060A37;
  font-weight: 400;
}

.preview__text {
  margin-bottom: 35px;
  line-height: 160%;
  color: #060A37;
  font-size: 14px;
}

.news {
  background: url("../img/news-bg.png") center/cover no-repeat;
  background-color: #45BFFF;
}

.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.news__title {
  margin-bottom: 0 !important;
}

.news__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.news__item {
  display: flex;
}

.news__item-img {
  position: relative;
  width: 50%;
  height: 100%;
}

.news__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__item-link {
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.news__item-info {
  display: flex;
  flex-direction: column;
  width: 50%;
  background: #ffffff;
  padding: 40px 30px;
}

.news__item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1D1D36;
  transition: 0.2s ease-in-out;
}

.news__item-title:hover {
  color: #052C8B;
}

.news__item-desc {
  padding-bottom: 20px;
  font-size: 14px;
  opacity: 0.8;
  border-bottom: 1px solid rgba(151, 151, 151, 0.5);
  line-height: 130%;
  margin-bottom: 10px;
}

.news__item-date {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
}

.advert {
  background: url("../img/advert-bg.jpg") center/cover no-repeat;
}

.advert__title {
  color: #ffffff;
}

.advert__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.advert__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  background: #ffffff;
  color: #040B37;
  transition: 0.2s ease-in-out;
}

.advert__item:hover {
  background: #0077DC;
  color: #ffffff;
}

.advert__item:hover .advert__item-link {
  background: #ffffff;
  color: #040B37;
}

.advert__item:hover .advert__item-num {
  color: rgba(255, 255, 255, 0.53);
}

.advert__item-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

.advert__item-text {
  margin-bottom: 30px;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 130%;
}

.advert__item-link {
  margin-top: auto;
  padding: 10px 20px;
  color: #ffffff;
  background: #052C8B;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}

.advert__item-num {
  position: absolute;
  top: 30px;
  right: 20px;
  color: rgba(5, 44, 139, 0.53);
  font-size: 200px;
  font-weight: 700;
  opacity: 0.1;
  transition: 0.2s ease-in-out;
}

.event {
  position: relative;
  overflow: hidden;
}

.event.gallery-page::before {
  display: none;
}

.event::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  background: #052C8B;
  z-index: -1;
}

.event__row {
  display: flex;
  flex-wrap: wrap;
}

.event__row:nth-child(even) {
  flex-direction: row-reverse;
}

.event__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #45BFFF;
  text-align: center;
  padding: 35px 16px;
  width: 25%;
}

.event__item-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #060A37;
  line-height: 115%;
}

.event__item-text {
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.8;
  line-height: 128%;
  color: #060A37;
}

.event__item-link {
  margin-top: auto;
  padding: 10px 20px;
  color: #ffffff;
  background: #052C8B;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}

.event__item-link:hover {
  background: #0077DC;
}

.event__img {
    width: 25%;
    height: auto;
}

.event__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event__sliders {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-bottom: 10px;
}

.event__sliders .swiper-wrapper {
  transition-timing-function: linear !important;
}

.event__sliders .swiper-wrapper .swiper-slide {
  width: 390px;
  height: 270px;
}

.event__sliders .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 410px 1fr;
  grid-template-columns: 410px 1fr;
  grid-gap: 45px;
  padding: 70px;
  background: url("../img/ct-bg.png") center/cover no-repeat;
  background-color: #45BFFF;
}

.contact__info {
  display: flex;
  flex-direction: column;
}

.contact__items {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 40px;
  background: #052C8B;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  transition: 0.2s ease-in-out;
  width: 100%;
}

.contact__item:hover {
  background: #0077DC;
}

.contact__item svg {
  flex-shrink: 0;
}

.contact__map {
  height: 100%;
  width: 100%;
}

.section__container {
  padding-bottom: 100px;
}

.articles-inner__image {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.articles-inner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.articles-inner__content {
  display: flex;
  flex-direction: column;
}

.articles-inner__title {
  margin-bottom: 30px;
}

.articles-inner__text p {
  opacity: 0.8;
  font-size: 14px;
  color: #1D1D36;
  line-height: 160%;
}

.history {
  padding-bottom: 50px;
  overflow: hidden;
}

.history__wrapper {
  position: relative;
}

.history__wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 38px;
  border: 1px solid #052C8B;
}

.history__wrapper::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100px;
  right: 0;
  top: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.26) 100%);
  z-index: 2;
}

.history__slider {
  overflow: unset;
}

.history__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 200px;
}

.history__item.swiper-slide-active .history__item-circle {
  background: #040B37;
}

.history__item-date {
  margin-bottom: 15px;
  font-size: 14px;
  color: #052C8B;
}

.history__item-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #052C8B;
  margin-bottom: 20px;
  background: #fff;
}

.history__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #1D1D36;
  line-height: 112%;
  margin-bottom: 10px;
}

.history__item-desc {
  font-size: 14px;
  line-height: 130%;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.section__title {
  margin-bottom: 0 !important;
}

.section__arrows {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section__arrow {
  display: flex;
  transition: 0.2s ease-in-out;
}

.section__arrow:hover {
  transform: scale(1.1);
}

.admins {
  overflow: hidden;
}

.admins__slider {
  overflow: unset;
}

.admins__item {
  width: 250px;
}

.admins__item-img {
  height: 200px;
  width: 100%;
}

.admins__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.admins__item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: #45BFFF;
}

.admins__item-name {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  color: #060A37;
}

.admins__item-pos {
  margin-bottom: 20px;
  font-size: 14px;
  color: #060A37;
  opacity: 0.8;
}

.admins__item-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 6px;
  background: #052C8B;
  transition: 0.2s ease-in-out;
}

.admins__item-phone:hover {
  transform: scale(1.1);
}

.depart__slide {
  display: flex;
  flex-direction: column;
}

.depart__slide-img {
  position: relative;
  overflow: hidden;
}

.depart__slide-img::before {
  display: block;
  content: "";
}

.depart__slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.depart__slide-img::before {
  padding-top: 70%;
}

.depart__slide-info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 20px;
  background: #0077DC;
}

.depart__slide-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

.depart__slide-desc {
  color: #FFF;
  font-size: 14px;
  line-height: 128%;
}

.teacher {
  overflow: hidden;
}

.teacher__slider {
  overflow: unset;
}

.docs {
  background: url("../img/news-bg.png") center/cover no-repeat;
  background-color: #0077DC;
}

.docs__title {
  color: #ffffff;
}

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

.docs_item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #C9C2C2;
  background: #FFF;
  padding: 5px;
  font-size: 13px;
  color: #040B37;
  line-height: 110%;
  padding-right: 15px;
  gap: 20px;
  border: 1px solid #C9C2C2;
}

.docs_item img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  flex-shrink: 0;
}

.docs_item svg {
  flex-shrink: 0;
  margin-left: auto;
}

.service__block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service__docs {
  width: 49%;
}

.service__subtitle {
  margin-bottom: 30px;
  color: #052C8B;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}

.service__docs-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 30px;
}

.service__links {
  width: 49%;
}

.service__links-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 40px;
  border-radius: 10px;
  background: #E6EAF3;
  color: #040B37;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.service__links-header svg {
  flex-shrink: 0;
}

.service__links-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 30px;
  background: rgba(230, 234, 243, 0.3);
  border-radius: 0 0 10px 10px;
  display: none;
}

.service__links-items.active {
  display: flex;
}

.service__links-items a {
  color: #052C8B;
  font-size: 14px;
  line-height: 115%;
}

.service__links-items a:hover {
  text-decoration: underline;
}

.vac__container {
  padding-bottom: 100px;
}

.vac__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  grid-auto-rows: 350px;
}

.vac__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0077DC;
  padding: 50px;
}

.vac__block-title {
  color: #FFF;
  font-family: Times;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -0.35px;
  margin-bottom: 18px;
}

.vac__block-desc {
  color: #FFF;
  font-size: 18px;
  line-height: 138%;
  letter-spacing: -0.14px;
}

.vac__item {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vac__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.vac__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vac__item-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 20px;
}

.vac__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #45BFFF;
  padding: 10px 20px;
  gap: 20px;
  transition: 0.2s ease-in-out;
}

.vac__item-link:hover {
  background: #052C8B;
}

.educator {
  overflow: hidden;
}

.educator__container {
  padding-bottom: 50px;
}

.educator__slider {
  overflow: unset;
}

.educator__slide {
  width: 290px;
}

.educator__slide-img {
  width: 100%;
  height: 200px;
}

.educator__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.educator__slide-block {
  display: flex;
  flex-direction: column;
  background: #45BFFF;
  padding: 20px 25px;
}

.educator__slide-name {
  margin-bottom: 5px;
  color: #060A37;
  font-size: 14px;
  font-weight: 700;
  line-height: 114%;
}

.educator__slide-pos {
  color: #060A37;
  font-size: 14px;
  line-height: 142%;
  letter-spacing: -0.14px;
}

.educator__slide-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  list-style: decimal;
  list-style-position: inside !important;
  margin-bottom: 20px;
}

.educator__slide-list li {
  list-style-type: disc;
  font-size: 14px;
  color: #060A37;
  line-height: 142%;
}

.educator__slide-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 20px;
  border-radius: 6px;
  background: #052C8B;
  color: #ffffff;
  font-size: 14px;
  transition: 0.2s ease-in-out;
}

.educator__slide-link:hover {
  background: #0077DC;
}

.talent {
  overflow: hidden;
}

.talent__slider {
  overflow: unset;
}

.create {
  background: url(../img/news-bg.png) center/cover no-repeat;
  background-color: #0077DC;
  overflow: hidden;
}

.create__slider {
  margin-bottom: 60px;
}

.create__slide {
  position: relative;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  transition: 0.2s ease-in-out;
}

.create__slide::before {
  display: block;
  content: "";
}

.create__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.create__slide:hover {
  color: #0077DC;
}

.create__slide::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 100%);
}

.create__slide::before {
  padding-top: 64%;
}

.create__slide-name {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  font-weight: 700;
  font-size: 16px;
  z-index: 2;
}

.video__slider {
  overflow: unset;
}

.video__slide {
  position: relative;
  width: 350px;
  height: 250px;
}

.video__slide::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/play-icon.png") center/50px 50px no-repeat, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 3;
    pointer-events: none;
}

.video__slide img,
.video__slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.graduate {
  overflow: hidden;
}

.graduate__slider {
  overflow: unset;
}

.graduate__slide .educator__slide-name {
  margin-bottom: 20px;
}

.graduate__slide .educator__slide-name,
.graduate__slide .educator__slide-list li {
  color: #ffffff;
}

.graduate__slide .educator__slide-list {
  margin-bottom: 0;
}

.manual {
  background: url("../img/news-bg.png") center/cover no-repeat;
  background-color: #0077DC;
}

.manual__title {
  color: #ffffff;
}

.manual__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 80px;
  margin-bottom: 50px;
}

.manual__header-link {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease-in-out;
}

.manual__header-link:hover {
  border-bottom: 2px solid #fff;
}

.manual__header-link.active {
  border-bottom: 2px solid #fff;
}

.manual__items .docs_item {
  display: none;
}

.manual__items .docs_item.active {
  display: flex;
}

.tutorial__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.tutorial__item {
  position: relative;
  cursor: pointer;
  position: relative;
}

.tutorial__item::before {
  display: block;
  content: "";
}

.tutorial__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tutorial__item::before {
  padding-top: 69%;
}

.tutorial__item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/play-icon.png") center/50px 50px no-repeat, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.tutorial__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects__container {
  padding-bottom: 100px;
}

.projects__container .advert__item {
  background: #45BFFF;
}

.school {
  background: url("../img/news-bg.png") center/cover no-repeat;
  background-color: #0077DC;
  padding-bottom: 130px;
}

.school__title {
  color: #fff;
}

.result__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 30px;
}

.result__item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 25px 35px;
  border-radius: 10px;
  background: #E6EAF3;
  color: #040B37;
  font-size: 20px;
  font-weight: 700;
}

.result__item-title.active svg {
  transform: rotate(180deg);
}

.result__item-title svg {
  flex-shrink: 0;
}

.result__item-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  padding: 30px;
  background: rgba(230, 234, 243, 0.3);
  margin-top: -6px;
  display: none;
}

.result__item-block.active {
  display: -ms-grid;
  display: grid;
}

.camp {
  overflow: hidden;
  background: #0077DC;
}

.photo {
  overflow: hidden;
}

.photo__slider {
  overflow: unset;
}

.photo__slide {
  width: 390px;
  height: 270px;
}

.photo__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.material {
  overflow: hidden;
  background: url("../img/news-bg.png") center/cover no-repeat;
  background-color: #0077DC;
}

.material__title {
  color: #ffffff;
}

.material__slider {
  overflow: unset;
}

.material__slider .swiper-slide {
  width: 280px;
}

.teachers {
  overflow: hidden;
}

.teachers__slider {
  overflow: unset;
}

.teachers__slider .swiper-slide {
  width: 280px;
}

.contest {
  overflow: hidden;
  background: url("../img/advert-bg.jpg") center/cover no-repeat;
}

.contest__slider {
  overflow: unset;
}

.contest__slider .swiper-slide {
  width: 280px;
}

.achiev {
  overflow: hidden;
}

.achiev__slider {
  overflow: unset;
}

.achiev__slider .swiper-slide {
  width: 280px;
}

.branch__container {
  padding-bottom: 100px;
}

.branch__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.branch__item {
  display: flex;
  flex-direction: column;
  border: 1px solid #C9C2C2;
}

.branch__item-img {
  position: relative;
  overflow: hidden;
}

.branch__item-img::before {
  display: block;
  content: "";
}

.branch__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.branch__item-img::before {
  padding-top: 51%;
}

.branch__item-phone {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: #45BFFF;
  color: #040B37;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: 0.2s ease-in-out;
}

.branch__item-phone:hover {
  background: #052C8B;
}

.branch__item-phone svg {
  flex-shrink: 0;
}

.branch__item-info {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.branch__item-name {
  color: #040B37;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.branch__item-list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.branch__item-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #040B37;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.14px;
}

.branch__item-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.info__container {
  padding-bottom: 100px;
}

.info__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 30px;
}

.info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 40px;
  background: #0077DC;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 142%;
  letter-spacing: -0.2px;
}

.info__item svg {
  flex-shrink: 0;
}

.info__item a:hover {
  text-decoration: underline;
}

.info__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info__socials a {
  display: flex;
  transition: 0.2s ease-in-out;
}

.info__socials a:hover {
  transform: scale(1.04);
}

.info__time {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row-span: 2;
  grid-row: 2 span;
  padding: 40px;
  background: #0077DC;
}

.info__time svg {
  flex-shrink: 0;
}

.info__time-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.info__time-top {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info__time-top span {
  font-size: 14px;
  color: #ffffff;
}

.info__time-top span:nth-child(1) {
  font-weight: 700;
}

.info__time-top span:nth-child(2) {
  opacity: 0.8;
}

.info__item-bot {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.info__item-bot li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info__item-bot li:nth-child(1) {
  font-weight: 700;
}

.info__item-bot li span {
  font-size: 14px;
  color: #ffffff;
}

.info__bot {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 70px;
  background: url("../img/news-bg.png") center/cover no-repeat;
  background-color: #0077DC;
}

.info__bot-left {
  width: 350px;
  flex-shrink: 0;
}

.info__form {
  display: flex;
  flex-direction: column;
}

.info__form button {
  text-align: center;
  border: none;
  outline: none;
  justify-content: center;
}

.info__form-title {
  color: #FFF;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -0.35px;
  margin-bottom: 40px;
}

.info__form-label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 10px 20px;
  background: #ffffff;
  margin-bottom: 20px;
  border-radius: 6px;
}

.info__form-label input,
.info__form-label textarea {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #040B37;
}

.info__form-label textarea {
  height: 120px;
}

.info__form-label img {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.info__map {
  width: 100%;
  height: 400px;
}

.info__map iframe {
  width: 100%;
  height: 100%;
}

.politics__container {
  padding-bottom: 100px;
}

.politics__title {
  text-align: center;
}

.politics__text {
  color: #000;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: -0.14px;
  opacity: 0.8;
}

.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
}

@media (max-width: 1360px) {
  .container {
    max-width: 1240px;
  }

  .preview__wrapper {
    padding: 35px;
  }

  .preview__title {
    font-size: 32px;
  }

  .news__header {
    margin-bottom: 25px;
  }

  .news__item-info {
    padding: 20px;
  }

  .news__item-title {
    font-size: 18px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 992px;
  }

  .content {
    padding: 75px 0;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .event__item-title {
    font-size: 16px;
  }

  .contact__block {
    padding: 35px;
  }

  .vac__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .result__item-title {
    font-size: 16px;
  }

  .result__item-block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .info__top {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .info__time {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    grid-row: auto;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 16px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: auto;
  }

  .header__bot-wrapper {
    position: static;
  }

  .header__logo {
    width: 50px;
    height: 50px;
    position: static;
    transform: unset;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #052C8B;
    padding: 20px 16px 40px 16px;
    display: none;
  }

  .header__nav.active {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    justify-content: center;
    gap: 25px;
  }

  .header__nav-item:nth-child(4) {
    margin-right: 0;
  }

  .header__nav-item:nth-child(5) {
    margin-left: 0;
  }

  .header-space {
    padding-top: 120px;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer__col {
    margin-right: 0;
    align-items: center;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer__nav-list {
    align-items: center;
  }

  .footer__nav-list li {
    max-width: unset;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bot-container {
    flex-direction: column;
    row-gap: 20px;
  }

  .breadcrumbs__container {
    padding: 35px 0;
  }

  .hero__slider .swiper-slide {
    position: relative;
    overflow: hidden;
    height: unset;
  }

  .hero__slider .swiper-slide::before {
    display: block;
    content: "";
  }

  .hero__slider .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero__slider .swiper-slide::before {
    padding-top: 47.5%;
  }

  .hero__slider .hero__pagination {
    bottom: 15px;
  }

  .preview__block {
    flex-direction: column;
  }

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

  .preview__wrapper {
    width: 100%;
    padding: 20px 16px;
  }

  .preview__title {
    font-size: 26px;
  }

  .news__item {
    flex-direction: column;
    width: 100%;
  }

  .news__item-img {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .news__item-img::before {
    display: block;
    content: "";
  }

  .news__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .news__item-img::before {
    padding-top: 100%;
  }

  .news__item-link {
    left: 10px;
    bottom: 10px;
  }

  .news__item-info {
    width: 100%;
  }

  .advert__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .event__row {
      display: flex;
    flex-direction: column;
  }

  .event__item {
    width: 100%;
  }

  .event__img {
    width: 100%;
  }

  .event__sliders .swiper-wrapper .swiper-slide {
    width: 300px;
    height: 200px;
  }

  .contact__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact__item {
    padding: 15px;
    font-size: 14px;
    gap: 12px;
  }

  .contact__map {
    height: 350px;
  }

  .docs__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .service__block {
    flex-direction: column;
    gap: 40px;
  }

  .service__docs {
    width: 100%;
  }

  .service__subtitle {
    margin-bottom: 20px;
  }

  .service__links {
    width: 100%;
  }

  .branch__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .info__bot {
    flex-direction: column;
    gap: 30px;
    padding: 35px;
  }

  .info__bot-left {
    width: 100%;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .vac__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .result__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .branch__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .info__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .info__time {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .info__form-title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .news__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .advert__items {
    grid-gap: 15px;
  }

  .advert__item {
    padding: 20px 16px;
  }

  .event__sliders .swiper-wrapper .swiper-slide {
    width: 200px;
    height: 150px;
  }

  .docs__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .service__docs-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .vac__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .tutorial__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .advert__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .advert__item-num {
    top: unset;
    bottom: 0;
  }

  .video__slide {
    width: 300px;
    height: 200px;
  }

  .photo__slide {
    width: 300px;
    height: 200px;
  }
}


/* --- фиксим видео в галерее --- */
.tutorial__item--video::before,
.tutorial__item--video::after {
    content: none !important;
}

.tutorial__item--video {
    background: transparent !important;
    cursor: default;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.politics__text ol,
.politics__text ul {
    list-style: revert !important;     /* вернёт маркеры по умолчанию */
    list-style-position: outside;      /* можно inside, если так нужно */
    margin: 0 0 1rem 1.25rem;
    padding-left: 1.25rem;
}

.politics__text ol { list-style-type: decimal !important; }
.politics__text ul { list-style-type: disc !important; }

.politics__text li { display: list-item !important; margin: .25rem 0; }

.politics__text p { margin: 0 0 .5rem; }

.politics__text ul ul { list-style-type: circle; margin-left: 1rem; }
.politics__text ol ol { list-style-type: lower-alpha; margin-left: 1rem; }

.politics__text table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.politics__text th, .politics__text td { border: 1px solid #e5e7eb; padding: 8px; text-align: left; }
.politics__text th { font-weight: 600; }

/* Только для внутренних страниц */
.articles-inner__text ul,
.articles-inner__text ol {
    list-style: revert !important;
    list-style-position: outside !important;
    margin-left: 20px;
    padding-left: 20px;
    font-size: 14px;
    color: #1D1D36;
}
.articles-inner__text li::marker {
    color: rgba(29, 29, 54, 0.8); /* #1D1D36 @ 80% */}

.articles-inner__text ul ul,
.articles-inner__text ol ol {
    margin-left: 20px;
}

