:root {
    --font-family: 'Roboto', sans-serif;
    --button-primary-color: #00478C;
    --button-secondary-color: #E67046;
    --border-primary: #CCCCCC;
    --border-secondary: #C9D1E8;
    --surface-primary: #000;
    --surface-secondary: #2D3A57;
    --surface-primary-inverse: #FFFFFF;
    --surface-secondary-inverse: #EDF0F7;
    --surface-action: #00478C;
    --surface-action-secondary-hover: #EB8D6B;
    --brand-secondary: #576179;
    --border-primary: #999999;
    --icon-secondary: #00478C;
    --body: #cccccc;
    --body-dim: #666;
    --text-error: #B3221A;
    --tablet-sizing: 64rem;
    --mobile-sizing: 48rem;
}

body {
    position: relative;
    margin: 0;
    -ms-overflow-style: none;
    scrollbar-width: 0;
    font-family: 'Roboto', sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

body::-webkit-scrollbar {
    display: none;
}

h1 {
    font-size: 60px;
    line-height: 72px;
    font-weight: 900;
    margin-block: 0;
}

h2 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 900;
    margin-block: 0;
}

h3 {
    font-size: 40px;
    line-height: 48px;
    font-weight: bold;
    margin-block: 0;
}

h4 {
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
    margin-block: 0;
}

h5 {
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    margin-block: 0;
}

h6 {
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    margin-block: 0;
}

p {
    font-size: 16px;
    line-height: 24px;
    margin-block: 0;
}

p.large {
    font-size: 20px;
    line-height: 32px;
}

p.small {
    font-size: 14px;
    line-height: 20px;
}

p.xsmall {
    font-size: 12px;
    line-height: 20px;
}
a.small {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: inherit;
}
.container {
    width: 100%;
    display: flex;
    justify-content: center;
}
.right-arrow-circle {
    background: var(--surface-secondary-inverse);
    padding: 10px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.right-arrow-circle:hover {
    background: var(--surface-action-secondary-hover);
}

& svg path {
    fill: var(--icon-secondary);
}

.btn-primary,
.btn.primary{
    font-family: var(--font-family);
    font-size: 1rem;
    background-color: var(--button-primary-color);
    color: #ffffff;
    padding: .75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    width: fit-content;
}

.btn-secondary {
    font-family: var(--font-family);
    font-size: 1rem;
    background-color: var(--button-secondary-color);
    color: #000000;
    padding: .75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}
/*Header*/
header {
    position: absolute;
    top: 1rem;
    width: 100%;
    height: 72px;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    background-color: #ffffff;
    border-radius: 1rem;
    width: 97%;
    flex-wrap: wrap;
}

.header-logo {
    margin-left: 2rem;
}
.header-logo a {
    display: flex;
}

.header-logo a img {
    width: 200px;
}

.atom-navigation {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    gap: 1rem;
}

.atom-navigation li {
    display: flex;
    align-items: center;
    padding: .5rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    width: 100%;
}

.nav-dropdown-header:hover > .nav-link {
    color: var(--surface-action);
}

.nav-dropdown-header {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding-block: 0;
    padding-inline: 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    min-width: 170px;
    max-width: 240px;
    max-height: 0;
    transition: max-height ease-out .5s, max-height ease-in .15s, padding ease-out .5s, padding .15s ease-in;
    overflow: hidden;
}

.nav-dropdown li:hover {
    background-color: var(--surface-secondary-inverse);
    border-radius: 8px;
}

.nav-link:hover,
.nav-dropdown li:hover .nav-link {
    color: var(--surface-action);
}

.nav-dropdown-header:hover .nav-dropdown {
    padding: 1rem;
    max-height: 500px;
}

.request-button {
    margin-right: 1rem;
}
/*mobile nav hide*/
.mobile-nav-container {
    display: none;
    background-color: var(--surface-primary-inverse);
    height: 60px;
    width: 100%
}

/*Footer*/
.atom-footer {
    background: linear-gradient(180deg, #000 0%, #2D3A57 100%);
    padding: 4rem 5rem;
    color: #cccccc;
}

.footer-container {
    display: flex;
    align-items: flex-start;
    padding-top: 4rem;
    gap: 5rem;
}
.footer-section-1,
.footer-section-2 {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.footer-item {
    list-style: none;
    margin: .5rem 0;
}

.footer-link-item {
    text-decoration: none;
    color: #cccccc;
}

.atom-locations h6, .atom-contact h6 {
    margin: 0 0 1.5rem;
}

.atom-info h6, .atom-services h6 {
    margin: 0;
}

.atom-info ul, .atom-services ul {
    padding: 0;
}

.vertical-divider {
    width: 1px;
    height: 224px;
    background-color: var(--surface-primary-inverse);
    opacity: 0.2;
}

.contact {
    display: flex;
    align-items: center;
    margin-top: .75rem;
}

.contact.contact-email {
    margin-top: 1.5rem;
}

.contact-email a, .contact-phone a {
    text-decoration: none;
}

.contact img {
    margin-right: .75rem;
}

/* Home Page styles */
.hero-container {
    display: flex;
    width: 100%;
    height: 750px;
    background-color: #000000;
    justify-content: flex-end;
}

.hero.interior {
    padding: 80px 40px 0 80px;
    color: #ffffff;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    max-width: 720px;
}

.hero-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero h3,
.hero h4 {
    color: var(--body);
}

.hero-image {
    position: relative;
    width: 50%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image.icon img {
    max-height: 500px;
    max-width: 500px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, transparent 10%);
}

.veterans-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2D3A57;
    padding: 1rem 5rem;
    font-family: var(--font-family)
}

.veterans-image {
    width: 80px;
    height: 100%;
}

.veterans-text {
    color: #CCCCCC;
    margin-left: 1.5rem;
}

.veterans-text a {
    color: #CCCCCC;
}

.mobile-side-menu {
    display: none;
}
@media screen and (max-width: 64rem) {
    h1 {
        font-size: 48px;
        line-height: 56px;
    }

    h2 {
        font-size: 40px;
        line-height: 58px;
    }

    h3 {
        font-size: 32px;
        line-height: 36px;
    }

    h4 {
        font-size: 28px;
        line-height: 32px;
    }

    .hero-container {
        flex-wrap: wrap;
        height: fit-content;
    }

    .hero.interior {
        width: 100%;
        padding-bottom: 40px;
        padding-left: 32px;
        padding-right: 40px;
        max-width: 100%;
    }


    .hero-image {
        width: 100%;
        height: 400px;
    }

    .hero-image-overlay {
        background: none;
    }

    .hero-image.icon .hero-image-overlay {
        background: none;
    }

    header {
        display: none;
    }

    .mobile-nav-container {
        display: block;
    }

    .mobile-nav {
        display: flex;
        gap: 40px;
        align-items: center;
        height: 100%;
        padding: 0 16px 0 24px;
        position: relative;
    }

    .mobile-nav .mobile-nav-hb-icon {
    }

    .mobile-nav .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        justify-self: center;
        margin-left: 0px;
    }

    .mobile-side-menu {
        position: absolute;
        width: 0;
        background-color: var(--surface-primary-inverse);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding: 24px 0;
        gap: 40px;
        transition: width .5s ease-in-out, padding .5s ease-in-out;
        overflow: hidden;
    }

    .mobile-side-menu.open {
        width: calc(100% - 48px);
        padding-inline: 24px;
    }

    .mobile-side-menu .slideout-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-side-menu .slideout-header .header-logo {
        margin-left: 0;
    }

    .mobile-close-toggle,
    .mobile-open-toggle {
        cursor: pointer;
    }
    /*tablet & Mobile footer sizing*/
    .veterans-container {
        padding: 16px 32px;
    }

    .atom-footer {
        padding: 64px 32px;
    }

    .footer-container {
        gap: 64px;
        padding-top: 40px;
    }

    .footer-section-1 {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .footer-section-2 {
        gap: 64px;
    }

    .vertical-divider {
        height: 395px;
    }

    .slideout-menu .atom-navigation {
        flex-direction: column;
        gap: 16px;
    }

    .slideout-menu .atom-navigation li {
        width: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0;
    }

    .slideout-menu .atom-navigation .nav-dropdown-header > a,
    .slideout-menu .atom-navigation .nav-dropdown-header > img {
        padding: 12px 8px;
    }

    .slideout-menu .atom-navigation .nav-dropdown-header > img {
        transform: rotate(-90deg);
        transition: transform .5s ease-in-out;
    }

    .slideout-menu .atom-navigation .nav-dropdown-header > img.active {
        transform: rotate(0deg);
    }

    .slideout-menu .atom-navigation .no-dropdown-header {
        padding: 12px 8px;
    }

    .slideout-menu .atom-navigation > li a {
        justify-content: space-between;
        flex-wrap: wrap;
        white-space: nowrap;
        flex: 1;
    }

    .slideout-menu .mobile-nav-dropdown {
        position: unset;
        width: 100%;
        max-width: 100%;
        max-height: 0;
        padding: 0;
        border-radius: 4px;
        overflow: hidden;
        transition: max-height 1s ease-in-out;
    }

    .slideout-menu .mobile-nav-dropdown.active {
        max-height: 1200px;
    }

    .slideout-menu .mobile-nav-dropdown li {
        padding: 12px 16px;
    }

    .slideout-menu .request-button {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .slideout-menu .request-button a {
        width: 100%;
        text-align: center;
    }
}
/*mobile sizing*/
@media screen and (max-width: 48rem) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    h2 {
        font-size: 28px;
        line-height: 32px;
    }

    h3 {
        font-size: 24px;
        line-height: 28px;
    }

    h4 {
        font-size: 24px;
        line-height: 28px;
    }

    h5 {
        font-size: 20px;
        line-height: 24px;
    }

    .hero-image {
        width: 100%;
        height: 240px;
    }
/*mobile footer styling*/
    .atom-footer {
        padding: 64px 24px;
    }
    .footer-container {
        gap: 40px;
        padding-top: 40px;
        flex-direction: column;
    }
    .vertical-divider {
        width: 100%;
        height: 1px;
    }
    .footer-section-2 {
        gap: 40px
    }
}
