.logo-artcom{
    padding: 0;
    margin: 0;
}
.logo-artcom > img{
    margin: 0;
    padding: 0;
    width: 120px;
    position: fixed;
    top: 0px;
    left: 100px;
    z-index: 9;
}
.navbar{
    display: initial!important;
    position: absolute;
}

.menu-hamburger {
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 0 0 0 #f4b328a8, 0 0 0 0 #f4b328a8;
    cursor: pointer;
    height: 60px;
    position: fixed;
    top: 25px;
    right: 100px;
    transition:  box-shadow 1.1s cubic-bezier(.19,1,.22,1);
    width: 60px;
    z-index: 19;
}

.menu-hamburger:hover {
    box-shadow: 0 0 0 8px #f4b328a8, 0 0 0 8px #f4b328a8;
}

.hamburger {
    position: relative;
    top: 29px;
    left: 15px;
    width: 30px;
    height: 2px;
    background: #000;
    display: block;
    transform-origin: center;
    transition: 1s ease-in-out;
}

.hamburger:after,
.hamburger:before {
    background: #000;
    content: "";
    display: block;
    transition: .5s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
}

.hamburger:before {
    top: -10px;
}

.hamburger:after {
    bottom: -10px;
}

#navbar {
    display: none;
}

#navbar:checked ~ .navbar .menu-hamburger {
    box-shadow: 0 0 0 150vw #f4b328a8, 
    0 0 0 150vh #f4b328a8;
}

#navbar:checked ~ .navbar .hamburger {
    transform: rotate(45deg);
}

#navbar:checked ~ .navbar .hamburger:after {
    transform: rotate(90deg);
    bottom: 0;
}

#navbar:checked ~ .navbar .hamburger:before {
    transform: rotate(90deg);
    top: 0;
}

#navbar:checked ~ ul {
    opacity: 1;
    visibility: visible;
}

.barrier{
    background-color: transparent;
    position: fixed;
    display: none;
    z-index: 19;
    width: 100vw;
    height: 100vh;
}
#navbar:checked ~ .barrier{
    display: block;

}
.navigation{
    display: none;
    height: 100px;
    background: #F4B328;
}

ul {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    font-size: 45px;
    opacity: 0;
    transition: .25s .1s cubic-bezier(0, 1.07, 0, 1.02);
    visibility: hidden;
    z-index: 20;

    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    padding: 0;
}

ul > li > a {
    color: white;
    display: block;
    text-decoration: none;
}
ul > li > a:hover{
    color: white;
    display: block;
    text-decoration: none;
}

@media screen and (max-width:800px){
    .menu-hamburger{
        right: 4
        0px!important;
    }
    .logo-artcom > img {
        width: 120px !important;
        margin: 0 0 0 40px !important;
    }
    ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90vw;
        padding: 0;
    }
}
@media screen and (max-width: 650px){
    .hamburger {
        top: 24px;
        left: 10px;
        /* width: 20px; */
    }
    .menu-hamburger{
        width: 50px;
        height: 50px;
        right: 40px;
    }
    .logo-artcom > img {
        width: 90px !important;
        margin: 0 0 0 40px !important;
    }
    
    ul {
        font-size: 2.5rem;
    }
}
/* @media screen and (max-width: 530px){
    ul {
        font-size: 2rem;
    }
} */
 @media screen and (max-width: 430px){
    .logo-artcom > img {
        width: 80px !important;
        margin: 0 0 0 40px !important;
    }
    .hamburger {
        top: 24px;
        left: 10px;
        /* width: 20px; */
    }
    .menu-hamburger{
        top: 15px;
        width: 50px;
        height: 50px;
        right: 40px;
    }
    .navigation{
        display: block;
        height: 80px;
        background: #fff;
    }
    .menu-hamburger {
        background: #F4B328;
    }
}
/* @media screen and (max-width: 430px){
    ul {
        font-size: 1rem
    }
}  */