@charset "UTF-8";
:root {
  --font-family: "Lato", sans-serif;
  --content-width: 1270px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --color-text: #1f2937;
  --color-text-light: #9ca3af;
  --color-title: #00394F;
  --color-gray: #F3F3F3;
  --color-blue: #439DDE;
  --color-green: #98CA4B;
  --color-orange: #FB9A33;
  --color-red: #F7515C;
  --color-red-hover: #dc3f49;
  --color-purple: #9963D7;
  --color-accent: #439DDE;
  --color-accent-hover: #378cc8;
  --color-dark: #56509f;
  --color-line: #e5e7eb;
  --color-soft: #eff2fa;
  --shadow:
  0 10px 30px rgba(20, 40, 80, 0.08),
  0 2px 8px rgba(20, 40, 80, 0.04);
  --radius: 20px;
  --trans: 0.2s ease-in;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Lato";
  src: url("../fonts/../fonts/Lato-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/../fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/../fonts/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "MontserratAlternates";
  src: url("../fonts/../fonts/MontserratAlternates-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/../fonts/Nunito-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h2, h3, h4, h5, h6 {
  padding: 10px 0;
  color: var(--color-title);
  font-weight: 700;
}

p {
  margin-bottom: 1.5rem;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
  font-family: var(--font-family, sans-serif);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  color: var(--color-text);
  text-decoration: none;
}
a:hover {
  color: var(--color-accent);
}

ul, li {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

.svg-icon {
  width: 16px;
  height: 16px;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

#scrollToTopBtn {
  display: none; /* кнопка скрыта по умолчанию */
  position: fixed; /* кнопка закреплена на экране */
  bottom: 20px; /* отступ от нижнего края экрана */
  right: 20px; /* отступ от правого края экрана */
  z-index: 99; /* приоритет кнопки над другими элементами */
  background-color: #fff; /* цвет фона кнопки */
  color: #fff; /* цвет текста кнопки */
  padding: 10px; /* отступы внутри кнопки */
  border: none; /* убираем границу кнопки */
  border-radius: 50%; /* делаем круглую форму кнопки */
  cursor: pointer; /* курсор при наведении на кнопку */
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
#scrollToTopBtn svg {
  width: 30px;
  height: 30px;
  fill: var(--color-dark);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}

#scrollToTopBtn:hover svg {
  fill: var(--color-dark);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

/* ===== Кнопка ===== */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 16px 24px;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: background-color var(--trans);
  transition: background-color var(--trans);
  /* Анимация */
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 45px;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
  -webkit-animation: flareAnimation;
  animation: flareAnimation;
  left: -150%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.4)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
  -webkit-animation: flareAnimation 3s infinite linear;
  animation: flareAnimation 3s infinite linear;
}
@-webkit-keyframes flareAnimation {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
@keyframes flareAnimation {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
.btn:hover {
  color: #fff;
  background-color: var(--color-accent-hover);
  -webkit-animation: none;
  animation: none;
}

.up-title {
  --dot-size: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.up-title-soft {
  --dot-size: 8px;
  color: var(--color-green);
  border: 1px solid var(--color-line);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Пульсирующий кружок */
.up-title__dot {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background-color: var(--color-green);
  position: relative;
}

/* Анимация пульса */
.up-title__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--color-green);
  opacity: 0.6;
  -webkit-animation: pulse 1.8s ease-out infinite;
  animation: pulse 1.8s ease-out infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    -webkit-transform: scale(2.8);
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    -webkit-transform: scale(2.8);
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.section-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.5rem;
}
.section-title h2 {
  position: relative;
  font-family: "MontserratAlternates", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 1.5rem;
  color: var(--color-title);
}
.section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-green);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-green);
  opacity: 0.6;
  -webkit-animation: pulse2 1.8s ease-out infinite;
  animation: pulse2 1.8s ease-out infinite;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: scale(1) translateY(-30%);
    transform: scale(1) translateY(-30%);
    opacity: 0.6;
  }
  70% {
    -webkit-transform: scale(2.8) translateY(-30%);
    transform: scale(2.8) translateY(-30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
    opacity: 0;
  }
}
@keyframes pulse2 {
  0% {
    -webkit-transform: scale(1) translateY(-30%);
    transform: scale(1) translateY(-30%);
    opacity: 0.6;
  }
  70% {
    -webkit-transform: scale(2.8) translateY(-30%);
    transform: scale(2.8) translateY(-30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
    opacity: 0;
  }
}
.section-title h2 span {
  color: var(--color-accent);
}
.section-title-link {
  font-size: 14px;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ===== Swiper arrows ===== */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-red);
  border: 3px solid #fff;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Иконка стрелки */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* Hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color-red-hover);
}

/* Active */
.swiper-button-next:active,
.swiper-button-prev:active {
  -webkit-transform: scale(0.96);
  -ms-transform: scale(0.96);
  transform: scale(0.96);
}

/* Disabled */
.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.page {
  height: 100%;
  min-height: 50vw;
  background: linear-gradient(to bottom, rgba(244, 245, 250, 1), rgba(244, 245, 250, 0.8)), url("../img/page-bg.png") no-repeat;
  background-size: cover;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  padding: 20px 0;
}
.page .page__top {
  position: relative;
  height: auto;
  color: var(--color-text);
  padding: 1rem 0;
}
.page .page__top .breadcrumbs {
  color: rgba(82, 82, 82, 0.6);
  margin-bottom: 16px;
}
.page .page__top .breadcrumbs a {
  color: var(--color-text);
}
.page .page__top .breadcrumbs a:hover {
  color: var(--color-accent);
}
.page__title {
  position: relative;
  font-family: "MontserratAlternates", sans-serif;
  font-size: 36px;
  color: var(--color-title);
  font-weight: 700;
  line-height: 1.2;
  /* text-align: center; */
  padding: 2rem 0;
  margin-bottom: 2rem;
  opacity: 0;
  -webkit-transform: translateY(16px);
  -ms-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-animation: titleFadeUp 0.8s ease-out forwards;
  animation: titleFadeUp 0.8s ease-out forwards;
}
@-webkit-keyframes titleFadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes titleFadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.page .page__container {
  background: var(--color-white);
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem 3rem;
  min-height: 50vh;
  margin-bottom: 24px;
  -webkit-box-shadow: 0px 6px 12px rgba(3, 109, 136, 0.14);
  box-shadow: 0px 6px 12px rgba(3, 109, 136, 0.14);
}
.page .page__cover {
  position: relative;
  width: auto;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  /* background: #f4f5fa; */
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 1rem;

}
.page .page__cover img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: contain;
  text-align: center;
}
.page .page__cover::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-2.png) center no-repeat;
  background-size: cover;
  opacity: 0.2;
}
/* .page .page__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6));
} */

.page__content {
  position: relative;
   min-height: 80vh;
   font-size: 16px;
  line-height: 1.6;
  color: #121317;
  margin-bottom: 24px;
}

.page__content h1,
.page__content h2,
.page__content h3,
.page__content h4 {
  font-weight: 700;
  color: var(--color-title);
  line-height: 1.3;
  margin-bottom: 16px;
  margin-top: 16px;
}

.page__content h1 {
  font-size: 48px;
}

.page__content h2 {
  font-size: 32px;
  position: relative;
}

.page__content h3 {
  font-size: 20px;
}

.page__content h4 {
  font-size: 16px;
}

/* акцент */
.page__content h2::before {
  content: "🌈 ";
}
.page__content p {
  color: var(--color-text);
}

.page__content strong {
  color: var(--color-dark);
}

.page__content em {
  color: var(--color-red);
}

.single-cover img {
  width: auto;
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
}
.page__content ul,
.page__content ol {
  padding-left: 20px;
}

.page__content li {
  margin-bottom: 6px;
}

/* кастомные буллиты */
.page__content ul {
  list-style: none;
}

.page__content ul li {
  position: relative;
  padding-left: 22px;
}

.page__content ul li::before {
  content: "🧩";
  position: absolute;
  left: 0;
  top: 0;
}
.page__content a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--color-accent);
  transition: all 0.2s ease-in;
}

.page__content a:hover {
  color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}
.page__content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page__content figure {
  margin: 0;
}

.page__content figcaption {
  font-size: 14px;
  color: #a4a5ae;
  margin-top: 6px;
  text-align: center;
}
.page__content blockquote {
  background: #f4f5fa;
  padding: 16px;
  border-radius: 10px;
  border-left: 4px solid var(--color-orange);
  font-style: italic;
}
.page__content table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.page__content th,
.page__content td {
  padding: 10px;
  border: 1px solid var(--color-line);
  text-align: left;
}

.page__content th {
  background: var(--color-accent);
  color: #fff;
}
.page__content .wp-block-button__link {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 16px;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

.page__content .wp-block-button__link:hover {
  background: var(--color-accent-hover);
}
.page__content .fun-box {
  background: linear-gradient(135deg, #fdd617, #00abaa);
  padding: 24px;
  border-radius: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page__content .fun-box::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}
/* RELATED NEWS */
.related-news {
  margin-top: 100px;
}

.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 32px;
}

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

.news-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.news-card:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

.news-thumb img {
  width: 100%;
}

.news-body {
  padding: 20px;
}

.news-date {
  font-size: var(--font-xs);
  color: var(--color-text-light);
}

.news-body h3 {
  font-size: 18px;
  margin-top: 8px;
  color: var(--color-title);
}

/* grid */
.all-news__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* card */
.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.news-card:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.news-card__image {
  display: block;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.news-card:hover img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.news-card__content {
  padding: 24px;
}

.news-card__date {
  display: block;
  font-size: 14px;
  color: #a4a5ae;
  margin-bottom: 8px;
}

.news-card__title {
  font-size: 20px;
  margin-bottom: 12px;
}

.news-card__title a {
  color: var(--color-title);
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.news-card__title a:hover {
  color: var(--color-accent-hover);
}

.news-card__text {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.news-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.6;
  text-decoration: none;
}

.news-card__more span {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-card__more:hover span {
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}
.news-card:hover .news-card__more{
  opacity: 1;
}
/* pagination */
.pagination {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.pagination__item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  background: #f4f5fa;
  color: #121317;
  font-weight: 600;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}

.pagination__item:hover {
  background: var(--color-red-hover);
  color: #fff;
}

.pagination__item--active {
  background: var(--color-red);
  color: #fff;
}

.pagination__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
}
/* TEAM */
.team-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .team-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-list {
    grid-template-columns: 1fr;
  }
}
.team-item {
  position: relative;
  padding: 20px 16px;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  transition: all 0.2s ease-in;
    box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 16px rgba(0,0,0,0.06),
    0 16px 32px rgba(0,0,0,0.04);
}
.team-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 0 16px 0 100%;
  z-index: 0;
}
.team-item:nth-child(4n + 1)::before {
  background: var(--color-green);
}

.team-item:nth-child(4n + 2)::before {
  background: var(--color-red);
}

.team-item:nth-child(4n + 3)::before {
  background: var(--color-orange);
}

.team-item:nth-child(4n + 4)::before {
  background: var(--color-purple);
}

.team-item__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin: 0 auto 12px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.team-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-item__name {
  margin: 0 0 4px;
  font-size: 18px;
  color: #0F293E;
  position: relative;
  z-index: 1;
}

.team-item__role {
  margin: 0;
  font-size: 14px;
  color: #a4a5ae;
  position: relative;
  z-index: 1;
}

/* =============== */
/* all-groups */
.page-all-groups {
  position: relative;
  /* padding: 60px 0; */
}

/* =========================================
   LAYOUT
========================================= */

.all-groups {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 32px;
  align-items: start;
}

/* =========================================
   SIDEBAR
========================================= */

.all-groups__sidebar {
  position: sticky;
  top: 100px;

  /* padding: 24px; */
  border-radius: var(--radius-lg);

  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.all-groups__sidebar-title {
  margin-bottom: 20px;

  font-size: 20px;
  font-weight: 700;
  color: var(--color-title);
}

.all-groups__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.all-groups__link {
  display: flex;
  align-items: center;

  min-height: 48px;
  padding: 12px 16px;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);

  transition: var(--trans);
}

.all-groups__link:hover {
  background: var(--color-gray);
  color: var(--color-accent);
}

.all-groups__link.active {
  background: var(--color-accent);
  color: #fff;
}

/* =========================================
   CONTENT
========================================= */

.all-groups__content {
  /* padding: 32px; */

  border-radius: var(--radius-lg);

  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.page__title {
  margin-bottom: 24px;

  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 800;

  color: var(--color-title);
}

/* =========================================
   IMAGE
========================================= */

.all-groups__image {
  position: relative;
  margin-bottom: 30px;

  border-radius: 24px;
  overflow: hidden;
}

.all-groups__image img {
  width: 100%;
  height: 420px;

  object-fit: cover;

  transition: 0.5s ease;
}

.all-groups__image:hover img {
  transform: scale(1.03);
}

/* =========================================
   TEXT
========================================= */

.all-groups__text {
  display: flex;
  flex-direction: column;
  gap: 18px;

  color: var(--color-text);
  line-height: 1.8;
  font-size: 16px;
}

.all-groups__text p {
  margin: 0;
}

/* =========================================
   TEACHERS
========================================= */

.all-groups__teachers {
  display: flex;
  flex-direction: column;
  gap: 20px;

  position: sticky;
  top: 100px;
}

/* =========================================
   TEACHER CARD
========================================= */

.teacher-card {
  position: relative;

  padding: 24px;

  border-radius: 24px;

  background: #fff;

  text-align: center;

  box-shadow: 0 18px 40px rgba(0,0,0,0.08);

  transition: var(--trans);
}

.teacher-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.teacher-card__photo {
  position: relative;

  width: 160px;
  height: 160px;

  margin: 0 auto 18px;

  border-radius: 50%;

  overflow: hidden;
}

.teacher-card__photo::before {
  content: "";

  position: absolute;
  inset: -10px;

  border-radius: 50%;

  background:
    repeating-conic-gradient(
      from 0deg,
      var(--color-purple) 0deg 12deg,
      transparent 12deg 24deg
    );

  z-index: 1;
}

.teacher-card__photo img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  border-radius: 50%;

  object-fit: cover;

  border: 4px solid #fff;
}

.teacher-card__name {
  margin-bottom: 8px;

  font-size: 20px;
  font-weight: 700;

  color: var(--color-title);
}

.teacher-card__position {
  font-size: 14px;
  color: var(--color-text-light);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .all-groups {
    grid-template-columns: 220px 1fr;
  }

  .all-groups__teachers {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    position: static;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .page-all-groups {
    padding: 40px 0;
  }

  .all-groups {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .all-groups__sidebar,
  .all-groups__teachers {
    position: static;
  }

  .all-groups__content {
    padding: 24px;
  }

  .all-groups__teachers {
    grid-template-columns: 1fr;
  }

  .all-groups__image img {
    height: 260px;
  }

}
.group__gallery .page__title{
  text-align: center;
}
/* ========== */
.boss-blog {
  position: relative;
}

.boss-blog__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 420px 1fr;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 3rem;
}

/* photo */
.boss__photo {
  position: sticky;
  aspect-ratio: 3/4;
  top: 120px;
}

.boss__photo img {
  width: 100%;
  border-radius: 16px;
  -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* content */
.boss__name {
  color: var(--color-accent);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.boss__position {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.boss__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-style: italic;
}

/* form */
.boss-form {
  background: var(--color-soft);
  padding: 32px;
  border-radius: 16px;
}

.boss-form__title {
  font-size: 22px;
  margin-bottom: 20px;
}

.boss-form__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.boss-form input,
.boss-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--color-line);
  font-size: 15px;
  font-family: inherit;
}

.boss-form textarea {
  resize: none;
  margin-bottom: 20px;
}

.boss-form__btn {
  background: #223bdd;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.boss-form__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 24px rgba(34, 59, 221, 0.3);
  box-shadow: 0 12px 24px rgba(34, 59, 221, 0.3);
}

@media (max-width: 1024px) {
  .boss-blog__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .boss__photo {
    position: relative;
    top: 0;
    max-width: 360px;
  }
}
@media (max-width: 640px) {
  .boss__name {
    font-size: 32px;
  }
  .boss-form__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.all-videos {
  position: relative;
}

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

.page-all-videos .video-card {
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  padding: 0;
  cursor: pointer;
}

.page-all-videos .video-card .video-card__thumb {
  aspect-ratio: 1/1;
}

.page-all-videos .video-card .video-card__thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.4);
  -webkit-transition: var(--trans);
  transition: var(--trans);
  z-index: 10;
}

.page-all-videos .video-card .video-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-all-videos .video-card .video-card__title {
  color: var(--color-title);
}

.page-all-videos .video-card:hover .video-card__thumb::before {
  background: rgba(16, 16, 16, 0.1);
}

@media (max-width: 1024px) {
  .videos-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .videos-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.header {
  position: relative;
  margin-bottom: 1rem;
}
.header__container {
  padding: 0;
}
.header__top {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0;
  font-size: 14px;
  background: #f2f2f2;
}
.header__top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__top-contacts {
  position: relative;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__top-adress, .header__top-email {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__top-adress:not(:last-child), .header__top-email:not(:last-child) {
  margin-right: 1rem;
}
.header__top-adress svg, .header__top-email svg {
  width: 16px;
  height: 16px;
  font-weight: 700;
  fill: var(--color-accent);
  margin-right: 6px;
}
.header__top-adress span, .header__top-email span {
  font-size: 14px;
  color: var(--color-text);
}
.header__top-adress span b, .header__top-email span b {
  font-weight: 700;
  color: var(--color-text);
}
.header__top-adress span a, .header__top-email span a {
  font-weight: 400;
  color: var(--color-text);
}
.header__top-controls {
  position: relative;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__top-controls .version {
  margin-right: 1.5rem;
}
.header__top-controls .version .bvi-open {
font-size: 14px;
background: #f2f2f2 !important;
}
.header__top-controls .version .bvi-shortcode{
background: #f2f2f2 !important;
}
.header__top-controls .version .bvi-shortcode .bvi-svg-eye {
  font-size: 18px;
  fill: var(--color-accent);
}
.header__top-controls .version .vision-btn:focus-visible {
  outline: none;
}
.header__top-controls .header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__top-controls .header__lang li {
  display: inline-block;
  font-weight: 700;
}
.header__top-controls .header__lang li.current-lang a {
  color: var(--color-red);
}
.header__top-controls .header__lang li:not(:last-child) {
  margin-right: 10px;
}
.header__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3rem 0;
  z-index: 10;
}
.header__info-logo {
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  margin-right: 1.5rem;
}
.header__info-logo img {
  display: inline-block;
  width: 180px;
  height: auto;
  margin-right: 1rem;
}
.header__info-logo span {
  /* font-family: "MontserratAlternates", sans-serif; */
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-title);
  /* Анимация переливания */
}
.header__info-logo span.title-accent {
  display: block;
  font-weight: 700;
  font-size: 18px;
  
  color: var(--color-accent);
  -webkit-animation: title-shine 6s ease-in-out infinite;
  animation: title-shine 6s ease-in-out infinite;
}

.header__info-right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header__info-contacts {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  /* Градиентная рамка */
  /* Иконка */
  /* Hover */
  /* Анимация */
}
.header__info-contacts .insta-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 16px;
  color: var(--color-title);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--light-color);
  z-index: 1;
}
.header__info-contacts .insta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#feda75), color-stop(#fa7e1e), color-stop(#d62976), color-stop(#962fbf), color-stop(#4f5bd5), to(#feda75));
  background: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
  background-size: 300% 300%;
  -webkit-animation: insta-border 6s linear infinite;
  animation: insta-border 6s linear infinite;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.header__info-contacts .insta-btn__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #d62976;
}
.header__info-contacts .insta-btn:hover::before {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
.header__info-contacts .insta-btn:hover {
  color: #d62976;
}
@-webkit-keyframes insta-border {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
@keyframes insta-border {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
.header__info-contacts .phone {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 14px;
}
.header__info-contacts .phone__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
  border-radius: 50%;
  background: #f2f2f2;
  margin-right: 12px;
}
.header__info-contacts .phone svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}
.header__info-contacts .phone__text {
  position: relative;
}
.header__info-contacts .phone__text-up {
  font-size: 14px;
  opacity: 0.7;
}
.header__info-contacts .phone__text .tel {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-title);
}
.header__info-search {
  width: 100%;
  /* Кнопка */
  /* Мелкая анимация */
}
.header__info-search .search__form {
  position: relative;
}
.header__info-search .search__input {
  width: 100%;
  height: 52px;
  padding: 0 56px 0 18px;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid var(--color-line);
  background: var(--light-color);
  color: var(--color-text);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.header__info-search .search__input::-webkit-input-placeholder {
  color: var(--color-text-light);
}
.header__info-search .search__input::-moz-placeholder {
  color: var(--color-text-light);
}
.header__info-search .search__input:-ms-input-placeholder {
  color: var(--color-text-light);
}
.header__info-search .search__input::-ms-input-placeholder {
  color: var(--color-text-light);
}
.header__info-search .search__input::placeholder {
  color: var(--color-text-light);
}
.header__info-search .search__input:focus {
  outline: none;
  border-color: var(--color-accent);
  -webkit-box-shadow: 0 0 0 4px rgba(248, 129, 100, 0.25);
  box-shadow: 0 0 0 4px rgba(248, 129, 100, 0.25);
}
.header__info-search .search__btn {
  position: absolute;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: var(--color-accent);
  color: var(--light-color);
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__info-search .search__btn svg {
  fill: #fff;
}
.header__info-search .search__btn:hover {
  background: var(--color-accent-hover);
}
.header__info-search .search__input:focus + .search__btn {
  -webkit-transform: translateY(-50%) scale(1.05);
  -ms-transform: translateY(-50%) scale(1.05);
  transform: translateY(-50%) scale(1.05);
}
.burger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-title);
  transition: 0.3s;
}

.burger span {
  top: 50%;
  transform: translateY(-50%);
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.header__menu {
  position: relative;
  z-index: 10;
}

.nav {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--color-accent);
  border-radius: 20px;
}

.nav ul.nav-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.nav ul.nav-list .menu-item {
  position: relative;
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.nav ul.nav-list .menu-item:first-child a {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.nav ul.nav-list .menu-item:last-child {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.nav ul.nav-list .menu-item:last-child a {
  background: var(--color-red);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.nav ul.nav-list .menu-item a {
  display: inline-block;
  padding: 1.5rem 1rem;
  width: 100%;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.nav ul.nav-list .menu-item a:hover {
  background: var(--color-accent-hover);
}

.nav ul.nav-list .menu-item.menu-item-has-children {
  position: relative;
}

.nav ul.nav-list .menu-item.menu-item-has-children:before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 45%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-line);
  border-bottom: 2px solid var(--color-line);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250%;
  height: auto;
  padding: 12px 20px;
  background: var(--color-accent-hover);
  border-radius: var(--radius);
  border-top: 4px solid #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s, -webkit-transform 0.2s;
  transition: opacity 0.25s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.25s;
  transition: transform 0.2s, opacity 0.25s, -webkit-transform 0.2s;
}

.nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu li.menu-item {
  display: block;
}

.nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu li.menu-item a {
  display: block;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: none;
  font-weight: 300;
  text-align-last: left;
  opacity: 0.8;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu li.menu-item a:not(:last-child) {
  border-bottom: 1px solid rgb(255, 255, 255);
}

.nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu li.menu-item a:hover {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
  opacity: 1;
}

.nav ul.nav-list .menu-item.menu-item-has-children:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  z-index: 50;
}

.nav ul.nav-list .menu-item.menu-item-has-children:hover::before {
  -webkit-transform: translateY(100%) rotate(45deg);
  -ms-transform: translateY(100%) rotate(45deg);
  transform: translateY(100%) rotate(45deg);
  opacity: 0;
}

.nav ul.nav-list .menu-item.menu-item-has-children:hover a {
  background: var(--color-accent-hover);
}

/* контейнер фигур */
.shapes-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* общие стили фигуры */
.shape {
  position: absolute;
  top: -100px;
  opacity: 0.2;
  -webkit-animation-name: fall;
  animation-name: fall;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* формы */
.shape.circle {
  border-radius: 50%;
}

.shape.square {
  border-radius: 8px;
}

.shape.triangle {
  width: 0 !important;
  height: 0 !important;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid var(--color);
  background: none !important;
}

/* анимация */
@-webkit-keyframes fall {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(420px) rotate(360deg);
    transform: translateY(420px) rotate(360deg);
  }
}
@keyframes fall {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(420px) rotate(360deg);
    transform: translateY(420px) rotate(360deg);
  }
}
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  color: #fff;
}

/* ===== Slider ===== */
.hero-slider {
  position: absolute;
  inset: 10px;
  max-width: 1500px;
  overflow: hidden;
  border-radius: var(--radius);
  z-index: 1;
}

.hero-slider .parallax-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; /* центр по горизонтали */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; /* центр по вертикали */
}

.hero-slider .parallax-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* затемнение */
.hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, right top, left top, color-stop(33.17%, rgba(16, 24, 40, 0)), color-stop(70.2%, rgba(16, 24, 40, 0.6)));
  background: linear-gradient(270deg, rgba(16, 24, 40, 0) 33.17%, rgba(16, 24, 40, 0.6) 70.2%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ===== Контейнер ===== */
.hero-container {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-content {
  max-width: 50%;
}

.hero-content h2 {
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 800;
  font-size: 50px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 32px;
  opacity: 0.95;
}

.links {
  position: relative;
  padding: 1rem 0;
}
.links__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.links__item {
  position: relative;
  width: 25%;
  aspect-ratio: 2/1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: var(--color-green);
  padding: 2rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.links__item h5 {
  position: relative;
  font-family: "MontserratAlternates", sans-serif;
  margin: 0 0 8px 0;
  font-size: 24px;
  max-width: 70%;
  color: #fff;
  font-weight: 700;
}
.links__item p {
  margin: 0;
  font-size: 14px;
  max-width: 70%;
  color: #fff;
}
.links__item.link-1 {
  background: var(--color-orange);
}
.links__item.link-1::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0;
  width: 170px;
  height: 120%;
  background: url(../img/parrents.png) no-repeat;
  background-size: contain;
  -webkit-transform: translateX(5%) rotate(3deg);
  -ms-transform: translateX(5%) rotate(3deg);
  transform: translateX(5%) rotate(3deg);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.links__item.link-2 {
  background: var(--color-green) no-repeat;
}
.links__item.link-2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: url(../img/kubok.png) no-repeat;
  background-size: contain;
  -webkit-transform: translateX(5%) rotate(3deg);
  -ms-transform: translateX(5%) rotate(3deg);
  transform: translateX(5%) rotate(3deg);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.links__item.link-3 {
  background: var(--color-purple) no-repeat;
}
.links__item.link-3::before {
  content: "";
  position: absolute;
  top: 0;
  right: -22%;
  width: 250px;
  height: 100%;
  background: url(../img/camera.png) no-repeat;
  background-size: contain;
  -webkit-transform: translateX(5%) rotate(3deg);
  -ms-transform: translateX(5%) rotate(3deg);
  transform: translateX(5%) rotate(3deg);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.links__item:hover {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  background: var(--color-accent) no-repeat;
}
.links__item:hover::before {
  -webkit-transform: translateX(0%) rotate(0deg);
  -ms-transform: translateX(0%) rotate(0deg);
  transform: translateX(0%) rotate(0deg);
}

/* ===== Controls ===== */
.hero-controls {
  position: absolute;
  width: 40%;
  right: 32px;
  bottom: 32px;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border: 1px solid var(--color-red);
}

.line {
  position: relative;
  padding: 3rem;
  color: #fff;
}
.line::before {
    content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #9963d7,rgba(153, 99, 215, 0.7)), url(../img/bg-1.jpg) center / cover no-repeat;
  background-attachment: fixed;
  z-index: -1;
}
.line::after {
      content: '';
    background-size: 14px 100%;
    height: 16px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 100%;
  background-image: linear-gradient(315deg, var(--color-purple) 25%, transparent 25%), linear-gradient(45deg, var(--color-purple) 25%, transparent 25%);
      
  z-index: 10;
}

.line__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.line__link {
  position: relative;
  width: 300px;
  height: auto;
  padding: 0.5rem;
  background: #fff;
  margin-right: 2rem;
  border-radius: 20px;
  padding: 12px;
  
}
.line__link img {
  width: 100%;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}
.line__text {
  position: relative;
  width: 70%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #fff;
}
.line__text h4,
.line__text p{
  color: #fff;
}
.about {
  position: relative;
  padding: 4rem 0;
  background:
    radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.9) 70%),
    url(../img/bg-2.png) center no-repeat;
  background-size: cover;
}
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.about__boss {
  position: relative;
  width: 25%;
  padding: 1.3vw;
  border-radius: 20px;
  border: 4px dotted var(--color-orange);
  background: var(--color-soft);
  margin-right: 60px;
}
.about__boss-photo {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
}
.about__boss-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__boss-info {
  text-align: center;
}
.about__boss-info .about__boss-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-title);
  margin-bottom: 6px;
}
.about__boss-info .about__boss-position {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light);
}
.about__boss-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.about__content {
  position: relative;
  width: 70%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.about__groups {
  position: relative;
  /* карточка */
  /* круглое фото */
  /* название */
  /* hover */
  /* стрелки */
}
.about__groups .groups-slider {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  overflow: hidden;
}
.about__groups .group-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
.about__groups .group-card__photo {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: var(--trans);
  margin-bottom: 12px;
  z-index: 1;
}
.about__groups .group-card__photo::before {
   content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 145px;
  height: 145px;

  transform: translate(-50%, -50%);
  border-radius: 50%;

  /* лучики */
  background:
    repeating-conic-gradient(
      from 0deg,
      var(--color-line) 0deg 10deg,
      transparent 10deg 20deg
    );

  z-index: -1;

  
  
}
.about__groups .group-card__photo img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__groups .group-card__name {
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}
.about__groups .group-card:hover .group-card__photo {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.about__groups .group-card:hover .group-card__name {
  color: var(--color-accent);
}
.about__groups .group-card:hover .group-card__photo::before{
  background:
    repeating-conic-gradient(
      from 0deg,
      var(--color-orange) 0deg 10deg,
      transparent 10deg 20deg
    );
    animation: sunRotate 12s linear infinite;
}
@keyframes sunRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.about__groups .groups-prev {
  left: 0px;
}
.about__groups .groups-next {
  right: 0px;
}

.about__text {
  position: relative;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about__text-left {
  position: relative;
  width: 60%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 2rem;
}
.about__text-left .section-title h2 {
  padding-left: 0;
}
.about__text-left .section-title h2::after, .about__text-left .section-title h2::before {
  content: none;
}
.about__text-img {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 20px;
}
.about__text-img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.about__text-img::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 32px;
  border: 4px solid var(--color-green);
  -webkit-box-shadow: 0 14px 30px rgba(34, 59, 221, 0.28);
  box-shadow: 0 14px 30px rgba(34, 59, 221, 0.28);
  -webkit-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  transform: rotate(-6deg);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0) rotate(-6deg);
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(-6deg);
    transform: translateY(-6px) rotate(-6deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-6deg);
    transform: translateY(0) rotate(-6deg);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0) rotate(-6deg);
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(-6deg);
    transform: translateY(-6px) rotate(-6deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-6deg);
    transform: translateY(0) rotate(-6deg);
  }
}

.news {
  position: relative;
  padding: 3rem 0;
  background: var(--color-gray);
}

.news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/line-dark.png") no-repeat center center/cover;
  opacity: 0.3;
  z-index: 0;
}

.news__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.news__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.news__item::before{
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 90%;
  height: 20px;
  background: var(--color-green);
  transform: translateX(-50%);
  opacity: 1;
  border-radius: 50%;
}
.news__item:nth-child(1)::before {
  background: var(--color-green);
}

.news__item:nth-child(2)::before {
  background: var(--color-orange); /* жёлтый */
}

.news__item:nth-child(3)::before {
  background: var(--color-purple); /* голубой */
}
.news__item-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 14px;
  color: #fff;
  font-size: 12px;
  background: var(--color-purple);
  border-radius: 20px;
  z-index: 10;
}
.news__item-label.anons {
  background: var(--color-green);
}

.news__item-cover {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  margin-bottom: 12px;
  border-radius: 20px;
  overflow: hidden;
}
.news__item-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.news__item-date {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.news__item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 8px;
}

.news__item:hover .news__item-cover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.videos {
  position: relative;
  padding: 80px 0;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0.65))), url("../img/bg-1.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../img/bg-1.jpg") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.videos__title h2 {
  color: #fff;
}

/* Карточка видео */
.video-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video-card:hover {
  background: rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  color: #fff;
}

/* Превью видео */
.video-card__thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

/* Кнопка Play */
.video-card__play {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.video-card__play::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.video-card__play::after {
  content: "";
  position: absolute;
  margin-left: 4px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.video-card:hover .video-card__play::before {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Заголовок видео */
.video-card__title {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.3;
}

.team {
 position: relative;
    padding: 80px 0;
  color: #fff;
 background:
  linear-gradient(
    to bottom,
    rgba(255,255,255,1),
    rgba(255,255,255,0.8)
  ),
  url("../img/page-bg.png") center/cover no-repeat;
backdrop-filter: blur(6px);
background-attachment: fixed;
  
}
/* .team  .section-title h2 {
  color: #fff;
} */
.team-card {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.team-card::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--color-green);
  border-radius: 0 16px 0 100%;
}
.team-card:nth-child(4n + 1)::before {
  background: var(--color-green);
}

.team-card:nth-child(4n + 2)::before {
  background: var(--color-red);
}

.team-card:nth-child(4n + 3)::before {
  background: var(--color-orange);
}

.team-card:nth-child(4n + 4)::before {
  background: var(--color-purple);
}

/* Фото */
.team-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 14px;
  overflow: hidden;
  
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}



/* Имя */
.team-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Должность */
.team-card__role {
  font-size: 15px;
  color: var(--color-accent);
}


.punkt {
  position: relative;
}

.punkt__container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
}

.punkt__grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.punkt__docs {
  position: relative;
  width: 250px;
  margin-right: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  padding: 1rem;
  background: #F9FAFB;
  border: 1px solid var(--color-line);
  border-radius: 16px;
}

.punkt__docs-title {
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
  background: var(--color-purple);
  border-radius: 16px;
}

/* Иконка */
.punkt__docs-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 400;
  color: var(--color-purple);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.punkt__docs-icon.pdf {
  background: #fff;
}

/* Айтем документа */
.punkt__docs-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  padding: 0.5rem 0.8rem;
  background: #fff;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  border-radius: 16px;
}
.punkt__docs-item:hover {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
  color: var(--color-red);
}

.punkt__main {
  position: relative;
  width: 70%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.punkt__gallery {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
  padding: 1rem;
  background: var(--color-orange);
}

.punkt__gallery-item {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.punkt__gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

/* Навигация — без изменений */
.dashboard {
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
  background: #f2f4f5;
}

.dashboard__container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.dashboard__title {
  position: relative;
}
.dashboard__title .page__title {
  display: block;
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-title);
  padding: 0;
  margin-bottom: 1rem;
}
.dashboard__title .page__title span {
  color: var(--color-accent);
}
.dashboard__title p {
  font-size: 16px;
  color: var(--color-text-light);
}

.dashboard__box {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 24px;
  border-radius: 18px;
  background: var(--color-soft);
  -webkit-box-shadow: 0 10px 30px rgba(20, 40, 80, 0.08), 0 2px 8px rgba(20, 40, 80, 0.04);
  box-shadow: 0 10px 30px rgba(20, 40, 80, 0.08), 0 2px 8px rgba(20, 40, 80, 0.04);
}

.dashboard__grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dashboard__sidebar {
  position: relative;
  width: 300px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.dashboard__docs {
  position: relative;
  width: 300px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

/* Заголовок */
.dashboard__block-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0F293E;
  position: relative;
  padding-bottom: 8px;
  padding-left: 1rem;
}

.dashboard__block-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 45%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--color-green);
  -webkit-animation: pulse-dot 1.6s ease-in-out infinite;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@-webkit-keyframes pulse-dot {
  0% {
    opacity: 1;
    -webkit-box-shadow: 0 0 0 0 rgba(36, 182, 52, 0.6);
    box-shadow: 0 0 0 0 rgba(36, 182, 52, 0.6);
  }
  50% {
    opacity: 0.4;
    -webkit-box-shadow: 0 0 0 6px rgba(36, 182, 52, 0);
    box-shadow: 0 0 0 6px rgba(36, 182, 52, 0);
  }
  100% {
    opacity: 1;
    -webkit-box-shadow: 0 0 0 0 rgba(36, 182, 52, 0);
    box-shadow: 0 0 0 0 rgba(36, 182, 52, 0);
  }
}

@keyframes pulse-dot {
  0% {
    opacity: 1;
    -webkit-box-shadow: 0 0 0 0 rgba(36, 182, 52, 0.6);
    box-shadow: 0 0 0 0 rgba(36, 182, 52, 0.6);
  }
  50% {
    opacity: 0.4;
    -webkit-box-shadow: 0 0 0 6px rgba(36, 182, 52, 0);
    box-shadow: 0 0 0 6px rgba(36, 182, 52, 0);
  }
  100% {
    opacity: 1;
    -webkit-box-shadow: 0 0 0 0 rgba(36, 182, 52, 0);
    box-shadow: 0 0 0 0 rgba(36, 182, 52, 0);
  }
}
/* Документ */
.dashboard__docs-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48px 1fr;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text);
  -webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
}

/* квадрат слева */
.docs-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-soft);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.docs-item__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--color-text);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}

/* контент */
.docs-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.docs-item__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.docs-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-light);
}

/* значок PDF */
.docs-item__pdf {
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 11px;
  color: #fff;
  background: var(--color-red);
}

.dashboard__docs-item:hover {
  -webkit-box-shadow: 0 8px 24px rgba(34, 59, 221, 0.12);
  box-shadow: 0 8px 24px rgba(34, 59, 221, 0.12);
}
.dashboard__docs-item:hover .docs-item__icon svg {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  stroke: var(--color-accent);
}

.dashboard__main {
  position: relative;
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: var(--radius);
  margin-left: 20px;
}

.dashboard__hero {
  position: relative;
  margin-bottom: 48px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.dashboard__hero-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.3fr 1fr;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
}

/* LEFT */
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.dashboard__hero-bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

/* RIGHT */
.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.hero__card {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 24px;
  border-radius: 18px;
  background: var(--color-soft);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
}
.hero__card-tel {
  background: rgba(137, 199, 113, 0.15);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.hero__card-tel a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
}

.hero__card--light {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero__card-title {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.hero__dates-item {
  margin-right: 20px;
}

.hero__dates span {
  display: block;
  font-size: 14px;
  color: var(--color-text-light);
}

.hero__dates strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-title);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  -webkit-animation: pulse 1.6s infinite;
  animation: pulse 1.6s infinite;
}

/* LIST */
.hero__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__list li {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  color: var(--color-text);
  font-size: 14px;
  border: 1px solid var(--color-accent);
  border-radius: 24px;
}

/* ANIMATION */
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.infografiks {
  position: relative;
  margin-bottom: 48px;
}

.infografiks-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}

.infografiks .card {
  border-radius: 16px;
  overflow: hidden;
}

.infografiks .card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  display: block;
  -o-object-fit: initial;
  object-fit: initial;
}

.dashboard__main-text {
  position: relative;
  background: #fff;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

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

.dashboard__accordion-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border-bottom: 3px dotted var(--color-line);
}

.dashboard__accordion-item .accordion-header {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-title);
  cursor: pointer;
}

.dashboard__accordion-item .accordion-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.dashboard__accordion-item .accordion-icon::before,
.dashboard__accordion-item .accordion-icon::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.dashboard__accordion-item .accordion-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.dashboard__accordion-item.active .accordion-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  -ms-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.dashboard__accordion-item .accordion-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.dashboard__accordion-item .accordion-body > * {
  padding: 0 22px 20px;
}

.dashboard__accordion-item .accordion-header:hover {
  color: var(--color-accent);
}

.dashboard__accordion-item.active .accordion-header {
  color: var(--color-accent);
}

.dashboard-image-slider {
  width: 100%;
  height: 400px; /* фиксированная высота для вертикального слайдера */
  overflow: visible;
  position: relative;
  margin-bottom: 4rem;
}

.dashboard-image-slider .swiper {
  width: 140%;
  margin-left: -20%;
  height: 100%;
  overflow: visible;
}

.dashboard-image-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
  background-color: #cfe5f7; /* фон, чтобы было красиво вокруг изображения */
  border-radius: 16px;
  padding: 8px; /* чтобы было пространство вокруг */
}

.dashboard-image-slider .swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  z-index: 2;
}

.dashboard-image-slider img {
  width: auto;
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain; /* изображение полностью видно */
  border-radius: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.dashboard__video {
  margin-top: 2rem;
}

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

/* карточка */
.dashboard__video-item {
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  cursor: pointer;
}

/* изображение */
.dashboard__video-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

/* Кнопка Play */
.dashboard__video-thumb .video-card__play {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 10;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.dashboard__video-thumb .video-card__play::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.dashboard__video-thumb .video-card__play::after {
  content: "";
  position: absolute;
  margin-left: 4px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.dashboard__video-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.dashboard__video-item:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/* заголовок */
.dashboard__video-title {
  padding: 16px 18px 20px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--color-title);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.dashboard__video-item:hover .dashboard__video-title {
  -webkit-transform: translate(2px);
  -ms-transform: translate(2px);
  transform: translate(2px);
}

.dashboard__video-item:hover .dashboard__video-thumb .video-card__play {
  opacity: 1;
}

.dashboard__video-item:hover .dashboard__video-thumb .video-card__play::before {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .dashboard__video-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .dashboard__video-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/* footer */
.footer {
  position: relative;
  background: var(--color-dark);
  color: #fff;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/line-white.png") no-repeat center center/cover;
  opacity: 0.05;
  z-index: 0;
}
.footer::after {
      content: '';
    background-size: 14px 100%;
    height: 16px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 100%;
  background-image: linear-gradient(315deg, var(--color-dark) 25%, transparent 25%), linear-gradient(45deg, var(--color-dark) 25%, transparent 25%);
  z-index: 10;
}
/* ссылки */
.footer-links {
  padding: 40px 0;
  margin-bottom: 40px;
}

.footer-links__container {
  position: relative;
  padding: 40px;
  border: 4px dotted var(--color-orange);
  border-radius: var(--radius);
}

.footer-link {
  position: relative;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.footer-link img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-link:hover{
  color: var(--color-orange);
}
/* основной футтер */
.footer-main {
  position: relative;
  padding: 0 0 60px 0;
}

.footer-main__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr 1fr;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  position: relative;
  display: block;
  width: 120px;
  height: auto;
  margin-right: 1rem;
  margin-bottom: 16px;
}

.footer-col--logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-col p {
  font-size: 20px;
  margin-bottom: 0px;
}

.footer-col p span {
  font-size: 18px;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-col li a {
  display: inline-block;
  padding: 12px;
  border: 1px solid #fff;
  border-radius: 20px;
}

.footer-col li:nth-child(1) a {
  border-color: var(--color-orange);
}

.footer-col li:nth-child(2) a {
  border-color: var(--color-green);
}

.footer-col li:nth-child(3) a {
  border-color: var(--color-accent);
}

.footer-col li:nth-child(4) a {
  border-color: var(--color-red);
}

.footer-col a:hover {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.footer-col--contacts svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-right: 8px;
}
.footer-col--contacts p{
  margin-bottom: 10px;
}

.footer-bottom {
  background: var(--color-purple);
  padding: 14px 0;
  font-size: 13px;
}

.footer-bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgb(255, 255, 255);
}

/* ========================================== */
@media (max-width: 1280px) {

}
/* 1024 */
@media (max-width: 1024px) {
.header__top-contacts{
  display: none;
}
  .header__top .container{
    justify-content: center;
  }
  .header__info{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 10px;
  }
  .header__info-logo{
    width: 80%;
    justify-content: center;
    margin-right: 0;
  }
  .about__container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about__boss{
    width: 80%;
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .about__boss-photo{
    width: 40%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0rem;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    background: var(--color-dark);
    overflow: auto;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
    -o-transition: transform 0.2s ease-in, opacity 0.2s ease-in;
    transition: transform 0.2s ease-in, opacity 0.2s ease-in;
    transition: transform 0.2s ease-in, opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
    z-index: 100;
  }
  .nav.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .nav.active ul.nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding-top: 2rem;
    overflow: auto;
  }
  .nav.active ul.nav-list li.menu-item {
    display: block;
    text-align: center;
    margin-bottom: 16px;
  }
  .nav ul.nav-list .menu-item:first-child{
    background: transparent;
  }
  .nav.active ul.nav-list li.menu-item:not(:last-child) {
    margin-right: 0;
  }
  .nav.active ul.nav-list li.menu-item.has-child::before {
    content: none;
  }
  .nav.active ul.nav-list li.menu-item a {
    font-weight: 400;
    font-size: 14px;
  }
  .nav ul.nav-list .menu-item-has-children:before{
    content:none;
  }
  .nav.active ul.nav-list li.menu-item-has-children ul.sub-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    border-top: none;
    background: transparent;
    opacity: 1;
    border: none;
    visibility: visible;
    box-shadow: none;
  }
  .nav ul.nav-list .menu-item-has-children ul.sub-menu li.menu-item:not(:last-child){
    border-bottom: none;
  }
  .nav.active ul.nav-list li.menu-item-has-children ul.sub-menu li a{
    color: #fff !important;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
  }
  .nav.active ul.nav-list li.menu-item a {
    display: block;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    color: #fff;
    font-size: 18px;
  }
  .nav ul.nav-list .menu-item:last-child a{
    background: transparent;
  }
  .nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu li.menu-item a{
    text-align: center !important;
    display: flex;
    justify-content: center;
  }
  .nav ul.nav-list .menu-item.menu-item-has-children:before{
    content: none;
  }
  .burger {
    position: fixed;
    top: 20px;
    left: 20px;
    display: inline-block;
    z-index: 1000;
    padding: 15px;
  }
  .header__info-logo,
  .header__info-contacts{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }
  .header__info-contacts .phone{
    margin-bottom: 0.5rem;
  }
  .header__info-search{
    display: none;
  }
  .hero-content{
    max-width: 100%;
    text-align: center;
  }
  .hero-content h2{
    font-size: 28px;
  }
  .links__container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .links__item{
    width: 100%;
    aspect-ratio: unset;
  }
  .section-title,
  .line__container,
  .news__list{
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about__groups,
  .about__content{
    width: 100%;
  }
  .about__text{
    display: none;
  }
  .line__link{
    margin-right: 0;
  }
  .footer-links{
    display: none;
  }
  .footer-main__grid{
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col--logo{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }
  .footer-col ul{
    justify-content: center;
  }
  .footer-bottom{
    text-align: center;
  }
}
@media (max-width: 480px) {
.header__info{
  padding: 1rem 10px;
}
.about__boss{
  width: 100%;
}
.about__boss-photo{
  width: 60%;
}
.footer-main{
  padding: 0 0 20px 0;
}
}