/* ******************************************** */
/** SCOPE
/* ******************************************** */

.c-scope__line-bottom,
.c-scope__line-bottom-left,
.c-scope__line-bottom-right{
    display: none;
}

.c-scope{
    background-color: var(--color-lightgray);
    margin-top: var(--section-y-xl);
}

.c-scope__holder{
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
    margin-top: -8px;
}

.c-scope__img{
    overflow: hidden;
    /*margin-left: -14px;
    margin-right: -14px;*/
    margin-left: 2px;
    margin-right: -100px;
    margin-top: var(--section-y);
}

.c-scope__img-img{
    position: relative;
    right: -50px;
    max-width: none;
    width: 110%;
}


/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 768px) {

    .c-scope{
        margin-bottom: calc(var(--section-y-xl)*2);
    }

    .c-scope__holder{
        position: relative;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        gap: 70px;
        overflow: visible;
        margin-top: 0;
    }

    .c-scope__holder:before{
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 60px;
        z-index: 10;
        background: linear-gradient(90deg, rgba(250,250,250,0) 0%, rgb(250 250 250) 90%);
    }

    .c-scope__img{
        width: 50%;
        margin-right: calc(var(--space-x) * -1);
        margin-left: 0;
        margin-top: 0;
    }

    .c-scope__img-img{
        right: 0;
        width: 135%;
    }

    .c-scope__info{
        width: 50%;
    }

}


/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {
    .c-scope__holder{
        gap: 140px;
    }
}


/* ********************** de Desktop a DESKTOP 2 ********************** */

@media (min-width: 1200px) {
    .c-scope{
        position: relative;
    }

    .c-scope__line-bottom,
    .c-scope__line-bottom-left,
    .c-scope__line-bottom-right{
        display: block;
    }

    .c-scope__line-bottom-right {
        display: block;
        position: absolute;
        right: calc(var(--space-x)*2);
        bottom: calc(var(--section-y-xl)*-2);
        height: var(--section-y-xl);
        width: var(--section-y-xl);
        opacity: .17;
        border-radius: 0 0 100% 0;
        border: 1px solid var(--color-darkgreen);
        border-top-color: transparent;
        border-left-color: transparent;
    }

    .c-scope__line-bottom-left {
        display: block;
        position: absolute;
        left: calc(var(--space-x) - 20px);
        bottom: calc(var(--section-y-xl)*-3 + 1px);
        height: var(--section-y-xl);
        width: var(--section-y-xl);
        opacity: .17;
        border-radius: 100% 0 0 0;
        border: 1px solid var(--color-darkgreen);
        border-bottom-color: transparent;
        border-right-color: transparent;
    }

    .c-scope__line-bottom {
        display: block;
        position: relative;
        position: absolute;
        left: calc(var(--section-y-xl) + var(--space-x) - 20px);
        right: calc(var(--section-y-xl) + var(--space-x)*2);
        bottom: calc(var(--section-y-xl)*-2);
        height: 1px;
        background-color: var(--color-darkgreen);
        opacity: .17;
    }
}


/* ********************** de Hd a FULL HD ********************** */

@media (min-width: 1600px) {
    .c-scope__holder:before{
        content: none;
    }

    .c-scope__img{
        margin-right: -50px;
        width: 60%;
    }

    .c-scope__img-img{
        width: 100%
    }

    .c-scope__info {
        width: 40%;
    }

    .c-scope__line-bottom-left {
        left: calc(var(--space-x) - 80px);
    }

    .c-scope__line-bottom {
        left: calc(var(--section-y-xl) + var(--space-x) - 80px);
    }

}