:root {
    --primary-color: #fff;
    --secondary-color: #EABC08;
    --light-color: #63bcf2;
    --medium-color: #4c87e5;
    --dark-color: #12275c;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    background-color: #12275c;
    width: 100%;
    height: 70px;
    padding: 0 20px;
}

.menu-logo {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 5px;
    /*background-color: #5bc0de;*/
}

.menu-items {
    display: flex;
    flex-grow: 1;
    justify-content: end;
}

.menu-items li a.menuhighlight {
    border-radius: 30px;
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 8px 17px;
    margin-top: 5px;
}

.menu-items li a.menuhighlight:hover, .menu-items li a.menuhighlight:active, .menu-items li a.menuhighlight:focus {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.menu-toogle {
    display: flex;
    justify-items: center;
}

.toogle {
    display: flex;
    justify-content: center;
}

.iconlogo {
    display: flex;
    justify-content: center;
}

.menu-logo a, .menu-items a {
    display: flex;
    align-items: center;
    width: 100%;
    color: var(--primary-color);
}

.menu-logo a:hover, .menu-items a:hover {
    color: var(--secondary-color);
}

.menu-logo span {
    display: flex;
    width: 100%;
}

.menu-items ul, .menu-items li {
    display: flex;
    height: 100%;
    align-items: center;
    margin-right: 0;
    margin-left: 20px;
}

.menu-items li a {
    transition-duration: 0.5s;
}

@media (max-width: 867px) {
    .menu-items {
        display: none;
    }

    .menu-toogle {
        display: flex;
        flex-grow: 1;
        justify-content: end;
        align-items: center;
    }

    .toogle {
        flex-wrap: wrap;
        align-content: center;
        width: 40px;
        height: 70px;
    }

    .one,
    .two,
    .three {
        width: 100%;
        height: 3px;
        margin: 4px auto;
        background-color: #fff;
        transition-duration: 0.5s;
    }

    .menu.on {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        align-items: start;
        /*transition-duration: 0.5s;*/
    }

    .menu.on .menu-items {
        display: flex;
    }

    .menu.on .menu-items ul {
        flex-direction: column;
        margin-top: 20vh;
        line-height: 4;
        margin-left: -25vw;
    }

    .menu.on .one {
       transform: rotate(45deg) translate(7px, 7px);
    }

    .menu.on .two {
        opacity: 0;
    }

    .menu.on .three {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    .menu.on .menu-items li a {

    }


}

@media (max-width: 425px) {
    .menu-logo span {
        display: none;
    }
}
