/* 
HERO
*/
#home_p-hero {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    perspective: 1000px;
}

.home-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    flex-direction: column;
    transform-style: preserve-3d;
}

.home-hero-section {
    position: relative;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
#home-hero-artifacts {justify-content: flex-end;}

.home-hero-container > a {
    position: absolute;
    left: 50vw;
    width: fit-content;
    height: fit-content;
    transform: translateX(-50%) translateZ(4rem);
    margin: 0 auto;
    z-index: 5;
}
.home-hero-container > a:first-of-type {bottom: 50%;}
.home-hero-container > a:not(:first-of-type) {top: 50%;}

.home-hero-section nav {
    position: absolute;
    left: 0;
    right: 0;
}

.home-hero-section nav a {
    width: fit-content;
    position: absolute;
}

.path_b-path {fill: transparent;}
@media only screen and (min-width: 768px) {
    #path_b-top_left,
    #path_b-bottom_right {
        padding: 0 3rem;
        scale: 1 .75;
    }

    #path_b-top_left {translate: 0 12.5%;}
    #path_b-bottom_right {translate: 0 -12.5%;}
}
@media only screen and (min-width: 1024px) {
    .home-hero-container {flex-direction: row;}

    .home-hero-container > a {
        top: 50%;
        left: unset;
        bottom: unset;
        transform: translateX(0) translateY(-50%) translateZ(4rem);
    }

    .home-hero-container > a:first-of-type {left: 25vw;}
    .home-hero-container > a:last-of-type {right: 25vw; translate: -25%;}
    
    .home-hero-section nav {height: 100%;}
    .home-hero-link {z-index: 50;}

    #path_b-top_left,
    #path_b-bottom_right {
        padding: 0;
        scale: .5 1;
        translate: 0;
        height: 100%;
        width: 100%;
        rotate: -90deg;
        transform-origin: center;
    }
}
@media (hover: hover) {
    .home-hero-container > a {transition: 500ms ease;}
    .home-hero-container > a:hover {translate: 0 0 3rem;}
    .home-hero-link {transition: filter 500ms ease, opacity 500ms ease;}
}