@charset "UTF-8";
/* CSS Document */

.compliance_wrapper{
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 100px;
}
.compliance_wrapper h3{
    font-size: 24px;
    font-weight: 500;
    color: #1dc765;
    text-align: center;
    padding-bottom: 40px;
}
.compliance_wrapper ul li{
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}
.compliance_wrapper ul li::before{
    content: '1.';
    position: absolute;
    left: 0;
    top: 5px;
    color: #1dc765;
    font-size: 20px;
    line-height: 1em;
    font-family: 'Century Gothic', 'Montserrat', sans-serif;
    font-weight: 700;
}
.compliance_wrapper ul li:nth-of-type(2)::before{
    content: '2.';
}
.compliance_wrapper ul li:nth-of-type(3)::before{
    content: '3.';
}
.compliance_wrapper ul li:nth-of-type(4)::before{
    content: '4.';
}
.compliance_wrapper ul li:nth-of-type(5)::before{
    content: '5.';
}
.compliance_wrapper ul li:nth-of-type(6)::before{
    content: '6.';
}
.compliance_wrapper ul li:nth-of-type(7)::before{
    content: '7.';
}
.compliance_wrapper ul li:nth-of-type(8)::before{
    content: '8.';
}
.compliance_wrapper ul li:nth-of-type(9)::before{
    content: '9.';
}


@media print, screen and (max-width: 750px) {
    .compliance_wrapper {
        width: 100%;
        max-width: 500px;
        padding: 0 20px;
        margin-bottom: 60px;
    }
    .compliance_wrapper h3 {
        font-size: 20px;
        padding-bottom: 15px;
    }
    .compliance_wrapper ul li{
        margin-bottom: 15px;
    }



}

