#list-sec img {
    width: 90%;
    height: fit;
    display: block;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}

#list-sec h3 {
    color: black;
    padding-top: 10vh;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 10vh;
    text-align: center;
}

ol {
    list-style: none;
    counter-reset: item;
}

#list-sec li {
    color: black;
    counter-increment: item;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
}

ol:last-child {
    margin-bottom: 80px;
}

#list-sec li:before {
    font-size: 50px;
    content: counter(item);
    color: var(--blue);
    text-align: center;
    display: inline-;
}

@media screen and (min-width: 920px) {
    #list-sec {
        display: flex;
        flex-direction: row;
        padding-left: 10vw;
        padding-right: 10vw;
        justify-content: center;
        align-items: center;
    }

}