* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0d0e1b;
    color: white;
    text-align: center;
}

header {
    width: 80%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    position: relative;
}

section {
    margin: auto;
}

.logo {
    width: 30%;
    height: 100%;
    font-size: 48px;
    font-weight: bold;
    color: #4ee49c;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo img {
    height: 80%;
}

.menu {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

nav {
    margin-left: 10%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    font-family: 'Sugo Pro Classic Trial';
}

nav ul li a {
    color: #4ee49c;
    text-decoration: none;
    font-weight: bold;
    font-size: 26px;
    font-family: 'Sugo Pro Classic Trial';
    text-transform: uppercase;
    font-style: italic;
    transition: 0.2s;
}

nav ul li a.active {
    color: white;
    font-style: normal;
    font-size: 35px;
    margin: 0 5px;
}

nav ul li a:hover {
    color: white;
    font-style: normal;
    font-size: 35px;
    margin: 0 5px;
}

#loader-bar {
    min-height: 2px;
    height: 0vh;
    width: 80vw;
    background-color: #c1c1c1;
    position: absolute;
    margin: 0 10%;
    transition: 1s ease-in-out;
    top: 100%;
    transform: translateX(-10%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 100;
}

.loader-bar-active {
    position: fixed !important;
    background-color: #0d0e1b !important;
    top: 0% !important;
    width: 100vw !important;
    margin: 0 0% !important;
    height: 100vh !important;
}

#loader-bar div {
    height: 100%;
    transform: translateY(-100%);
}

.loader-bar-active .mid-range {
    background-color: #14F09D;
    width: 16%;
    animation: loadWaiting 2s infinite;
}

.loader-bar-active .mid-extra-range {
    background-color: #14f09ca7;
    width: 14%;
    animation: loadWaiting 2s infinite;
    animation-delay: 0.2s;
}

.loader-bar-active .border-extra-range {
    background-color: #14f09c76;
    width: 14%;
    animation: loadWaiting 2s infinite;
    animation-delay: 0.3s;
}

.loader-bar-active .border-range {
    background-color: #14f09c4c;
    width: 14%;
    animation: loadWaiting 2s infinite;
    animation-delay: 0.4s;
}

footer {
    width: 100%;
    height: 10vh;
    background-color: #14F09D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0e1b !important;
}

footer p {
    margin: auto;
}

footer p a {
    color :#0d0e1b;
}

@keyframes loadWaiting {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@media (max-width: 768px) {
    header {
        width: 100%;
        justify-content: space-around;
    }

    #loader-bar {
        transform: translateX(0%);
    }
}


@media (max-width: 930px) {
    .menu {
        position: fixed;
        left: -100%;
        top: 0%;
        width: 100%;
        height: 100%;
        transition: 0.4s;
        background-color: #14F09D;
        z-index: 50;
    }

    .menu ul {

        flex-direction: column;
    }

    nav {
        width: 100%;
        margin-left: 0;
    }

    nav ul li a {
        color: black;
    }

    nav ul li a.active {
        color: white;
    }

    nav ul li a:hover {
        color: white;
    }

    .menu-button {
        cursor: pointer;
        display: block;
        z-index: 52;
    }

    .menu-button .bar1,
    .menu-button .bar2,
    .menu-button .bar3 {
        width: 35px;
        height: 5px;
        background-color: #14F09D;
        margin: 6px 0;
        transition: 0.4s;
    }

    .change-menu .bar1 {
        background-color: #0d0e1b;
        transform: translate(0, 11px) rotate(-45deg);
    }

    .change-menu .bar2 {
        opacity: 0;
    }

    .change-menu .bar3 {
        background-color: #0d0e1b;
        transform: translate(0, -11px) rotate(45deg);
    }

    .opened-menu {
        left: 0%;
    }

    .loader-bar-inactive {
        z-index: 0 !important;
        transition: 0s !important;
    }
}