﻿html {
    font-size: 14px;
    scroll-behavior: smooth;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    transition: all 0.5s ease;
}

.nav-desktop {
    display: block;
    background-color: #fff;
    width: 100%;
}

.nav-desktop-container {
    margin: 16px auto;
    padding: 24px 100px;
    max-width: 1440px;
    display: flex;
    justify-content: flex-end;
}

.nav-desktop-container-with-logo {
    margin: 0 auto;
    padding: 12px 160px 12px 160px;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-desktop-ul {
    gap: 32px;
    list-style-type: none;
    display: flex;
    flex-direction: row;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 24px;
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.nav-desktop-li:hover {
    transform: scale(1.06);
}

.nav-desktop-li a {
    padding: 12px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #1F2A37;
    text-decoration: none;
    transition: all 0.5s ease;
}

.btn-white {
    display: flex;
    width: auto;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #1F2A37;
    text-decoration: none;
    color: #1F2A37;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.btn-black {
    background-color: #1F2A37;
    display: flex;
    width: auto;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #1F2A37;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.btn-white:hover {
    transform: scale(1.06);
    color: #1F2A37;
}

.btn-black:hover {
    transform: scale(1.06);
    color: #fff;
}

.nav-mobile {
    display: none;
}

.mobile-logo-header {
    display: none;
}

@media (max-width: 1439px) {
    .nav-desktop {
        display: none;
    }

    /* Container styles */
    .nav-mobile {
        display: block;
        margin-left: auto; /* Pushes the container to the right */
    }

    /* Hamburger button styles */
    .hamburger-menu {
        display: block;
        cursor: pointer;
        position: fixed;
        top: 0;
        right: 0;
        padding: 16px 18px;
        z-index: 16;
        background-color: #2DB7A7;
        border: none;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
        transition: 0.4s;
        border-radius: 2px;
    }

    .bar1, .bar3 {
        opacity: 1;
    }

        /* Cross state */
        .bar1.rotate-up {
            transform: translateY(10px) rotate(45deg);
        }

    .bar2.fade-out {
        opacity: 0;
    }

    .bar3.rotate-down {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* SideNav styles */
    .sidenav {
        height: auto;
        width: 0;
        position: fixed;
        top: 0;
        right: 0; /* Positions the sidenav at the right */
        background-color: #fff;
        overflow-x: hidden;
        transition: 0.3s;
        z-index: 15;
        box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.05), 0px 4px 6px -1px rgba(0, 0, 0, 0.10);
    }


    .sidenav-link {
        text-decoration: none;
        white-space: nowrap;
        font-size: 18px;
        color: #333;
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid #F3F4F6;
    }

        .sidenav-link a {
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            line-height: 150%;
            color: #111928;
        }

    .logo-container {
        padding: 12px 16px;
        border-bottom: 1px solid #F3F4F6;
    }

    .sidenav-img {
        height: 37px;
        width: auto;
    }

    .sidenav-btn {
        display: flex;
        width: 100%;
        white-space: nowrap;
        padding: 12px 16px;
        border-bottom: 1px solid #F3F4F6;
    }

    .border-none {
        border: none;
    }

    .btn-white {
        width: 100%;
    }

    .btn-black {
        width: 100%;
    }

    /* Active class to display the sidenav */
    .sidenav.active {
        width: 100%;
    }

    .mobile-logo-header {
        display: block;
    }

    .mobile-logo-header-container {
        max-width: 480px;
    }
}

footer {
    width: 100%;
    color: #fff;
    background-color: #2DB7A7;
}

#footer-container {
    max-width: 1440px;
    padding: 64px 160px 32px 160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-content {
    display: flex;
    gap: 96px;
}

#copyright {
    padding-top: 32px;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    border-top: 1px solid #E5E7EB;
}

.footer-column-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 176px;
}

.footer-column-header {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
}

footer a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
}

footer select {
    color: #4B5563;
    font-size: 14px;
    width: 100%;
    padding: 8px 10px;
    background-color: #F9FAFB;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
}

@media (max-width: 1439px) {
    #footer-container {
        max-width: 480px;
        padding: 64px 16px 32px 16px;
        gap: 64px;
    }

    .footer-content {
        flex-direction: column;
        gap: 64px;
    }

    .footer-column-container {
        flex-direction: column;
        gap: 52px;
        width: 100%;
        justify-content: center;
    }

    .footer-column {
        width: 100%;
        align-items: center;
    }

    .select-column {
        width: 70%;
        margin: 0 auto;
    }

    .select-header {
        align-self: flex-start;
    }
}

#stickyBanner {
    display: none;
    background-color: #f3f4f6;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    transition: all 0.5s ease;
    font-size: 16px;
}

.banner-logo {
    height: 22px;
    width: 22px;
}

.banner-content {
    max-width: 1440px;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin: 0 auto;
}

.banner-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.banner-logo {
    height: 22px;
    width: 22px;
}

.banner-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #111928;
}

.banner-link-desktop {
    color: #1F2A37;
    font-weight: 700;
    text-decoration: none;
}

.banner-link-mobile {
    display: none;
}

.slide-out {
    transform: translateY(-100%);
}

.btn-dismiss {
    border: none;
    background-color: #f3f4f6;
    gap: 10px;
    align-items: center;
    display: flex;
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}

.padding-top-body {
    padding-top: 56px;
}

.margin-top-hamburger {
    margin-top: 0;
}

@media(max-width: 1439px) {
    .padding-top-body {
        padding-top: 80px;
    }

    .banner-logo {
        height: 36px;
        width: 36px;
        margin-right: 14px;
    }

    .banner-link-desktop {
        display: none;
    }

    .banner-link-mobile {
        display: block;
        color: #1F2A37;
        font-weight: 700;
        text-decoration: none;
    }

    .banner-content {
        padding: 16px 10px;
    }

    .margin-top-hamburger {
        margin-top: 80px;
    }
}

/*  Breadcrumbs start */
.breadcrumbs {
    background-color: #F4CA4B;
    width: 100%;
    
}

.breadcrumbs-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    padding: 16px 160px;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    line-height: 100%;
}

.breadcrumbs-parent {
    display: flex;
    gap: 10px;
    color: #111928 !important;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumbs-here {
    color: #4B5563 !important;
    font-weight: 400;
    text-decoration: none;
}

@media (max-width: 1439px) {
    .breadcrumbs-container {
        padding: 16px 16px;
        max-width: 480px;
    }
}
/*  Breadcrumbs end */