

/* Start:/assets/css/pages/about.css?17843177336896*/
/* ==================================================================
   СТИЛИ ДЛЯ СТРАНИЦЫ "О ЦЕНТРЕ"
   ================================================================== */

/* Основные секции */
.main-content section {
  padding: 4rem 0;
  position: relative;
}

.main-content section:first-of-type {
  padding-top: 2rem;
}

/* Заголовки секций */
.section-title {
  color: var(--dark-blue, #0a58ca);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.8rem;
  font-family: 'Montserrat', sans-serif;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary, #0d6efd), var(--secondary, #1d8ce0));
  border-radius: 2px;
}

/* История */
.history-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary, #0d6efd);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

.history-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.1);
}

.history-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(13,110,253,0.02), transparent);
  pointer-events: none;
}

.history-year {
  display: inline-block;
  background: var(--primary, #0d6efd);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

/* Структура */
.structure-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.structure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.1);
  border-color: rgba(13, 110, 253, 0.2);
}

.structure-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(13,110,253,0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.structure-title {
  color: var(--dark-blue, #0a58ca);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-left: 1rem;
}

.structure-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary, #0d6efd), var(--secondary, #1d8ce0));
  border-radius: 2px;
}

.structure-item p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* Списки */
.main-content ul {
  list-style: none;
  padding-left: 0;
}

.main-content ul li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 1.05rem;
  color: #2d3748;
}

.main-content ul li:last-child {
  border-bottom: none;
}

.main-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary, #0d6efd);
  font-weight: 700;
  font-size: 1.2rem;
  background: rgba(13, 110, 253, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Текст */
.main-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2d3748;
  margin-bottom: 1.2rem;
}

.main-content p strong {
  color: var(--dark-blue, #0a58ca);
  font-weight: 700;
}

/* Фоны секций */
.bg-light {
  background-color: #f8f9fa !important;
  position: relative;
  isolation: isolate;
}

.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.bg-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* Адаптивность */
@media (max-width: 991.98px) {
  .main-content section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .structure-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .main-content section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .history-item {
    padding: 1.2rem;
    font-size: 1rem;
  }
  
  .history-year {
    display: block;
    width: fit-content;
    margin-bottom: 0.8rem;
  }
  
  .structure-item {
    padding: 1.5rem;
  }
  
  .structure-title {
    font-size: 1.2rem;
    padding-left: 0.8rem;
  }
  
  .structure-item p,
  .main-content p,
  .main-content ul li {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .main-content section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .section-title::after {
    width: 60px;
  }
  
  .history-item {
    padding: 1rem;
  }
  
  .structure-item {
    padding: 1.2rem;
  }
  
  .main-content ul li {
    padding: 0.6rem 0 0.6rem 1.8rem;
  }
  
  .main-content ul li::before {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }
}

/* Анимации при скролле */
.history-item,
.structure-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.history-item:nth-child(1) { animation-delay: 0.1s; }
.history-item:nth-child(2) { animation-delay: 0.2s; }
.history-item:nth-child(3) { animation-delay: 0.3s; }
.history-item:nth-child(4) { animation-delay: 0.4s; }

.structure-item:nth-child(1) { animation-delay: 0.1s; }
.structure-item:nth-child(2) { animation-delay: 0.2s; }
.structure-item:nth-child(3) { animation-delay: 0.3s; }
.structure-item:nth-child(4) { animation-delay: 0.4s; }
.structure-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Для пользователей с чувствительностью к анимациям */
@media (prefers-reduced-motion: reduce) {
  .history-item,
  .structure-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* End */


/* Start:/assets/css/layout/page-header.css?178431773315249*/
/* ==================================================================
   ЗАГОЛОВОК СТРАНИЦЫ - УНИВЕРСАЛЬНЫЙ КОМПОНЕНТ
   ================================================================== */

/* Используем CSS custom properties для легкой настройки */
:root {
  --header-primary: #0d6efd;
  --header-secondary: #0b5ed7;
  --header-accent: #ffffff;
  --header-gradient-1: #1a2a6c;
  --header-gradient-2: #0d6efd;
  --header-gradient-3: #0b5ed7;
  --header-text-light: rgba(255, 255, 255, 0.95);
  --header-shadow: rgba(0, 0, 0, 0.2);
  --header-glow: rgba(255, 255, 255, 0.15);
}

/* Основной контейнер заголовка */
.page-header {
  position: relative;
  background: linear-gradient(135deg, 
    var(--header-gradient-1), 
    var(--header-gradient-2), 
    var(--header-gradient-3));
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  will-change: background-position;
}

/* Анимация градиента */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Фоновые элементы */
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: min(800px, 80vw);
  height: min(800px, 80vw);
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 20s ease-in-out infinite;
  z-index: 1;
  will-change: transform;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 25s ease-in-out infinite reverse;
  z-index: 1;
  will-change: transform;
}

/* Анимация плавающих элементов */
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -3%) scale(1.05); }
  66% { transform: translate(-2%, 2%) scale(0.95); }
}

/* Геометрические фигуры */
.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 1;
  will-change: transform, border-radius;
}

.shape-1 {
  width: min(400px, 40vw);
  height: min(400px, 40vw);
  top: -15%;
  right: 5%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotateSlow 35s linear infinite;
}

.shape-2 {
  width: min(300px, 30vw);
  height: min(300px, 30vw);
  bottom: -10%;
  left: 10%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: rotateSlow 45s linear infinite reverse;
}

.shape-3 {
  width: min(200px, 20vw);
  height: min(200px, 20vw);
  top: 30%;
  left: 15%;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  animation: morphShape 18s ease-in-out infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes morphShape {
  0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  50% { border-radius: 42% 58% 38% 62% / 48% 33% 67% 52%; }
}

/* Парящие иконки */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  animation: floatIcon 18s linear infinite;
  will-change: transform;
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 70%; right: 8%; animation-delay: 3s; }
.floating-icon:nth-child(3) { bottom: 15%; left: 12%; animation-delay: 6s; }
.floating-icon:nth-child(4) { top: 40%; right: 18%; animation-delay: 9s; }
.floating-icon:nth-child(5) { bottom: 30%; left: 35%; animation-delay: 12s; }

@keyframes floatIcon {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
  50% { transform: translateY(15px) translateX(-15px) rotate(180deg); }
  75% { transform: translateY(-25px) translateX(15px) rotate(270deg); }
  100% { transform: translateY(0) translateX(0) rotate(360deg); }
}

/* Частицы */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  opacity: 0.4;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
  will-change: transform;
}

.particle:nth-child(1) { top: 15%; left: 8%; animation-duration: 10s; }
.particle:nth-child(2) { top: 75%; left: 15%; animation-duration: 14s; animation-delay: 2s; }
.particle:nth-child(3) { top: 35%; right: 12%; animation-duration: 12s; animation-delay: 4s; }
.particle:nth-child(4) { bottom: 25%; right: 20%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(5) { top: 85%; left: 35%; animation-duration: 13s; animation-delay: 3s; }

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-30px) translateX(15px); }
  50% { transform: translateY(20px) translateX(-20px); }
  75% { transform: translateY(-25px) translateX(12px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Контейнер с контентом */
.page-header .container {
  position: relative;
  z-index: 10;
}

.page-header .py-5 {
  padding-top: clamp(3rem, 8vh, 5rem) !important;
  padding-bottom: clamp(3rem, 8vh, 5rem) !important;
}

/* Левая часть с заголовком */
.page-header .col-lg-8 {
  animation: slideInLeft 0.7s ease-out;
  position: relative;
}

/* Заголовок */
.page-header h1 {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--header-accent) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientText 8s ease infinite;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-shadow: 0 5px 15px var(--header-shadow);
  will-change: background-position;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Декоративная линия под заголовком */
.page-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--header-primary), #fff, var(--header-primary));
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 0.3s both;
}

@keyframes expandWidth {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}

/* Подзаголовок */
.page-header .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--header-text-light);
  max-width: 90%;
  text-shadow: 0 2px 4px var(--header-shadow);
  animation: fadeInUp 0.7s ease-out 0.2s both;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--header-primary);
  font-weight: 400;
}

/* Счетчик услуг/информации */
.service-counter {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 1.5rem;
  animation: fadeInUp 0.7s ease-out 0.4s both;
  box-shadow: 0 5px 15px var(--header-shadow);
  transition: transform 0.3s ease;
}

.service-counter:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.service-counter i {
  margin-right: 0.8rem;
  color: var(--header-accent);
  font-size: 1.2rem;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Правая часть с карточкой */
.page-header .col-lg-4 {
  animation: slideInRight 0.7s ease-out 0.3s both;
}

/* Карточка */
.page-header .bg-white {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  padding: 1.5rem !important;
}

.page-header .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2), 0 0 0 2px var(--header-primary) !important;
}

/* Декоративный элемент карточки */
.page-header .bg-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--header-primary), #fff, var(--header-primary));
  background-size: 200% 100%;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* Заголовок карточки */
.page-header .bg-white h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-header .bg-white h6 i {
  color: var(--header-primary);
  font-size: 1.2rem;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Основная кнопка */
.page-header .btn-primary {
  background: linear-gradient(135deg, var(--header-primary), var(--header-secondary));
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.page-header .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.4);
  background: linear-gradient(135deg, var(--header-secondary), var(--header-primary));
}

.page-header .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.page-header .btn-primary i {
  transition: transform 0.3s ease;
}

.page-header .btn-primary:hover i {
  transform: translateX(5px) scale(1.1);
}

/* Вторичная кнопка */
.page-header .btn-outline-primary {
  background: transparent;
  border: 2px solid var(--header-primary);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.page-header .btn-outline-primary:hover {
  background: var(--header-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.page-header .btn-outline-primary i {
  transition: transform 0.3s ease;
}

.page-header .btn-outline-primary:hover i {
  transform: rotate(90deg);
}

/* Анимации текста */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================================
   АДАПТИВНОСТЬ
   ================================================================== */

@media (max-width: 991.98px) {
  .page-header .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .page-header .col-lg-8,
  .page-header .col-lg-4 {
    text-align: center !important;
  }
  
  .page-header .lead {
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid var(--header-primary);
    padding-left: 1rem;
    text-align: left;
    max-width: 90%;
  }
  
  .page-header h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .page-header .col-lg-4 {
    margin-top: 2rem;
  }
  
  .page-header .bg-white {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .floating-icons,
  .particles,
  .shape {
    opacity: 0.2;
    animation: none;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header .lead {
    font-size: 1rem;
    padding-left: 0.8rem;
  }
  
  .page-header .bg-white h6 {
    font-size: 1rem;
  }
  
  .page-header .btn-primary,
  .page-header .btn-outline-primary {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
  
  .service-counter {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }
}

@media (max-width: 576px) {
  .page-header .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .page-header .bg-white {
    padding: 1.2rem !important;
    border-radius: 16px !important;
  }
  
  .floating-icons,
  .particles {
    display: none;
  }
}

/* Для пользователей, которые предпочитают уменьшенное движение */
@media (prefers-reduced-motion: reduce) {
  .page-header,
  .page-header::before,
  .page-header::after,
  .shape,
  .floating-icon,
  .particle,
  .service-counter i,
  .page-header .btn-primary,
  .page-header .btn-outline-primary {
    animation: none !important;
    transition: none !important;
  }
  
  .page-header .bg-white:hover {
    transform: none;
  }
}
/* End */
/* /assets/css/pages/about.css?17843177336896 */
/* /assets/css/layout/page-header.css?178431773315249 */
