nav {
    left: 0px;
    top: 0px;
    width: 100%;
    display: flex;
    /* background: #0B2848; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 16px;
}

nav img {
    width: 302px;
    max-width: 100%;
}

footer {
    background-color: transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 81px 0;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 4px;
}

.logo-div {
    width: 67px;
    height: 58px;
    padding-bottom: 30px;
}

.branding .logo-div a img {
    width: 67px;
}

.footer-links {
    padding: 0 42px;
}

.footer-links a {
    padding: 0 8px;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #E6E9F3;
    text-decoration: none;
    /* border-right: thin solid rgba(255, 255, 255, .8); */
    border-right: thin solid rgba(153, 153, 153, 0.25);
    line-height: 25px;
}

.footer-links > a:last-child {
    border-right: none;
}

.legal {
    color: #99A7CC;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    padding: 0 42px;
}

/* Mobile Menu Container */
.mobile-menu-container {
    display: none; /* Initially hidden */
}

.mobile-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: transparent;
}

/* Hamburger Menu Icon */
.mobile-hamburger-menu-icon {
    width: 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;;
}

.mobile-hamburger-menu-icon span {
    display: block;
    height: 3px;
    background-color: white;
    margin: 2.5px 0;
    transition: all 0.3s ease;
}

/* Hidden Menu */
.mobile-hamburger-menu {
    background: url('../images/shared/background.jpg') no-repeat top center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    list-style: none;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    padding-left: 0px;
    background-color: #444;
    display: none;
    flex-direction: column;
    z-index: 99;
}

.mobile-hamburger-menu li {
    border-bottom: 1px solid gray;
}

.mobile-hamburger-menu li a {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
}

.mobile-hamburger-menu li a:hover {
    background-color: #555;
}

/* Responsive - Open Menu */
.mobile-hamburger-menu.open {
    display: flex;
}

.close-button {
    position: absolute;
    top: -56px;
    right: 10px;
    font-size: 50px;
    color: white;
    font-weight: 200;
    cursor: pointer;
  }

.mobile-hamburger-menu-icon.open span {
    display: none;
}

/* body > div > main > div > section > div > div:nth-child(3) > p:nth-child(27) > a */
.container .row p a {
    color: #E6E9F3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.container .row p a:hover {
    color: #CCCCCC;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .slide .content p {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Media Query for Mobile Viewport */
@media (max-width: 767px) {
    .mobile-menu-container {
        display: flex;
        right: 0px;
        position: absolute;
    }
    .logo-h1 {
        margin: 0px;
        display: flex;
        position: relative;
        left: 20px;
    }
    nav {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .desktop-nav-menu {
        display: none;
    }
    .branding {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .branding .logo-div  {
        margin-bottom: 0px;
    }
}

/* Media Query for Larger Screens */
@media (min-width: 768px) {
    .mobile-menu-container {
        display: none;
    }
    .mobile-hamburger-menu {
        display: none;
    }

    .mobile-hamburger-menu-icon {
        display: none;
    }
    .desktop-nav-menu {
        display: flex;
        list-style: none;
    }
    .desktop-nav-menu li {
        color: white;
        font-size: 18px;
        font-weight: 400;
        line-height: 80px;
        list-style: none;
        padding-right: 10px;
    }
    .desktop-nav-menu li a {
        color: white;
        font-size: 18px;
        font-weight: 400;
        line-height: 80px;
        list-style: none;
        text-decoration: none;
    }
    nav img {
        width: 195px;
        max-width: 100%;
    }
    nav img .logo {
        width: 195px;
        height: 47px;
    }
    nav {
        flex-direction: row;
        width: 100%;
        max-width: 990px;
        margin: 0 auto;
        justify-content: space-between;
    }
    .logo-nav {
        margin: 35px 2px 0 18px;
    }

}


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

    nav img {
        width: 135px;
        max-width: 100%;
    }


    .footer-links {
        margin-bottom: 25px;
    }

    footer {
        padding: 40px 0px;
    }

    .logo-div {
        margin-bottom: 36px;
    }
}