
/*Videos Animados*/

.videos-animados{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: var(--bg--lightgray);
}

.videos-animados .tittles{
    width: fit-content;
    max-width: 500px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.videos-animados .videos-cont{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}



    /*Media Querys Videos Animados*/

    @media screen and (max-width:720px) {
        .videos-animados .tittles{
            width: 80%;
        }
    }
