nav .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
nav h1 img {
    width: 100%;
    transition: transform 0.3s ease;
}
nav h1 img:hover {
    transform: scale(1.05);
}
nav .nav-content ul.links {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 30px;
}
nav .nav-content ul.links li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    border-radius: 8px;
    transition: 0.25s ease;
    cursor: pointer;
}
nav .nav-content ul.links li i{
    color: #8f9405;
    font-size: 20px;
}
nav .nav-content ul.links li a {
    transition: 0.25s ease;
}
/* HOVER */
nav .nav-content ul.links li:hover a {
    color: var(--main-color);
    font-weight: 600;
}
/* ACTIVE */
nav .nav-content ul.links li.active a {
    color: var(--main-color);
    font-weight: 600;
}
/*! ***************** Responsive-Menu ***************** */
.show-menu {
    display: none;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--main-color);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 0 8px rgba(188, 224, 8, 0.6);
}
.show-menu i {
    position: relative;
    font-size: 22px;
    color: #fff;
    z-index: 1;
    transition: all 0.3s ease;
}
.show-menu:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px #BCE008;
}
.show-menu:hover i {
    color: #1e1e2f;
}
nav.responsive-Menu {
    width: 300px;
    background: blue;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 20;
    left: 0;
    /* background-image: url("../assets/images/bg-main.svg"); */
    background-color: #dbeb75;
    background-position: center;
    background-size: cover;
    color: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}
nav.responsive-Menu h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
nav.responsive-Menu button {
    margin-inline: auto;
}
nav.responsive-Menu.show {
    transform: translateX(0);
}
nav.responsive-Menu .nav-content.responsive {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
    align-items: start;
    height: 100%;
    padding: 40px 20px;
}
nav.responsive-Menu .nav-content.responsive ul.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}
nav.responsive-Menu .nav-content.responsive ul.icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
/* HOVER */
nav.responsive-Menu .nav-content ul.links li:hover a {
    color: #8f9405;
    font-weight: 600;
}
/* ACTIVE */
nav.responsive-Menu .nav-content ul.links li.active a {
    color: #8f9405;
    font-weight: 600;
}

nav.responsive-Menu .nav-content.responsive .close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
    font-size: 20px;
}
nav.responsive-Menu .nav-content.responsive .close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}



/* Overlay CSS */
.overlay.show {
    left: 0;
}
.overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #0000002e;
    /* background-color: #bce00820; */
    transition: 0.4s;
    left: 100%;
    z-index: 9;
}





















