/* LG */
@media (min-width: 1200px){
    .container.md-width{
        width: 784px !important;
    }
}

/* screen > mobile */
@media (min-width: 768px){
    .container.md-width{
        padding: 80px 100px;
    }

    .container.md-width.services{
        padding: 40px 0 0 0;
    }
}

/* screen > tab */
@media (max-width: 992px){
    .services-container{
        flex-wrap: wrap;
        background-color: white;
    }

    .services-block{
        width: 100%;
        padding: 30px 15px;
        border-bottom: 1px var(--c-light-grey) solid;
    }

    .services-block p,
    .services-block ul
    {
       height: auto;
    }
}

/* mobile*/
@media (max-width: 768px){

    html::before{
        background-size: contain;
    }

    #header_logo{
        width: 150px;
    }

    header .header-top {
        padding: 10px 0;
    }

    #content{
        margin: 100px 0;
    }

    .container.md-width{
        margin: 0 10px;
    }

    h1{
        font-size: 30px;
    }

    h2{
        font-size: 24px;
    }

    p{
        font-size: 16px;
    }

    footer .copyright_text {
        font-size: 14px;
    }

    .services-container.clients .services-block{
        width: 100%;
    }

}