/* roboto-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../css/fonts/RobotoCondensed-Regular.ttf') format('truetype');
}

/* roboto-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../css/fonts/RobotoCondensed-Bold.ttf') format('truetype');
}

/* roboto-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: url('../css/fonts/RobotoCondensed-BoldItalic.ttf') format('truetype');
}


:root {
    --orange: #f18500;
    --hellorange: #fcbc00;
    --headline: #ee7402;
    --footer: #3fa535;
    --white: #FFF;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;

}

p {
    font-family: "Roboto", sans-serif;
    color: var(--white);
    font-size: 22px;
    line-height: 26px;
}

h1 {
    font-family: "Roboto", sans-serif;
    color: var(--white);
    font-size: 70px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    white-space: normal;
    padding: 30px 0 0;
}

h1 span {
    font-size: 89px;
}

h2 {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    color: var(--white);
    font-size: 45px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--orange);
    padding: 8px 30px 8px calc(((100% - 900px) / 2) + 40px);
    margin-top: 80px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    background-color: var(--white);
}

a,
a:hover,
a:active,
a:link,
a:visited {
    color: var(--white);
    text-decoration: underline;
    outline: none;
}

ul {
    margin-left: 18px;
    color: var(--white);
    line-height: 34px;
    font-size: 22px;
}

/* ----------------------------------------------------------- */

section.header {
    background-image: linear-gradient(var(--orange), var(--hellorange));
}

.content {
    position: relative;
    width: calc(100%);
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

.topcontent {
    display: grid;
    grid-template-columns: 400px 1fr;
}

.topcontent div img {
    position: absolute;
    top: 30px;
    width: 30%;
    max-width: 330px;
}

.topcontent p.subline {
    font-size: 33px;
    margin: 10px 0 70px;
}

section.gewinn {
    background-image: linear-gradient(var(--hellorange), var(--orange));
}

.gewinncontent {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 10px;
    max-width: 1980px;
    margin: auto;
    background-color: var(--white);
}

.gewinncontent img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.headline_gewinn {
    position: absolute;
    top: -55px;
    right: 170px;
    width: 100%;
    max-width: 700px;
}

.headline_gewinn img {
    width: 100%;
}

.stoerer_gewinn {
    position: absolute;
    top: 350px;
    right: 200px;
}

.stoerer_gewinn img {
    width: 100%;
    max-width: 250px;
}

section.beschreibung {
    background-color: var(--orange);
    padding: 40px 0;
}

section.beschreibung .content,
section.formular .content footer .content {
    max-width: 900px;
}

section.beschreibung .content p {
    font-weight: 700;
    max-width: 600px;
    margin-bottom: 20px;
}

.abbinder p {
    font-size: 16px;
    padding-bottom: 20px;
}

.abbinder {
    padding-bottom: 60px;
}

section.formular {
    background-image: linear-gradient(var(--orange), var(--hellorange));
}

footer {
    position: relative;
    background-color: var(--footer);
    padding: 20px 0 0;
}

footer p {
    font-size: 16px;
    line-height: 1.1em;
    padding-bottom: 20px;
}

footer img {
    position: absolute;
    right: 40px;
    top: -100px;
    width: 100%;
    max-width: 300px;
    transition: .3s;
}

footer img:hover {
    transform: rotate(-8deg);
    transition: .3s;
}

/*======================== FORMULAR ============================*/
form {
    display: inline-block;
    float: right;
    margin: 18px 0px;
    width: 100%;
    z-index: 20;
}

label,
input {
    font-family: "Roboto", sans-serif;
    color: var(--orange) !important;
    font-size: 20px !important;
    line-height: 1.2em !important;
    border: none !important;
}

label {
    color: var(--white) !important;
    display: inline-block;
    margin-top: 10px;
}

label#tnb,
label#ds {
    margin: 0px 0px 15px 15px;
    display: block;
    padding-left: 10px;
}

input,
select {
    font-family: "Roboto", sans-serif;
    float: right;
    width: 100%;
    height: 42px;
    background: var(--white);
    border: 1px solid var(--orange);
    color: var(--orange);
    margin: 0px 0px 10px;
    padding: 0px 8px;
}

select {
    float: right;
    width: 30%;
    margin-right: 40%;
}

input#tnb,
input#ds {
    float: left;
    width: auto;
    height: auto;
    background: none;
    border: none;
    margin: 5px 0px 0px;
}

input#submit {
    font-family: "Roboto", sans-serif;
    width: 320px;
    height: 60px;
    color: var(--white);
    background-color: var(--primary);
    cursor: pointer;
    border: 3px solid var(--white);
    border-radius: 8px;
    text-align: center;
    font-size: 26px;
    float: left;
    margin-top: 20px;
    transition: .3s;
}

input#submit:hover {
    color: var(--primary);
    background-color: var(--akzent);
    transition: .3s;
}

/* +++++++++++++++++ ANFANG checkboxen  +++++++++++++++++ */

input[type='checkbox']:checked,
input[type='checkbox']:not(:checked) {
    background: transparent;
    position: relative;
    visibility: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    width: 0px !important;
    height: 0px !important;
}


input[type='checkbox']:checked + label::before,
input[type='checkbox']:not(:checked) + label::before {
    content: ' ';
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
    border: 1px solid var(--white);
    background: var(--orange);
    margin-right: 13px;
    margin-left: -30px;
    box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, .1);
}

input[type='checkbox']:checked + label::before {
    background: var(--white);
    box-shadow: inset 0 0 0 2px white;
    content: '✓';
    line-height: .7em;
    color: var(--orange);
}


input[type='checkbox'] + label {
    cursor: pointer;
}

/* +++++++++++++++++ ENDE checkboxen / radiobutton +++++++++++++++++ */

/* ========================= Gravity Forms =================== */

.gform_wrapper .gform_title,
.gform_wrapper .gform_required_legend {
    display: none;
}

.gform-theme--foundation .gform_fields {
    grid-gap: 30px !important;
}

.gfield_required {
    color: var(--white) !important;
    font-size: 20px !important;
    line-height: 1.2em !important;
}

#field_1_10 {
    margin-top: 10px;
}

#gform_submit_button_1.gform_button.button {
    border-radius: 50px !important;
    padding: 10px 30px !important;
    background-color: var(--white) !important;
    border: 2px solid var(--white) !important;
    margin: 10px 0 30px !important;
    color: var(--orange) !important;
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    transition: .3s;
}

#gform_submit_button_1.gform_button.button:hover {
    background-color: var(--orange) !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    transition: .3s;
}

.gform-theme--framework .gform_validation_errors .gform_submission_error {
    color: var(--white) !important;
    font-size: 20px !important;
}

.gform-theme--framework .gform_validation_errors,
.gform-theme--framework .gform_validation_errors:focus {
    font-family: "Roboto", sans-serif !important;
    font-size: 20px !important;
    border-color: var(--white) !important;
    outline: none !important;
}

.gform-theme--framework .gform_validation_errors .gform-icon::before {
    content: var(--gf-icon-tooltip-error);
    color: white !important;
    border: 1px solid var(--white) !important;
    border-radius: 20px;
}

.gform_confirmation_message_1.gform_confirmation_message {
    font-family: "Roboto", sans-serif !important;
    font-size: 30px !important;
    color: var(--white) !important;
    padding: 20px !important;
    border: 2px solid #fff !important;
    margin-bottom: 40px !important;
    text-align: center;
    line-height: 1.4em;
    font-weight: 700;
    font-style: italic;
}

.gform-theme--framework .gfield_validation_message:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
    font-size: 16px !important;
}

/* ========================= Media Queries =================== */

@media(max-width:1139px) {
    .headline_gewinn {
        right: 40px;
    }

    .topcontent {
        grid-template-columns: 1fr 2fr;
    }

    .beschreibung .content p {
        margin-top: 20px;
    }
}

@media(max-width:900px) {
    h2 {
        padding: 8px 30px 8px calc(((100% - 100vw) / 2) + 40px);
    }
}

@media(max-width:840px) {
    .content {
        padding: 0 20px;
    }

    .topcontent {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .topcontent div img {
        position: relative;
        width: 40vw;
        max-width: 240px;
    }

    .headline_gewinn {
        right: 50%;
        transform: translateX(50%);
        width: calc(100% - 40px);
    }

    h1 {
        font-size: clamp(30px, 11.85vw, 70px);
    }

    h1 span {
        font-size: clamp(30px, 15vw, 89px);
    }

    .topcontent p.subline {
        font-size: clamp(20px, 5.58vw, 33px);
    }

    .stoerer_gewinn {
        right: 20px;
    }

    .gewinncontent {
        grid-template-columns: 1fr;
    }

    .gewinncontent div:last-child {
        display: none;
    }

    footer img {
        right: 5px;
        top: -40px;
        max-width: 140px;
    }

    footer .content p {
        width: 65%;
    }

    h2 {
        font-size: clamp(28px, 6vw, 45px);
        margin-right: 20px;
        padding-left: 20px;
    }
}


.stoerer_teilnahmestart p{
    color:var(--orange);
    text-align: center;
    text-transform:uppercase;
    padding: 20px;
    margin:40px auto 0px!important;
    background-color: #fff;
    border-radius:12px;
}