.sliderContainer{
    width: 90%;
    height: 450px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0px 00px;
    display: flex;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1000ms;
    transition-delay: 100ms;
}
.sliderContainer ul{
    font-size: 50px;
    color: #173c77;
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-shadow: 0px 0px 10px rgb(78, 78, 78);
    
}
.Impact{
    color: yellow;
}
.seta{
    width: 50px;
    height: 50px;
    transition: 100ms;
    
}
.setaCenter{
    display: flex;
    align-items: center;
    justify-content: center;
}
.seta ion-icon{
    width: 100%;
    height: 100%;
    color: rgb(167, 167, 167);
    transition: 100ms;
}
.seta ion-icon:hover{
    color: rgb(255, 255, 255);
}

#next:hover{
    transform: translateX(10px);
}

#previous:hover{
    transform: translateX(-10px);
}

.sliderContent{
    width: calc(100% - 100px);
}

@media only screen and (max-width: 962px) {
    .sliderContainer{
        height: 400px;
    }
}
@media only screen and (max-width: 860px) {
    .sliderContainer{
        height: 350px;
    }
}

@media only screen and (max-width: 800px) {
    
    .sliderContainer{
        width: 100%;
        height: 350px;
        border-radius: 0px;
        background-position: 0px 0px;
        background-size: cover;
    }
    .sliderContainer ul{
        font-size: 37px;
    }
    
}
@media only screen and (max-width: 670px) {
    .sliderContainer ul{
        font-size: 30px;
    }
    
    
}
@media only screen and (max-width: 500px) {
    .sliderContainer ul{
        font-size: 25px;
    }
}