/*Fonts*/
/* exo-2-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 400;
    src: url('webfonts/exo-2-v26-latin-regular.woff2') format('woff2');
}
/* exo-2-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 500;
    src: url('webfonts/exo-2-v26-latin-500.woff2') format('woff2');
}
/* exo-2-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    src: url('webfonts/exo-2-v26-latin-600.woff2') format('woff2');
}
/* exo-2-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 700;
    src: url('webfonts/exo-2-v26-latin-700.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --exo-2-font: 'Exo 2', sans-serif;
    --dark-green: #444F50;
    --neon-green: #DCDC00;
    --green: #8FCAA5;
    --white: #FFFFFF;
    --black: #000000;
    --dark-grey: #384243;
    --red: #C64533;
}

body {
    font-family: var(--exo-2-font);
    line-height: 1.3;
    color: var(--dark-grey);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    @media screen and (min-width: 1024px) {
        font-size: 23px;
    }
    @media screen and (min-width: 1600px) {
        font-size: 32px;
    }
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    padding: 12px 24px;
    background: var(--dark-green);
    color: var(--white);
    font-family: var(--exo-2-font);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transform: translateY(-100%);
    transition: transform 0.2s ease;
}
.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--neon-green);
    outline-offset: 2px;
}

nav ul li {
    display: flex;
    list-style: none;
}

.boxed {
    position: relative;
    max-width: 1580px;
    padding: 0 30px;
    margin: 0 auto;
    @media screen and (min-width: 1024px) {
        padding: 0 75px;
    }
    @media screen and (min-width: 1600px) {
        padding: 0 20px;
    }
}

p, span, li, a, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

p.strong-text {
    font-weight: 600;
}
strong {
    font-weight: 700;
}

address {
    font-style: normal;
    margin: 0 0 40px 0;
}

a.button {
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 7px 20px;
    color: var(--white);
    border-radius: 10px 0 10px 0;
    background: var(--neon-green);
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    height: fit-content;
    @media screen and (min-width: 768px) {
        font-size: 22px;
    }
    @media screen and (min-width: 1600px) {
        left: 26px;
    }
}
a.button:hover {
    background: var(--red);
}

h1, .headline-one {
    font-weight: 700;
    font-size: 40px;
    max-width: 600px;
    text-transform: uppercase;
    @media screen and (min-width: 768px) {
        font-size: 40px;
    }
    @media screen and (min-width: 1024px) {
        font-size: 60px;
    }
    @media screen and (min-width: 1600px) {
        font-size: 70px;
    }
}
h2, .headline-two {
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
    @media screen and (min-width: 768px) {
        font-size: 28px;
    }
    @media screen and (min-width: 1024px) {
        font-size: 32px;
    }
    @media screen and (min-width: 1600px) {
        font-size: 48px;
    }
}
.headline-two .highlight {
    color: var(--red);
    display: block;
    margin-bottom: 40px;
}
h3, .headline-three {
    font-weight: 700;
    font-size: 18px;
    color: var(--red);
    @media screen and (min-width: 1024px) {
        font-size: 30px;
    }
    @media screen and (min-width: 1600px) {
        font-size: 40px;
    }
}

/*Header*/
header.site-header {
    position: absolute;
    z-index: 9999;
    width: 100%;
    top: 0;
    padding: 90px 0 0 0;
    @media screen and (min-width: 1700px) {
        padding: 150px 0 0 0;
    }

}
header.site-header .site-logo {
    margin-top: 40px;
    margin-left: 20px;
    font-size: 0;
    max-width: unset;
    line-height: 1;
    @media screen and (min-width: 768px) {
        margin-left: 40px;
    }
    @media screen and (min-width: 1260px) {
        margin-left: 90px;
    }
    @media screen and (min-width: 1700px) {
        margin-left: 0;
    }
}
header.site-header img {
    width: 150px;
    @media screen and (min-width: 1260px) {
        width: 355px;
    }
}

/*Header Block*/
.header-block {
    background: linear-gradient(to bottom, var(--green) 45%, var(--neon-green) 45%);
    padding: 300px 0 275px 0;
    position: relative;
    border-radius: 50px 0 50px 0;
    margin: 20px;
    overflow-x: clip;
    @media screen and (min-width: 768px) {
        padding: 275px 0 375px 0;
        border-radius: 70px 0 70px 0;
        margin: 30px;
    }
    @media screen and (min-width: 1260px) {
        padding: 500px 0 385px 0;
        border-radius: 100px 0 100px 0;
        margin: 50px;
    }
    @media screen and (min-width: 1600px) {
        padding: 475px 0 165px 0;
        border-radius: 100px 0 100px 0;
        margin: 50px;
    }
}
.header-block .img-wrapper {
    position: absolute;
    bottom: -20px;
    right: -130px;
    width: 500px;
    height: auto;
    @media screen and (min-width: 768px) {
        width: 700px;
        right: -150px;
        bottom: -50px;
    }
    @media screen and (min-width: 1500px) {
        bottom: -20px;
        right: -260px;
        width: 1130px;
        height: 720px;
    }
    @media screen and (min-width: 1920px) {
        bottom: -130px;
        right: -150px;
        width: 1430px;
        height: 950px;
    }
}
.header-block .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.header-block svg {
    position: absolute;
    right: 30px;
    top: 180px;
    height: 80px;
    width: auto;
    @media screen and (min-width: 768px) {
        right: 65px;
        top: 220px;
        height: unset;
    }
}

/*Einfacher Text Block*/
.simple-text-block {
    margin: 100px 0 50px 0;
    @media screen and (min-width: 1600px) {
        margin: 200px 0 100px 0;
    }
}
.simple-text-block .strong-text {
    margin: 0 0 25px 0;
}
.simple-text-block .headline-one {
    max-width: unset;
}
.simple-text-block .headline-two {
    margin: 50px 0;
    @media screen and (min-width: 1024px) {
        font-size: 38px;
    }
}

/*Drei Spalten Boxen Block*/
.three-column-boxes-block {
    margin: 0 30px;
    @media screen and (min-width: 1260px) {
        margin: 0 50px;
    }
}
.grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    row-gap: 20px;
    column-gap: 0;
    @media screen and (min-width: 768px) {
        row-gap: 40px;
        column-gap: 40px;
    }
}
.grid-item {
    grid-column: span 12;
    background: var(--green);

    @media screen and (min-width: 1024px) {
        grid-column: span 6;
    }
    @media screen and (min-width: 1260px) {
        grid-column: span 4;
    }
}
.grid-item:nth-child(2) {
    background: var(--neon-green);
}
.grid-item:nth-child(1) p {
    margin-bottom: 180px;
}
.grid-item:nth-child(1) .speech-bubble-text {
    margin-bottom: 0;
}
.three-column-boxes-block .box {
    display: flex;
    justify-content: start;
    position: relative;
    flex-direction: column;
    border-radius: 0 0 0 60px;
    overflow: hidden;
}
.speech-bubble {
    position: absolute;
    width: 180px;
    z-index: 10;
}
.speech-bubble-singles {
    left: 50px;
    bottom: 95px;
    @media screen and (min-width: 480px) {
        left: 100px;
    }
    @media screen and (min-width: 1024px) {
        left: 150px;
    }
    @media screen and (min-width: 1600px) {
        left: 280px;
    }
}
.speech-bubble-family {
    left: 50px;
    bottom: 80px;
    @media screen and (min-width: 480px) {
        left: 155px;
    }
}
.speech-bubble-grandparents {
    left: 50px;
    top: 190px;
    @media screen and (min-width: 480px) {
        left: 130px;
    }
}
.speech-bubble-shape {
    width: 100%;
    height: auto;
    display: block;
}
.speech-bubble .speech-bubble-text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: var(--white);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
    padding: calc(17% + 10px) 10px 10px;
}
.three-column-boxes-block .img-wrapper {
    height: 380px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.three-column-boxes-block .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.three-column-boxes-block p,
.three-column-boxes-block .headline-three{
    padding: 0 30px;
}
.three-column-boxes-block p {
    margin: 40px 0 60px 0;
    @media screen and (min-width: 1600px) {
        font-size: 28px;
    }
}
.neon-grins-svg {
    position: absolute;
    bottom: 30px;
    right: 45px;
}
.three-column-boxes-block em {
    color: var(--red);
    font-weight: 700;
    font-style: normal;
}
.three-column-boxes-block .box-link {
    margin-top: 30px;
    padding: 15px 30px 20px 70px;
    background: color-mix(in srgb, var(--green) 23%, transparent);
    color: var(--black);
    display: block;
    position: relative;
    appearance: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}
.three-column-boxes-block .box-link::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 25px;
    width: 27px;
    height: 12px;
    background-image:
            url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 11.43 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.02 0L0 0L4.48 4.28L4.49 7.78L0 12L5.02 12L11.43 6.07Z' fill='%23C64533'/%3E%3C/svg%3E"),
            linear-gradient(var(--red), var(--red));
    background-repeat: no-repeat, no-repeat;
    background-position: right center, left center;
    background-size: 12px 12px, calc(100% - 7px) 3.5px;
    transition: width .3s ease-in-out;
}
.three-column-boxes-block .box-link:hover::before {
    width: 33px;
}
/*Text mit Info Block*/
.two-columns-info-block {
    margin: 50px 0;
    @media screen and (min-width: 1024px) {
        margin: 100px 0;
    }
}
.two-columns-info-block .headline-one {
    max-width: unset;
    margin: 0 0 50px 0;
}
.two-columns-info-block p {
    max-width: 1400px;
    @media screen and (min-width: 1600px) {
        font-size: 28px;
    }
}
.two-columns-info-block strong {
    font-weight: 600;
}
.two-columns-info-block em {
    font-style: normal;
    color: var(--red);
    font-weight: 700;
    @media screen and (min-width: 1600px) {
        font-size: 38px;
    }
}
.two-columns-info-block .info-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    margin: 60px 0 0 0;
    @media screen and (min-width: 1024px) {
        flex-direction: row;
        justify-content: space-between;
    }
}
.two-columns-info-block .info-box {
    padding: 30px 45px 55px;
    border: 1px solid var(--red);
    border-radius: 60px 0;
    min-height: 100%;
    width: 100%;
    @media screen and (min-width: 1024px) {
        max-width: 46%;
    }
}
.two-columns-info-block a {
    hyphens: auto;
    color: var(--dark-grey);
    background-image: linear-gradient(var(--red), var(--red));
    background-size: 0 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: color .2s ease, background-size .3s ease;
}
.two-columns-info-block a:hover {
    color: var(--red);
    background-size: 100% 2px;
}
/*Text mit Bild Block*/
.text-with-img-block {
    background: var(--green);
    margin: 80px 20px 0;
    padding: 30px 0 0 0;
    color: var(--white);
    border-radius: 50px 0 50px 0;
    @media screen and (min-width: 768px) {
        margin: 120px 30px 0;
        border-radius: 70px 0 70px 0;
    }
    @media screen and (min-width: 1260px) {
        margin: 160px 50px 0;
        border-radius: 100px 0 100px 0;
        padding: 50px 0 0 0;
    }
}
.text-with-img-block .boxed {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    @media screen and (min-width: 1400px) {
        flex-direction: row;
        align-items: flex-end;
        flex-wrap: nowrap;
        gap: 20px;
    }
    @media screen and (min-width: 1260px) {
        margin-bottom: 50px;
    }
}
.text-with-img-block .text-wrapper-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    @media screen and (max-width: 768px) {
        hyphens: auto;
    }
    @media screen and (min-width: 1600px) {
        margin-bottom: 0;
    }
}
.text-with-img-block .headline-two {
    max-width: 706px;
    color: var(--red);
    font-weight: 700;
    @media screen and (min-width: 768px) {
        margin-top: unset;
    }
    @media screen and (min-width: 1600px) {
        font-size: 42px;
    }
}
.text-with-img-block .button-wrapper {
    @media screen and (min-width: 1400px) {
        display: flex;
        justify-content: center;
        width: 50%;
    }
}
.text-with-img-block .img-wrapper {
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 0;
    @media screen and (min-width: 768px) {
        height: 550px;
        border-radius: 0 0 70px 0;
    }
    @media screen and (min-width: 1260px) {
        height: 750px;
        border-radius: 0 0 100px 0;
    }
}
.text-with-img-block .img-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.text-with-img-block .flyer-wrapper {
    position: absolute;
    bottom: 30px;
    right: 15px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    z-index: 10;
    @media screen and (min-width: 768px) {
        bottom: 70px;
        right: 30px;
        gap: 20px;
    }
}
.text-with-img-block .flyer-preview {
    width: 130px;
    height: auto;
    transform: rotate(7deg);
    display: block;
    flex-shrink: 0;
    box-shadow: 0 4px 10px 0 #00000040;
    margin-bottom: -55px;
    @media screen and (min-width: 768px) {
        width: 260px;
        margin-bottom: -110px;
    }
}
.text-with-img-block .flyer-wrapper .button {
    margin-right: -30px;
    z-index: 99;
    @media screen and (min-width: 768px) {
        margin-right: -60px;
    }
}
.text-with-img-block svg.smiley {
    position: absolute;
    height: 50px;
    width: 100px;
    top: 150px;
    left: 0;
    @media screen and (min-width: 768px) {
        top: 355px;
        left: max(20px, calc((100% - 1560px) / 2 + 30px));
    }
    @media screen and (min-width: 1260px) {
        height: unset;
        width: unset;
    }
}

/*Footer*/
footer {
    padding: 30px 0 250px 0;
    position: relative;
    overflow: hidden;
    @media screen and (min-width: 768px) {
        padding: 30px 0 200px 0;
    }
}
footer p {
    margin-bottom: 50px;
    max-width: 1158px;
    @media screen and (min-width: 768px) {
        margin-bottom: 110px;
    }
    @media screen and (min-width: 1600px) {
        font-size: 26px;
    }
}
footer p em {
    font-style: normal;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
}
footer .footer-links {
    width: 100%;
}
footer .logo-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0 0 50px 0;
    @media screen and (min-width: 768px) {
        margin: 0 0 70px 0;
    }
}
footer .logo-wrapper .footer-logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
    @media screen and (min-width: 768px) {
        width: 300px;
    }
}
footer .logo-wrapper .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
footer .logo-wrapper .footer-logo-wbg {
    margin: -8px 0 0 50px;
    width: fit-content;
    @media screen and (min-width: 768px) {
        margin: -20px 0 0 115px;
    }
}
footer .logo-wrapper .footer-logo-wbg {
    width: 110px;
    height: auto;
    @media screen and (min-width: 768px) {
        width: 250px;
    }
}
footer .headline-two {
    max-width: 500px;
    color: var(--neon-green);
    line-height: 1.2;
    @media screen and (min-width: 768px) {
        margin: 0 0 80px 0;
    }
}
footer a {
    color: var(--dark-grey);
    background-image: linear-gradient(var(--green), var(--green));
    background-size: 0 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: color .2s ease, background-size .3s ease;
}
footer .footer-logo:hover,
footer .footer-logo-wbg:hover {
    background-size: 0;
    color: transparent;
}
footer .footer-nav ul {
    display: flex;
    flex-direction: row;
    gap: 40px;
    font-size: 16px;
    line-height: 1;
    padding: 10px 0 0 0;
    border-top: 2px solid var(--green);
    @media screen and (min-width: 768px) {
        gap: 105px;
        font-size: 22px;
    }
}
footer .img-wrapper {
    position: absolute;
    bottom: 0;
    right: -40px;
    height: 250px;
    width: 260px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    @media screen and (min-width: 768px) {
        bottom: 30px;
        height: 350px;
        width: 370px;
    }
    @media screen and (min-width: 1600px) {
        top: 20px;
        height: 680px;
        width: 785px;
        bottom: unset;
    }
}
footer .img-wrapper img {
    height: 100%;
    display: block;
}
footer a:hover {
    color: var(--green);
    background-size: 100% 2px;
}