#top .navbar {
    background-color: rgb(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#top nav ul:last-child {
    display: none;
}
#top .navbar ul li a {
    display: block;
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}
#top .navbar ul li a:hover {
    color: var(--color-tertiary);
    transform: scale(1.01);
}


#top .banner {
    background-image: url("../assets/image/hero_dark_2.png");
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    height: 100%;
    color: var(--color-secondary);
}
.customBG{
    background-image: url("../assets/image/aboutus.jpeg") !important;
    background-position: center 0% !important;
}
.customBG2{
    background-image: url("../assets/image/aboutus.jpeg");
    background-position: center 20% !important;
}

#top .banner h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

#top .banner p {
    font-size: 1rem;
    max-width: 60%;
}

#top .banner .banner__button {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    background-color: var(--color-theme);
    color: var(--color-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}
#top .banner .banner__button:hover {
    background-color: var(--color-theme-dark);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    #top nav ul {
        flex-direction: column !important;
    }
    #top nav ul li {
        order: -1;
    }
    #top nav ul:first-child {
        display: none;
    }
    #top nav ul:last-child {
        display: flex;
        gap: 1rem;
    }
    /* put the two divs on the same line */
}

@media screen and (max-width: 460px) {
    #top nav ul:last-child div {
        flex-direction: column;
        gap: 0;
    }
    #top .banner h1 {
        font-size: 1.5rem;
    }
    #top .banner p {
        max-width: 98%;
        font-size: 1rem;
    }
}