/** SLIDER **/
.slider-principal{
    margin-top: 15px;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.container-slider{
    width: 40%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 2px 21px #000000;
    border-radius: 25px;
}

.slider__section{
    width: 40vw;
}
.slider__section img{
    width: 100%;
}


.slider{
    display: flex;
    width: 604%;
    height: 500px;
    margin-left: -101%;
}

.slider__img{
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

img{
    cursor: pointer;
}

.slider__btn{
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.5);
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    font-weight: bold;
    font-family:monospace;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.slider__btn p{
    margin-top: 13%;
}
.slider__btn:hover{
    background-color: #fff;
}

.slider__btn--right{
    right: 10px;
}

.slider__btn--left{
    left: 10px;
}

@media only screen and (max-width: 1600px){
    .container-slider{
        width: 40%;
        max-width: 800px;
        overflow: hidden;
        position: relative;
        box-shadow: 2px 2px 21px #000000;
        border-radius: 25px;
    }
    .slider{
        display: flex;
        width: 505%;
        height: 370px;
        margin-left: -100%;
    }
}

@media only screen and (max-width: 1400px){
    .container-slider{
        width: 40%;
        max-width: 900px;
        overflow: hidden;
        position: relative;
        box-shadow: 2px 2px 21px #000000;
        border-radius: 25px;
    }
    .slider{
        display: flex;
        width: 606%;
        height: 370px;
        margin-left: -102%;
    }
}
@media only screen and (max-width: 768px){
    .slider-principal{
        margin-top: 15px;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .container-slider{
        width: 95%;
        max-width: 900px;
        overflow: hidden;
        position: relative;
    }
    
    .slider__section{
        width: 100%;
    }
    
    .slider{
        display: flex;
        width: 506%;
        height: 200px;
        margin-left: -102%;
    }
    
    .slider__img{
        display: block;
        width: 100%;
        height: 100%;
    }
    
    .slider__btn{
        position: absolute;
        width: 50px;
        height: 50px;
        background-color: rgba(255,255,255,0.5);
        top: 50%;
        transform: translateY(-50%);
        font-size: 25px;
        font-weight: bold;
        font-family:monospace;
        text-align: center;
        border-radius: 50%;
        cursor: pointer;
    }
    .slider__btn p{
        margin-top: 13%;
    }
    .slider__btn:hover{
        background-color: #fff;
    }
    
    .slider__btn--right{
        right: 10px;
    }
    
    .slider__btn--left{
        left: 10px;
    }
}

