@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url("../fonts/Roboto.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

img {
    max-width: 100%;
}

:root {
    --font-pri: "Roboto", sans-serif;
    --font-sec: "Roboto Condensed", sans-serif;
    --text-base-size: 1rem;
    --text-body-xs: 12px;
    --text-body-sm: 14px;
    --text-body-md: 16px;
    --text-body-lg: 18px;
    --text-body: var(--text-body-lg);
    --text-subheading: 20px;
    --text-heading-xs: 14px;
    --text-heading-sm: 16px;
    --text-heading-md: 18px;
    --text-heading-lg: 24px;
    --text-heading-xl: 32px;
    --text-heading-xxl: 36px;
    --text-label-sm: 12px;
    --text-label-md: 14px;
    --text-label-lg: 16px;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-green: #034638;
    --color-green-80: #356B60;
    --color-canopy: #007952;
    --color-neutral-2: #E5E5E5;
    --color-neutral-3: #999999;
    --color-neutral-4: #666666;
    --color-neutral-5: #333333;
    --color-neutral-warm-2: #EEEAE4;
    --color-brand: var(--color-green);
    --color-ui-primary: var(--color-canopy);
    --color-ui-secondary: #FFB129;
    --s2: 1rem;
    --s4: 1.5rem;
    --s5: 2rem;
}

@media (min-width: 576px) {
    :root {
        --text-body-xs: 14px;
        --text-body-sm: 16px;
        --text-body-md: 18px;
        --text-body-lg: 20px;
        --text-body: var(--text-body-md);
        --text-subheading: 24px;
        --text-heading-xs: 18px;
        --text-heading-sm: 24px;
        --text-heading-md: 32px;
        --text-heading-lg: 40px;
        --text-heading-xl: 48px;
        --text-heading-xxl: 60px;
        --text-label-sm: 14px;
        --text-label-md: 16px;
        --text-label-lg: 18px;
    }
}

html {
    font-size: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-pri);
    font-size: var(--text-body);
    color: #212529;
    background-color: #fff;
    line-height: 1.5;
    margin: 0;
    overflow-x: clip;
}

.hero-grid > *,
.hero.row > * {
    min-width: 0;
    max-width: 100%;
}

.heading--xs,
h5,
.heading--sm,
h4,
.heading--md,
h3,
.heading--lg,
h2 {
    font-weight: 700;
    font-style: normal;
}

.heading--lg,
h2 {
    font-size: var(--text-heading-lg);
}

.heading--xl,
h1 {
    font-size: var(--text-heading-xl);
    font-weight: 300;
}

.heading--xxl {
    font-size: var(--text-heading-xxl);
    font-weight: 300;
}

.eyebrow,
.label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.eyebrow--lg,
.label--lg {
    font-size: var(--text-label-lg);
}

.text--lg {
    font-size: var(--text-body-lg);
}

.text-lighter {
    font-weight: 300;
}

.button {
    border-radius: 6px;
    padding: 22px;
    cursor: pointer;
    width: fit-content;
    min-width: 248px;
    max-width: 460px;
    display: block;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-decoration: none;
    background-color: var(--color-white);
    border: 1px solid var(--color-neutral-5);
    color: var(--color-black);
    transition: 0.2s;
}

.button--primary {
    background-color: var(--color-ui-secondary);
    color: var(--color-neutral-5);
    border-color: transparent;
    text-transform: uppercase;
}

.button--primary:hover {
    background-color: var(--color-brand);
    color: var(--color-white);
    text-decoration: none;
}

a.button {
    text-decoration: none;
}

a.hero__cta.button.button--primary {
    margin-bottom: 2rem;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.75rem;
}

@media (max-width: 576px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

header {
    padding: 30px 0;
}

header.header {
    border: none;
}

.header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header--primary {
    background: var(--color-brand);
    color: var(--color-white);
    box-shadow: 0 4px 4px 0 hsla(0, 0%, 0%, 0.25);
    position: relative;
    z-index: 1;
}

.header--primary .header__logo svg {
    fill: #fff;
    display: block;
    width: 100%;
    max-width: 333px;
    height: auto;
}

.footer--primary .footer__logo svg {
    fill: #fff;
    max-width: 100%;
    width: 100%;
    display: block;
}

.header--primary .header__logo {
    margin: 0;
    padding-left: 0;
    padding-right: 1rem;
    max-width: none;
    flex: 1 1 auto;
    min-width: 0;
}

.header--primary .header__logo a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.header__aside {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    min-width: 0;
}

.header__ad-label {
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header__phone a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.header__phone i {
    margin-right: 6px;
}

.offer-phone {
    text-decoration: none;
    margin-left: 0.5rem;
}

body.page-splash .min-height-view {
    position: relative;
    overflow: visible;
    background: linear-gradient(to bottom, #E6F2EE 0, #ffffff 600px) no-repeat;
}

body.page-splash .min-height-view::before {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background: url("../images/7.webp") no-repeat;
    background-size: contain;
}

.page-splash .main-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0 0;
}

@media (min-width: 992px) {
    body.page-splash .min-height-view::before {
        left: calc(8% - 180px);
        top: 60px;
        width: 880px;
        aspect-ratio: 1040 / 680;
    }

    .hero__wrapper {
        position: relative;
        z-index: 1;
    }
}

.hero__wrapper {
    margin-bottom: 4rem;
}

.hero__title {
    font-size: 2.5rem !important;
    font-weight: 300;
    margin-bottom: var(--s4, 1.5rem);
}

.hero__subheading {
    margin-bottom: var(--s4, 1.5rem);
}

.overlap-guides {
    text-align: center;
    position: relative;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.overlap-guides .guide-cover {
    position: relative;
    z-index: 2;
}

.overlap-guides .guide-cover img {
    max-width: 55%;
}

.overlap-guides .open-guide {
    position: absolute;
    left: 0;
    top: 24%;
    width: 100%;
}

.overlap-guides .open-guide img {
    max-height: 472px;
}

.solo-cover img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
}

.awards__header {
    margin-bottom: 2rem;
}

.awards__body-clip {
    width: 100%;
    overflow: visible;
}

.awards__body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.awards__award {
    margin-right: 0;
    flex: 0 0 auto;
    min-width: 0;
}

.awards__award img {
    max-height: 128px;
    width: auto;
    max-width: 100%;
}

.callout {
    background-color: var(--color-neutral-warm-2);
    font-size: 1.125rem;
    padding: 1rem;
    text-align: center;
}

.footer {
    padding: 4rem 0;
    line-height: 1.75em;
}

.footer--primary {
    background: var(--color-brand);
    color: var(--color-white);
}

.footer--primary a {
    color: var(--color-white);
    text-decoration: underline;
}

.footer hr {
    border-top: 2px solid white;
    margin: 3rem 4rem;
}

.footer__disclosures p,
.footer__about p {
    font-size: 0.9rem;
}

.footer__links a {
    margin-right: 0.5rem;
}

.footer__logo {
    max-width: 250px;
}

a,
a:hover,
a:focus {
    color: inherit;
}

a {
    text-decoration: underline;
}

a.button,
.button {
    text-decoration: none;
}

.no-break-text {
    white-space: nowrap;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    header .container {
        flex-direction: row;
    }
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.cookie-consent__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 1.75rem 2rem 1.5rem;
    color: #212529;
}

.cookie-consent__title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-brand);
}

.cookie-consent__text {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.cookie-consent__text a {
    color: var(--color-brand);
    text-decoration: underline;
}

.cookie-consent__impressum {
    display: inline-block;
    margin-bottom: 1.25rem;
    color: var(--color-brand);
    text-decoration: underline;
    font-size: 0.95rem;
}

.cookie-consent__actions {
    display: flex;
    justify-content: flex-end;
}

.cookie-consent__accept {
    border: none;
    border-radius: 4px;
    background: var(--color-brand);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    min-width: 160px;
}

.cookie-consent__accept:hover {
    background: var(--color-green-80);
}

@media (max-width: 991px) {
    header.header--primary {
        padding: 16px 0;
    }

    .header--primary .header__logo svg {
        max-width: 280px;
    }

    .hero__title {
        font-size: 1.5rem !important;
    }

    body.page-splash .min-height-view {
        padding-bottom: 3rem;
    }

    body.page-splash .min-height-view::before {
        left: -4%;
        top: 140px;
        width: 62%;
        aspect-ratio: 1040 / 680;
    }

    .page-splash .main-content {
        padding: 3rem 0 0;
    }

    .page-splash .hero {
        text-align: center;
    }

    .hero__wrapper {
        margin-bottom: 0;
    }

    .hero__cta {
        margin: 0 auto;
    }

    .hero__text {
        min-width: 0;
        max-width: 100%;
    }

    a.hero__cta.button,
    a.button,
    .button {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .page-splash .solo-cover img {
        max-height: 215px;
    }
}

@media (max-width: 776px) {
    .offer-phone {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero__title {
        font-size: 1.5rem !important;
        text-align: center;
    }

    .hero__subheading {
        text-align: center;
    }

    .hero__text {
        min-width: 0;
        max-width: 100%;
    }

    a.button,
    .button {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: row;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .header--primary .header__logo svg {
        max-width: min(95%, 240px);
    }

    .header__phone a {
        text-decoration: none;
    }

    body.page-splash .min-height-view {
        padding-bottom: 1rem;
    }

    body.page-splash .min-height-view::before {
        left: -12%;
        top: 100px;
        width: 92%;
        aspect-ratio: 1040 / 680;
    }

    .page-splash .main-content {
        padding: 0;
    }

    .overlap-guides .open-guide {
        top: 65px;
    }

    .awards__body {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.35rem;
        padding: 0;
        justify-items: center;
    }

    .awards__award img {
        max-height: 72px;
    }

    .cookie-consent__panel {
        padding: 1.25rem 1rem 1rem;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__accept {
        width: 100%;
    }

    .callout {
        margin-top: 4rem;
    }

    .hero__text {
        padding-top: 2rem;
    }

    .footer {
        text-align: left;
    }

    .footer__logo {
        max-width: 100%;
    }

    a.button,
    .button,
    .button--primary,
    a.hero__cta.button.button--primary {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .header__aside {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    .header__ad-label {
        word-break: break-all;
    }

    .header__phone,
    .footer__address,
    .footer__links {
        word-break: break-all;
    }
}
