.about{
    height: 100vh;
    display: flex;
}

.content{
    padding-top: 10%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title{
    color: #293f61;
}

.image-slider{
    background-color: #5fa3ce;
    display: flex;
    margin: 0 auto;
    width: 80%;
    height: auto;
    border-radius: 10px;
    border: 10px solid #5fa3ce !important;
}

.image-slider > .slider{
    width: 100%;
}

.slider > .image-scroll{
    width: 100% !important;
}

.fades{
    animation: fade 1s linear;
}

@keyframes fade{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}


.info{
    width: 90%;
    text-align: center;
    margin-top: 5px !important;
}

@media (max-width:560px){
    .content{
        padding-top: 20%;
    }
}