﻿.dropdown-menu {
    max-width: auto; /* Adjust the width as needed */
    overflow: hidden;
    padding: 0; /* Remove padding */
}
.dropdown:hover {
    box-shadow: none;
    background-color: #e0e0e0;
    
}

.nav-link:hover {
    box-shadow: none;
    background-color: #e0e0e0;
}
.nav-item:hover {
    box-shadow: none;
    background-color: #e0e0e0;
}

.dropdown-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 10px; /* Adjust padding to align items */
}

    .dropdown-item:hover {
        box-shadow: none;
        background-color: #e0e0e0; /* Adjust hover background color */
    }

.dropdown-toggle {
    text-decoration: none; /* Remove underline */
    /* Add space between dropdowns */
}

.body-wrapper {
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

.container {
    max-width: 100%; /* Ensure container width does not exceed 100% */
}

body {
    display: flex;
    flex-direction: column;
    padding-top: 3rem;
}

.page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    position: fixed;
    bottom: 0rem;
    height: 1.7rem !important;
    width: 100%;
    background-color: whitesmoke; /* Set a solid background color */
    z-index: 1000; /* Ensure it stays on top */
    opacity: 100%;
}

.top-row {
    position: fixed;
    top: 0rem;
    height: 3rem;
    width: 100%;
    z-index: 1000; /* Ensure it stays on top */
    opacity: 100%;
    background-color: whitesmoke;
}

.navbar-toggler {
    background-color: whitesmoke;
    color: black;
    box-shadow: none;
    border: none;
    background: none;
}

.navbar-toggler-icon {
    display: inline-block;
    box-shadow: none;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.collapse {
    display: none;
}

    .collapse.show {
        display: block;
    }

@media (min-width: 641px) {
    .navbar-toggler {
        display: none;
    }

    .collapse {
        display: none !important; /* Hide the collapsible menu on larger screens */
    }

    .nav-scrollable {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
@media (max-width: 640px) {
    body {
        display: flex;
        flex-direction: column;
        padding-top: 0rem;
    }
    .hero-section {
        height: auto;
        padding: 20px;
    }

    .hero-content {
        text-align: center;
    }

        .hero-content .btn {
            display: block;
            width: 100%;
            margin-bottom: 10px;
        }
}
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    color: aliceblue;
}

    .hero-content h2 {
        margin-bottom: 20px;
    }

    .hero-content h1 {
        margin-bottom: 20px;
    }

    .hero-content p {
        margin-bottom: 20px;
    }

    .hero-content .btn {
        margin-right: 10px;
        margin-bottom: 10px;
    }






  








