/* :root {
    --section-transition: 0ms;
} */

.sections {
    transform: translate3d(0, var(--content-position), 0);
    transition: transform var(--section-transition, 0ms);
    position: relative;
    background: var(--primary-color);
}

.sectionsArrows {
    position: fixed;
    display: flex;
    align-items: center;
    right: 4em;
    height: 100%;
    z-index: 8;
}

.sectionsMobileParticle {
    top: 0;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.joinUsSection {
    bottom: 4em;
    right: 4em;
    z-index: 10;
    position: fixed;
    font-family: 'Lato';
    letter-spacing: 3px;
    font-weight: 300;
    color: #999999;
}

@media (max-width: 768px) {
    .sections {
        background: var(--primary-color);
        transform: none;
        transition: none;
    }

    .joinUsSection {
        display: none;
    }
}