/* Navbar */

.navbar {

    background-color: #000;

    background-color: #000;

        position: static;

        top: 0;

        left: 0;

        width: 100%;

        z-index: 1000;





}



.navbar-brand img {

    height: 50px;

    /* Adjust the height of the logo */

}



.navbar-nav {

    margin: auto;

}



.navbar-nav .nav-item {

    margin-left: 30px;
    color:#fff;
    /* Adjust the space between navbar items */

}



.navbar-nav .nav-link {

    font-weight: bold;

    color:#fff;

    transition: 0.5s ease;

    cursor: pointer;

}



.navbar-nav .nav-link:hover {

    color: green;

}



.icons {

    display: flex;

    align-items: center;

}



.icons img {

    margin-left: 10px;

    /* Adjust the space between icons */

    cursor: pointer;

}



/* Media Query for small screens */

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

    .navbar-nav .nav-item {

        margin-left: 15px;

        /* Adjust the space between navbar items for smaller screens */

    }



    .icons img {

        margin-left: 5px;

        /* Adjust the space between icons for smaller screens */

    }

}