:root {
    --hue: 0;
    --saturation: 72%;
    --lightness: 5%;
    --menu-bg: hsl(var(--hue), var(--saturation), var(--lightness));
    --menu-bg-lighter: hsl(var(--hue), var(--saturation), 50%);
    --menu-bg-darker: hsl(var(--hue), var(--saturation), 20%);
    --menu-bg-verydark: hsl(var(--hue), var(--saturation), 10%);
    --menu-bg-floordark: hsl(var(--hue), var(--saturation), 5%);
    --header-stroke: 5px;
    --nav-color: rgba(255, 255, 255, 0.7);
}

.CurveHeader {
    position: relative;
    width: 100%;
    height: auto;
}

.svgbox {
    position: relative;
    width: 100%;
    height: 70vh;
    background-color: transparent;
    /* background-color: rgb(8, 87, 61); */
    z-index: 10;
}

.svgbox .headerbgSvg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.svgbox .headerfgSvg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.svgbox .headerbg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.svgbox .mainTitle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 50px;
    background-color: transparent;
}

.svgbox .mainTitle h1 {
    position: relative;
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 1.5em;
    letter-spacing: 4px;
    overflow: hidden;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: text-scan 5s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes text-scan {
    0% {
    background-position: -500%;
    }
    100% {
    background-position: 500%;
    }
}

.svgbox .headerbg .useHeaderbgPathColor {
    fill: var(--menu-bg-floordark);
    opacity: 1;
}

.svgbox .headerbg .useHeaderbgPathMask {
    fill: var(--menu-bg-floordark);
    opacity: 1;
    transition: opacity 1.0s ease;
}


.svgbox .headerbg .headerbgParallaxImages{
    display: block;
    opacity: 0;
    transition: opacity 5s ease;
}


.svgbox .headerbg .dancer {
    transition: transform 3s ease, opacity 1s ease;
}


.svgbox .headerbg .headerBackgroundImg {
    transform: scale(1.5);
    transition: opacity 1s ease-in-out;
}

.svgbox .headerfg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.svgbox .headerfg .headderfgUse {
    fill: rgba(0, 0, 0, 0.1);
}

.svgbox .headerfg .headerShape {
    fill: var(--menu-bg);
    /* filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.5)); */
}

.svgbox .headerfg .curvePath {
    fill: none;
    stroke: none;
    stroke-width: calc(var(--header-stroke) * 1);
    stroke-linecap: round;
}

.svgbox .headerfg .textTip {
    fill: var(--nav-color);
    font-size: 1.5em;
    transition: opacity 0.3s ease;
}

.svgbox .titleInfo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    margin: 0 auto;
}

.svgbox .menus {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.svgbox .menus .nav {
    position: absolute;
    width: 2.5em;
    height: 2.5em;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: var(--header-stroke) solid var(--menu-bg);
    background-color: var(--menu-bg-darker);
    color: rgba(255, 255, 255, 0.719);
    font-size: 3rem;
    cursor: pointer;
    transition: scale 0.5s ease, width 0.3s linear, height 0.3s linear;
    will-change: scale, width, height;
}


.svgbox .menus .nav span {
    font-size: 0.8em;
    transition: font-size 0.3s linear; 
    will-change: font-size;
}

.svgbox .menus .nav .label {
    font-size: 0.5em;
    width: 100%;
    text-align: center;
    transition: font-size 0.3s linear;
    will-change: font-size;
}
/* 
@media (max-width: 1024px) {
    .svgbox .menus .nav {
        width: 100px;
        height: 100px;

    }

    .svgbox .menus .nav span {
        font-size: 0.7em;
    }

    .svgbox .menus .nav .label {
        font-size: 0.38em;
    }
}


@media (max-width: 768px) {
    .svgbox .menus .nav {
        width: 70px;
        height: 70px;

    }

    .svgbox .menus .nav span {
        font-size: 0.5em;
    }

    .svgbox .menus .nav .label {
        font-size: 0.3em;
    }
} */



.svgbox .menus .nav.logo {
    background-color: var(--menu-bg-darker);
}

/* .jelly-animate {
   animation: jelly 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
   will-change: transform;
}

@keyframes jelly {
    0% {
    transform: scale(1);
    }
    30% {
    transform: scale(1.05, 1.05);
    }
    50% {
    transform: scale(0.9, 0.9);
    }
    80% {
    transform: scale(1.025, 1.025);
    }
    100% {
    transform: scale(1);
    }
} */

.svgbox .menus .nav:hover {
    color: rgba(255, 255, 255, 0.8);
    background: radial-gradient(var(--menu-bg-lighter), var(--menu-bg-verydark));
}

.svgbox .menus .nav.logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.svgbox .menus .nav .icon-wrapper svg {
    width: 32px;
    height: 32px;
}


