/*  Sets styles for various       */
/*  body elements                 */
/* -----------------------------  */

/* Bullet image/video */

.c_body_img {
    width: 100%;
    height: auto;
}

/* For images inserted through TinyMCE editor */

figure {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 40px; 
}

figure > img,
p > img {
    max-width: 100%;
    height: auto;
}

figcaption {
    margin-top: 15px;
}

.c_body_video {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.c_body_video iframe {
    position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

/* Bullet list */

.c_body_bullet {
    width: 80%;
    position: relative;
    list-style: none;
    margin-left: 20px;
    margin-bottom: 20px;
}

.c_body_bullet::before {
    content: '';
    top: 10px;
    left: -20px;
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background-color: var(--eco-green); 
    position: absolute;
}

/* Quote */

.c_body_quote {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--eco-d-green);
}

/* Check-slider */

.c_body_check-slider {
    width: 100%;
    display: flex;
    border: 1px solid var(--eco-grey);
}

.c_body_check_col1 {
    width: 45%;
    height: auto;
    background-color: #fff;
}

/* Styles list elements           */
/* background, image pointer,     */
/* green circle when active or    */
/* hovered upon                   */
/* =============================  */

.c_body_check_li {
    position: relative;
    list-style: none;
    cursor: pointer;
}

.c_body_check_li:first-child {
    background-color: var(--eco-grey);
}

.c_body_check_icon {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    top: 23px;
    left: 10px;
    border: 1px solid var(--eco-green);
    border-radius: 7px;
    background-color: #fff;
    z-index: 5;
}

.c_body_check_li:first-child .c_body_check_icon {
    background-color: var(--eco-green);
}

.c_body_check_li:hover {
    position: relative;
    background-color: var(--eco-grey) !important;
    list-style: none;
}

.c_body_check_li:hover::before {
    position: absolute;
    content: '';
    width: 13px;
    height: 13px;
    top: 23px;
    left: 10px;
    border: 1px solid var(--eco-green);
    border-radius: 7px;
    background-color: var(--eco-green);
    z-index: 10;
}

.c_body_check_li:hover::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    top: 38%;
    right: -7px;
    background-color: var(--eco-grey);
    border-radius: 2px;
    transform: rotate(45deg);
    z-index: 10;
}

/* =============================  */
/* Styles step names and          */
/* process roadmap              */


.c_body_check_step {
    position: relative;
    width: 100%;
    padding: 20px 20px 20px 35px;
    list-style: none;
    border-bottom: 1px solid var(--eco-grey);
}

.c_body_check_li:last-child div {
    border-bottom: none;
}

.c_body_check_step::before {
    position: absolute;
    content: '';
    margin: 9px 0;
    top: 0;
    left: 16px;
    width: 1px;
    height: 70%;
    border-left: 1px dotted var(--eco-green);
    z-index: 1;
}

/* =============================  */
/* Stylizes column 2              */

.c_body_check_col2 {
    position: relative;
    width: 60%;
    height: auto;
    background: url('../../img/pics/check-slider.jpg') center no-repeat;
    background-size: cover;
    z-index: -1;
}

.c_body_check_col2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--eco-black);
    opacity: 0.5;
    z-index: -1;
}

.c_body_check_col2--active {
    display: block !important; 
}

.c_body_check_col2 li {
    /* display: none;  */
    list-style: none;
    padding: 0 40px;
}

.c_body_check_col2_head {
    position: relative;
    width: 100%;
    display: flex;
    padding: 30px 0;
    justify-content: space-between;
    border-bottom: 1px solid white;
}

.c_body_check_col2_head::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 30px;
    right: 90px;
    background: url('../../img/svg/clock-white_white.svg');
    background-size: contain;
}

.c_body_check-list {
    display: none;
}

@media only screen and (max-width: 900px) {
    .c_body_check-slider,
    .c_body_check_col1,
    .c_body_check_col2 {
        display: none;
    }

    .c_body_check-list {
        display: block;
        width: 100%;
    }

    .c_body_check-list > ul > li  {
        list-style: none;
        border-bottom: 1px solid var(--eco-d-green);
        padding-bottom: 40px;
    }
}

/* Production groups */

.c_body_prod_item {
    position: relative;
    margin-left: 50px;
    list-style: none;
}

.c_body_prod_item:not(:last-child) {
    margin-bottom: 20px;
}

.c_body_prod_item_img {
    position: absolute;
    top: 0;
    left: -50px;
    width: auto;
    height: 30px;
}

/* Cost table */ 

.c_body_cost_table {
    width: 100%;
}

.c_body_cost_cell{
    height: 130px;
    padding: 30px 0;
    width: 100%;
    border-bottom: 1px dotted var(--eco-d-green);
}

/* Downloadable link list */ 

.c_body_link {
    display: table;
    position: relative;
    width: 100%;
    vertical-align: middle;
    cursor: pointer;
    transition: box-shadow 0.2s ease-in-out;
}

@media only screen and (min-width: 900px) {

    .c_body_link {
        padding: 0 95px;
        box-shadow: 0 0 10px var(--eco-grey);
        border-radius: 2px;
        background-color: white;
        height: 74px;
    }

    .c_body_link:hover {
        box-shadow: 0 30px 50px var(--eco-grey);
        transition: box-shadow 0.2s ease-in-out;
    }

    .c_body_link::before {
        position: absolute;
        content: '';
        width: 30px;
        height: 40px;
        top: 15px;
        left: 20px;
        background: url('../../img/svg/doc-icon_green.svg') center no-repeat;
        background-size: contain;
    }
    
    .c_body_link::after{
        position: absolute;
        content: '';
        width: 15px;
        height: 20px;
        top: 30px;
        right: 50px;
        background: url('../../img/svg/download-icon_grey.svg') center no-repeat;
        background-size: contain;
    }
}



.c_body_link a {
    display: table-cell;
    vertical-align: middle;
}

/* Standrds (Company page) */

.c_body_standard {
    position: relative;
    margin-left: 30px;
}

.c_body_standard::before {
    position: absolute;
    content: '';
    top: 10px;
    left: -30px;
    width: 16px;
    height: 16px;
    background: url('../../img/svg/link_green.svg') center no-repeat;
    background-size: cover;
}

/* Testimonials -- single/slider */

.c_body_endorse_wrap {
    position: relative;
    width: 800px;
    padding-right: 40px;
}

.c_body_endorse_slider {
    padding-right: 5px;
}

.c_body_endorse {
    padding-left: 80px ;
}

/* .c_body_endorse:first-child {
    margin-left: -800px;
} */

.c_body_endorse_nav {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
}

.o_testimonials_nav_left,
.o_testimonials_nav_left:active {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 27px -3px rgba(0,0,0,0.44);
    -moz-box-shadow: 0px 0px 27px -3px rgba(0,0,0,0.44);
    box-shadow: 0px 0px 10px -3px rgba(0,0,0,0.44);
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 100;
}

.o_testimonials_nav_right,
.o_testimonials_nav_right:active {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 27px -3px rgba(0,0,0,0.44);
    -moz-box-shadow: 0px 0px 27px -3px rgba(0,0,0,0.44);
    box-shadow: 0px 0px 10px -3px rgba(0,0,0,0.44);
    position: absolute;
    top: 0;
    right: 0;
}

.o_testimonials_nav_left::after, 
.o_testimonials_nav_right::after {
    content: '';
    border: solid var(--eco-d-grey);
    border-width: 0 2px 2px 0;
    width: 10px;
    height: 10px; 
    position: absolute;
    top: 32%;
}

.o_testimonials_nav_left::after {
    transform: rotate(-225deg);
    -webkit-transform: rotate(-225deg);
    left: 12px;
}

.o_testimonials_nav_right::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    left: 8px;
}

.c_body_endorse_nav button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px var(--eco-grey);
    background: url('../../img/svg/arrow-icon_left.svg') center no-repeat;
}

.c_body_endorse_nav button:last-child {
    transform: scaleX(-1)
}

.c_body_endorse_logo {
    display: block;
    width: 130px;
}

.c_body_endorse_p {
    position: relative;
}

.c_body_endorse_p::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 31px;
    top: 0;
    left: -80px;
    background: url('../../img/svg/speech-marks_green.svg') center no-repeat;
}

@media only screen and (max-width: 450px) {
    .o_testimonials_nav_left,
    .o_testimonials_nav_left:active {
        position: absolute;
        top: 0;
        right: 15%;
    }

}

@media only screen and (min-width: 450px) and (max-width: 1000px) {
    .o_testimonials_nav_left,
    .o_testimonials_nav_left:active {
        position: absolute;
        top: 0;
        right: 8%;
    }

}

@media only screen and (max-width: 1000px) {
    
    .c_body_endorse_wrap {
        position: relative;
        width: 100%;
        padding-right: 40px;
    }

    .c_body_endorse {
        position: relative;
        padding-left: 0;
        width: 120%;
    }

    .c_body_endorse_logo {
        text-align: left;
        display: block;
        width: 130px;
    }

    .c_body_endorse::before, 
    .c_body_endorse_p::before {
        display: none;
    }

}

div .c_body_endorse_link {
    width: 100% !important;
    position: relative;
    display: inline-block;
    padding: 0 0 20px 50px;
    border-bottom: 1px dotted var(--eco-green);
}

.c_body_endorse_link::before {
position: absolute;
    content: '';
    width: 30px;
    height: 40px;
    top: -10px;
    left: 0px;
    background: url('../../img/svg/doc-icon_green.svg') center no-repeat;
    background-size: contain;
}

/*  Table-type1  */

.c_body_tab1 {
    width: 100%;
    overflow: scroll;
}

.c_body_tab1_wrap {
    width: 100%;
    border-spacing: 0px;
    overflow: scroll;
}

@media only screen and (max-width: 600px) {
    .c_body_tab1 {
        width: 100%;
        overflow: scroll;
    }

    .c_body_tab1_wrap {
        width: 180%;
        overflow: scroll;
    }
}

/* .c_body_tab1_row:hover {
    background-color: var(--eco-l-grey);
    cursor: pointer;
} */

.c_body_tab1_head {
    padding: 0 0 15px 15px;
    border-bottom: 1px solid var(--eco-green);
}

.c_body_tab1_cell {
    padding: 30px 0 30px 15px;
    border-bottom: 1px dotted var(--eco-grey);
    background-color: white;
}

.c_body_tab1_cell_fill {
    width: 100%;
}

.c_body_tab1_cell a {
    display: block;
}

/* Logo list */
/* Certificates */

.c_body_img-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.c_body_logo,
.c_body_img-small,
.c_body_certificate {
    list-style: none;
    margin-right: 25px;
    margin-bottom: 15px;
    background-size: contain;
}

.c_body_certificate {
    width: 45%;
}

.c_body_certificate img {
    width: 100%;
    box-shadow: 0 0 25px var(--eco-l-grey);
}

.c_body_img-small {
    width: 20%;
    height: auto;
    text-align: left;
}

.c_body_img-small img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media only screen and (max-width: 600px) {
    .c_body_certificate {
        width: 100%;
        margin-bottom: 30px;
    }

    .c_body_img-small {
        width: 100%;
        margin-bottom: 30px;
    }

    .c_body_img-small img {
        width: auto;
        display: block;
        margin-bottom: 10px;
        /* height: 75%; */
        /* box-shadow: 0 0 25px var(--eco-l-grey); */
        object-fit: cover;
    }
}

@media only screen and (min-width: 600px) and
(max-width: 900px)  {
    .c_body_certificate {
        width: 45%;
        margin-bottom: 30px;
    }

    .c_body_img-small {
        width: 45%;
        margin-bottom: 50px;
    }

    .c_body_img-small img {
        width: 100%;
        height: 75%;
        /* box-shadow: 0 0 25px var(--eco-l-grey); */
        object-fit: cover;
    }
}

/* Partners */
/* Employees */

.c_body_partner-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.c_body_partner {
    display: inline-block;
    list-style: none;
    margin-right: 20px !important;
    margin-bottom: 20px;
    width: 220px !important;
    height: 250px;
    border-radius: 2px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--eco-grey);
}
.c_body_partner_read a {
    display: none;
    color: white;
    width: 100%;

}

.c_body_partner_read a {
    display: block;
    position: absolute;
    color: var(--eco-green);
    bottom: 20px;
    left: 0;
    text-align: center;
}

.c_body_partner:hover {
    box-shadow: 0 30px 50px var(--eco-grey);
    z-index: 10;
    transition: box-shadow 0.2s ease-in-out;
    border: 1px solid var(--eco-l-grey);
}

@media only screen and (max-width: 600px) {
    .c_body_partner {
        display: block;
        list-style: none;
        margin-right: 20px;
        margin-bottom: 20px;
        width: 100%;
        height: 250px;
        border-radius: 2px;
        padding: 40px 20px;
        text-align: center;
        border: 1px solid var(--eco-grey);
    }
}

@media only screen and (min-width: 600px) and
(max-width: 900px) {
    .c_body_partner {
        display: block;
        list-style: none;
        margin-right: 20px;
        margin-bottom: 20px;
        width: 75%;
        height: 250px;
        border-radius: 2px;
        padding: 40px 20px;
        text-align: center;
        border: 1px solid var(--eco-grey);
    }
}

.c_body_partner a{
    margin-top: 10px;
}

.c_body_partner_img {
    max-height: 60px;
    max-width: 100%;
}

/* Request info */

.c_body_request {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.c_body_request_p {
    display: inline-block;
    width: 70%;
}

@media only screen and (max-width: 900px) {
    .c_body_request_p {
        margin-top: 30px;
        width: 100%;
    }
}

/* Accordion */

.c_body_accord {
    width: 100%;
}

.c_body_accord-type {
    border-bottom: 1px solid var(--eco-d-green);
}

.c_body_accord-row {
    position: relative;
    list-style: none;
    padding-right: 20px;
    cursor: pointer;
}

.c_body_accord-row button {
    cursor: pointer;
}

.c_row--close {
    display: none;
}

.c_body_accord-row::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 37px;
    right: 10px;
    background: url(../../img/svg/triangle-icon_grey.svg) center no-repeat;
    background-size: contain;

}

/* .c_body_accord-row:last-child {
    border-bottom: none;
} */

.c_body_accord-row:hover{
    background-color: var(--eco-l-grey);
}

/* .c_body_accord-link {
    margin-left: 30px;
} */

/* Digest thumbnail */

.c_body_digest_img {
    width: 160px;
    margin-right: 35px;
    background-size: contain;
}

.c_body_press {
    width: 60%;
    text-align: center;
}

.c_body_press .c_body_partner {
    margin: 0 auto !important;
}