body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.header {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid black;
}

.logo {
    display: flex;
    align-items: center;
    width: 40%;
    max-width: 300px;
}

.logo img {
    width: 50%;
    height: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    margin-left: 20px;
    white-space: nowrap;
    font-size: .75rem;
}

.nav-menu a:hover {
    text-decoration-line: underline;
    transition: .3s all ease-in-out;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    transition: all 0.3s ease;
}

.hamburger i {
    font-size: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.hamburger:focus {
    outline: 2px solid #0066cc;
    border-radius: 5px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #000000;
    z-index: 10003;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s all ease-in-out;
    transition: .5s all ease-in-out;
    display: flex;
    flex-direction: column;
}

.sidebar.open {
    transform: translateX(0) !important;
    right: 0;
    opacity: 1;
    visibility: visible;
}

.sidebar a {
    display: block;
    color: white;
    padding: 5px 30px;
    text-decoration: none;
    font-family: "Poppins", Sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
}

.close-btn {
    color: white;
    font-size: 30px;
    position: absolute;
    top: 2%;
    right: 5px;
    padding: 0 9px;
    z-index: 10000;
    display: inline-flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    cursor: pointer;
}

.close-btn>i {
    color: #ffffff;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    padding-top: 50px;
}

.nav-slide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backface-visibility: hidden;
    background: rgba(0, 0, 0, .6);
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: .3s all ease-in-out;
}

.nav-slide-overlay.open {
    opacity: 1;
    visibility: visible;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-header-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 1140px;
}

.phone-call-link, phone-call-link:hover {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
    color: white !important;
    text-decoration: none !important;
}

@media ( max-width : 1024px) {
    .logo {
        width: 35%;
    }
    .hamburger i {
        font-size: 20px;
    }
}

@media ( max-width : 768px) {
    .header {
        padding: 10px;
    }
    .logo {
        width: 60%;
        max-width: none;
    }
    .nav-menu {
        display: none;
    }
    .nav-phone-flex {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hamburger i {
        font-size: 20px;
    }
}

@media ( max-width : 480px) {
    .logo {
        width: 70%;
    }
    .hamburger i {
        font-size: 20px;
    }
}

/* Footer */
.footer {
    background-color: rgb(27 27 27/var(--tw-bg-opacity,1));
    padding: 40px 0 0 0;
    margin-top: 20px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    margin-left: 10px;
    /*text-align: center;*/
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1em;
    display: flex;
    margin-left: 10px;
}

body>footer>div.footer-container>div.footer-section.footer-logo>p {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 13px;
}

.footer-nav, .footer-contact, .footer-download {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-heading {
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-nav a, .footer-email a, .footer-phone a {
    text-decoration: none;
    color: #fff;
}

.footer-nav a:hover, .footer-email a:hover, .footer-phone a:hover, .footer-contact p:hover {
    color: #D08C2B;
}

.footer-contact p {
    margin-bottom: 30px;
    color: #fff;
}

.footer-phone {
    display: flex;
    flex-direction: column;
    /*margin-bottom: 30px;*/
    gap: 10px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 24px;
    color: #333;
}

.footer-download h3 {
    margin-bottom: 10px;
    color: #0A0F19;
    font-family: "TangoSans", Sans-serif;
    font-size: 30px;
    font-weight: 600;
}

.footer-download img {
    max-width: 150px;
    height: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    background-color: #D08C2B;
}

.footer-download {
    text-align: left;
}

.footer-download-buttons {
    display: flex;
    flex-direction: row;
}

.subheading-download-app {
    margin-bottom: 30px;
    font-size: 12px;
}

@media ( max-width : 768px) {
    .footer-section {
        flex: 100%;
    }
    .footer-download img {
        max-width: 120px;
    }
    .footer-download-buttons {
        flex-direction: column;
    }
    .footer-download {
        text-align: center;
    }
    .footer-logo img {
        display: inline;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        margin-bottom: 40px;
    }
    body>footer>div.footer-container>div.footer-section.footer-logo>p {
        text-align: center;
    }
}

/* DROPDOWN MENU */

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    padding: 10px 0;
    border-radius: 4px;
    overflow: hidden;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    /*display: flex;*/
    /*align-items: center;*/
    display: block;
    color: #000000;
    padding: 12px 16px;
    text-decoration: none;
    text-align: left;
    margin-left: 0;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    --tw-bg-opacity: 1;
    color: rgb(208 140 43/var(--tw-bg-opacity,1));
    transform: translateX(5px);
    transition: .3s all ease-in-out;
    text-decoration: none;
}

.dropdown-menu a::before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
    font-weight: 900;
    /*margin-right: 8px;*/
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover::before {
    opacity: 1;
    visibility: visible;
    color: rgb(208 140 43/var(--tw-bg-opacity,1));
    transform: translateX(0);
}


