.sliderTaranto-container {
    position: relative;
    width: 100%; 
    margin: 30px auto;
    overflow: hidden;
}

.sliderTaranto {
    display: flex;
}

.slideTaranto {
    flex: 0 0 100%;
    overflow: hidden;
    transition: transform 0.5s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.slideTaranto img {
    width: auto;
    height: 800px !important;
    margin: 0 auto;
}

.slideTaranto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 48, 48, 0.318);
}

.slideTaranto-text {
    position: absolute;
    bottom: 120px;
    left: 90px;
    color: white;
    font-size: 64px;
    
    /* Aumentamos el tamaño de la letra */
    
    /* Reducimos la opacidad */
    padding: 5px 10px;
    background-color: transparent;
    /* Quitamos el fondo */
}

@media(max-width:580px){

    .slideTaranto-text {
        color: white;
        font-size: 64px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        
        margin: 0;
        padding: 0;
    }

}

.sliderTaranto-dots {
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.active {
    background-color: blue;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    cursor: pointer;

    /* Aumentamos el padding para hacer el fondo más ancho */
    z-index: 100;
    border-radius: 50%;
    margin: 0 1%;
    font-size: 30px;
    width: 60px;
    height: 60px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}