.login-box a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #e6eaeb;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: 0.5s;
    margin-top: 25px;
    letter-spacing: 2px;
}

.login-box a:hover {
    background: #e6eaeb;
    color: navy;
    border-radius: 5px;
    box-shadow: 0 0 5px #e6eaeb, 0 0 25px #e6eaeb, 0 0 50px #e6eaeb,
        0 0 100px #e6eaeb;
}

.login-box a span {
    position: absolute;
    display: block;
}

.login-box a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e6eaeb);
    animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }
    50%,
    100% {
        left: 100%;
    }
}

.login-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #e6eaeb);
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }
    50%,
    100% {
        top: 100%;
    }
}

.login-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #e6eaeb);
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }
    50%,
    100% {
        right: 100%;
    }
}

.login-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #e6eaeb);
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }
    50%,
    100% {
        bottom: 100%;
    }
}
footer .social_icon,
footer .menurj {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

footer .social_icon li,
footer .menurj li {
    list-style: none;
}

footer .social_icon li a {
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social_icon li a:hover {
    transform: translateY(-10px);
    color: navy;
}

nav {
    /* background: #fff; */
    border-radius: 9px;
    padding: 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

ul li.hover {
    /* display: in.hoverne-block; */
    list-style: none;
    font-size: 2rem;
    /* padding: 0 10px; */
    /* margin: 0 20px; */
    cursor: pointer;
    position: relative;
}

ul li.hover:after {
    content: "";
    width: 0;
    height: 3px;
    background: #700258;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

ul li.hover:hover::after {
    width: 100%;
}

.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
