/*  Sets styles for content page  */
/*  heads (title, breadcrumbs,    */
/*  subtitle)                     */
/* -----------------------------  */

.o_page_head_h1 {
    width: 60%;
}

/* Bread crumbs */

.o_page_head_crumbs {
    width: 100%;
}

.o_page_head_link {
    position: relative;
    display: inline-block;
    list-style: none;
}

.o_page_head_link:not(:first-child) {
    padding-left: 30px;
}

/* .breadcrumbs span:before {
    position: absolute;
    top: 5px;
    left: 8px;
    content: '';
    width: 12px;
    height: 9px;
    background: url('/assets/img/icons/breadcrumb-arrow-icon_green.png') center no-repeat;
    background-color: green;
    background-size: cover;
} */

/* ============= */

.o_page_head_intro {
    position: relative;
}

.o_page_head_p {
    width: 70%;
}

.o_page_head_img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 900px) {
    .o_page_head_h1 {
        width: 100%;
    }
    
    .o_page_head_img {
        margin-top: 70px;
        width: 100%;
        height: auto;
    }

    .o_page_head_p {
        width: 100%;
    }
    
}

/* Tags */

.o_page_head_tags {
    position: absolute;
    top: 50px;
    right: 0;
}

.o_page_head_tags > ul > li {
    clear: both;
    float: right;
    margin-bottom: 10px;
}


.o_page_head_tag-filter {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--eco-d-green);
}

.o_page_head_tag-filter li {
    margin-right: 10px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 900px) {
    .o_page_head_tags {
        position: relative;
        top: 20px;
        left: 0;
        margin-bottom: 70px;
    }

    .o_page_head_tags > ul > li {
        width: auto;
        float: none;
        margin-bottom: 10px;
        margin-right: 10px;
    }

    
    .o_page_head_tag-filter {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-bottom: 25px;
        border-bottom: 1px solid var(--eco-d-green);
    }
}
/* ============= */