/* Основные стили */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #191b45;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Класс для блокировки прокрутки при открытом модальном окне */
body.modal-open,
html.modal-open {
  overflow: hidden;
}

/* --- Анимация для плавного закрытия модальных окон --- */
@keyframes fadeOutScale {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* --- Анимация для плавного появления модальных окон --- */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Стили для нового Hero Section --- */
.hero-section {
  background-color: #f8f9fc;
  background-image: url('../img/block/hero-bg.svg');
  background-size: cover;
  background-position: center;
  padding: 200px 20px 120px 20px;
  text-align: center;
  overflow: hidden;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-text-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #191b45;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text-content p {
  font-size: 1.2rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.hero-btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 123, 255, 0.3);
}

.hero-partners {
  margin-top: 60px;
}

.hero-partners p {
  font-size: 2.2rem; /* Увеличил размер шрифта */
  color: #6c757d;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px; /* Немного увеличил расстояние между логотипами */
  flex-wrap: wrap;
}

.hero-partners-logos img {
  height: 80px; /* Увеличил высоту логотипов */
  width: auto;
  opacity: 0.8; /* Немного приглушаем для эффекта при наведении */
  transition: all 0.3s ease;
}

.hero-partners-logos img:hover {
  opacity: 1;
  transform: scale(1.05); /* Добавляем легкое увеличение */
}

/* Стили для кнопок */
.btn, .btn-secondary-custom {
  padding: 0.75rem 2.5rem;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 500;
  text-decoration: none; /* Убираем подчеркивание у ссылок-кнопок */
}

.btn:hover, .btn-secondary-custom:hover {
  background: #0056b3;
}

.btn-secondary-custom {
  background: white;
  color: #007BFF;
  border: 1px solid #007BFF;
}

.btn-secondary-custom:hover {
  background: #f8f9fa;
  color: #0056b3;
  border-color: #0056b3;
}

/* Стили для модального окна */
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal:not(.is-hiding) .modal-content {
    animation: fadeInScale 0.3s ease-out forwards;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 25px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  color: #007BFF;
  margin-bottom: 15px;
  text-align: center;
}

.form-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

input, select {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

form .form-group {
  width: 100%; /* Гарантируем, что контейнер поля занимает всю ширину */
}

input:focus, select:focus {
  outline: none;
  border-color: #007BFF;
}

/* Исправляем ширину поля для ввода номера телефона (intl-tel-input) */
.iti {
  width: 100%;
}

/* --- Стили для новой секции "Кому мы помогаем" --- */

.industries-section {
  padding: 80px 0;
  background-color: #f8f9fc; /* Меняем фон на светло-серый для визуального разделения */
  overflow: hidden; /* Важно для работы бегущей строки */
  text-align: center;
}

.industries-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: #191b45;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  animation: scroll 30s linear infinite;
}

.marquee[data-direction="right"] .marquee-group {
  animation-direction: reverse;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}

.marquee-item {
  background-color: #f0f2f5;
  border-radius: 12px;
  padding: 20px 40px;
  margin: 0 1rem;
  color: #191b45;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
}

.marquee-item:hover {
  background-color: #007BFF;
  color: #fff;
}

/* --- Стили для новой секции "Эксперт" --- */

.expert-section {
  padding: 80px 20px;
  background-color: #f8f9fc;
  position: relative;
}

.expert-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
}

.expert-image-wrapper {
  flex-shrink: 0;
  width: 350px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expert-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-content-wrapper {
  max-width: 550px;
  text-align: left;
}

.expert-subtitle {
  display: inline-block;
  background-color: #e9ecef;
  color: #007BFF;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.expert-name {
  font-size: 2.5rem;
  font-weight: 600;
  color: #191b45;
  margin: 0 0 15px 0;
}

.expert-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.expert-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.highlight-item i {
  font-size: 1.5rem;
  color: #007BFF;
  width: 30px;
  text-align: center;
}

.highlight-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* --- Стили для секции "Директор" (модификатор для expert-section) --- */

.expert-section--alt {
  background-color: #fff; /* Белый фон для чередования */
}

.expert-section--alt .expert-container {
  flex-direction: row-reverse; /* Меняем порядок: текст слева, картинка справа */
}


/* Секция "С нами предприниматели учатся" */
.training-section {
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}
  
.training-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
  
.info-section {
  text-align: left;
  margin-top: 60px;
  max-width: 600px;
}

.info-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}
  
.list-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
  
.list-row {
  display: flex;
  gap: 20px;
}
  
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}
  
.list-item i {
  color: #007BFF;
  font-size: 18px;
  min-width: 24px;
  text-align: center;
}
  
.list-item span {
  font-size: 16px;
  line-height: 1.4;
}
  
.training-image-container {
  position: relative;
  flex: 1;
  max-width: 700px;
}
  
.first-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  z-index: 1;
}
  
.second-image {
  width: 280px;
  height: 280px;
  object-fit: cover;
  position: absolute;
  top: 74px;
  left: -66px;
  z-index: 2;
  border: 8px solid white;
  border-radius: 10px;
}
  
.experience-badge {
  position: absolute;
  bottom: 6%;
  right: -22%;
  background-color: rgb(0 123 255);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 150px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
  
.experience-badge h3, .results-text-content .experience-badge h3 {
  font-size: 24px;
  margin: 0;
  color: #fff;
}
  
.experience-badge h3 span {
  font-size: 16px;
  color: #ddd;
}
  
.experience-badge p, .results-text-content .experience-badge p {
  font-size: 14px;
  margin-top: 5px;
  color: #ffffff;
}

.certificates-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.modal-certificate {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-certificate-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.modal-certificate:not(.is-hiding) .modal-certificate-content {
  animation: fadeInScale 0.3s ease-out forwards;
}

.modal-certificate .close-certificate {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  cursor: pointer;
}

.modal-certificate button {
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
}

.modal-certificate .prev-certificate { left: 15px; }
.modal-certificate .next-certificate { right: 15px; }

/* --- Стили для новой секции "Преимущества нашего подхода" --- */
.approach-section {
  padding: 80px 20px;
  background-color: #f8f9fc;
}

.approach-section .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.approach-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #191b45;
  margin-bottom: 15px;
}

.approach-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* --- Стили для блока "Адиля" (перенесено из mobile.css) --- */
.adilya-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /* Стили ниже были добавлены для корректного отображения на десктопе */
  /* Если этот блок должен появляться только на мобильных, его нужно скрыть по умолчанию */
  /* display: none; */
  margin: 40px auto; /* Пример центрирования */
  max-width: 500px; /* Ограничение ширины на больших экранах */
}

.adilya-image {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.adilya-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
}

.adilya-content {
  width: 100%;
  text-align: center;
}

.adilya-content h2 {
  font-size: 1.5em;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.approach-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.approach-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach-item {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.approach-item:not(.active) {
  opacity: 0.7;
}

.approach-item:hover {
  transform: translateX(5px);
  border-color: #007BFF;
  opacity: 1;
}

.approach-item.active {
  border-color: #007BFF;
  background-color: #e7f3ff;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
  opacity: 1;
}

.approach-item-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.approach-item-header i {
  font-size: 1.5rem;
  color: #007BFF;
}

.approach-item-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #191b45;
  margin: 0;
}

.approach-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.approach-image-container {
  flex: 1;
  position: sticky;
  top: 120px; /* (высота навбара + отступ) */
}

.approach-image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: opacity 0.4s ease-in-out;
}

.country-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.country-item {
  display: flex;
  align-items: center;
}

.country-item i {
  margin-right: 10px;
}

.geography-image {
  width: 100%;
  max-width: 500px;
}

.questions-section {
  padding: 100px 20px;
  background: #10122d; /* Глубокий темно-синий фон */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.questions-section .section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 2;
}

.questions-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.questions-section .section-subtitle {
  font-size: 1.1rem;
  color: #a9b2c9;
  line-height: 1.6;
}
  
.questions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
  position: relative;
  z-index: 2;
}

.question-card {
  background: rgba(255, 255, 255, 0.05); /* Эффект матового стекла */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.question-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 123, 255, 0.5);
}
  
.question-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #f0f2f5;
  margin: 0;
}

/* --- Секция "Призыв к действию" --- */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #191b45 0%, #0d83fd 100%);
  border-radius: 20px;
  margin: 60px auto;
  max-width: 1200px;
  text-align: center;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.25);
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%);
  transform: rotate(30deg);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-btn {
  background-color: #fff;
  color: #007BFF;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #f0f8ff;
}

/* Секция "Аутсорсинг" */
.outsourcing-section {
  padding: 50px 20px;
  text-align: left;
}
  
.outsourcing-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
  
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
  
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
  
.reason-icon {
  font-size: 40px;
  color: #007BFF;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
  
.reason-text h3 {
  font-size: 18px;
  margin: 0;
}
  
.reason-text p {
  font-size: 14px;
  margin: 5px 0 0;
}
  
.reason-item:hover .reason-icon {
  background-color: #007bff;
  color: #fff;
  transform: scale(1.1);
}
  
.reason-item:hover .reason-text {
  color: #007bff;
}

/* Секция "Партнеры" */
.partners-section {
  background-color: #f8f9fc;
  padding: 80px 0; /* Увеличиваем вертикальные отступы */
  text-align: center;
  overflow: hidden;
}

.partners-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.partners-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.partners-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Расстояние между строками */
}

.partners-marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 10%, hsl(0 0% 0% / 1) 90%, hsl(0 0% 0% / 0));
}

.partners-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around; /* Распределяем логотипы */
  min-width: 100%;
  animation: scroll-partners 40s linear infinite;
}

.partners-marquee[data-direction="right"] .partners-group {
  animation-direction: reverse;
}

@keyframes scroll-partners {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 2rem)); } /* Обновляем для плавности */
}

.partners-group img {
  height: 80px; /* Немного уменьшим для элегантности */
  width: auto;
  margin: 0 40px; /* Увеличиваем отступ */
  opacity: 0.8; /* Сделаем их немного приглушенными по умолчанию */
  transition: all 0.3s ease;
}

.partners-group img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Секция с видео-отзывами */
.video-reviews-section {
  padding: 80px 20px;
  background-color: #fff;
}

.video-reviews-section .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.video-reviews-section .section-title {
  font-size: 2.5rem;
}

.video-reviews-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
}

.video-category-title {
  font-size: 1.8rem;
  color: #191b45;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  border-bottom: 2px solid #007BFF;
  display: inline-block;
  padding-bottom: 5px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Модификатор для сетки с одним элементом, чтобы он не растягивался */
.video-grid-single {
  grid-template-columns: 280px; /* Фиксированная ширина для одиночной карточки */
}

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 280px;
  height: 280px;
}

/* Стили для видео-постера внутри карточки */
.video-card .video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Обрезает видео, чтобы оно полностью заполняло контейнер */
  width: 280px;
  height: 280px;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

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

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #fff;
  transition: background-color 0.3s ease, font-size 0.3s ease;
}

.video-card:hover .play-button-overlay {
  background: rgba(0, 123, 255, 0.7);
  font-size: 3.5rem;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 25px 15px 15px 15px;
  margin: 0;
  font-weight: 500;
}

/* --- Стили для модального окна видео --- */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1060;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.video-modal:not(.is-hiding) .video-modal-content {
  animation: fadeInScale 0.4s ease-out forwards;
}

.close-video-modal {
  position: absolute;
  top: 20px; /* Смещаем вниз, чтобы было видно */
  right: 30px; /* Смещаем левее от края */
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1061; /* Устанавливаем z-index выше, чем у контента */
}

.reviews-section .section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.reviews-section .section-title {
  font-size: 2.5rem;
}

.reviews-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.close-video-modal {
  position: absolute;
  top: 20px; /* Смещаем вниз, чтобы было видно */
  right: 30px; /* Смещаем левее от края */
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1061; /* Устанавливаем z-index выше, чем у контента */
}

/* Анимация для смены изображений во вкладках */
.approach-image-container img.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.approach-image-container img.fade-in {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}




.testimonial-slider.swiper-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 10px 0 50px 0; /* Отступы для тени и пагинации */
}

.testimonial-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  text-align: left;
  height: 100%; /* Карточка будет занимать всю высоту слайда */
  width: 100%;  /* Карточка будет занимать всю ширину слайда */
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid #eee;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #191b45;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #6c757d;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin: 0 0 25px 0;
  flex-grow: 1;
  font-style: italic;
  position: relative;
  padding-left: 25px;
}

.testimonial-quote::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: #007BFF;
  opacity: 0.2;
}

.view-original-btn {
  background: none;
  border: 1px solid #007BFF;
  color: #007BFF;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer; 
  transition: all 0.3s ease;
  align-self: flex-start;
}

.view-original-btn:hover {
  background-color: #007BFF;
  color: #fff;
}

.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
  color: #333;
}

.testimonial-slider .swiper-pagination-bullet-active {
  background: #333;
}

.reviews-section {
  padding: 80px 0;
  text-align: center;
  background-color: #f8f9fc;
}

.reviews-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Задаем квадратный размер именно слайду, а не карточке внутри */
  width: 380px !important;
  height: 380px !important;
}

.review-image {
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 220px; /* Увеличим немного для лучшего вида */
  height: 300px;
  object-fit: cover;
  margin: 10px 20px; /* Уменьшим отступы */
  border: none;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
  transform: scale(0.8);
}

.swiper-pagination-bullet-active {
  background: #333;
}

.modal-review-image {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-review-image-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.modal-review-image:not(.is-hiding) .modal-review-image-content {
  animation: fadeInScale 0.3s ease-out forwards;
}

/* Применение анимации закрытия */
.modal.is-hiding .modal-content,
.modal-certificate.is-hiding .modal-certificate-content,
.video-modal.is-hiding .video-modal-content,
.modal-review-image.is-hiding .modal-review-image-content {
    animation: fadeOutScale 0.3s ease-in forwards;
}

.modal-review-image .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
}

.modal-review-image button {
  position: absolute;
  top: 50%;
  font-size: 30px; 
  color: white;
  cursor: pointer;
  background: none; 
  border: none; 
  z-index: 10;
  transform: translateY(-50%);
}

.modal-review-image .prev-review { left: 15px; }
.modal-review-image .next-review { right: 15px; }

/* Навигация */  
html {
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 2px 15px rgb(0 123 255 / 24%);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1030;
}
  
.navbar-brand {
  margin-right: auto;
}
  
.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  align-items: center;
}
  
.nav-link {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
  
.nav-link:hover,
.nav-link.active {
  color: #1587fd;
}

/* --- Стили для мобильного меню (бургер) --- */
.navbar-toggler {
  display: none; /* Скрыт по умолчанию на десктопе */
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #191b45;
}

/* Стрелка вверх */
.arrow-up {
  width: 35px;
  height: 35px;
  background-color: #0d83fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.arrow-up:hover {
  background-color: white;
  box-shadow: 0 0 0 1px black;
}

.arrow-up:hover::before {
  border-color: black;
}

.arrow-up::before {
  content: '';
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-135deg);
  transition: border-color 0.3s ease;
}

.arrow-up.visible {
  opacity: 1;
  visibility: visible;
}

/* --- Секция "Контакты" --- */
.contact-section {
  padding: 0;
  background-color: #f8f9fc;
}

.contact-container {
  display: flex;
  align-items: stretch; /* Растягиваем элементы на всю высоту */
  min-height: 600px;
  max-width: 1400px;
  margin: 80px auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.contact-info-card {
  background-color: #fff;
  padding: 50px;
  width: 45%;
  max-width: 500px;
  z-index: 2;
}

.contact-info-card .section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-info-card .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #007BFF;
  min-width: 30px;
  text-align: center;
}

.contact-text h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: #191b45;
}

.social-icons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 2.0rem;
  color: #6c757d;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #007BFF;
  transform: translateY(-3px);
}

.contact-map-container {
  flex: 1;
  background-color: #e9ecef;
}

.contact-text p, .contact-text a {
  margin: 0;
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}

.contact-text a:hover {
  color: #007BFF;
}

.umbrella-link {
  text-decoration: none; 
  color: #ffffff; 
}

.umbrella-link:hover {
  text-decoration: underline; 
  color: #1587fd; 
}

.certificates-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  color: #191b45;
}
/* --- Стили для новой секции "Грамоты и Достижения" --- */

.certificates-section .section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}

.certificates-section {
  padding: 80px 20px;
  background-color: #fff;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}

.certificate-item {
  /* background-color: #fff; */
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); */
}

.certificate-item img {
  width: 50%;
  height: 101%;
  display: block;
}

/* --- Стили для нового футера --- */
.site-footer {
  background-color: #191b45;
  color: #a9b2c9;
  padding: 60px 0 0 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-column, .footer-about {
  text-align: left;
}

.footer-logo {
  max-height: 50px;
  margin-bottom: 20px;
  background-color: white;
  border-radius: 8px;
}

.footer-about-text {
  line-height: 1.7;
  margin: 0;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-cta {
  text-align: right;
}

.footer-cta p {
  margin-bottom: 25px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: center; /* Центрируем содержимое */
  align-items: center;
  font-size: 0.9rem;
}

.footer-copyright p {
  margin: 0;
}

.footer-bottom .umbrella-link {
  text-align: center;
}

/* --- Стили для новой секции "Создаем финансовую модель" --- */
.feature-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.feature-section .section-header {
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.feature-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #191b45;
  margin-bottom: 15px;
}

.feature-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: #f8f9fc;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: #007BFF;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #191b45;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* --- Секция "Обучение AI" --- */
.pricing-preview-section {
  padding: 88px 20px;
  background:
    linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(25, 27, 69, 0.04)),
    #f8f9fc;
  text-align: left;
}

.pricing-preview-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 44px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-preview-copy {
  max-width: 430px;
}

.pricing-preview-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #007BFF;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-preview-copy h2 {
  color: #191b45;
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0 0 18px;
}

.pricing-preview-copy p {
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 0 26px;
}

.pricing-preview-btn {
  background: #007BFF;
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.18);
}

.pricing-preview-btn:hover {
  background: #0056b3;
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
  margin: 0;
}

.pricing-preview-card {
  background-color: #fff;
  border: 1px solid rgba(0, 123, 255, 0.14);
  border-top: 4px solid #007BFF;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
  min-height: 168px;
  padding: 26px 20px;
  text-align: left;
}

.pricing-preview-card:nth-child(2) {
  border-top-color: #191b45;
}

.pricing-preview-card:nth-child(3) {
  border-top-color: #007BFF;
}

.pricing-preview-label {
  display: block;
  color: #191b45;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 22px;
}

.pricing-preview-card strong {
  display: block;
  color: #007BFF;
  font-size: 1.82rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.pricing-preview-card:nth-child(2) strong {
  color: #191b45;
}

.pricing-preview-card:nth-child(3) strong {
  color: #007BFF;
}

.pricing-preview-card strong span {
  display: block;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.pricing-preview-card small {
  display: block;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 8px;
}

.hr-product-section {
  padding: 88px 20px;
  background: #f8f9fc;
}

.hr-product-container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

.hr-product-copy {
  max-width: 500px;
}

.hr-product-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #007BFF;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hr-product-copy h2 {
  color: #191b45;
  font-size: 2.55rem;
  line-height: 1.15;
  margin: 0 0 18px;
}

.hr-product-copy p {
  color: #425466;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0 0 28px;
}

.hr-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hr-product-actions .btn {
  border-radius: 8px;
}

.hr-product-btn {
  background: #007BFF;
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.18);
}

.hr-product-btn:hover {
  background: #0056b3;
}

.hr-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hr-product-tile {
  min-height: 190px;
  background: #fff;
  border: 1px solid rgba(0, 123, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
  padding: 24px;
}

.hr-product-tile i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: #eaf4ff;
  color: #007BFF;
  border-radius: 8px;
  font-size: 1.25rem;
}

.hr-product-tile h3 {
  color: #191b45;
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.hr-product-tile p {
  color: #52606d;
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

.ai-training-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #10122d 0%, #191b45 100%);
  color: #fff;
  overflow: hidden;
}

.ai-training-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ai-training-content {
  flex: 1;
  text-align: left;
}

.ai-training-content .section-title {
  color: #fff;
  font-size: 2.5rem;
}

.ai-training-content .section-subtitle {
  color: #a9b2c9;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.ai-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ai-benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
  font-weight: 500;
}

.ai-benefits-list i {
  color: #007BFF;
  font-size: 1.2rem;
}

.ai-training-image {
  flex: 1;
  text-align: center;
}

.ai-training-image img {
  max-width: 100%;
  height: auto;
  animation: float-ai 4s ease-in-out infinite;
}

/* --- Стили для секции тарифов AI-курса --- */
.ai-course-tariffs-section {
  padding: 80px 20px;
  background-color: #fff;
}

.ai-course-tariffs-section .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.ai-course-tariffs-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #191b45;
  margin-bottom: 15px;
}

.ai-course-tariffs-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.tariff-card {
  background-color: #f8f9fc;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.tariff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.1);
}

.tariff-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.tariff-card p {
  color: #555;
  flex-grow: 1;
  margin-bottom: 25px;
}

.tariff-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #007BFF;
  margin-bottom: 30px;
}

.tariff-card .btn {
  margin-top: auto;
}

.tariff-card.popular {
  border-color: #007BFF;
  transform: scale(1.05);
}

@keyframes float-ai {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* --- Секция "Кейсы" --- */
.case-studies-section {
  padding: 80px 20px;
  background-color: #f8f9fc;
}

.case-studies-section .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.case-card {
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.1);
}

.case-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border-bottom: 1px solid #e9ecef;
}

.case-card-header img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
}

.case-card-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #191b45;
}

.case-card-header span {
  color: #6c757d;
  font-size: 0.9rem;
}

.case-card-body {
  padding: 25px;
  flex-grow: 1;
}

.case-card-body h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 10px 0;
}

.case-card-body p {
  margin: 0 0 20px 0;
  padding-left: 25px;
  color: #555;
}

.case-result {
  background-color: #e7f3ff;
  padding: 20px 25px;
  margin-top: auto;
}

.case-result h4 {
  color: #0056b3;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-result p {
  color: #0056b3;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  padding-left: 25px;
}

/* --- Секция "Этапы работы" --- */
.work-steps-section {
  padding: 80px 20px;
  background-color: #fff;
}

.work-steps-section .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Соединительная линия */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px; /* На уровне иконок */
  left: 15%;
  right: 15%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #007BFF, #007BFF 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.step-number {
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  font-weight: 700;
  color: #f0f2f5;
  z-index: -1;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  background-color: #e7f3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #007BFF;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #e9ecef;
}

.step-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.step-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.partner-logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 217px;
  height: 80px;
  padding: 0 22px;
  color: #191b45;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partners-group .partner-logo-text {
  margin: 0 40px;
}

.partner-logo-text:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partners-group img {
  width: 217px;
  object-fit: contain;
}

.partners-group img.partner-logo-sandyq {
  width: 420px;
}
