/* Variables de colores */
:root {
    --vinotinto: #6B181B;
    --vinotinto-claro: #A02A2F;
    --vinotinto-oscuro: #3D0D0F;
    --dorado: #F6C667;
    --beige: #FFFDF5;
    --Negro: #000000;
    --verde-acento: #3e6700;
    --gris-texto: #333;
}

.about-us-section {
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 55px 20px;
    text-align: center;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.8;
    z-index: 1;
}

.about-us-container {
    position: relative;
    top: -50px ;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

.about-us-section h2 {
    color: var(--vinotinto);
    font-size: 47px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background-color: transparent;
    padding: 0  ;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    
}

.about-us-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: none;
    padding: 0px 50px;
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-us-content {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    padding: 0px 30px;
    background-color: var(--vinotinto);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 150%;
    height: auto;
}

.carousel-slide {
    flex: 0 0 101%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    min-height: 350px;
}

/* Estilos para la diapositiva sin imagen */
.carousel-slide.full-width-text-slide .about-us-text {
    flex: 1 20 100%;
    padding-right: 100px;
    padding-left: 0px;
    text-align: left;
    width: 85%;
}

/* Puedes añadir ajustes específicos para el contenedor de texto en esta diapositiva si es necesario */
.carousel-slide.full-width-text-slide {
    padding: 0px;
}

.about-us-text {
    flex: 2 1 0;
    padding-right: 50px;
    color: #ffffff;
}

.about-us-image {
    flex: 1 1 0;
    max-width: 275px;
}

/* Estilos para los h3 dentro del texto de las diapositivas del carrusel */
.carousel-slide .about-us-text h3 {
     /* Fondo color vinotinto */
    color: var(--beige); /* Color de texto que contraste bien */
    padding: 8px 15px; /* Relleno interno para el fondo */
    border-radius: 8px; /* Bordes redondeados */
    display: inline-block; /* Hace que el fondo se ajuste al texto */
    margin-bottom: 0px; /* Espacio debajo del título */
    text-align: left; /* Alineación por defecto del h3 */
    line-height: 1.2; /* Ajusta la altura de línea si es necesario */
}
.carousel-slide .about-us-text h4 {
    /* Fondo color vinotinto */
   color: var(--beige); /* Color de texto que contraste bien */
   padding: 8px 15px; /* Relleno interno para el fondo */
   border-radius: 8px; /* Bordes redondeados */
   display: inline-block; /* Hace que el fondo se ajuste al texto */
   margin-bottom: 0px; /* Espacio debajo del título */
   text-align: left; /* Alineación por defecto del h3 */
   line-height: 1.2; /* Ajusta la altura de línea si es necesario */
}

/* NUEVA REGLA: Estilos para los párrafos dentro del texto del carrusel */
.carousel-slide .about-us-text p {
     /* Amarillo mostaza (var(--dorado)) con 20% de opacidad */
    padding: 0px 12px; /* Pequeño relleno para que el fondo no esté pegado al texto */
    border-radius: 5px; /* Ligeros bordes redondeados */
    margin-bottom: 0px; /* Espacio entre párrafos con fondo */
    line-height: 1.6;
    font-size: 14px; /* Mejora la legibilidad si el texto es largo */
}

/* Opcional: Si quieres que el h2 de "¿POR QUÉ EXISTIMOS?" NO tenga fondo,
   y si el estilo se hubiera aplicado globalmente, asegúrate de que no tenga uno.
   Sin embargo, según tu CSS actual, esto no debería ser un problema. */
.carousel-slide.why-we-exist-slide .about-us-text h2 {
    /* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
    background-color: transparent; /* Asegura que no tenga fondo */
    color: inherit; /* Hereda el color del texto principal o definido en .about-us-text */
    padding: 0;
    border-radius: 0;
    display: block;
    width: auto;
    margin: 0 auto 20px auto; /* Ajusta los márgenes si es necesario */
    text-align: left; /* Alineación por defecto del h2 */
}


.carousel-slide.why-we-exist-slide .about-us-text  {
    /* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
    width: 250px; /* Alineación por defecto del h2 */
}

.carousel-control {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background-color: var(--vinotinto);
    color: var(--beige);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    z-index: 3;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-control:hover {
    background-color: var(--vinotinto-claro);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .indicator.active {
    background-color: var(--vinotinto);
    transform: scale(1.2);
}

.carousel-indicators .indicator:hover {
    background-color: rgba(0, 0, 0, 0.6);
} 

.ods-block-small {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    flex: 1 1 45%;
    
}

.ods-block-small img {
    width: 120px;
    height: auto;
    margin-right: 10px;
    margin-left: -50px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.ods2-text{
    font-size: 1em;
    margin-left: 0px;
    margin-right: 20px;
    color: #ffffff;
    line-height: 1.5;
}
.ods-columna {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-right: 130px;
    margin-left: 60px;
    justify-content: center;   /* Centra horizontalmente */
    align-items: center;       /* Centra verticalmente */
}


@media (max-width: 992px) {
    
    .carousel-slide.why-we-exist-slide .about-us-text  {
        /* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
        width: 900px; /* Alineación por defecto del h2 */
    }
    .carousel-slide {
        flex-direction: column;
        text-align: center;
        padding-right: 0;
    }
    .about-us-text {
        margin-top: 60px;
        margin-right: 10px;
        margin-left: 10px;
    }

    .about-us-section h2 {
        font-size: 2em;
        text-align: left;
      }
  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 80px;
  }

  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 80px;
  }

  .carousel-slide .about-us-text h4 {
    font-size: 1.5em;
    text-align: center;
    margin-top: auto;
    
  }
    .carousel-slide .about-us-text p {
        font-size: 0.9em;
        text-align: left;
        max-width: 700px; /* puedes ajustar este valor */
        margin-right: 60px;
        margin-left: 60px;
        margin-top: 0.5px;
    
      }
      .about-us-text ul{
        font-size: 1.1em;
        text-align: left;
        max-width: 600px; /* puedes ajustar este valor */
        margin-right: 100px;
        margin-left: 80px;
        margin-top: 0.5px;
    
      }
      .carousel-slide.full-width-text-slide .about-us-text {
        flex: 1 20 100%;
        padding-right: 60px;
        padding-left: 20px;
        text-align: left;
        width: 80%;
    }

      .about-us-image img {
        width: 110px;
        height: auto;
        max-width: 100%;
        display: block;
        border-radius: 8px;
        margin-top: 20px; /* opcional */
    }

    .carousel-control {
        padding: 8px 12px;
        font-size: 1.2em;
    }
    .about-us-image {
        flex: 1 1 auto;
        display: flex-start;
        justify-content: center;
        align-items: center;
        margin: 0 0 8px 0;
        
    }
   
    .ods-block-small img {
        width: 70px;
        height: auto;
        margin-left: 30px;
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }
}

@media (max-width: 780px) {
    .about-us-content{
        max-width: 800px;
    }
    
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 150%;
        height: 350px;
    }

    .about-us-text {
        margin-top: 0px;
    }

    .about-us-section h2 {
        font-size: 1.2em;
        text-align: left;
      }
  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 80px;
  }

  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 30px;
  }

  .carousel-slide .about-us-text h4 {
    font-size: 1.3em;
    text-align: center;
    margin-top: auto;
    
  }
  .carousel-slide .about-us-text p {
    font-size: 0.7em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: 60px;
    margin-left: -20pxx;
    margin-top: 0.5px;

  }
  .about-us-text ul{
    font-size: 0.7em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: 100px;
    margin-left: 80px;
    margin-top: 0.5px;

  }
  .carousel-slide.full-width-text-slide .about-us-text {
    flex: 1 20 100%;
    margin-right: 50px;
    margin-left: 30px;
    text-align: left;
    width: 78%;
}

  .about-us-image img {
    width: 90px;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-top: 20px; /* opcional */
}
.about-us-image {
    flex: 1 1 auto;
    display: flex-start;
    justify-content: center;
    align-items: center;
    margin: 0 0 8px 0;

    
}
.carousel-slide.why-we-exist-slide .about-us-text  {
    
    height: 480px;
    width: 71%;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text p {
    
    margin-right: -10px;
    margin-left: 0px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text h4 {
    
    margin-right: -10px;
    margin-left: -10px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}


.ods2-text{
    font-size: 0.75em;
    margin-left: 0px;
    margin-right: 5px;
    color: #ffffff;
    line-height: 1.5;
    width: 120px;
}

.ods-block-small img {
    width: 70px;
    height: auto;
    margin-left: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

} 


@media (max-width: 600px) {
    .about-us-content{
        max-width: 500px;
    }
    
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 150%;
        height: 350px;
    }

    .about-us-text {
        margin-top: 0px;
    }

    .about-us-section h2 {
        font-size: 1.2em;
        text-align: left;
      }
  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 80px;
  }

  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 30px;
  }

  .carousel-slide .about-us-text h4 {
    font-size: 1.3em;
    text-align: center;
    margin-top: auto;
    
  }
  .carousel-slide .about-us-text p {
    font-size: 0.68em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: 0px;
    margin-left: 60px;
    margin-top: 0.5px;

  }
  .about-us-text ul{
    font-size: 0.7em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: 100px;
    margin-left: 80px;
    margin-top: 0.5px;

  }
  .carousel-slide.full-width-text-slide .about-us-text {
    flex: 1 20 100%;
    margin-right: 50px;
    margin-left: 50px;
    text-align: left;
    width: 78%;
}

  .about-us-image img {
    width: 90px;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-top: 20px; /* opcional */
}
.about-us-image {
    flex: 1 1 auto;
    display: flex-start;
    justify-content: center;
    align-items: center;
    margin: 0 0 8px 0;
    
}
.carousel-slide.why-we-exist-slide .about-us-text  {
    
    height: 480px;
    width: 71%;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text p {
    
    margin-right: -10px;
    margin-left: 0px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text h4 {
    
    margin-right: -10px;
    margin-left: -10px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.ods2-text{
    font-size: 0.65em;
    margin-left: 0px;
    margin-right: 5px;
    color: #ffffff;
    line-height: 1.5;
    width: 120px;
}

.ods-block-small img {
    width: 60px;
    height: auto;
    margin-left: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

} 

@media (max-width: 500px) {
    .about-us-content{
        max-width: 500px;
    }
    
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 150%;
        height: 350px;
    }

    .about-us-text {
        margin-top: 0px;
    }

    .about-us-section h2 {
        font-size: 1.2em;
        text-align: left;
      }
  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 80px;
  }

  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 30px;
  }

  .carousel-slide .about-us-text h4 {
    font-size: 1.3em;
    text-align: center;
    margin-top: auto;
    
  }
  .carousel-slide .about-us-text p {
    font-size: 0.68em;
    text-align: left;
    max-width: 800px; /* puedes ajustar este valor */
    margin-right: 0px;
    margin-left: 20px;
    margin-top: 0.5px;

  }
  .about-us-text ul{
    font-size: 0.7em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: 100px;
    margin-left: 80px;
    margin-top: 0.5px;

  }
  .carousel-slide.full-width-text-slide .about-us-text {
    flex: 1 20 100%;
    margin-right: 50px;
    margin-left: 30px;
    text-align: left;
    width: 78%;
}

  .about-us-image img {
    width: 90px;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-top: 20px; /* opcional */
}
.about-us-image {
    flex: 1 1 auto;
    display: flex-start;
    justify-content: center;
    align-items: center;
    margin: 0 0 8px 0;
    
}
.carousel-slide.why-we-exist-slide .about-us-text  {
    
    height: 480px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text p {
    
    margin-right: -10px;
    margin-left: 0px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text h4 {
    
    margin-right: -10px;
    margin-left: -10px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.ods2-text{
    display: none;
}

.ods-block-small img {
    width: 90px;
    height: auto;
    margin-left: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.ods-block-small  {
    width: 150px;
    margin-left: 30px;
    height: 100px;
    
    
}


} 

@media (max-width: 400px) {
    .about-us-content{
        max-width: 500px;
    }
    
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 150%;
        height: 350px;
    }

    .about-us-text {
        margin-top: 0px;
    }

    .about-us-section h2 {
        font-size: 1.2em;
        text-align: left;
      }
  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 80px;
  }

  .carousel-slide .about-us-text h3 {
    font-size: 1.3em;
    text-align: left;
    margin-top: auto;
    margin-left: 30px;
  }

  .carousel-slide .about-us-text h4 {
    font-size: 1.3em;
    text-align: center;
    margin-top: auto;
    margin-left: 20px;
    
  }
  .carousel-slide .about-us-text p {
    font-size: 0.6em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: -20px;
    margin-left: 10px;
    margin-top: 0.5px;

  }
  .about-us-text ul{
    font-size: 0.56em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: 100px;
    margin-left: 20px;
    margin-top: 0.5px;

  }
  .carousel-slide.full-width-text-slide .about-us-text {
    flex: 1 20 100%;
    margin-right: 50px;
    margin-left: 30px;
    text-align: left;
    width: 70%;
}

  .about-us-image img {
    width: 90px;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-top: 20px; /* opcional */
}
.about-us-image {
    flex: 1 1 auto;
    display: flex-start;
    justify-content: center;
    align-items: center;
    margin: 0 0 8px 0;
    
}
.carousel-slide.why-we-exist-slide .about-us-text  {
    
    height: 480px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text p {
    
    margin-right: -30px;
    margin-left: -30px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text h4 {
    
    margin-right: -10px;
    margin-left: -10px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.ods2-text{
    display: none;
}

.ods-block-small img {
    width: 90px;
    height: auto;
    margin-left: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.ods-block-small  {
    width: 150px;
    margin-left: 30px;
    height: 100px;
    
    
}

} 

@media (max-width: 420px) {
    .about-us-content{
        max-width: 500px;
    }
    
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 150%;
        height: 350px;
    }

    .about-us-text {
        margin-top: 0px;
    }

    .about-us-section h2 {
        font-size: 1.2em;
        text-align: left;
      }
  .carousel-slide .about-us-text h3 {
    font-size: 1.1em;
    text-align: left;
    margin-top: auto;
    margin-left: 80px;
  }

  .carousel-slide .about-us-text h3 {
    font-size: 1.1em;
    text-align: left;
    margin-top: auto;
    margin-left: 30px;
  }

  .carousel-slide .about-us-text h4 {
    font-size: 1.1em;
    text-align: center;
    margin-top: auto;
    margin-left: 20px;
    
  }
  .carousel-slide .about-us-text p {
    font-size: 0.58em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: -20px;
    margin-left: 10px;
    margin-top: 0.5px;

  }
  .about-us-text ul{
    font-size: 0.56em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: 100px;
    margin-left: 20px;
    margin-top: 0.5px;

  }
  .carousel-slide.full-width-text-slide .about-us-text {
    flex: 1 20 100%;
    margin-right: 50px;
    margin-left: 30px;
    text-align: left;
    width: 70%;
}

  .about-us-image img {
    width: 90px;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-top: 20px; /* opcional */
}
.about-us-image {
    flex: 1 1 auto;
    display: flex-start;
    justify-content: center;
    align-items: center;
    margin: 0 0 8px 0;
    
}
.carousel-slide.why-we-exist-slide .about-us-text  {
    
    height: 480px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text p {
    
    margin-right: -30px;
    margin-left: -30px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text h4 {
    
    margin-right: -10px;
    margin-left: -10px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.ods2-text{
    display: none;
}

.ods-block-small img {
    width: 90px;
    height: auto;
    margin-left: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.ods-block-small  {
    width: 150px;
    margin-left: 30px;
    height: 100px;
    
    
}

} 

@media (max-width: 340px) {
    .about-us-content{
        max-width: 500px;
    }
    
    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 150%;
        height: 350px;
    }

    .about-us-text {
        margin-top: 0px;
    }

    .about-us-section h2 {
        font-size: 1.2em;
        text-align: left;
      }
  .carousel-slide .about-us-text h3 {
    font-size: 1.1em;
    text-align: left;
    margin-top: auto;
    margin-left: 80px;
  }

  .carousel-slide .about-us-text h3 {
    font-size: 1.1em;
    text-align: left;
    margin-top: auto;
    margin-left: 30px;
  }

  .carousel-slide .about-us-text h4 {
    font-size: 1.1em;
    text-align: center;
    margin-top: auto;
    margin-left: 20px;
    
  }
  .carousel-slide .about-us-text p {
    font-size: 0.55em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: -35px;
    margin-left: -5px;
    margin-top: 0.5px;

  }
  .about-us-text ul{
    font-size: 0.56em;
    text-align: left;
    max-width: 600px; /* puedes ajustar este valor */
    margin-right: 100px;
    margin-left: 20px;
    margin-top: 0.5px;

  }
  .carousel-slide.full-width-text-slide .about-us-text {
    flex: 1 20 100%;
    margin-right: 50px;
    margin-left: 30px;
    text-align: left;
    width: 70%;
}

  .about-us-image img {
    width: 70px;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-top: 20px; /* opcional */
}
.about-us-image {
    flex: 1 1 auto;
    display: flex-start;
    justify-content: center;
    align-items: center;
    margin: 0 0 8px 0;
    
}
.carousel-slide.why-we-exist-slide .about-us-text  {
    
    height: 480px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text p {
    
    margin-right: -30px;
    margin-left: -30px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.carousel-slide.why-we-exist-slide .about-us-text h4 {
    
    margin-right: -10px;
    margin-left: -10px;/* Si tenías estilos de fondo aquí, elimínalos o redefínelos */
     /* Alineación por defecto del h2 */
}
.ods2-text{
    display: none;
}

.ods-block-small img {
    width: 90px;
    height: auto;
    margin-left: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.ods-block-small  {
    width: 150px;
    margin-left: 30px;
    height: 100px;
    
    
}

} 