#toggle {
    visibility: visible;
}

.cool-link {
    display: inline-block;
    color: #c7cc65;
    text-decoration: none;
    position: relative;
}

.cool-link::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #c7cc65;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cool-link:hover::after {
    transform: scaleX(1);
} 

@media screen and (max-width:960px) {

.toggle_tap {
    visibility: visible;
    position: fixed;
    top: 0px;
    right: 20px;
    width: 45px;
    height: 35px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    border: 1px solid black;
    border-radius: 5px;
    margin-top: 20px;
    z-index: 20000;
}

#toggle::before
{
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: black;
    transform: translateY(-5px);
    transition: 0.2s;
}

#toggle {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: black;
    transform: translateY(0px);
    transition: 0.2s;
}

#toggle::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: black;
    transform: translateY(5px);
    transition: 0.2s;
}

#toggle.active::before {
     transform: translateY(0px) rotate(45deg);
}
#toggle.active::after {
     transform: translateY(0px) rotate(-45deg);
}

#toggle.active {
    background: transparent;
}

#sidebar.active {
    left: -20px;
}

#sidebar {
    position: fixed;
    top: 0;
    left: -370px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    transition: 0.5s;
    overflow: scroll;
}

#sidebar ul {
    position: relative;
    margin-top: 50px;
}

#sidebar ul li {
    list-style: none;
    display: inline-block;
    width: 70%;
    padding: 10px 40px;
    
}


#sidebar ul li a {
    color: #636363;
    text-decoration: none;
    font-size: 1em;
    position: relative;
    
}

nav {
    width: 120%;
}

.search_box i {
    right: 5px;
    top: 3px;
}


}
    
@media screen and (max-width:768px) {
    #sidebar {
        width: 250px;
    }
}

@media screen and (max-width: 350px) {
#sidebar ul li {
   padding: 5px 40px;
   width: 50%;
}

#sidebar {
    width: 160px;
}

#sidebar ul {
   
}

input {
    width: 150%;
    position: absolute;
    right: 0;
}



}