@charset "UTF-8";
:root {
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --border-radius-sm: 0.25rem;
  --border-radius: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-full: 50%;
}

/* Остальная часть файла без изменений */
/* Preloader styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}
.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader__logo {
  width: 50vmin;
  height: 50vmin;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  transform: rotate(0deg);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.preloader.fade-out .preloader__logo {
  opacity: 0;
  transform: rotate(360deg);
}

/* Animation for logo pulsing before fade */
@keyframes preloader-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(5deg);
  }
}
.preloader__logo.pulse {
  animation: preloader-pulse 1.2s ease-in-out;
}

/* Hero section styles extracted from sections/hero.php */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  z-index: -1;
}

.hero-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
}

.bg-circle {
  width: 300px;
  height: 300px;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.bg-circle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.bg-circle:nth-child(2) {
  top: 60%;
  right: 10%;
  width: 200px;
  height: 200px;
  animation-delay: 2s;
}

.bg-circle:nth-child(3) {
  top: 40%;
  left: 60%;
  width: 150px;
  height: 150px;
  animation-delay: 4s;
}

.hero-circle {
  width: 150px;
  height: 150px;
  opacity: 0.05;
  animation: float 8s ease-in-out infinite;
}

.hero-circle:nth-child(1) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.hero-circle:nth-child(2) {
  bottom: 20%;
  left: 20%;
  width: 100px;
  height: 100px;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.wave {
  height: 100px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,149.3C672,149,768,203,864,213.3C960,224,1056,192,1152,160C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  animation: wave 10s ease-in-out infinite;
}

.wave-2 {
  height: 80px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,288L48,272C96,256,192,224,288,192C384,160,480,128,576,138.7C672,149,768,203,864,213.3C960,224,1056,192,1152,160C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  animation: wave 8s ease-in-out infinite reverse;
}

.hero-instructor-image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-instructor-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.hero-instructor-image:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-instructor-image {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .hero-instructor-image {
    height: 300px;
  }
  .bg-circle,
  .hero-circle {
    display: none;
  }
}
/* ============================================
   Hero Background Slider
   ============================================ */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1);
}

.hero-bg-slide.active {
  opacity: 0.7;
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* ============================================
   VARIANT C - Light backdrop, dark green text
   ============================================ */
.hero-section--variant-c .hero-content-wrapper {
  background: rgba(255, 255, 255, 0.5);
  padding: 2.5rem;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.hero-section--variant-c .hero-content h1 {
  color: #5a9e1a;
  font-weight: 800;
}
.hero-section--variant-c .hero-content h1 span {
  color: #1c1c1c;
}
.hero-section--variant-c .hero-content p {
  color: #212529;
  font-weight: 500;
}
.hero-section--variant-c .hero-content .stat-item {
  color: #212529;
}
.hero-section--variant-c .hero-content .stat-item span {
  color: #565656;
}
.hero-section--variant-c .hero-buttons .btn-success {
  background: #5a9e1a;
  border-color: #5a9e1a;
}
.hero-section--variant-c .hero-buttons .btn-outline-light {
  background: #fff;
  color: #5a9e1a;
  border-color: #5a9e1a;
}
.hero-section--variant-c .hero-buttons .btn-outline-light:hover {
  background: #5a9e1a;
  color: #fff;
}
.hero-section--variant-c .hero-image .hero-instructor-image {
  border-radius: 1rem;
}

/* Стили для секции "О нас" */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-circle {
  width: 200px;
  height: 200px;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.team-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.team-image:hover {
  transform: translateY(-5px);
}

.principle-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.principle-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(115, 185, 37, 0.1);
  transition: left 0.5s;
}

.principle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.principle-item:hover::before {
  left: 100%;
}

/* ---- Иконка принципа ---- */
.principle-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0; /* запрещаем сжатие */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.principle-icon svg,
.principle-icon i,
.principle-icon .svg-inline--fa {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain; /* сохраняем пропорции */
}

.principle-item:hover .principle-icon {
  transform: scale(1.1);
}

/* CTA блок */
.cta-box {
  background: linear-gradient(135deg, #73b925 0%, #5ca01a 100%);
  color: white;
  position: relative;
  overflow: hidden;
  border: none;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Анимации */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Адаптивность */
@media (max-width: 992px) {
  .team-image {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .team-image {
    height: 300px;
  }
  .bg-circle {
    display: none;
  }
  .principle-item {
    margin-bottom: 20px;
  }
}
/* Стили для секции услуг */
.service-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(115, 185, 37, 0.05);
  transition: left 0.5s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
  border-color: rgba(115, 185, 37, 0.1);
}

.service-card:hover::before {
  left: 100%;
}

/* ---- Иконка услуги ---- */
.service-icon {
  /* фиксируем квадратную форму и запрещаем сжатие */
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon i,
.service-icon .svg-inline--fa,
.service-icon svg {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain; /* сохраняем пропорции внутри круга */
}

/* При наведении анимируем иконку */
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ---- Заголовок услуги ---- */
.service-header {
  transition: all 0.3s ease;
}

.service-card:hover .service-header {
  transform: translateX(10px);
}

/* CTA секция услуг */
.services-cta {
  position: relative;
  overflow: hidden;
  color: white;
  border: none;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Кнопка */
.btn-outline-success {
  border-color: #73b925;
  color: #73b925;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-success::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #73b925;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-outline-success:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(115, 185, 37, 0.3);
}

.btn-outline-success:hover::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }
  .service-card:hover {
    transform: none;
  }
}
.results-section {
  background-color: #f8f9fa;
  /* ============================================
     Counter Prototypes - Full Width Banners
     ============================================ */
}
.results-section .counter-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 0;
  overflow: hidden;
}
.results-section .counter-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.results-section .counter-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.results-section .counter-banner__content {
  position: relative;
  z-index: 1;
}
.results-section .counter-banner__item {
  text-align: center;
  padding: 1.5rem;
}
.results-section .counter-banner__number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.results-section .counter-banner__label {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.results-section .counter-banner--light {
  background: #fff;
  border-top: 5px solid #73b925;
  border-bottom: 5px solid #73b925;
  margin-bottom: 4rem;
}
.results-section .counter-banner--light .counter-banner__bg {
  opacity: 0.05;
}
.results-section .counter-banner--light .counter-banner__number {
  color: #73b925;
}
.results-section .counter-banner--light .counter-banner__label {
  color: #565656;
}
@media (max-width: 768px) {
  .results-section .counter-banner {
    padding: 2.5rem 0;
  }
  .results-section .counter-banner__number {
    font-size: 3rem;
  }
  .results-section .counter-banner__label {
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  .results-section .counter-banner__item {
    padding: 1rem;
  }
  .results-section .counter-banner__number {
    font-size: 2.5rem;
  }
}
.results-section .section-counter .counter-wrap-2 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.results-section .section-counter .counter-wrap-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.results-section .section-counter .counter-wrap-2 .icon {
  transition: transform 0.3s ease;
}
.results-section .section-counter .counter-wrap-2 .icon:hover {
  transform: scale(1.1);
}
.results-section .result-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.results-section .result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.results-section .result-item .before-after-image {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
.results-section .result-item .before-after-image .image-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
}
.results-section .result-item .result-content h4 {
  color: #73b925;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.results-section .result-item .result-content .result-stats {
  margin-top: 1rem;
}
.results-section .result-item .result-content .result-stats small {
  color: #73b925;
  font-weight: 500;
}
.results-section .result-item .result-content .result-stats small i {
  margin-right: 0.25rem;
}
.results-section .results-cta {
  color: white;
  position: relative;
  overflow: hidden;
}
.results-section .results-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.results-section .results-cta:hover::before {
  left: 100%;
}
.results-section .results-cta h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.horizontal-carousel-section .horizontal-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.horizontal-carousel-section .horizontal-carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.horizontal-carousel-section .horizontal-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1.5rem;
  padding: 2rem 1rem;
}
.horizontal-carousel-section .horizontal-carousel-card {
  flex: 0 0 300px;
  transition: transform 0.3s ease;
}
.horizontal-carousel-section .horizontal-carousel-card .card {
  height: 100%;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.horizontal-carousel-section .horizontal-carousel-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.horizontal-carousel-section .horizontal-carousel-card .card .card-img-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.horizontal-carousel-section .horizontal-carousel-card .card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.horizontal-carousel-section .horizontal-carousel-card .card:hover .card-img-wrapper img {
  transform: scale(1.05);
}
.horizontal-carousel-section .horizontal-carousel-card .card .card-body {
  padding: 1.5rem;
}
.horizontal-carousel-section .horizontal-carousel-card .card .card-body .card-title {
  color: #73b925;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.horizontal-carousel-section .horizontal-carousel-card .card .card-body .card-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.horizontal-carousel-section .horizontal-carousel-card .card .card-body .card-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.horizontal-carousel-section .horizontal-carousel-card .card .card-body .card-stats small {
  color: #73b925;
  font-weight: 500;
  background-color: #f8f9fa;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
}
.horizontal-carousel-section .horizontal-carousel-card .card .card-body .card-stats small i {
  margin-right: 0.25rem;
}
.horizontal-carousel-section .horizontal-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #73b925;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(115, 185, 37, 0.3);
}
.horizontal-carousel-section .horizontal-carousel-btn--visible {
  display: flex;
}
.horizontal-carousel-section .horizontal-carousel-btn:hover {
  background-color: #5ca01a;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(115, 185, 37, 0.4);
}
.horizontal-carousel-section .horizontal-carousel-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(115, 185, 37, 0.3);
}
.horizontal-carousel-section .horizontal-carousel-btn-prev {
  left: 1rem;
}
.horizontal-carousel-section .horizontal-carousel-btn-next {
  right: 1rem;
}
.horizontal-carousel-section .horizontal-carousel-btn i {
  font-size: 1.2rem;
}
.horizontal-carousel-section .horizontal-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 1.5rem;
}
.horizontal-carousel-section .horizontal-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #dee2e6;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.horizontal-carousel-section .horizontal-carousel-dot:hover {
  background-color: #6c757d;
  transform: scale(1.2);
}
.horizontal-carousel-section .horizontal-carousel-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(115, 185, 37, 0.3);
}
.horizontal-carousel-section .horizontal-carousel-dot--active {
  background-color: #73b925;
  transform: scale(1.2);
}
.horizontal-carousel-section .horizontal-carousel-dot--active:hover {
  background-color: #73b925;
}
@media (max-width: 768px) {
  .horizontal-carousel-section .horizontal-carousel-card {
    flex: 0 0 250px;
  }
}
@media (max-width: 576px) {
  .horizontal-carousel-section .horizontal-carousel-card {
    flex: 0 0 200px;
  }
  .horizontal-carousel-section .horizontal-carousel-btn {
    width: 40px;
    height: 40px;
  }
  .horizontal-carousel-section .horizontal-carousel-btn-prev {
    left: 0.5rem;
  }
  .horizontal-carousel-section .horizontal-carousel-btn-next {
    right: 0.5rem;
  }
}

@media (max-width: 768px) {
  .results-section .section-counter .counter-wrap-2 {
    margin-bottom: 1rem;
  }
  .results-section .result-item {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .results-section .results-cta {
    padding: 3rem 1.5rem;
  }
  .results-section .results-cta h3 {
    font-size: 1.5rem;
  }
}
/* Стили для секции команды */
.staff {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.staff::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(115, 185, 37, 0.05);
  transition: left 0.5s;
}

.staff:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.staff:hover::before {
  left: 100%;
}

.staff-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.staff:hover .staff-image {
  transform: scale(1.05);
}

.text {
  transition: all 0.3s ease;
  padding-top: 20px;
}

.staff:hover .text {
  padding-top: 25px;
}

.position {
  font-size: 14px;
  font-weight: 500;
}

.ftco-social {
  margin-bottom: 15px;
}

.ftco-social li {
  display: inline-block;
  margin: 0 5px;
}

.ftco-social li a {
  width: 30px;
  height: 30px;
  background: #f8f9fa;
  color: #6c757d;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.staff:hover .ftco-social li a {
  background: #73b925;
  color: white;
  transform: scale(1.1);
}

.education-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.education-image:hover {
  transform: translateY(-5px);
}

.qualification-item {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.qualification-item:hover {
  transform: translateX(5px);
}

.qual-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  flex-shrink: 0; /* запрещаем сжатие в flex‑контейнере */
  background: #73b925;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 0;
  overflow: hidden; /* обрезаем возможный переполнение */
}

.qual-icon svg,
.qual-icon i,
.qual-icon .svg-inline--fa {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain; /* сохраняем пропорции внутри круга */
}

.staff:hover .qual-icon {
  transform: scale(1.1);
}

.team-cta {
  position: relative;
  overflow: hidden;
  color: white;
  border: none;
}

.team-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Адаптивность */
@media (max-width: 992px) {
  .education-image {
    height: 350px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .staff-image {
    height: 200px;
  }
  .staff {
    margin-bottom: 20px;
  }
  .staff:hover {
    transform: none;
  }
}
/* Стили для секции контактов */
.contact-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(115, 185, 37, 0.05);
  transition: left 0.5s;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.contact-item:hover::before {
  left: 100%;
}

.icon {
  transition: transform 0.3s ease;
}

.contact-item:hover .icon {
  transform: scale(1.1);
}

.map-container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
  position: sticky;
  top: 100px;
}

.form-control,
.form-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #73b925;
  box-shadow: 0 0 0 3px rgba(115, 185, 37, 0.1);
}

.form-label {
  font-weight: 500;
  font-size: 14px;
}

.btn-success {
  background: linear-gradient(135deg, #73b925 0%, #5ca01a 100%);
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-success::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(115, 185, 37, 0.3);
}

.btn-success:hover::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.benefit-item {
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.additional-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Адаптивность */
@media (max-width: 992px) {
  .contact-form-container {
    position: static;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .contact-item {
    margin-bottom: 20px;
  }
  .contact-item:hover {
    transform: none;
  }
  .map-container {
    height: 250px;
  }
  .benefits {
    margin-top: 20px;
  }
}
.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.section + .section {
  padding-top: 0;
}

.section-header {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

.section-block {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .section-block {
    margin-bottom: 3.5rem;
  }
}

.section-cta {
  margin-top: 2.5rem;
}
@media (min-width: 992px) {
  .section-cta {
    margin-top: 3rem;
  }
}

.kin-carousel {
  position: relative;
  width: 100%;
}
.kin-carousel__wrapper {
  overflow: hidden;
  border-radius: var(--border-radius-xl);
}
.kin-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  touch-action: pan-y pinch-zoom;
}
.kin-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 1rem;
  box-sizing: border-box;
}
.kin-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #73b925;
  color: #ffffff;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(115, 185, 37, 0.3);
}
.kin-carousel__btn--visible {
  display: flex;
}
.kin-carousel__btn:hover:not(:disabled) {
  background-color: #5a9e1a;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(115, 185, 37, 0.4);
}
.kin-carousel__btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(115, 185, 37, 0.25), 0 4px 15px rgba(115, 185, 37, 0.3);
}
.kin-carousel__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.kin-carousel__btn--prev {
  left: 1rem;
}
.kin-carousel__btn--next {
  right: 1rem;
}
.kin-carousel__btn i {
  font-size: 1.2rem;
  line-height: 1;
}
.kin-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 0;
}
.kin-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #dee2e6;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.kin-carousel__dot:hover {
  background-color: #8c8c8c;
  transform: scale(1.2);
}
.kin-carousel__dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(115, 185, 37, 0.3);
}
.kin-carousel__dot--active {
  background-color: #73b925;
  transform: scale(1.2);
}
.kin-carousel__dot--active:hover {
  background-color: #73b925;
}
.kin-carousel--dragging {
  cursor: grabbing;
}
.kin-carousel--dragging .kin-carousel__track {
  transition: none;
}
@media (max-width: 768px) {
  .kin-carousel__btn {
    width: 40px;
    height: 40px;
  }
  .kin-carousel__btn--prev {
    left: 0.5rem;
  }
  .kin-carousel__btn--next {
    right: 0.5rem;
  }
  .kin-carousel__btn i {
    font-size: 1rem;
  }
  .kin-carousel__slide {
    padding: 0 0.5rem;
  }
}
@media (max-width: 576px) {
  .kin-carousel__btn {
    width: 36px;
    height: 36px;
  }
  .kin-carousel__btn--prev {
    left: 0.25rem;
  }
  .kin-carousel__btn--next {
    right: 0.25rem;
  }
  .kin-carousel__dot {
    width: 10px;
    height: 10px;
  }
}

.kin-carousel--testimonials .kin-carousel__wrapper {
  border-radius: 0;
  background: transparent;
}
.kin-carousel--testimonials .kin-carousel__slide {
  flex: 0 0 33.333%;
  padding: 0 0.5rem;
}
@media (max-width: 768px) {
  .kin-carousel--testimonials .kin-carousel__slide {
    flex: 0 0 50%;
  }
}
@media (max-width: 576px) {
  .kin-carousel--testimonials .kin-carousel__slide {
    flex: 0 0 100%;
    padding: 0 0.25rem;
  }
}

.testimony-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimony-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.testimony-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #73b925;
  transition: transform 0.3s ease;
}
.testimony-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimony-card__photo:hover {
  transform: scale(1.05);
}
.testimony-card__name {
  color: #73b925;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.testimony-card__position {
  font-size: 0.875rem;
  color: #6c757d;
}
.testimony-card__text {
  flex-grow: 1;
  color: #212529;
  line-height: 1.6;
  font-size: 0.95rem;
}
@media (max-width: 576px) {
  .testimony-card__photo {
    width: 80px;
    height: 80px;
  }
}

.kin-carousel--services .kin-carousel__wrapper {
  border-radius: 0;
  background: transparent;
}
.kin-carousel--services .kin-carousel__slide {
  flex: 0 0 33.333%;
  padding: 0 0.5rem;
}
.kin-carousel--services .service-card {
  height: 100%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}
.kin-carousel--services .service-card .btn {
  margin-top: auto;
}
@media (max-width: 768px) {
  .kin-carousel--services .kin-carousel__slide {
    flex: 0 0 50%;
  }
  .kin-carousel--services .service-card {
    min-height: 400px;
  }
}
@media (max-width: 576px) {
  .kin-carousel--services .kin-carousel__slide {
    flex: 0 0 100%;
    padding: 0 0.25rem;
  }
  .kin-carousel--services .service-card {
    min-height: auto;
  }
}

/* Пульсирующая анимация (добавлена напрямую, чтобы гарантировать наличие миксина) */
/* Сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Основные стили */
body {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: #f8f9fa;
}

/* Ссылка */
a {
  text-decoration: none;
  color: #73b925;
  transition: all 0.3s ease;
}
a:hover {
  color: #5a9e1a;
}

/* Изображения */
img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Кастомизация шаблона */
.top-wrap {
  background: #1c1c1c !important;
  padding: 1.5em 0 3em 0;
}
@media (max-width: 991.98px) {
  .top-wrap {
    padding: 1.5em 0;
  }
}
.top-wrap .con .icon span {
  color: #73b925;
  font-size: 36px;
  line-height: 1;
}
.top-wrap .con .text {
  padding-left: 10px;
}
.top-wrap .con .text span, .top-wrap .con .text strong {
  display: block;
  line-height: 1.4;
  color: #b5b5b5;
  font-size: 13px;
  font-weight: 400;
}
.top-wrap .con .text span {
  color: #73b925;
}

/* Навигация */
.ftco-navbar-light {
  background: #fff !important;
  padding: 0;
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .ftco-navbar-light {
    background: #7bc628 !important;
    position: relative;
    top: 0;
  }
}
.ftco-navbar-light .container-xl {
  max-width: 1196px;
  padding: 0;
  background: #73b925;
  position: relative;
}
.ftco-navbar-light .navbar-brand {
  color: #73b925;
  padding: 0;
  position: relative;
  z-index: 0;
}
.ftco-navbar-light .navbar-brand:hover, .ftco-navbar-light .navbar-brand:focus {
  color: #fff !important;
}
@media (max-width: 767.98px) {
  .ftco-navbar-light .navbar-brand {
    color: #fff;
  }
}
.ftco-navbar-light .navbar-brand small, .ftco-navbar-light .navbar-brand .small {
  font-size: 27px;
  color: #73b925;
}
.ftco-navbar-light .navbar-brand span {
  color: #999999;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: 11px;
  display: block;
  font-weight: 600;
  letter-spacing: 2px;
}
@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .ftco-navbar-light .navbar-nav {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-right: 0;
  }
}
.ftco-navbar-light .navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  transition: all 0.3s ease;
}
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
  font-size: 15px;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  padding-left: 25px;
  padding-right: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link span {
  position: relative;
  display: block;
  padding-bottom: 2px;
}
@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link span {
    display: inline-block;
  }
}
@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 1rem;
    padding-top: 0;
    color: #fff;
  }
}
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link.active {
  color: #fff;
  position: relative;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link.active {
    color: #fff !important;
  }
}
.ftco-navbar-light .btn-custom {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  background: #73b925;
  border: none;
  position: relative;
  display: inline-block;
  width: 250px;
  z-index: 0;
  text-align: center;
  border: 1px solid transparent;
  letter-spacing: 2px;
}
.ftco-navbar-light .btn-custom span {
  color: #73b925;
}
.ftco-navbar-light .btn-custom:before {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 0;
  height: 0;
  background: #73b925;
  border-radius: 0;
  transition: all 0.3s ease;
  z-index: 0;
}
.ftco-navbar-light .btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(115, 185, 37, 0.3);
}
.ftco-navbar-light .btn-custom:hover:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ftco-navbar-light .btn-custom:focus {
  outline: none;
}

/* ... (rest of original main.scss content unchanged) *//*# sourceMappingURL=main.css.map */