.vo-news,
.vo-news * {
  box-sizing: border-box;
}
@font-face {
    font-family: 'Montserrat Alternates';
    src: local('Montserrat Alternates Regular'), local('Montserrat-Alternates-Regular'),
        url('../../fonts/MontserratAlternates-Regular.woff2') format('woff2'),
        url('../../fonts/MontserratAlternates-Regular.woff') format('woff'),
        url('../../fonts/MontserratAlternates-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-family: 'Comfortaa';
    src: local('Comfortaa Regular'), local('Comfortaa-Regular'),
        url('../../fonts/Comfortaa-Regular.woff2') format('woff2'),
        url('../../fonts/Comfortaa-Regular.woff') format('woff'),
        url('../../fonts/Comfortaa-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
.vo-news {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Comfortaa", sans-serif;
  background-color: #f8f8f8;
  overflow-x: hidden;
}

a:link,  a:hover, a:focus, a:active {
  color: white; 
  text-decoration: none; 
}

a:visited {
  color: gray;
}

.standards-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 67vw;
  min-height: 88vh;
  background-color: #f8f8f8;
  padding: 32px;
  gap: 32px;
}

.standards-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: #444;
  margin-bottom: 24px;
}

.standards-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #444;
  margin-bottom: 32px;
}

.standards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.standard-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background-color: #f8f8f8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.standard-item:hover {
  transform: translateY(-4px);
}

.standard-content {
  flex: 1;
}

.standard-title {
  font-size: 16px;
  color: #444;
}

.download-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  color: #ffffff;
  background-color: #00a1ff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Comfortaa", cursive;
}

.standard-item:hover .download-button {
  background-color: #4318d1;
}

.download-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .standard-item {
    flex-direction: column;
    gap: 16px;
  }

  .standard-content {
    width: 100%;
    margin-bottom: 8px;
  }

  .download-button {
    width: 100%;
    justify-content: center;
  }
}

/* Header section */
.organization-header {
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 300px;
  background-color: #f8f8f8;
  position: relative;
  padding-bottom: 5px;
}

.header-content {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 40px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo styles */
.logo-container {
  position: relative;
}

.logo-figure {
  position: relative;
  cursor: pointer;
}

.logo-image {
  width: 210px;
  height: 175px;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 8px;
  transition: box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-figure:hover .logo-image {
  transform: scale(1.03) rotate(1deg);
}

.logo-figure:hover .logo-overlay {
  box-shadow: 0 12px 28px rgba(0, 161, 255, 0.2);
}

/* Title styles */
.title-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-title {
  font-size: 32px;
  color: #444;
  font-weight: 500;
  line-height: 1.2;
  max-width: 900px;
  position: relative;
}

.title-text {
  position: relative;
  z-index: 1;
  transition: text-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.subtitle {
  font-size: 28px;
  color: #666;
  font-weight: 400;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.title-underline {
  height: 3px;
  width: 120px;
  background-color: #00a1ff;
  margin-top: 5px;
  border-radius: 9999px;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-figure:hover ~ .title-container .title-text {
  text-shadow: 0 2px 4px rgba(0, 161, 255, 0.1);
}

.logo-figure:hover ~ .title-container .subtitle {
  transform: translateX(5px);
}

.logo-figure:hover ~ .title-container .title-underline {
  width: 180px;
  background-color: #0066cc;
}

/* Navigation section */
.education-nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100px;
  margin-top: auto;
}

.nav-container {
  display: flex;
  align-items: flex-end;
  width: 100%;
  position: relative;
}

.nav-background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 43px;
  background-color: #0066cc;
  opacity: 0.9;
  z-index: 0;
}

.nav-content {
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.nav-buttons1 {
  display: flex;
  align-items: flex-end;
  width: 100%;
}

/* Button styles */
.nav-button1 {
  position: relative;
  transition:
    transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
    z-index 100ms;
  z-index: 1;
}

.spo-button,
.dpo-button {
  width: 385px;
  cursor: pointer;
}

.vo-button {
  width: 600px;
}

.button-content {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    background-color 500ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.spo-button .button-content,
.dpo-button .button-content {
  height: 85px;
  background-color: #00a1ff;
}

.vo-button .button-content {
  height: 95px;
  background-color: #0097ee;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.button-shine {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  opacity: 0;
  transform: translateX(-100%);
  transition:
    opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.3;
}

.spo-button .button-text,
.dpo-button .button-text {
  font-size: 16px;
  width: 100%;
}

.vo-button .button-text {
  font-size: 24px;
}

/* Hover effects for buttons */
.nav-button1:hover {
  transform: translateY(-8px);
  z-index: 0;
}

.nav-button1:hover .button-content {
  background-color: #0066cc;
  transform: scale(1);
}

.nav-button1:hover .button-shine {
  opacity: 1;
  transform: translateX(100%);
}

.nav-button1:hover .button-text {
  transform: scale(1.03);
}

.main {
  background: #f8f8f8;
  padding: 20px 10px 50px 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.menu {
  padding: 10px 20px 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 384px;
  min-width: 212px;
  max-width: 438px;
  position: relative;
}
/* Main container */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #f5f5f5;
  position: relative;
}

/* Carousel */
.carousel {
  position: relative;
  max-width: 600px;
  width: 100%;
}

/* Скрываем радио-кнопки */
.carousel-control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Контейнер слайдов */
.carousel-slides {
  position: relative;
  width: 100%;
  overflow: hidden; /* Обрезаем содержимое, выходящее за пределы видимой области */
}

/* Стили карточки (слайда) */
.card {
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 15px;
  border-radius: 8px;
  background-color: #4318d1;
  box-shadow: 0px 4px 12px 0px rgba(67, 24, 209, 0.15);
  width: 100%;
  position: absolute;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* При активном состоянии карточка выезжает в поле зрения */
#slide1:checked ~ .carousel-slides #carousel-slide1
/* Для дополнительных слайдов добавьте:
, #slide3:checked ~ .carousel-slides #carousel-slide3, ... */
{
  transform: translateX(0);
  opacity: 1;
  z-index: 1;
  position: relative;
}

/* Стили шапки карточки */
.card-header {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Дата */
.date {
  font-size: 14px;
  color: #ffffff;
  flex: 1;
}

/* Контейнер кнопок навигации */
.nav-buttons {
  display: flex;
  gap: 12px;
}

/* Стили кнопок навигации */
.nav-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Заголовок */
.title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 28px;
}

/* Кнопка действия (при необходимости) */
.action-btn {
  all: unset;
  display: flex;
  flex-direction: column;
  position: absolute;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-top: 20px;
  appearance: none;
  padding: 15px 25px;
  background-color: black;
  color: white;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  bottom: 20%;
}

/* Responsive стили */
@media (max-width: 640px) {
  .carousel {
    margin: 0 15px;
  }
}

/* Переменные для цветов и анимаций */
:root {
  --primary-color: #0d99ff;
  --primary-light: rgba(13, 153, 255, 0.1);
  --primary-lighter: rgba(13, 153, 255, 0.05);
  --text-color: #000;
  --text-secondary: #666;
  --bg-color: #f0f0f0;
  --white: #fff;
  --transition-duration: 500ms;
  --transition-duration-fast: 300ms;
  --shadow-hover: 0 4px 12px rgba(13, 153, 255, 0.15);
  --border-radius: 12px;
  --border-radius-small: 8px;
}

/* Сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Comfortaa", sans-serif;
  background-color: var(--white);
  padding: 0px;
  display: flex;
  justify-content: flex-start; /* Выравниваем контент слева */
  align-items: flex-start;
}

/* Основной контейнер меню */
.menu-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Выравниваем все элементы по левому краю */
  width: 100%;
  max-width: 400px; /* Ограничиваем ширину меню */
}

/* Общие анимационные эффекты для внешних контейнеров меню */
.news-compon,
.consist-and-struct,
.struct,
.vu-zi,
.prof-standart,
.utverzhdenn,
.obshestv,
.docs,
.fgos,
.pop,
.normativka,
.metodik-work,
.smth,
.contacnts {
  transition: transform var(--transition-duration), box-shadow var(--transition-duration);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Выравниваем контент слева */
  width: 100%;
}

/* При наведении – масштабирование и смещение */
.news-compon:hover,

.struct:hover,
.vu-zi:hover,

.utverzhdenn:hover,
.obshestv:hover,

.fgos:hover,
.pop:hover,
.normativka:hover,
.metodik-work:hover,
.smth:hover,
.contacnts:hover {
  transform: scale(1.02) translateX(5px);

}

/* Фоновые блоки с изначальным фоном */
.frame-61,
.frame-62,
.frame-63,
.frame-64,
.frame-65 {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: background-color var(--transition-duration), transform var(--transition-duration);
  width: 100%;
}

/* Фоновые блоки без изначального фона */
.frame-80,
.frame-72,
.frame-73,
.frame-74,
.frame-75,
.frame-76,
.frame-77,
.frame-78,
.frame-79 {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-small);
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: background-color var(--transition-duration);
  width: 100%;
}

/* Изменение фона при наведении */
.news-compon:hover .frame-61,
.contacnts:hover .frame-65,
.struct:hover .frame-80,
.vu-zi:hover .frame-72,
.utverzhdenn:hover .frame-73,
.obshestv:hover .frame-74,
.fgos:hover .frame-75,
.pop:hover .frame-76,
.normativka:hover .frame-77,
.metodik-work:hover .frame-78,
.smth:hover .frame-79 {
background-color: var(--primary-light);
}

.frame-62, .frame-63, .frame-64, .frame-74 {
  cursor: not-allowed;
}

/* Плавное изменение цвета текста */
.div5,
.div6 {
  color: var(--text-color);
  transition: color var(--transition-duration);
}

/* При наведении меняем цвет текста */
.news-compon:hover .div5,
.contacnts:hover .div5,
.struct:hover .div6,
.vu-zi:hover .div6,
.utverzhdenn:hover .div6,
.obshestv:hover .div6,
.fgos:hover .div6,
.pop:hover .div6,
.normativka:hover .div6,
.metodik-work:hover .div6,
.smth:hover .div6 {
  color: var(--primary-color);
}

/* Анимация для SVG-иконок */
.vector, {
  transition: filter var(--transition-duration);
}

.news-compon:hover .vector, {
  filter: brightness(0) saturate(100%) invert(34%) sepia(77%) saturate(3181%) hue-rotate(189deg) contrast(98%);
}

/* Медиа-запрос для адаптивности */
@media (max-width: 1024px) {
  body {
    padding: 0px;
  }

  .menu-container {
    width: 100%;
    max-width: 100%;
  }
}


.news {
  padding: 0px 20px 0px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  min-width: 622px;
  position: relative;
}
.frame-113 {
  border-radius: 0px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 364px;
  position: relative;
}
.frame-112 {
  border-radius: 0px 20px 20px 0px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.rectangle7 {
  background: #4318d1;
  border-radius: 2px;
  flex-shrink: 0;
  width: 6px;
  height: 40px;
  position: relative;
}
.div7 {
  color: #111111;
  text-align: left;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
  position: relative;
  flex: 1;
}
.frame-111 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.rectangle8 {
  background: #4318d1;
  flex-shrink: 0;
  width: 120px;
  height: 1px;
  position: relative;
}
.div8 {
  color: #666666;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.2px;
  font-weight: 400;
  position: relative;
  flex: 1;
}
.news-obnov {
  background: #f8f8f8;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  box-shadow: -5px 0px 4px 0px rgba(67, 24, 209, 1);
}
.fumologo-22 {
  align-self: stretch;
  flex: 1;
  max-width: 251px;
  min-height: 202px;
  position: relative;
  object-fit: cover;
}
.frame-51 {
  border-radius: 10px;
  padding: 5px 10px 5px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}
._27-2024 {
  color: #666666;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.div9 {
  color: #000000;
  text-align: left;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.div10 {
  color: #444444;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.div-10-span {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.div-10-span2 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
}
.div-10-span3 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.news-plan-grafik {
  background: #f8f8f8;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  box-shadow: -5px 0px 4px 0px rgba(67, 24, 209, 1);
}
.plan-grafic-img {
  border-radius: 5px 0px 0px 5px;
  flex: 1;
  height: 218px;
  max-width: 251px;
  position: relative;
  object-fit: cover;
}
.text-plan-grafik {
  border-radius: 10px;
  padding: 5px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}
._25-2024 {
  color: #666666;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
._2025 {
  color: #000000;
  text-align: left;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
._20252 {
  color: #444444;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
._20252-span {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
._20252-span2 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: underline;
}
._20252-span3 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.plan-fumo {
  background: #f8f8f8;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  box-shadow: -5px 0px 4px 0px rgba(67, 24, 209, 1);
}
.plan-fumo-img {
  border-radius: 5px 0px 0px 5px;
  align-self: stretch;
  flex-shrink: 0;
  width: 251px;
  min-width: 220px;
  position: relative;
  object-fit: cover;
}
.plan-fumo-text {
  border-radius: 10px;
  padding: 5px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}
._20-2024 {
  color: #666666;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
._20252-span4 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
._20252-span5 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: underline;
}
._20252-span6 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.materials {
  background: #f8f8f8;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  box-shadow: -5px 0px 4px 0px rgba(67, 24, 209, 1);
}
.materials-img {
  border-radius: 5px 0px 0px 5px;
  align-self: stretch;
  flex-shrink: 0;
  width: 251px;
  position: relative;
  object-fit: cover;
}
.materials-text {
  border-radius: 10px;
  padding: 5px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}
._15-2024 {
  color: #666666;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
._6-7-2024 {
  color: #444444;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
._6-7-2024-span {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
._6-7-2024-span2 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: underline;
}
._6-7-2024-span3 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.footer {
  background: #f8f8f8;
  padding: 50px 0px 10px 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.footer-devider-up {
  background: rgba(0, 0, 0, 0.5);
  align-self: stretch;
  flex-shrink: 0;
  height: 1px;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, -1);
}
.begin-footer {
  padding: 5px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.educate {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.frame-82 {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.div11 {
  color: #000000;
  text-align: left;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.015em;
  font-weight: 700;
  position: relative;
  flex: 1;
  cursor: pointer;
}
.frame-83 {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.frame-84 {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.fumologo {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 235px;
  position: relative;
}
.fumologo-1 {
  flex-shrink: 0;
  width: 47.81px;
  height: 59px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 47.81/59;
}
.photo {
  color: #000000;
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  font-size: 28.444446563720703px;
  letter-spacing: -0.015em;
  font-weight: 400;
  position: relative;
  width: 151.59px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts {
 padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.frame-96 {
  padding: 0px 10px 0px 10px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.tdesign-call-1 {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  position: relative;
  overflow: visible;
  aspect-ratio: 1;
}
._7-495-989-30-91 {
  color: #444444;
  text-align: left;
  font-family: "SegoeUi-Regular", sans-serif;
  font-size: 13px;
  font-weight: 400;
  position: relative;
  flex: 1;
}
.frame-97 {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.fluent-emoji-high-contrast-e-mail {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.group {
  width: 93.75%;
  height: 68.75%;
  position: absolute;
  right: 3.13%;
  left: 3.12%;
  bottom: 15.62%;
  top: 15.62%;
  overflow: visible;
}
.fumoib-yandex-ru {
  color: #000000;
  text-align: left;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: -0.015em;
  font-weight: 400;
  text-decoration: underline;
  position: relative;
  flex: 1;
}
.frame-98 {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}
.mdi-address-marker-outline {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  position: relative;
  overflow: visible;
  aspect-ratio: 1;
}
._70 {
  color: #000000;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: -0.015em;
  font-weight: 400;
  position: relative;
  flex: 1;
}
.footer-devider-down {
  background: rgba(0, 0, 0, 0.5);
  align-self: stretch;
  flex-shrink: 0;
  height: 1px;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, -1);
}
.end-footer {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-93 {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-89 {
  background: #d9d9d9;
  border-radius: 22px;
  padding: 6px 7px 6px 7px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
.title-umo-main-ico-1 {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1;
}
.frame-90 {
  background: #d9d9d9;
  border-radius: 22px;
  padding: 6px 7px 6px 7px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
.title-umo-vpo-2 {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1;
}
.frame-91 {
  background: #d9d9d9;
  border-radius: 22px;
  padding: 6px 7px 6px 7px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
.title-umo-spo-1 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1;
}
.frame-92 {
  background: #d9d9d9;
  border-radius: 22px;
  padding: 6px 7px 6px 7px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
.title-umo-dpo-1 {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1;
}
._1996-2025 {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.015em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

/*mobile*/

.mobile-vo-main {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  display: none;
}

@media (max-width: 1020px) {
  .vo-news {
    display: none;
  }
  .mobile-vo-main {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 10px;
}

.headmob {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
/**/



/* Carousel */
.carousel1 {
  position: relative;
  max-width: 600px;
  width: 100%;
}

/* Скрываем радио-кнопки */
.carousel-control1 {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Контейнер слайдов */
.carousel-slides1 {
  position: relative;
  width: 100%;
  overflow: hidden; /* Обрезаем содержимое, выходящее за пределы видимой области */
}

/* Стили карточки (слайда) */
.card1 {
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 15px;
  border-radius: 8px;
  background-color: #4318d1;
  box-shadow: 0px 4px 12px 0px rgba(67, 24, 209, 0.15);
  width: 100%;
  position: absolute;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* При активном состоянии карточка выезжает в поле зрения */
#slide11:checked ~ .carousel-slides1 #carousel-slide11
/* Для дополнительных слайдов добавьте:
, #slide31:checked ~ .carousel-slides1 #carousel-slide31, ... */
{
  transform: translateX(0);
  opacity: 1;
  z-index: 1;
  position: relative;
}

/* Стили шапки карточки */
.card-header1 {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Дата */
.date1 {
  font-size: 14px;
  color: #ffffff;
  flex: 1;
}

/* Контейнер кнопок навигации */
.nav-buttons12 {
  display: flex;
  gap: 12px;
}

/* Стили кнопок навигации */
.nav-btn1 {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Заголовок */
.title3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 28px;
}

/* Кнопка действия (при необходимости) */
.action-btn1 {
  all: unset;
  display: flex;
  flex-direction: column;
  position: absolute;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-top: 20px;
  appearance: none;
  padding: 15px 25px;
  background-color: black;
  color: white;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  bottom: 20%;
}



/**/

.page-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-area {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 20px;
}

.logo {
  border-radius: 8px;
}

.content-container {
  width: 100%;
}

.header-content {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
}

.main-title1 {
  font-size: 24px;
  color: #444;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  text-align: center;
}

.main-title1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #0056a4;
  border-radius: 2px;
}

.subtitle1 {
  font-size: 20px;
  color: #666;
  margin-bottom: 24px;
  text-align: center;
}

.divider {
  width: 120px;
  height: 3px;
  background-color: #00a1ff;
  border-radius: 9999px;
  margin: 0 auto;
}

.education-blocks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.education-block {
  width: 100%;
  height: 70px;
  background-color: #00a1ff;
  border-radius: 12px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
}

.education-block:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.15);
}

.education-block:hover .block-title,
.education-block:hover .block-subtitle {
  transform: scale(1.05);
}

.secondary:hover {
  background-color: #0090e9;
}

.higher {
  height: 80px;
  background-color: #0056a4;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 16px;
  background-image: linear-gradient(to right, #0056a4, #0074d9);
}

.higher:hover {
  background-image: linear-gradient(to right, #004c91, #0069c5);
}

.additional:hover {
  background-color: #0090e9;
}

.block-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 0 10px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.higher .block-title {
  font-size: 20px;
}

.block-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 0 10px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

/**/


.main-info {
  background: #ffffff;
  padding: 10px 0px 10px 0px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}


.news-headline {
  border-radius: 0px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-112 {
  border-radius: 0px 20px 20px 0px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.newsrect1 {
  background: #4318d1;
  border-radius: 2px;
  flex-shrink: 0;
  width: 6px;
  height: 40px;
  position: relative;
}
.newsand {
  color: #111111;
  text-align: left;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
  position: relative;
  flex: 1;
}
.frame-111 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.newsrect2 {
  background: #4318d1;
  flex-shrink: 0;
  width: 120px;
  height: 1px;
  position: relative;
}
.vospodpo {
  color: #666666;
  text-align: left;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.2px;
  font-weight: 400;
  position: relative;
  flex: 1;
}
.lenta-news {
  padding: 0px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
  max-width: 700px;
  position: relative;
}
.obnovlenie {
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(67, 24, 209, 1);
}
.fumologonews {
  width: 100%;
  flex-shrink: 0;
  height: 202px;
  max-width: 251px;
  min-height: 202px;
  position: relative;
  object-fit: cover;
}
.txtnwdpo {
  border-radius: 10px;
  padding: 5px 10px 5px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.datenw1 {
  color: #666666;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.obntxt {
  color: #000000;
  text-align: left;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.smthnw1 {
  color: #444444;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.div-7-span {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.div-7-span2 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
}
.div-7-span3 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.plan-grafik {
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(67, 24, 209, 1);
}
.plan-grafic-imgmob {
  border-radius: 5px 0px 0px 5px;
  flex-shrink: 0;
  width: 251px;
  height: 218px;
  max-width: 251px;
  position: relative;
  object-fit: cover;
}
.text-plan-grafikmob {
  border-radius: 10px;
  padding: 5px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.datenw2 {
  color: #666666;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.plangtxt {
  color: #000000;
  text-align: left;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.nw2 {
  color: #444444;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.nw2-span {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.nw2-span2 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: underline;
}
.nw2-span3 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.plan-fumomob {
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(67, 24, 209, 1);
}
.plan-fumo-imgmob {
  border-radius: 5px 0px 0px 5px;
  width: 100%;
  flex-shrink: 0;
  height: 148px;
  max-width: 251px;
  position: relative;
  object-fit: cover;
}
.plan-fumo-textmob {
  border-radius: 10px;
  padding: 5px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.datenw3 {
  color: #666666;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.nw2-span4 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.nw2-span5 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: underline;
}
.nw2-span6 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.materialsmob {
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(67, 24, 209, 1);
}
.materials-imgmob {
  border-radius: 5px 0px 0px 5px;
  width: 100%;
  flex-shrink: 0;
  height: 224px;
  max-width: 251px;
  position: relative;
  object-fit: cover;
}
.materials-textmob {
  border-radius: 10px;
  padding: 5px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.datenw4 {
  color: #666666;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.nw4 {
  color: #444444;
  text-align: left;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.nw4-span {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.nw4-span2 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: underline;
}
.nw4-span3 {
  color: #444444;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
}
.footermob {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 29px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.footer-devider-up {
  background: rgba(0, 0, 0, 0.5);
  align-self: stretch;
  flex-shrink: 0;
  height: 1px;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, -1);
}
.footer-info {
  padding: 0px 5px 0px 5px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  flex-direction: column;
}
.contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.phone {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.tdesign-call-1 {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  position: relative;
  overflow: visible;
  aspect-ratio: 1;
}
._7-495-989-30-91 {
  color: #444444;
  text-align: center;
  font-family: "SegoeUi-Regular", sans-serif;
  font-size: 13px;
  font-weight: 400;
  position: relative;
  flex: 1;
  max-width: 121px;
}
.mail {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.fluent-emoji-high-contrast-e-mail {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.group {
  width: 93.75%;
  height: 68.75%;
  position: absolute;
  right: 3.13%;
  left: 3.12%;
  bottom: 15.62%;
  top: 15.62%;
  overflow: visible;
}
.fumoib-yandex-ru {
  color: #000000;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: -0.015em;
  font-weight: 400;
  text-decoration: underline;
  position: relative;
  flex: 1;
  max-width: 134px;
}
.address {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.mdi-address-marker-outline {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  position: relative;
  overflow: visible;
  aspect-ratio: 1;
}
._70 {
  color: #000000;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: -0.015em;
  font-weight: 400;
  position: relative;
  flex: 1;
  max-width: 265px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  height: 151px;
  max-width: 152px;
  position: relative;
}
.fumologo_f {
  width: 100%;
  flex-shrink: 0;
  height: 111px;
  max-width: 90px;
  position: relative;
  object-fit: cover;
}
.div_f {
  color: #000000;
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  font-size: 28.444446563720703px;
  letter-spacing: -0.015em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.educational {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.vo2 {
  padding: 10px 0px 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.fumostxt {
  color: #000000;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.015em;
  font-weight: 700;
  position: relative;
  flex: 1;
  cursor: pointer;
}
.spo2 {
  padding: 10px 0px 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.dpo2 {
  padding: 10px 0px 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.footer-devider-down {
  background: rgba(0, 0, 0, 0.5);
  align-self: stretch;
  flex-shrink: 0;
  height: 1px;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, -1);
}
.end-footer {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.fumos {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.main {
  background: #d9d9d9;
  border-radius: 22px;
  padding: 6px 7px 6px 7px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
.title-umo-main-ico-1 {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1;
}
.vo3 {
  background: #d9d9d9;
  border-radius: 22px;
  padding: 6px 7px 6px 7px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
.title-umo-vpo-2 {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1;
}
.spo3 {
  background: #d9d9d9;
  border-radius: 22px;
  padding: 6px 7px 6px 7px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
.title-umo-spo-1 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1;
}
.dpo3 {
  background: #d9d9d9;
  border-radius: 22px;
  padding: 6px 7px 6px 7px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
.title-umo-dpo-1 {
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1;
}
._1996-2025 {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.015em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
}


/* CAROUSEL_LINK_COLORS_START */
.card-link, .card-link1 {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}
.card-link:hover, .card-link:focus, .card-link:active,
.card-link1:hover, .card-link1:focus, .card-link1:active {
  color: #4318D1;
}
.card-link:visited, .card-link1:visited {
  color: #b3b3b3;
}
/* CAROUSEL_LINK_COLORS_END */

