*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.carrousel{
    padding-top: 250px;
    width: 100%;
    padding-bottom: 100px;
}

.conteCarrousel{
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.itemCarrousel{
    position: relative;
    width: 100%;
    height: 100%;
}

.itemCarrousel h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    text-align: center;
}

.itemCarrousel p{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5em;
    text-align: center;
}

.itemCarrousel > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.itemCarrouselTarjeta{
    width: 100%;
    height: 00%;
}

.itemCarrouselArrows{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px; 
}

.itemCarrouselArrows > i:hover {
    cursor: pointer;
}

#itemCarrousel-1{
    background-color: rgb(0, 0, 0);
}

#itemCarrousel-2{
    background-color: rgb(0, 0, 0);
}

#itemCarrousel-3{
    background-color: rgb(0, 0, 0);
}

.conteCarrouselController{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.conteCarrouselController > a{
    text-decoration: none;
    font-size: 2em;
    color: rgb(255, 255, 255);
}

.itemCarrouselArrows > a > i{
    color: white;
}

@media (max-width: 575px) {
    .conteCarrousel{
        height: 500px;
    }
    .itemCarrousel h1{
        font-size: 2em;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .itemCarrousel p{
        font-size: 1em;
    }
    .conteCarrouselController{
        display: none;
    }
    .itemCarrousel img{
        filter: opacity(5.5);
    }

    
}

.itemCarrousel p h1{
    font-size: 2em;
    color: white;
    text-align: center;
    margin-top: 20px;
}