/* @font-face{ font-family: NombreFont; src: url(fonts/NombreFont-Bold.otf); } */
:root {
    --color-blue-hard: #003d92;
    --color-dark-gray: #5b5b5d;
    --color-blue: #1d71b9;
}
/*=============================================================================
GENERAL
=============================================================================*/
body {
    overflow-x: hidden;
    position: relative;
}
html {
    overflow-x: hidden;
}
*::-moz-selection {
    background: var(--color-blue-hard);
    color: #fff;
    text-shadow: none;
}
*::selection {
    background: var(--color-blue-hard);
    color: #fff;
    text-shadow: none;
}
.bg-default {
    background-color: #eee;
    border: 1px solid #ddd;
}
.bg-default-02 {
    background-color: #ddd;
    border: 1px solid #ccc;
}
.text-black {
    color: #000;
}
.bg-cover-index {
    background-image: url("http://placehold.it/1920x1080");
}
/*=============================================================================
THANKS PAGE
=============================================================================*/
.thanks-page {
    height: 60vh;
}
.thanks-page img {
    width: 400px;
    max-width: 100%;
}
/*=============================================================================
NAVBAR
=============================================================================*/
.navbar {
    margin-bottom: 0;
    /* border: none; */
    border-radius: 0;
}
/* colores items menu */
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link {
    color: #333;
    border-bottom: 2px solid transparent;
}
.navbar-light .navbar-nav .active .nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #3c0200;
}
/* colores items menu */
/* separación items menu */
.navbar-nav > .nav-item {
    padding-left: 15px;
    padding-right: 15px;
}
/* separación items menu */
.navbar-brand img {
    width: 150px;
}

.navbar-estilo {
    border-bottom: 1px solid #a3a3a3;
}
/*=============================================================================
HOME
=============================================================================*/
.tituloHomeSecc1 {
    font-weight: 600;
    font-size: 40px;
    color: #192630;
}

.parrafoHomeSecc1 {
    font-weight: 400;
    font-size: 20px;
    color: #192630cc;
}

.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 100%;
    height: auto;
    justify-items: center;
}

.parent img {
    width: 100%;
    /* height: auto; */
    height: 100%;
    /* display: grid; */
    display: block;
    object-fit: cover;
    /* max-width: fit-content; */
}

.div1 {
    grid-row: span 2 / span 2;
    width: 100%;
    height: 100%;
}

.div2 {
    grid-row: span 3 / span 3;
}

.div3 {
    grid-row: span 3 / span 3;
    grid-row-start: 3;
    display: flex;
    align-items: center;
}

.div3 .text-wrapper {
    text-align: left;
    padding: 30px;
    /* max-width: 100%; */
}

.div3 h4,
.div3 h1,
.div3 p {
    margin-bottom: 15px; /* Separación entre elementos */
}

.div4 {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 4;
}

.bg-Nosotros {
    background-color: #525252;
    color: #fff;
}

.parrafo-pulso {
    color: #ffffffb2;
}

.btn-primario {
    background-color: #3c0200; /* Color rojizo */
    color: #fff;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Espacio entre texto y icono */
    transition: background 0.3s;
}

.btn-primario:hover {
    background-color: #3c0200; /* Cambio de color al hover */
    color: #fff;
}

.btn-icon {
    font-size: 1.2rem;
}

.container.position-relative {
    position: relative; /* Necesario para que el botón se posicione relativo a la imagen */
}

.btn-overlay {
    position: absolute;
    bottom: 0; /* Distancia desde el borde inferior */
    right: 24px; /* Distancia desde el borde derecho */
    background-color: #3c0200;
    color: #fff;
    padding: 20px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-overlay:hover {
    background-color: #3c0200;
    color: #fff;
}

.btn-overlay .btn-icon {
    font-size: 1.1rem;
}

.bg-Cuarta-Seccion {
    background-color: #1d1d1d;
    color: #fff;
}

.btn-secundario {
    background-color: #fff; /* Color rojizo */
    color: #000;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Espacio entre texto y icono */
    transition: background 0.3s;
}

.btn-secundario:hover {
    background-color: #fff; /* Cambio de color al hover */
    color: #000;
}

.custom-btn {
    max-width: inherit; /* ancho máximo controlado */
    width: 60%; /* se adapta al contenido */
    text-align: center;
}

.columna-item {
    padding: 20px;
    background-color: #ffffff14;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.columna-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.titulo-seccion {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
}

.texto-seccion {
    margin: 0;
    font-size: 1rem;
    color: #ffffff99;
    text-align: left;
}

.btn-ver-mas {
    background-color: #4c4d52;
    border: none;
    color: #fff;
    padding: 12px 16px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-ver-mas:hover {
  background-color: #3a3b3f;
  color: white;
    background-color: #3a3b3f;
}

.columna-wrapper {
    max-width: 70%; /* <-- Ajusta este valor para controlar el ancho total (ej: 75%, 85%) */
}

.nosotros {
    font-weight: 600;
    font-size: 38px;
}

.ayuda,
.info-columna {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.bg-quinta-seccion {
    background-color: #ffffff;
}

.input-borde-inferior {
    border: none;
    border-bottom: 1px solid #000;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
}

.input-borde-inferior:focus {
    box-shadow: none;
    border-color: #000;
}

.bg-Informacion {
    background-color: #3c0200;
    border-radius: 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Círculo grande */
.bg-Informacion::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background-color: #ffffff1f;
    clip-path: circle(50% at 94% 94%);
    z-index: 0; /* detrás del contenido */
}

/* Círculo mediano/intersección */
.bg-Informacion::after {
    content: "";
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background-color: #fff9f921;
    clip-path: circle(50% at 50% 50%);
    z-index: 0;
}

/* Asegura que el contenido quede encima */
.bg-Informacion > * {
    position: relative;
    z-index: 1;
}
/*=============================================================================
US (QUIENES SOMOS)
=============================================================================*/
.hero-section {
    padding-inline: 0;
}

.hero-image {
    width: 100%; /* La imagen ocupa todo el ancho de la columna */
    height: 100%; /* La imagen ocupa toda la altura de la columna */
    object-fit: cover; /* ¡La magia está aquí! La imagen cubre el espacio sin deformarse */
    object-position: center; /* Centra la imagen dentro de su marco */
}

.hero-second-column {
    background-color: #8ab2a5;
    padding: 60px 120px;
}

.hero-second-column .title {
    font-weight: bold;
    color: #3e3f5b;
    margin-bottom: 5px;
}

.hero-second-column .subtitle {
    font-weight: bold;
    color: #3c0200;
    margin-bottom: 10px;
}

.hero-second-column p {
    font-size: 18px;
    color: #3e3f5b;
}

.image-us-container {
    height: 500px; /* Define la altura que quieres para el recorte */
    overflow: hidden;
    position: relative;
}

.image-us-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.bg-grey {
    background-color: #f5f5f5;
    padding-bottom: 60px;
}

.services-title {
    text-align: center;
}

.services-title h1 {
    margin-top: 50px;
    margin-bottom: 35px;
    font-weight: 400;
}

.us-card {
    background-color: #ffffff;
    padding: 40px 40px;
    height: 100%; /* Esto asegura que todas las cards tengan la misma altura */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.us-card-title {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 4.5rem;
}

.us-number {
    font-size: 34px;
    font-weight: 400;
    color: #0c0a0a; /* Gris claro para los números */
}

/* Estilo para el texto/párrafo de las cards */
.us-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-top: 1.5rem;
}

/* Estilo específico para la card oscura del centro */
.us-card.card-dark {
    background-color: #3c0200; /* Tonalidad vino/marrón oscuro de la imagen */
    color: #ffffff;
}

.us-card.card-dark .us-card-text {
    color: #f0f0f0; /* Un blanco no tan puro para mejor legibilidad */
}

/*=============================================================================
SERVICES
=============================================================================*/
.our-services-title {
    text-align: center;
    font-weight: 400;
}

.carousel-container {
    background-color: #fafafa;
    padding-bottom: 85px;
}

.carousel-orange-title {
    color: #ef701a; /* Puedes ajustar este color según tu marca */
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.carousel-normal-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}

.carousel-text {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

#imageCarousel .carousel-item {
    height: 450px; /* O la altura que prefieras */
}

.img-carousel {
    width: 100%;
    height: 100%; /* La imagen ocupará el 100% de la altura del contenedor (.carousel-item) */
    object-fit: cover; /* Esta es la magia: la imagen cubre el espacio sin deformarse */
    object-position: center center; /* Centra la imagen. Puedes cambiarlo a 'top', 'bottom', etc. */
}
/* Estilos para que las flechas tengan el mismo tamaño y centrado */
.btn-outline-secondary,
.btn-red {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-red {
    background-color: #3c0200;
    color: white;
}

.btn-red:hover {
    background-color: #230100;
    color: white;
}

.btn:focus {
    box-shadow: none;
}

/*=============================================================================
Aviso de Privacidad
=============================================================================*/
.img-privacy {
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* --- Círculos decorativos --- */
.decorative-circles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.circle-large {
    position: absolute;
    bottom: 0%;
    left: -5%;
    width: 350px;
    height: 350px;
    background-color: #3c02001f;
    clip-path: circle(50% at 40% 50%);
    /* clip-path: circle(50% at 20% 50%); */
}

.circle-medium {
    position: absolute;
    bottom: 0%;
    left: 10%;
    width: 200px;
    height: 200px;
    background-color: #3c02001f;
    clip-path: circle(50% at 50% 50%);
}

.lista-consentimiento {
    list-style: none;
}

.lista-consentimiento li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    flex-direction: row;
}

.lista-consentimiento input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #dc5600;
    border-radius: 2px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    background-color: transparent;
}

.lista-consentimiento input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    top: -5px;
    left: 0px;
    color: #dc5600;
    font-size: 14px;
}

.subtitulo-privacy-seccion {
    color: #3c0200;
    font-weight: 500;
    font-size: 20px;
    text-align: start;
    margin-bottom: 10px;
}

.texto-privacy-seccion {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.consentimiento1,
.consentimiento2 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    width: 100%;
}

/*=============================================================================
MISIÓN Y VISIÓN
=============================================================================*/
/* Estilos para el Slider */
.swiper-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.swiper-wrapper {
    /* ESTA LÍNEA ES LA CLAVE */
    /* Le dice al contenedor que estire todos los slides a la misma altura. */
    align-items: stretch;
}

.mySwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px; /* Ancho fijo para las tarjetas */
    height: auto;
}

.swiper-slide .card {
    border: none;
    background-color: #ffffff;
    border-radius: 0px;
    padding: 40px;
    text-align: left;
}

.card-title {
    font-weight: 400;
    margin-bottom: 25px;
    color: #525252;
}

.card-text {
    font-size: 16px;
    color: #525252;
}

/* Estilos para los botones de navegación */
.swiper-navigation-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Espacio entre los botones */
}

/* Esto asegura que los botones se queden dentro de nuestro contenedor */
.swiper-button-next,
.swiper-button-prev {
    position: static; /* Quitamos el posicionamiento absoluto por defecto */
    width: 50px;
    height: 50px;
    margin-top: 0;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: background-color 0.3s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* Estilo para el botón siguiente (flecha derecha) */
.swiper-button-next {
    background-color: #212529; /* Color oscuro como en la imagen */
}
.swiper-button-next::after {
    color: #ffffff;
}

.swiper-button-prev:hover {
    background-color: #e9ecef;
}

.swiper-button-next:hover {
    background-color: #343a40;
}

.mision-vision-container {
    position: relative;
    overflow: hidden;
    background-color: #F5F5F5;
    padding-top: 75px;
}

.gray-separation {
    background-color: #F5F5F5;
    height: 75px;
}

.mision-container {
    background-color: white;
    border-bottom: 2px solid #8F8F8F;
    padding: 40px 80px 40px 40px;
    z-index: 1000;
}

.mision-container h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

/* .mision-container p {
} */

.padding-0 {
    padding-left: 0px;
    padding-right: 0px;
}

.bg-black-block {
  position: absolute;
  bottom: -150%;  /* Extiende hacia abajo — puedes ajustar */
  left: 0;
  width: 100%;
  height: 150%;   /* Altura igual al alto de la imagen arriba */
  background-color: #111;
  z-index: 1;    /* Para que quede detrás de la imagen */
}

.vision-container {
    z-index: 1000;
    background-color: white;
    padding: 90px 80px 90px 40px;
    border-bottom: 2px solid #8F8F8F;
}

.vision-container h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

.wine-rectangle {
    background-color: #3C0200;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}

.white-circle { /* Usamos el contenedor para posicionarlo */
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.12); /* Un blanco muy transparente */
    border-radius: 50%;
    z-index: 100; /* Encima de los fondos pero debajo de la caja de texto */
}

/*=============================================================================
FOOTER
=============================================================================*/
.bg-footer {
    background-color: #1d1d1d;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.footer-text {
    color: #ffffff99;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
}

.footer-text-reservados {
    color: #ffffff99;
    font-weight: 400;
    font-size: 11px;
}

.opciones-nav-footer {
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: #ffffff99;
}

.opciones-nav-footer:hover {
    color: #ffffff99;
}

.btn-primario-menu {
    background-color: #3c0200; /* Color rojizo */
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Espacio entre texto y icono */
    transition: background 0.3s;
}

.btn-primario-menu:hover {
    background-color: #3c0200; /* Cambio de color al hover */
    color: #fff;
}
/*=============================================================================
BLOG
=============================================================================*/
.blog-play-container {
    height: auto !important;
}
.bg-widget-cover.bg-mh {
    background-image: url("http://placehold.it/1920x500.png?text=1920x500.jpg");
    height: 500px;
}
.bg-widget-cover {
    background-position: center;
    background-size: cover;
}
.play-container {
    position: relative;
    height: 100%;
}
.play-container:hover .play-ico {
    opacity: 1;
    cursor: pointer;
}
.play-container:hover {
    cursor: pointer;
}
.play-ico {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 1;
    opacity: 0.5;
}
.img-blog {
    min-height: 800px;
    background-image: url("../img/Blog/header.jpg");
    background-position: center;
    background-size: cover;
}
.container-blog {
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
}
.i-text {
    background: #e2dede;
    border: none;
    border-radius: 10px;
    color: #757575;
    text-align: center;
    font-size: 12px;
    padding: 10px 40px;
    margin-right: 10px;
}
.bolder {
    font-weight: bolder !important;
}
.hr-blog {
    max-width: 15%;
    border: 1px solid #e2dede;
    -webkit-box-shadow: 0px 2px 3px #e2e2e2;
    box-shadow: 0px 2px 3px #e2e2e2;
}
.text-intblog {
    width: 100%;
    position: absolute;
    bottom: 10px;
}
.btn-blog {
    width: 100%;
    background: black;
    border: none;
    font-weight: 100;
    font-family: sans-serif;
    color: #fff;
}
.btn-blog2 {
    background: black;
    border: none;
    font-weight: 100;
    font-family: sans-serif;
    color: #fff;
}
.btn-blog3 {
    background: black;
    border: 1px solid #fff;
    font-weight: 100;
    font-family: sans-serif;
    color: #fff;
    padding: 6px 50px;
    font-size: 16px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.btn-blog3:hover {
    color: #000;
    background-color: #fff;
    text-decoration: none;
}
.text-initblogf {
    position: absolute;
    top: 30%;
    left: 30%;
}
.img-finalblog {
    background-image: url("../img/Blog/footer.jpg");
    background-position: center;
    background-size: cover;
}
.custom-dropdown > li > .dropdown-menu,
.dropdown-child {
    background-color: #333;
}
.dropdown-child > a {
    color: #fff;
}
.custom-dropdown > li > .dropdown-menu > .nav-link:hover,
.custom-dropdown > li > .dropdown-menu > .dropdown-item:hover,
.dropdown-child > a:hover {
    background-color: #222;
}
.dropdown-child > a:hover {
    color: #fff;
}
/*=============================================================================
MEDIA
=============================================================================*/
@media (max-width: 3840px) {
    .div1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .btn-overlay {
        right: 98px;
    }
}
/* 1920 x 1080 */
@media (max-width: 1920px) {
}

/* 1600 x 900*/
@media (max-width: 1600px) {
}

/* 1440 x 900 */
@media (max-width: 1440px) {
}

/* 1280 x 800 */
@media (max-width: 1280px) {
    .btn-overlay {
        right: 24px;
    }

    .footer-text {
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
}

@media (max-width: 1024px) {}

/* 990 x 1000 */
@media (max-width: 990px) {
    .lista-consentimiento li {
        flex-direction: column;
    }

    .consentimiento1, .consentimiento2 {
        font-size: 14px;
    }

    .texto-privacy-seccion {
        font-size: 14px;
    }

    .circle-large {
        width: 250px;
        height: 250px;
    }

    .circle-medium {
        width: 140px;
        height: 140px;
        bottom: 0%;
        left: 20%;
    }

    .opciones-nav-footer {
        font-size: 12px;
    }

    .footer-text {
        font-size: 12px;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .columna-wrapper {
        max-width: 100%;
    }

    .columna-item {
        text-align: center;
    }

    .parent img {
        height: 100%;
    }
    .parrafo-pulso {
        font-size: 12px;
    }
    .parent {
        width: auto;
        max-width: none;
    }
    .hero-second-column {
        padding: 40px 80px;
    }

    .cards-section .card {
        max-width: 100%;
    }

    .card-img-top {
        height: 300px;
    }

    .icon-container img {
        width: 75%;
    }

    .cards-section .card-title {
        font-size: 22px;
    }

    .image-us-container {
        height: 350px; /* Define la altura que quieres para el recorte */
    }

    .services-title h1 {
        font-size: 50px;
    }

    .us-card {
        padding: 20px 20px;
    }

    .us-card-title {
        font-size: 28px;
        margin-bottom: 3.5rem;
    }

    .us-number {
        font-size: 28px;
    }

    .us-card-text {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        margin-top: 1.5rem;
    }
}

/* 767 x 414 */
@media (max-width: 767px) {
    .lista-consentimiento li {
        flex-direction: column; /* Pone el checkbox arriba del texto */
        align-items: center; /* Centra ambos elementos */
        text-align: center;
    }

    .lista-consentimiento input[type="checkbox"] {
        margin: 0 0 8px 0; /* Margen inferior entre checkbox y label */
    }

    .lista-consentimiento label {
        display: block;
        max-width: 90%;
    }

    .consentimiento1,
    .consentimiento2 {
        font-size: 12px;
    }

    .texto-privacy-seccion {
        font-size: 12px;
    }

    .circle-large {
        width: 180px;
        height: 180px;
        bottom: 0;
        left: 0;
    }

    .circle-medium {
        width: 100px;
        height: 100px;
        bottom: 0%;
        left: 20%;
    }

    .texto-seccion {
        margin-bottom: 15px;
    }
    .titulo-seccion {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .custom-btn {
        width: 70%;
    }

    .parrafo-servicios-home {
        text-align: center;
        margin-bottom: 15px;
    }

    .title-servicios {
        text-align: center;
    }

    .parent {
        gap: 15px;
    }

    .div1 img {
        height: 200px;
        object-fit: cover;
    }

    .div2 img {
        height: 230px; /* más corta, ya no se ve tan alta */
        object-fit: cover;
    }

    .div4 img {
        height: 200px; /* antes se veía pequeña */
        object-fit: cover;
    }

    .div3 {
        height: 230px; /* misma altura que div2 para equilibrar */
        display: flex;
        align-items: center;
        overflow: hidden; /* oculta scroll por fuera */
    }

    .div3 .text-wrapper {
        padding: 15px;
        height: 100%;
        overflow-y: scroll;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
    }

    .div3 .text-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .div3 h1 {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .div3 p {
        margin-bottom: 0;
    }

    .title-nosotros {
        font-size: 12px;
    }
}

/* 576 x 320 */
@media (max-width: 576px) {
    .hero-second-column {
        padding: 30px 40px;
    }

    .hero-second-column .subtitle {
        font-size: 30px;
    }

    .cards-section .card {
        margin-bottom: 2rem;
    }

    .card-body {
        padding-top: 1rem;
    }

    .img-hero-container {
        height: 170px;
    }

    .services-titles h1 {
        font-size: 30px;
    }

    .image-us-container {
        height: 250px; /* Define la altura que quieres para el recorte */
    }

    .service-card {
        margin-bottom: 25px !important;
    }

    .services-title h1 {
        font-size: 40px;
    }

    #imageCarousel .carousel-item {
        height: 350px;
    }

    .swiper-container {
        width: 100%;
        padding-top: 0px;
        padding-bottom: 10px;
    }

    .bg-black-block {
        bottom: -270%;
        left: 0;
        width: 100%;
        height: 170%;
    }

    .mision-container {
        padding: 40px 40px 40px 40px;
    }

    .vision-container {
        z-index: 1000;
        padding: 50px 25px 50px 25px;
    }
}

/* 375 x 320 */
@media (max-width: 375px) {
}
/*
	@media( max-width: 1920px ) {}
	@media( max-width: 1600px ) {}
	@media( max-width: 1440px ) {}
	@media( max-width: 1366px ) {}
	@media( max-width: 1280px ) {}
	@media( max-width: 1024px ) {}
	@media( max-width: 736px ) {}
	@media( max-width: 667px ) {}
	@media( max-width: 640px ) {}
	@media( max-width: 568px ) {}
*/
