* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.esocontainer {
    max-width: 1050px;
    width: 90%;
    margin: auto;
}

.esonavbar {
    width: 100%;
    box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
    z-index: 2;
}

.esonav-container {
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
    z-index: 2;
}

.esonavbar .menu-items {
    display: flex;
    z-index: 2;
}

.esonavbar .esonav-container li {
    list-style: none;
    z-index: 2;
}

.esonavbar .esonav-container a {
    text-decoration: none;
    color: #e4e4e4;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
    z-index: 2;
}

@media screen and (max-width: 1100px) {
    .esonavbar .esonav-container a {
        text-decoration: none;
        color: #e4e4e4;
        font-weight: 1200;
        font-size: 12vw;
        padding: 2rem;
        z-index: 2;
    }
}

.esonavbar .esonav-container a:hover {
    font-weight: bolder;
}

.esonav-container {
    display: block;
    position: relative;
    height: 45px;
    z-index: 2;
}

.esonav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.esonav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.esonav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    z-index: 2;
    width: 100%;
    border-radius: 10px;
    background: #444444;
}

.esonav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    z-index: 2;
    transition: transform 0.4s ease-in-out;
}

.esonav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
    z-index: 2;
}

.esonav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
    z-index: 2;
}

.esonavbar .menu-items {
    padding-top: 50px;
    box-shadow: inset 0 0 2000px rgba(14, 14, 14);
    background-color: rgba(14, 14, 14, 0.9);
    height: 100vh;
    z-index: auto;
    width: 25%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -20px;
    padding-left: 10px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .esonavbar .menu-items {
        width: 100%;
        
    }
}

.esonavbar .menu-items li {
    margin-bottom: 1.0rem;
    font-size: 1.5rem;
    font-weight: 500;
    padding : 5px;
}

@media screen and (max-width: 1100px) {
    .esonavbar .menu-items li {
        margin-bottom: 1.2rem;
        font-size: 1.5rem;
        font-weight: 500;
    }
}

.esonav-container input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
}

.esonav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(45deg);
}

.esonav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
}

.esonav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg);
}

.esonav-container input[type="checkbox"]:checked~.logo {
    display: none;
}

.glow {
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgb(117, 143, 182), 0 0 7px rgb(167, 236, 248), 0 0 9px #00b0e6, 0 0 11px #008ae6, 0 0 13px #00a5e6, 0 0 15px #0092e6, 0 0 17px #0092e6;
    }
    to {
        text-shadow: 0 0 10px rgb(167, 236, 248), 0 0 13px #a94dff, 0 0 16px #a97dff, 0 0 19px #a97dff, 0 0 22px #a97dff, 0 0 25px #a9adff, 0 0 28px #a9fdff;
    }
}