
*{
    margin: 0 !important;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    background-color: rgb(236, 236, 236);
}
/* #logo{

} */
#headerRight {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    /* position: relative; */

    background-color: rgb(236, 236, 236);
}

#navi {
    display: block;
    color: black;
    padding: 0px 15px;
    display: flex;
    flex-direction: row;
    background-color: rgb(236, 236, 236);
    flex-wrap: nowrap;
}
@media (max-width: 600px) {
    #navi{
        align-items: center;
        justify-content: space-between;
    }
}
#navi a {
    background-color: rgb(236, 236, 236);
    padding: 0px 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    text-wrap: nowrap;
}

#headerRight #navi a:hover {
    color: coral;
}

/* secNav container */
#secNav-Container {
    overflow-x: auto; /* Allow horizontal scrolling */
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
    background-color: rgb(56, 57, 58);
    height:35px;
}

/* secNav styling */
#secNav {
    background-color: rgb(56, 57, 58);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start; /* Align items to the start */
    white-space: nowrap; /* Prevent items from wrapping */
    padding: 1px 5px;
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
}

/* secNav links styling */
#secNav a {
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    background-color: rgb(56, 57, 58);
    text-wrap: nowrap;
    margin: 20px 10px;
}

#secNav a:hover {
    color: coral;
}

/* Hide scrollbar on larger screens */
@media (min-width: 768px) {
    #secNav-Container {
        overflow-x: hidden;
    }
}

footer{
    background-color: rgb(56, 57, 58);
    color: white;
    
}
@media (max-width: 768px) {
    header{
        flex-direction: column;
    }   
    #logo{
        height: 60px;
    }
    #headerRight{
        border-top: 1px solid rgba(0, 0, 0, 0.8);
        
        width: 100%;
    }
    #navi{
        flex-direction: row-reverse;
        padding: 0 5px;

    }
    #navi a{
        padding: 0 5px;
    }
    .slider {
        height: 200px;

    }
    
    .slider-images {
        height: 200px;
    }
    .prev, .next {
        width: 40px;
        height: 40px;
    }
}





/* footer */
/* Footer Styling */
footer {
    background-color: rgb(56, 57, 58);
    color: white;
    padding: 40px 20px;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
}

.footer-container {
    
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    background-color: rgb(56, 57, 58);

}

.footer-column {
    flex: 1;
    /* margin: 20px; */
    padding: 20px;
    min-width: 200px;
    background-color: rgb(56, 57, 58);
    /* max-width: 35%; */
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
    background-color: rgb(56, 57, 58);

}

.footer-column ul {
    list-style: none;
    padding: 0;
    background-color: rgb(56, 57, 58);

}

.footer-column ul li {
    margin-bottom: 8px;
    background-color: rgb(56, 57, 58);
    text-wrap: nowrap;
    margin: 15px;
    padding: 5px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
    background-color: rgb(56, 57, 58);

}

.footer-column ul li a:hover {
    color: coral;
}

.footer-column ul li a .fa{
    background-color: rgb(56, 57, 58);
    padding-right: 5px;
}
.social-media li {
    display: flex;
    align-items: center;
    background-color: rgb(56, 57, 58);

}

footer-column > ul > li > a > i {
    margin-right: 10px;
    background-color: rgb(56, 57, 58);

}

.social-media li a {
    color: #ccc;
    text-decoration: none;
    background-color: rgb(56, 57, 58);

}

.social-media li a:hover {
    color: coral;
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        
    }

}
