/* @group Frontpage
------------------------------------ */
.home .sitenav {
    display: none;
}
.main-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.main-hero .row {
    height: 100%;
}
.main-hero .logo img {
    opacity: .5;
}
body.home .menu li {
    font: 400 1.8em / 1.6em var(--roboto-font);
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}
body.home .menu li a {
    font-size: unset;
    display: inline-block;
}
.main-hero .image {
    height: 100%;
    padding: 0;
}
.main-hero .image .splide,
.main-hero .image .splide__track {
    height: 100%;
}
.main-hero .image .splide .splide__pagination__page {
    width: 1rem;
    height: 1rem;
    margin: .5rem;
    background-color: var(--main-grey);
}
.main-hero .image .splide .splide__pagination__page.is-active {
    background-color: var(--main-white);
}
@media only screen
and (min-width : 961px) {
    .main-hero .row {
        padding: 0;
    }
    .main-hero .logo {
        width: 37.8rem;
        height: 10.8rem;
        margin: 0 0 3.5rem;
    }
    .main-hero .logo img {
        width: 100%;
        height: auto;
    }
    .main-hero article {
        padding-left: 10.72%;
        padding-right: 13.02%;
        padding-top: 24.35vh;
    }
    body.home .menu {
        width: 37.8rem;
        padding: 0 4rem 0 6rem;
        display: flex;
        align-items: center;
        column-gap: 3rem;
    }
    .main-hero .image .splide .splide__pagination {
        bottom: 2rem;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
    .main-hero article {
        padding-left: 5%;
        padding-right: 5%;
    }
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .main-hero article {
        -ms-flex-order: -1; 
        order: -1;
    }
    .main-hero .logo {
        height: 8.6rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem 0;
    }
    .main-hero .logo img {
        height: 7.6rem;
        object-fit: contain;
    }
    body.home .menu {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 0 2rem;
    }
    body.home .menu li {
        font-size: 1.2em;
        flex: 0 1 calc(33% - .5rem);
    }
    .main-hero .image .splide .splide__pagination {
        bottom: 18.5rem;
    }
}

/* @end */


/* Animations */
.main-hero .image,
.main-hero .logo,
.main-hero .menu li { opacity: 0; }

.main-hero.animateActive .image { animation: fade .5s 0.3s forwards; }
.main-hero.animateActive .logo { animation: fade 1s 0.5s forwards; }
.main-hero.animateActive .menu li:nth-child(1) { animation: fade 1.5s 0.7s forwards; }
.main-hero.animateActive .menu li:nth-child(2) { animation: fade 1.5s 0.9s forwards; }
.main-hero.animateActive .menu li:nth-child(3) { animation: fade 1.5s 1.1s forwards; }
