/* sct-law */
dl{
    width:100%;
    margin-bottom:50px;
}

dl:last-child{
    margin:0;
}

dt{
    width:30%;
    border-bottom:1px solid #ccc;
    padding:1rem 0;
}

dd{
    width:70%;
    border-bottom:1px solid #ccc;
    padding:1rem 0;
}


/* resposive */
@media screen and ( max-width:800px )
{
    dt{
        width:100%;
        border:none;
        padding:1rem 0 0;
    }
    
    dd{
        width:100%;
        padding:0 0 1rem 0;
    }

}