.services_container {
    flex: 1;

    display: flex;
    flex-direction: row;

    width: 100%;

    color: #000000;
    background-color: #FFFFFF;
}

.services_spacer {
    flex: 1;
}

.services_content {
    box-sizing: border-box;

    width: 100%;
    max-width: var(--site-max-width);;
}

.services_standard_bloc {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;

    width: 100%;

    padding: 1rem;

    text-align: left;
}

.services_standard_bloc_reverse {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap-reverse;

    width: 100%;

    padding: 1rem;

    text-align: left;
}

.services_standard_bloc_text {
    box-sizing: border-box;

    flex: 1;

    min-width: 60%;
}

.services_standard_bloc_img_taille {
    flex: 1;

    min-width: 300px;
    min-height: 400px;
    
    background-image: url("../../res/img/taille_exemple_1.gif");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services_standard_bloc_img_abattage {
    flex: 1;

    min-width: 300px;
    min-height: 200px;
    
    background-image: url("../../res/img/abattage.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services_standard_bloc_img_dechets {
    flex: 1;

    min-width: 300px;
    min-height: 200px;
    
    background-image: url("../../res/img/dechets.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services_standard_bloc_img_eqa {
    flex: 1;

    min-width: 300px;
    min-height: 200px;
    
    background-image: url("../../res/img/eqa.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.services_section_bloc {
    box-sizing: border-box;

    width: 100%;

    padding: 1rem;

    text-align: center;
    font-size: 2rem;

    color: #FFFFFF;
    background-color: #FF6D2C;
}

.services_title {
    font-size: 2.5rem;

    color: #FF6D2C;
}

a.services_standard_bloc_text:link, a.services_standard_bloc_text:active, a.services_standard_bloc_text:visited {
    text-decoration: none;
    color: #222222;
}

a.services_standard_bloc_text:hover {
    text-decoration: none;
    color: #888888;
}