/*  Sets styles list of services  */
/*  on index page                 */
/* -----------------------------  */

.o_index-services {
    box-sizing: content-box;
    position: relative;
    width: 100%;
    height: 355px;
    padding: 70px 0 0 0;
    background: url('../../img/pics/index-services.jpg') center no-repeat;
    background-color: green;
    background-size: cover;
    z-index: 1;
}

.o_index-services .a_link_services {
    width: 100%;
}


.o_index-services:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--eco-black);
    opacity: 0.5;
    z-index: -10;
}

.o_index-services_head {
    position: relative;
}

.o_index-services_head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -35px;
    width: 100%;
    border-bottom: 1px solid white;
}

.o_index-services_col {
    width: 100%;
    height: 150px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    z-index: 10;
}

.o_index-services_col li:not(:last-child) {
    margin-right: 40px;
}

.o_index-services_link {
    list-style: none;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1000px) {

    .o_index-services {
        height: 100%;
        padding: 70px 0;
    }

    .o_index-services_col {
        width: 100%;
        height: 100%;
        flex-wrap: nowrap;
    }

    .o_index-services_link {
        margin-right: 0;
    }
}