/* section0 */

div.section0-page {
    position: relative;
    min-width: 800px;
    min-height: 1000px;
    height: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

div.section0-container {
    position: absolute;
    min-height: calc(1000px - 250px);
    min-width: 360px;
    top: 250px;
    height: calc(100% - 250px);
    width: 40%;
    left: 10%;
    font-size: 110%;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.80);
} h1{
    line-height: 1.7em;
}

div.section0 {
    position: absolute;
    height: auto;
    width: 90%;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

/* section */


div.section-page {
    position: relative;
    height: 100%;
    min-height: 700px;
    min-width: 800px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

div.section-container {
    position: absolute;
    min-height: 700px;
    min-width: 360px;
    height: 100%;
    width: 40%;
    left: 10%;
    top: 0px;
    font-size: 110%;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.80);
} h1{
    line-height: 1.7em;
}

div.section {
    position: absolute;
    height: auto;
    width: 90%;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}



@supports (-webkit-overflow-scrolling: touch) {
    /* On IOS background should not be fixed, as they get expanded to cover all the page, not just the div */
    div.section0-page {
       background-attachment: scroll;
    }
    div.section-page {
       background-attachment: scroll;
    }
}
