/**********LANDING**********/

/*MAIN====================*/
*[data-section="landing"] {
    display: flex;
    overflow: hidden;
    height: var(--lvh-fallback);
    height: var(--lvh);
    height: 100svh;
}
*[data-section="landing"] .brand {
    overflow: hidden;
}
*[data-section="landing"] .sc-billboard {
    min-height: 0;
    height: 100%;
}
*[data-section="landing"] .sc-billboard,
*[data-section="landing"] .sc-inner,
*[data-section="landing"] .sc-logo,
*[data-section="landing"] .logo {
    transition: .6s cubic-bezier(.45,1.35,.65,1);
}

*[data-section="landing"] .sc-billboard .sc-logo {
    width: auto;
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

*[data-section="landing"] > .sc-logo {
    --logo-width: 366px;
    --logo-height: 57px;
    position: fixed;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}

/*WP PLUGIN:COOKIE*/
.cky-consent-container {
    display: none !important;
}


/*MEDIA QUERIES====================*/
/*ORIENTATION*/
@media (orientation:landscape) {

    *[data-section="landing"] .sc-billboard .link-overlay,
    *[data-section="landing"] .sc-billboard .sc-inner {
        width: 100%; 
        height: 100%;
    }
    *[data-section="landing"] .sc-billboard,
    *[data-section="landing"] .sc-billboard.x-active .link-overlay,
    *[data-section="landing"] .sc-billboard.x-active .sc-inner {
        width: 50%;
    }
    *[data-section="landing"] .sc-billboard.x-inactive {
        width: 0%;
    }
    *[data-section="landing"] .sc-billboard.x-active {
        width: 100%;
        transition: .6s cubic-bezier(0.25,1,0.5,1);
    }
    *[data-section="landing"] .sc-billboard.x-active .sc-cover {
        mix-blend-mode: overlay;
    }

    *[data-section="landing"].x-hover-bob > .sc-logo .logo {
        transform: scaleX(0);
        transform-origin: left center;
    }
    *[data-section="landing"].x-hover-don > .sc-logo .logo {
        transform: scaleX(0);
        transform-origin: right center;
    }

    *[data-section="landing"] > #bob {
        --logo-width: 87px;
        --logo-height: 87px;
        margin-right: auto;
    }

    *[data-section="landing"] > #bob:not(.x-active) .sc-logo .logo {
        transform: scaleX(0);
        transform-origin: right center;
    }

    *[data-section="landing"] > #don {
        --logo-width: 125px;
        --logo-height: 57px;
        margin-left: auto;
    }
    *[data-section="landing"] > #don .sc-inner {
        margin-left: auto;
    }
    *[data-section="landing"] > #don .link-overlay {
        left: auto;
        right: 0;
    }
    *[data-section="landing"] > #don:not(.x-active) .sc-logo .logo {
        transform: scaleX(0);
        transform-origin: left center;
    }
}

@media (orientation:portrait) {

    *[data-section="landing"] {
        flex-direction: column;
    }
    *[data-section="landing"] .sc-billboard,
    *[data-section="landing"] .sc-billboard .link-overlay,
    *[data-section="landing"] .sc-billboard .sc-inner {
        width: 100%; 
        height: 100%;
    }
    *[data-section="landing"] .sc-billboard.y-active .link-overlay {
        height: 50%;
    }
    *[data-section="landing"] .sc-billboard.y-inactive {
        height: 0%;
    }
    *[data-section="landing"] .sc-billboard.y-active {
        height: 100%;
        transition: .6s cubic-bezier(0.25,1,0.5,1);
    }
    *[data-section="landing"] .sc-billboard.y-active .sc-cover {
        mix-blend-mode: overlay;
    }

    *[data-section="landing"].y-hover-bob > .sc-logo .logo {
        transform: scaleY(0);
        transform-origin: center bottom;
    }
    *[data-section="landing"].y-hover-don > .sc-logo .logo {
        transform: scaleY(0);
        transform-origin: center top;
    }

    *[data-section="landing"] > #bob {
        --logo-width: 87px;
        --logo-height: 87px;
        align-items: flex-start;
    }
    *[data-section="landing"] > #bob:not(.y-active) .sc-logo .logo {
        transform: scaleY(0);
        transform-origin: center bottom;
    }

    *[data-section="landing"] > #don {
        --logo-width: 125px;
        --logo-height: 57px;
        align-items: flex-end;
    }
    *[data-section="landing"] > #don.y-active .link-overlay {
        top: auto;
        bottom: 0;
    }
    *[data-section="landing"] > #don:not(.y-active) .sc-logo .logo {
        transform: scaleY(0);
        transform-origin: center top;
    }
    
}
