body{
    color: #27322B;
}
.green{
    background: #a5d1a96b;
    padding-bottom: 3vh;
    margin-top: 2vh;
    padding-top: 2vh;
}
h1{
    color: #067302;
    text-align: center;
}

h2{
    width: 80%;
    margin: auto;
    margin-top: 2vh;
}

#sage_exp{
    display: flex;
    margin: auto;
}

#txt_a{
    font-size: 20px;
    text-align: center;
}

#list_grid{
    width: 75%;
    margin: auto;
    margin-top: 5vh;
    margin-bottom: 7vh;
    display: grid;
    /*
    grid-template-columns: 1fr 1fr;
    column-gap: 5vh;
    row-gap: 5vh;*/
    grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    row-gap: 4vh;
    column-gap: 4vh;
    position: relative;
}

#list_grid div{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 10px;
    padding-top: 1vh;
}

#list_grid ul{
    width: 90%;
}



#l_a, #l_d{
    display: grid;
    grid-template-columns: 1fr 3fr;
}

#ordi, #para{
    display: flex;
    margin: auto;
    height: 102px;
}

#l_a ul{
    margin: auto;
}

#l_a li{
    margin-bottom: 2vh;
    margin-left: -10%;
}

#l_d ul{
    margin: auto;
    margin-left: -5%;
}


#list_grid ul li{
    width: 100%;
    padding: 1vh;
    list-style-type: none;
}

#list_grid ul li::before{
    content: '';
    background-image: url('./images/puce_rouge.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-flex;
    margin-right: 10px;
    width: 13px;
    height: 13px;
}

#txt_b{
    font-weight:600;
    font-size: 18px;
    width: 70%;
    margin: auto;
    margin-top: 5vh;
    margin-bottom: 5vh;
    padding: 1vh;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;

}

@media screen and (max-width: 640px){
    body{
        width: 100%;
        padding: 0;
        border-radius: 0px;
        font-size: 14px;
        text-align: justify;
    }
    h2{
        padding: 0.5vh;
        margin-bottom: 3vh;
    }
    #list_grid{
        width: 90%;
        grid-template-columns: 1fr;
    }

    #list_grid ul{
        margin-left: -5%;
    }

    #list_grid ul li{
        width: 90%;
    }

    #l_a, #l_d{
        grid-template-columns: 1fr;
    }
    #l_a li{
        margin-left: 0;
    }

    #txt_a{
        width: 85%;
        margin: auto;
    }

    #txt_b{
        width: 85%;
        font-size: 15px;
    }

}