.navigation {
    position: absolute;
    left: 50%;
    bottom: 75px;
    background-color: #000000;
    border-radius: 30px;
    border-width: 2px;
    color: white;
    text-align: center;
    font-family: Archivo;
    display: inline-flex;
    padding: 5px;
    height: 60px;
    font-size: 18px;
    opacity: 0.75;
    text-transform: uppercase;

    transform: translateX(-50%);

    transition: bottom;
    transition-duration: 0.5s;
    z-index: 999999999998;
}

.navigation.active {
    bottom: 125px;

    transition: bottom;
    transition-duration: 0.5s;
}

.navigation-highlight {
    position: absolute;

    left: 0px;
    top: 0px;

    width: 173px;
    height: 100%;
    background-color: white;

    height: 60px;

    border: none;
    border-radius: 25px;
    z-index: -1;

    margin: 5px;

    transition: left;
    transition-duration: 0.5s;
}

.button-text-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.navigation-button {
    position: relative;
    width: 173px;
    opacity: 1;
    cursor: pointer;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.navigation-button.djarum {
    width: 200px;
}


.navigation-button:hover {
    opacity: 0.6;
}


.navigation-button:active {
    opacity: 0.8;
}


.navigation-button.active {
    opacity: 1;
    color: black;
}


.navigation-arrow-container {
    position: absolute;
    left: 50%;
    top: -50px;
    height: 60px;
    width: 50px;

    /* background-image: url(/assets/svg/lineDots.svg); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    transform: translateX(-50%) translateY(-200%) scale(2);
}

.navigation-arrow {
    position: absolute;

    width: 60px;
    height: 80px;

    left: 50%;
    top: 30px;

    transform: translateX(-50%) translateY(-50%);

}

.navigation-arrow.mobile {
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.navigation-arrow.rotate {
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.navigation-arrow-1 {
    position: absolute;

    width: 25px;
    height: 25px;

    left: 50%;
    top: 0px;

    background-image: url(/assets/svg/nav-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    transform: translateX(-50%) translateY(-50%);

    animation-name: nav-arrow-1;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.navigation-arrow-2 {
    position: absolute;

    width: 25px;
    height: 25px;

    left: 50%;
    top: 0px;

    background-image: url(/assets/svg/nav-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    transform: translateX(-50%) translateY(-50%);

    animation-name: nav-arrow-1;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: 500ms;
}

.navigation-arrow-scroll-text {
    position: absolute;
    bottom: -25px;
    left: 50%;
    font-size: 16px;
    opacity: 0.5;
    width: 150px;

    transform: translateX(-50%) translateY(-100%);
}

@keyframes nav-arrow-1 {
    0% {
        top: 20px;
        opacity: 0;
    }

    50% {
        top: 35px;
        opacity: 1;
    }

    90% {
        top: 45px;
        opacity: 0;
    }

    100% {
        top: 45px;
        opacity: 0;
    }
}



@media only screen and (max-width: 1400px) {
    .navigation {
        transform: translateX(-50%) scale(0.9);
    }
}

@media only screen and (max-width: 1200px) {
    .navigation {
        transform: translateX(-50%) scale(0.9);
    }
}

@media only screen and (max-width: 1000px) {
    .navigation {
        transform: translateX(-50%) scale(0.8);
    }
}

@media only screen and (max-width: 800px) {
    .navigation {
        transform: translateX(-50%) scale(0.7);
    }
}

@media only screen and (min-width: 0px) and (max-width: 600px) {
    .navigation {
        border: none;
        height: 80px;
        border-radius: 50px;
        transform: translateX(-50%) scale(0.4);

        bottom: 30px;
    }


    .navigation-button {
        height: 80px;
        z-index: -1;
        border-radius: 50%;
        font-size: 23px;
    }

    .navigation-highlight {
        height: 80px;
        border-radius: 50px;
    }

    .navigation.active {
        bottom: 80px;

        transition: bottom;
        transition-duration: 0.5s;
    }

    .button-text-center {
        transform: translate(-50%, -50%);
    }

    .navigation-arrow-container {
        transform: translateX(-50%) translateY(-350%) scale(3);
    }

    .navigation-arrow {
        top: 16px;
    }
}