main article section{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
main article section h2{
    text-align: center;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
main article section h2::before{
    content: "";
    background-image: url(../images/h2_bg.svg);
    width: 45px;
    height: 28px;
    background-size: cover;
    margin: 0 auto;
}
@media (max-width: 960px) {
    main article section h2{
        font-size: 1.3rem;
    }
    main article section h2::before{
        width: 30px;
        height: 18px;
    }
}

main article section ol{
    margin: 5rem auto 0;
}
main article section ol li{
    position: relative;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 2fr;
    margin-bottom: 5rem;
}
main article section ol li::after{
    content: "▼";
    position: absolute;
    left: 50%;
    bottom: -4rem;
    transform: translateX(-50%);
    color: rgba(22,156,88,.5);
    font-size: 2.5rem;
}
main article section ol li:last-of-type::after{
    display: none;
}

main article section ol li div{
    background: rgba(230,239,232,1);
    padding: 4rem 2rem 1rem;
    border-radius: 1rem;
    position: relative;
}

main article section ol li div h3{
    color: rgba(22,156,88,1);
    font-size: 1.3rem;
    text-align: center;
}
main article section ol li div h3 span{
    font-size: 1rem;
}
main article section ol li div figure{
    text-align: center;
    margin-bottom: .5rem;
}
main article section ol li div figure img{
    height: 6.25rem;
    object-fit: cover;
}
main article section ol li p{
    text-align: justify;
}
main article section ol li div::after{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    color: rgba(255,255,255,1);
    background-color: rgba(22,156,88,1);
    border-radius: 50%;
    width: 3.75rem;
    height: 3.75rem;
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: bold;
}
main article section ol li:first-of-type div::after{
    content: "1";
}
main article section ol li:nth-of-type(2) div::after{
    content: "2";
}
main article section ol li:nth-of-type(3) div::after{
    content: "3";
}
main article section ol li:last-of-type div::after{
    content: "4";
}
@media (max-width: 760px) {
    main article section ol li{
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 6rem;
    }

}