
.historia{
    display: flex;
    align-items: center;
    flex-direction: row;
    color: #fff;
}

.historia img{
    width: 50%;
    height: 40vw;
    max-height: 400px;
    object-fit: contain;
    object-position: bottom;
}

.historia li:first-child{
    margin-bottom: 20px;
}

.historia li p{
    width: 80%;
}

.historia img:last-child{
    display: none;
}

@media screen and (max-width: 800px){
    .historia{
        display: flex;
        text-align: center;
        flex-direction: column-reverse;
    }

    .historia img{
        width: 90% !important;
    }

    .historia ul{
        padding: 20px 0px;
    }

    .historia li p{
        width: 89%;
        margin-left: 5%;
        margin-bottom: 50px;
    }
}