/* ==========================================
   ESTILOS GENERALES Y RESET
   ========================================== */

   :root{
    --azul-utsoe:#003263;
    --naranja-utsoe:#ff5722;
    --gris-claro:#f4f6f9;
--verde-utsoe:#00a886;
--blanco:white;

}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #1e293b;
  background-color: #ffffff;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

/* Botones Globales */
.btn {
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color:var(--naranja-utsoe); /* Color rojo firma de Stadum */
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--verde-utsoe);
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #0f172a;
}

/* Encabezados Generales de Sección */
.section-subtitle {
  color: var(--naranja-utsoe);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color:var(--azul-utsoe);
  margin-bottom: 15px;
}

.section-description {
  color: var(--azul-utsoe);
  font-size: 1rem;
  line-height: 1.6;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 50px auto;
}


/* ==========================================
   1. HERO SLIDER SECTION (Con variables UTSOE - Corregido)
   ========================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 550px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

/* Forzamos alineación vertical perfecta en la diapositiva */
.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center !important; /* Centra verticalmente a la altura de la flecha */
  justify-content: flex-start;
  height: 100%;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  display: none; /* Quita totalmente la capa oscura */
}

/* El contenedor se extiende y centra su contenido */
.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem; /* Margen para respetar el botón de flecha izquierda */
  display: flex;
  align-items: center;
}

/* CORRECCIÓN CLAVE 1: Ampliamos el max-width del padre a 750px para permitir que la imagen crezca */
.hero-content {
  width: 100%;
  max-width: 750px !important; 
  color: #ffffff;
  margin-left: 0 !important;
  margin-right: auto !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important; /* Todo pegado a la izquierda */
  justify-content: center;
  text-align: left;
}

.hero-content.text-left {
  margin-left: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
}

.hero-content.text-center {
  margin: 0 auto;
}

.hero-content .hero-subtitle {
  color: var(--naranja-utsoe);
}

.hero-title {

  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* CORRECCIÓN CLAVE 2: Imagen más grande alineada a la izquierda */
.hero-logo-png-wrapper {
  margin-bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hero-title-png {
  width: 100%;
  max-width: 500px !important; /* Ancho real ideal para que se vea bastante grande sin chocar con las conejitas */
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

/* --- Botones --- */
.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-buttons.left-buttons {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
}

.video-play-btn {
  width: 75px;
  height: 75px;
  background-color: var(--naranja-utsoe);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 0 0 15px rgba(255, 58, 70, 0.3);
  transition: transform 0.3s ease;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

/* --- Paginación y Controles Swiper --- */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: var(--azul-utsoe);
  background: rgba(255, 255, 255, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-slider .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--naranja-utsoe);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}
/* ==========================================
   BOTÓN DEL MAPA CENTRADO Y ABAJO (ESCRITORIO Y MÓVIL)
   ========================================== */

/* 1. Forzamos al contenedor del slide a empujar el contenido hasta abajo */
.hero-slide.slide-mapa {
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #dbe4ee;
}

.slide-mapa .hero-container {
  height: 100%;
  display: flex !important;
  align-items: flex-end !important; /* Empuja el contenido al borde inferior */
  justify-content: center !important; /* Centra horizontalmente */
  padding-bottom: 35px; /* Distancia respecto al borde inferior / paginación */
}

.slide-mapa .hero-content {
  width: 100%;
  max-width: 100% !important;
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
}

/* 2. Alineación del botón */
.hero-buttons.center-bottom-buttons {
  display: flex !important;
  justify-content: center !important;
  width: 100%;
  margin: 0 auto;
}

/* 3. Ajuste Responsivo Móvil */
@media (max-width: 768px) {
  .slide-mapa .hero-container {
    padding-bottom: 20px !important; /* Margen inferior ajustado en celulares */
  }

  .slide-mapa .btn-primary {
    font-size: 0.75rem !important;
    padding: 6px 14px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }
}
/* ==========================================
   POSICIONAMIENTO DEL BOTÓN PLAY ABAJO Y EN EL CENTRO
   ========================================== */

/* 1. Forzamos al contenedor de esta diapositiva a ocupar todo el alto y empujar el contenido hacia abajo */
.slide-video-play .hero-container {
  height: 100%;
  display: flex;
  align-items: flex-end; /* Alinea el contenido hacia la parte inferior */
  justify-content: center;
  padding-bottom: 60px; /* Margen inferior para que no pegue al borde del banner ni tape los puntos */
}

.slide-video-play .hero-content {
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 2. Estilos del botón de Play posicionado abajo */
.video-play-btn.play-btn-bottom {
  margin: 0 auto;
  box-shadow: 0 0 0 12px rgba(255, 58, 70, 0.35); /* Utiliza la sombra naranja/roja brillante */
}

/* Ajuste responsivo para celulares */
@media (max-width: 768px) {
  .slide-video-play .hero-container {
    padding-bottom: 35px; /* Distancia menor en pantallas móviles */
  }

  .video-play-btn.play-btn-bottom {
    width: 55px !important;
    height: 55px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 0 0 8px rgba(255, 58, 70, 0.35);
  }
}

/* ==========================================
   2. MODELO EDUCATIVO SECTION (About)
   ========================================== */
.about-model-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.main-image img {
  width: 100%;
  max-width: 480px;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.secondary-image {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 8px solid #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.secondary-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  display: block;
}

.experience-badge {
  position: absolute;
  top: 450px;
  left: -20px;
  background-color: var(--naranja-utsoe);
  color: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(255, 58, 70, 0.35);
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  max-width: 130px;
  text-transform: uppercase;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background-color: #fff1f2;
  color: var(--naranja-utsoe);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color:var(--azul-utsoe);
  margin-bottom: 5px;
}

.feature-text p {
  color: var(--azul-utsoe);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contenedor principal de estadísticas */
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 70px; /* <--- AUMENTA ESTE VALOR para dar más espacio horizontal (ej. 70px o 80px) */
  padding-top: 25px;
  margin-bottom: 35px;
  border-top: 1px solid #e2e8f0;
}

/* Espaciado vertical interno en cada caja de texto */
.stat-box {
  display: flex;
  flex-direction: column;
  gap: 6px; /* Espacio entre el número (60%) y la etiqueta (Práctico) */
}

.stat-box h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--azul-utsoe);
  line-height: 1;
}

.stat-box p {
  font-size: 0.95rem;
  color: var(--azul-utsoe);
  font-weight: 600;
}


/* ==========================================
   3. ÁREAS ACADÉMICAS SECTION (Categories)
   ========================================== */

   /* Ajuste del contenedor de los enlaces */
.area-count {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

/* Estilo para cada enlace de carrera */
.career-link {
  font-size: 0.85rem;
  color: var(--azul-utsoe); /* Color de texto secundario */
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Efecto hover sobre las carreras */
.career-link:hover {
  color: var(--naranja-utsoe); /* Color azul al pasar el cursor */
  text-decoration: underline;
  transform: translateX(2px);
}

.academic-areas-section {
  padding: 90px 0;
  background-color: #f8fafc;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.area-card {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-card:hover {
  transform: translateY(-5px);
  border-color: var(--naranja-utsoe);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.area-icon-wrapper {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: #f1f5f9;
  color: var(--azul-utsoe);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.area-card:hover .area-icon-wrapper {
  background-color: var(--naranja-utsoe);
  color: #ffffff;
}

.area-content {
  flex-grow: 1;
}

.area-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-utsoe);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.area-card:hover .area-title {
  color: var(--naranja-utsoe);
}

.area-count {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.area-arrow {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  transform: translateX(-5px);
  opacity: 0.6;
}

.area-card:hover .area-arrow {
  color:var(--naranja-utsoe);
  transform: translateX(0);
  opacity: 1;
}

.areas-footer {
  margin-top: 45px;
  color: #64748b;
  font-size: 0.95rem;
}

.areas-footer a {
  color: var(--naranja-utsoe);
  font-weight: 700;
  text-decoration: none;
}

.areas-footer a:hover {
  text-decoration: underline;
}


/* ==========================================
   4. CASOS DE ÉXITO SECTION (Testimonials)
   ========================================== */
.success-stories-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.success-swiper {
  padding-bottom: 50px !important;
}

.testimonial-card {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 40px 35px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  border-color: var(--naranja-utsoe);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.quote-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2.5rem;
  color: #cbd5e1;
  opacity: 0.4;
}

.rating {
  color: var(--naranja-utsoe);
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  color:  var(--azul-utsoe);
  font-size: 1.02rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 25px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.author-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit:fill;
  border: 2px solid var(--naranja-utsoe);
}

.author-details .author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color:  var(--azul-utsoe);
  margin-bottom: 2px;
}

.author-details .author-role {
  font-size: 0.85rem;
  color: var(--azul-utsoe);
  font-weight: 500;
  display: block;
}

.success-swiper .swiper-pagination-bullet {
  background:  var(--azul-utsoe);
  opacity: 0.2;
}

.success-swiper .swiper-pagination-bullet-active {
  background: var(--naranja-utsoe);
  opacity: 1;
  width: 20px;
  border-radius: 4px;
}
/* ==========================================
   SECCIÓN BANNERS PROMOCIONALES (3 PRESETS)
   ========================================== */
.promo-banners-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.promo-swiper {
  padding-bottom: 50px !important;
}

/* Base común para todas las tarjetas */
.promo-card {
  position: relative;
  width: 100%;
  height: 320px; /* Altura uniforme para todos los banners */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  display: block;
  text-decoration: none;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}


/* ------------------------------------------
   VARIANTE 1: Texto + Cuadro Oscuro + Imagen Derecha
   ------------------------------------------ */
.banner-type-1 {
  background: #d1d5db; /* Fondo gris base si la imagen no llena todo */
  display: flex;
  align-items: center;
  padding: 25px;
}

/* Imagen a la derecha con desvanecido suave */
.banner-type-1 .banner-image-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.banner-type-1 .banner-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Cuadro de texto oscuro a la izquierda */
.banner-type-1 .banner-text-box {
  position: relative;
  z-index: 3;
  width: 55%;
  background: rgba(15, 23, 42, 0.88); /* Azul oscuro/negro elegante */
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid var(--naranja-utsoe);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.banner-type-1 .banner-text-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.banner-type-1 .banner-text-box p {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 18px;
  line-height: 1.45;
}

/* Badge Superior */
.banner-type-1 .banner-badge {
  position: absolute;
  top: 18px;
  left: 25px;
  background-color: var(--naranja-utsoe);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 4;
}


/* ------------------------------------------
   VARIANTE 2: Imagen Diseñada + Botón Flotante
   ------------------------------------------ */
.banner-type-2 .full-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-type-2 .floating-btn-wrapper {
  position:absolute;
  bottom: 25px;
  left: 25px;
  z-index: 3;
}


/* ------------------------------------------
   VARIANTE 3: Imagen Diseñada Completa (Solo Clic)
   ------------------------------------------ */
.banner-type-3 .full-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ------------------------------------------
   Botón General para los Banners
   ------------------------------------------ */
.btn-banner {
  background-color: var(--naranja-utsoe);
  color: #ffffff;
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 58, 70, 0.3);
}

.btn-banner:hover {
  background-color: var(--verde-utsoe);
  transform: translateX(3px);
}


/* Paginación del Carrusel */
.promo-swiper .swiper-pagination-bullet {
  background: #0f172a;
  opacity: 0.2;
}

.promo-swiper .swiper-pagination-bullet-active {
  background: var(--naranja-utsoe);
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}
/* Para que la infografía/mapa no se recorte a los lados */
.hero-slide.slide-mapa {
  background-size: contain !important; /* Muestra el 100% de la imagen sin recortar */
  background-repeat: no-repeat;
  background-position:center center;
  background-color: #dbe4ee; /* Un color de fondo similar al gris/azul del mapa para los bordes */
}

/* Adaptación Responsiva */
@media (max-width: 992px) {
  .promo-card {
    height: 300px;
  }
  .banner-type-1 .banner-text-box {
    width: 80%;
  }
}

@media (max-width: 640px) {
  .promo-card {
    height: 280px;
  }
  .banner-type-1 .banner-text-box {
    width: 100%;
  }
  .banner-type-1 .banner-image-right {
    opacity: 0.3; /* En celulares atenúa la foto para dar prioridad al texto */
    width: 100%;
  }

}


/* ==========================================
   RESPONSIVO
   ========================================== */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .testimonial-card {
    padding: 30px 20px;
  }
}

@media (max-width: 640px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .secondary-image img {
    width: 160px;
    height: 160px;
  }
  .experience-badge {
    left: 0;
    top: 250px;
    padding: 12px 18px;
  }
  .badge-number {
    font-size: 1.8rem;
  }

}/* ==========================================
   CORRECCIÓN RESPONSIVA COMPLETA DE SLIDER EN MÓVIL
   ========================================== */
@media (max-width: 768px) {
  /* 1. Ajustamos la altura del contenedor para adaptarse a la proporción de la foto (1480x480) */
  .hero-slider-section {
    height: auto !important;
    min-height: 250px !important;
    aspect-ratio: 1480 / 480; /* Mantiene la proporción exacta de tu imagen de fondo */
  }

  .hero-slider,
  .hero-slide {
    height: 100% !important;
    background-size: cover !important; /* Mantiene la foto llenando el banner sin huecos blancos */
    background-position: center center !important;
  }

  /* 2. Ajuste del margen del contenedor interno */
  .hero-container {
    padding: 0 2.5rem !important; /* Espacio lateral para no empalmar con la flecha (<) */
  }

  /* 3. Escala de la imagen sobrepuesta (Logotipo / Título) */
  .hero-logo-png-wrapper {
    margin-bottom: 8px !important;
  }

  .hero-title-png {
    max-width: 55% !important; /* Reduce la imagen sobrepuesta para que no tape a las conejitas en celular */
  }

  /* 4. Botón compacto y alineado */
  .hero-buttons,
  .hero-buttons.left-buttons {
    width: auto !important;
    display: flex !important;
    justify-content: flex-start !important;
    margin-top: 4px !important;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-primary {
    width: auto !important;
    padding: 4px 12px !important; /* Botón fino y compacto */
    font-size: 0.72rem !important; /* Tamaño de letra adecuado a la pantalla móvil */
    border-radius: 4px !important;
  }

  /* 5. Flechas de navegación más pequeñas en celular */
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 32px !important;
    height: 32px !important;
  }

  .hero-slider .swiper-button-next::after,
  .hero-slider .swiper-button-prev::after {
    font-size: 0.8rem !important;
  }
}