@font-face{
    font-family: 'Aller Display';
    src: url('../fonts/Aller/AllerDisplay.ttf') format('truetype');
    font-size: normal;
    font-weight: normal;
}
@font-face{
    font-family: 'Aller Regular';
    src: url('../fonts/Aller/Aller_Std_Rg.ttf') format('truetype');
    font-size: normal;
    font-weight: normal;
}
body{
    font-family: 'Aller Regular';
    display: flex;
    flex-direction: column;
}
.section-expgeo{
    width: auto;
    background-color: RGB(236, 236, 236);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.sec-image{
    box-sizing: border-box;
}
.sec-image img{
    width: 100%;
    height: auto;
    display: block;
}
.text-p{
    font-family: 'Aller Regular';
    background-size: 25%;
    background-image: url(../img/mantis/exp-Geo/fondo-eg.png);
    background-repeat: no-repeat;
    background-position: 98% 30%;
    font-size: 1.97rem;
    color: #002060;
    height: 550px;
}
.section-carrusel{
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
/* Contenedor que muestra las 5 imágenes */
.container-carrusel {
    overflow: hidden;
    /* Ajusta el ancho al total de 5 imágenes */
    width: calc(360px * 5); /* O usa el ancho real de tus imágenes */
}

/* Track que se desplaza */
.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    padding: 50px 0;
}

/* Cada slide con ancho fijo */
.carrusel-item {
    min-width: 360px; /* O el tamaño que desees */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imágenes adaptadas al contenedor sin deformarse */
.carrusel-item img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Muestra la imagen completa con proporción */
    display: block;
    filter: grayscale(100%); /* La imagen se ve clara/gris al inicio */
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out; /* Transición suave */
}
.carrusel-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    z-index: 15;
}
.prev, .next {
    position: relative;
    background-color: #A9ABAE;
    width: 65px;
    height: 65px;
    margin: 0 0;
    font-size: 40px;
    padding: 0 0;
    transition: all 0.3s ease;
    z-index: 20;
}
.prev:hover, .next:hover {
    background-color: #AAD05C;
    transition: all 0.3s ease;
}
.prev{
    left: 1.5%;
}

.next{
    right: 1.5%;
}
button {
    background-color: rgba(255, 255, 255, 0.258);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 100%;
    margin: 15px;
    font-size: 25px;
}
/* Repsonsividad--------------------------------------------------------------------------------------- */
@media screen and (min-width: 1600px) {
    .container-carrusel{
        width: calc(288px * 5);
    }
    .carrusel-item{
        min-width: 288px;
    }
}
@media screen and (min-width: 2560px) {
    .container-carrusel{
        width: calc(570px * 5);
    }
    .carrusel-item{
        min-width: 570px;
    }
    .text-p{
        font-size: 45px;
    }
    .text-p{
        background-size: 15%;
    }
}
@media screen and (min-width: 3440px) {
    .prev, .next{
        width: 120px;
        height: 120px;
        font-size: 60px;
    }
}