.header-alt .header__logo {
    max-width: unset;
}

.header-alt .nav-logo {
    width: 24rem;
}

.footer .footer__logo img {
    width: 24rem;
}

@media only screen and (max-width: 767px) {
    .header-alt .header__logo {
        max-width: unset;
    }

    .header-alt .nav-logo {
        width: 17.2rem;
    }

    .footer .footer__logo {
        max-width: unset;
    }

    .footer .footer__logo img {
        width: 17.2rem;
    }
}

body.has-open-menu .header-alt {
    background-color: var(--open-mobile-menu-active-background-color);
}

body.has-open-menu .nav-trigger span {
    background-color: var(--nav-icon-color-open);
}

.header__nav.header__nav.is-active {
    background-color: var(--open-mobile-menu-active-background-color);
}

.header__nav.header__nav.is-active .nav li {
    color: var(--nav-text-color-open);
}

.header-alt .nav-btn,
.header-alt .nav-btn::after {
    background-color: var(--button-background-primary);
    color: var(--button-text-color);
    border-radius: 8px;
    min-width: 146px;
    font-size: 20px;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .header-alt .nav-btn,
    .header-alt .nav-btn::after {
        background-color: var(--button-background-open-nav);
        color: var(--button-text-open-nav);
        border-radius: 8px;
        min-width: 208px;
        font-size: 20px;
        font-weight: 600;
    }
}

.header-alt .nav-phone {
    font-weight: 500;
    font-size: 21px;
}

.header-alt li a.nav-btn span {
    font-size: 18px;
}

@media only screen and (min-width: 767px) {
    .header-alt .nav-privacy {
        display: none;
    }
    .header-alt .nav-terms {
        display: none;
    }
    .header-alt .nav-contact {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .header-alt .nav-phone {
        font-size: 24px;
        font-weight: 600;
    }
}

.btn--blue:active {
    color: var(--button-stroke-color-secondary-active);
}

.btn--blue.loading {
    color: var(--button-stroke-color-secondary-active);
    background-color: var(--button-background-secondary-active);
}

.disclaimer .disclaimer__inner p:first-child {
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 1.3rem;
}

/* ------------------------------------------------------------ *\
	Menu Dropdown
\* ------------------------------------------------------------ */

.nav .sc_select__container {
    display: block;
    font-size: 1.8rem;
}

.sc_select {
    position: relative;
}

.sc_select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #181819;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    background-color: transparent;
    border: none;
}

.sc_select__trigger:hover {
    text-decoration: underline;
}

.sc_select__trigger span {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sc_select__trigger span.sc_select__caret {
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.sc_select__trigger.active span.sc_select__caret {
    transform: rotate(180deg);
}

.sc_select__options {
    position: absolute;
    top: 180%;
    right: 0;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #181819;
    width: 227px;
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
}

.sc_select__options.active {
    max-height: none;
    opacity: 1;
}

.sc_select__option {
    padding: 15px;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.sc_select__option:first-child {
    border-radius: 8px 8px 0 0;
}

.sc_select__option:last-child {
    border-radius: 0 0 8px 8px;
}

.sc_select__option:hover {
    background-color: #333;
}

.sc_select__option span {
    display: block;
    width: 100%;
    color: var(--nav-text-color-open);
}

@media (max-width: 767px) {
    .sc_select__container {
        display: none;
    }
}

.nav li:not(:last-child) {
    padding: 0rem 0.8rem;
}

.nav li + li {
    margin-left: 0.8rem;
}

.section__inner h1 {
    font-size: 25px;
}

.section-dark-alt h1 {
    margin-left: 0.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--nav-text-color);
    margin-bottom: 0;
    font-size: 4rem;
}

@media (max-width: 767px) {
    .section-dark-alt h1 {
        font-size: 2.5rem;
    }
}
