#nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    background-color: white;
}


#nav .nav-wrapper {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    /* background-color: red; */
}

    #nav .nav-wrapper .left {
        width: 200px;
    }

        #nav .nav-wrapper .left img{
            width: 100%;
        }

        #nav .nav-wrapper .right {
            display: flex;
            gap: 30px;
        }

#nav .nav-wrapper .right a {
    letter-spacing: 1px;
    color: black !important;
    font-weight: 600;
}


#nav .nav-wrapper .right .about-drop .drop-item {
    position: absolute;
     background-color: white; 
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    border: 1px solid #808080;
    padding: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease-in-out;
}


#nav .nav-wrapper .right .about-drop:hover .drop-item {
    opacity: 1;
    transform: translateY(0px);
}


#nav .nav-wrapper .menu i {
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#nav .nav-wrapper .menu {
    display: none;
}



/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    right: -200%;
    /* width: 250px; */
    height: 100vh;
    background: #222;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8vw 9vw;
    transition: right 0.3s ease-in-out;
    z-index: 999;
}

.side-nav img {
    margin-bottom: 30px;
}

.side-nav a {
   text-decoration: none;
   color: #fff;
   padding: 12px 0;
   font-size: 16px;
   width: 100%;
   transition: 0.3s;
   margin-bottom: 20px;
}

.side-nav a:hover {
   color: #f4b400;
}

/* Side Dropdown */
.side-about {
    width: 100%;
    margin-bottom: 20px;
}

.side-about .side-drop-item a {
    margin-bottom: 5px;
}

.side-drop-item {
    opacity: 0;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    margin-top: 10px;
    border: 1px solid white;
    transition: all 0.3s;
    height: 0;
}

.side-about:hover .side-drop-item {
    opacity: 1;
    height: auto;
}

/* Active Side Nav */
.side-nav.active {
    right: 0;
}


.side-nav i {
    position: absolute;
    right: 20px;
    top: 20px;
    border: 2px solid white;
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
}


/* Show menu button on smaller screens */
@media (max-width: 968px) {
    #nav .nav-wrapper .right {
        display: none;
    }

    #nav .nav-wrapper .menu {
        display: block;
    }
}


@media (max-width: 600px) {
    .side-nav {
        padding: 70px 9vw;
    }
}
