.Container {
    width: 100%;
    margin: 0 auto;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.productColor__text {
    color: #611f69;
    font-weight: bold;
}

.header {
    width: 100%;
    height: 50rem;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header h1 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-top: 4rem;
}

.HeaderImageContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.kinderImage {
    width: 16rem;
    height: 10rem;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,1);
    box-shadow: 0 0 10px 0 rgba(0,0,0,1);
    margin: 1rem;
}

.header-text {
    position: absolute;
    left: 20%;
    top: 20%;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.main {
    width: 100%;
    margin: 0 auto;
}

.section1 {
    background: #fafafa;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section1__textblock {
    width: 100%;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 4rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.divider {
    height: 1px;
    width: 50%;
    background: #1a1a1a;
    margin: 2rem;
}

.section1 h1 {
    text-align: center;
    padding: 1rem;
    font-size: 2rem;
    color: var(--primary);
}

.section1 p {
    text-align: center;
    line-height: 1.5;
    font-size: 1.5rem;
}

.background {
    height: 100%;
    background: rgba(97, 97, 97, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


@media (min-width: 800px) {
    .Container {
        width: 100%;
    }

    .header {
        margin-top: 5rem;
        height: 40rem;
    }

    .header h1 {
        margin-top: 0;
    }

    .HeaderImageContainer {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .kinderImage {
        margin: 0;
    }

    .header-text {
        font-size: 4rem;
    }

    .btn {
        margin: 0;
    }

    .main {
        width: 100%;
    }

    .section1__textblock {
        width: 50%;
        padding: 0;
    }

    .background {
        background: none;
    }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    /* IE10+ specific styles go here */
    .HeaderImageContainer {
        margin-top: 2rem;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .kinderImage {
        margin-right: 1rem;
    }
}

@supports (-ms-ime-align:auto) {

}