/*  Sets styles for site' foorer  */
/* -----------------------------  */

.o_footer {
    box-sizing: content-box;
    padding: 50px 0;
    width: 100%;
    background-color: var(--eco-green);
}

.o_footer_wrap {
    display: flex;
    justify-content: space-between;
}

.o_footer_p {
    margin-top: 30px;
}

.o_footer_col > a > img {
    /* width: 100%; */
    height: 30px;
}


.o_footer_col:last-child {
    border-right: none;
}

.o_footer_nav,
footer .menu-item {
    margin-bottom: 10px;
    list-style: none;
}

footer .menu-item:last-child,
footer .menu-item:nth-last-child(2) {
    display: none;
}

footer .menu-item a {
    color: white !important;
}

.o_footer_social {
    position: relative;
    margin-left: 25px;
}

.o_footer_social:first-child:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -25px;
    width: 15px;
    height: 15px;
    background: url('../../img/svg/tg-icon_white.svg') center no-repeat;
    background-size: contain;

}

.o_footer_social:last-child:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -25px;
    width: 15px;
    height: 15px;
    background: url('../../img/svg/vk-icon_white.svg') center no-repeat;
    background-size: contain;

}

/* .o_footer_social:last-child:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -25px;
    width: 15px;
    height: 15px;
    background: url('../../img/svg/instagram-icon_white.svg') center no-repeat;
    background-size: contain;

} */


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

    .o_footer_wrap {
        flex-wrap: wrap;
    }

    .o_footer_col {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid white;
        padding: 30px 0;
    }

    .o_footer_col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

}

@media only screen and (min-width: 600px) {

    .o_footer_wrap {
        flex-wrap: wrap;
    }

    .o_footer_col {
        width: 45%;
        padding: 30px 0;
        border-right: none;
        border-bottom: 1px solid white;
        /* margin-bottom: 20px; */

    }

    .o_footer_col:last-child {
        width: 100%;
        border-bottom: none;
    }

    .o_footer_col:nth-child(2n) {
        margin-left: 20px;
    }

}

@media only screen and (min-width: 1200px) {

    .o_footer_col {
        width: 20%;
        /* padding: 0 2%;  */
        border-right: 1px solid white;
        border-bottom: none;
    }

    .o_footer_col:nth-child(2),
    .o_footer_col:nth-child(3),
    .o_footer_col:nth-child(4) {
        padding: 0 2%;
    }

    .o_footer_col:first-child {
        padding: 0 2% 0 0;
    }

    .o_footer_col:last-child {
        padding: 0 0 0 2%;
    }

    .o_footer_col:last-child {
        width: 20%;
    }

    .o_footer_col:nth-child(2n) {
        margin-left: 0;
    }

}