/*****************************
 *  STORY PAGE STYLES
/*****************************/

.scroll {
    background: rgba(0,0,0,0.6);
    color: white;
    letter-spacing: 5px;
    position: fixed;
    text-align: center;
    bottom: 150px;
    padding: 5px;
    width: 200px;
    transition: opacity 0.4s ease;
}
.scroll.hide {
    opacity: 0;
}

.content {
    background: rgba(0,0,0,0.8);
    padding: 5%;
    margin: 0;
    width: 100vw;
}

.contentIsland {
    margin: 50% auto;
}

.content header {
    height: auto;
}

.content.intro {
    padding: 5% 10%;
}

.content.intro p {
    color: #b29191;
    color: #D8BEC2;
    font-size: 1.8em;
}

.content-inner {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.page-story h2 {
    font-size: 40px;
    font-weight: 600;
    font-family: 'Caveat', "Nunito Sans", "Open Sans", Helvetica, Arial;
    color: #f1f1f1;
    line-height: 1.3;
    margin-bottom: 40px;
    text-transform: initial;
    width: auto;
}
.page-story h3 {
    font-size: 4em;
    font-weight: 600;
    color: #f1f1f1;
    line-height: 1.2;
    margin-bottom: 30px;
}
.page-story .content {
    background: rgba(0,0,0,0.9);
}

.content p {
    color: #b29191;
    color: #D8BEC2;
    font-size: 1.5em;
    line-height: 1.8;
    padding: 0;
}

.content a {
    color: #E9E7E8;
}

.content a:hover {
    color: #a16c6c;
}

.content .flex-wrapper {
    margin-bottom:  2em;
}

.content .flex-wrapper p {
    letter-spacing: 1px;
    padding: 0 40px 0 0;
    margin-top: 0;
    text-align: left;
    width: 60%;
}

.content .flex-wrapper p.col-right {
    padding: 0px 0 0 40px;
}
.content .flex-wrapper p.col-full {
    width: 100%;
    padding: 0;
}

.content .image {
    margin-top: 15px;
    position: relative;
    width: 40%;
}

.content .image img {
    border: 2px solid #b29191;
    border-bottom-width: 40px;
    width: calc(100% - 20px);
}

.content .image .caption {
    color: #E9E7E8;
    color: #111111;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 5px;
    height: 40px;
    line-height: 1.3em;
    text-align: center;
    left: 0;
    letter-spacing: 0.5px;
    padding: 0 10%;
    width: 80%;
}

.content .rotate-right {
    /*transform: rotate(4deg);*/
}

.content .rotate-left {
    /*transform: rotate(-4deg);*/
}


@media screen and (max-width: 1280px) {
    .flex-wrapper.flex-4 {
        flex-wrap: wrap;
    }

    .flex-wrapper.flex-4 .flex-item {
        flex-basis: 50%;
    }
}

@media screen and (max-width: 768px) {

    .flex-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .flex-wrapper.flex-4 {
    }
    .flex-wrapper.flex-4 .flex-item {
    }

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

    .content {
        padding: 50px 0;
    }

    .contentIsland {
        /*margin: 0;*/
    }
    .content-inner {
        text-align:left;
    }

    .content.intro {
        padding: 10% 0;
    }

    .content.intro p {
        font-size: 1.6em;
        font-weight: 300;
        line-height: 1.6;
        letter-spacing: 1px;
    }

    .content .flex-wrapper p {
        font-size: 18px;
        letter-spacing: 0.5px;
        /*text-align: center;*/
        padding: 0 !important;
        width: 100%;
    }

    .content .flex-wrapper  .image {
        margin: 2em auto 3em;
        width: 90%;
        max-width: 450px;
    }

    .page-story h2 {
        text-align: left;
    }

    .page-story h3 {
        font-size: 40px;
        text-align: left;
        margin-bottom: 20px;
    }

    .page-story .scroll {
        /*display: none;*/
    }

    .page-story .content-inner {
        max-width: 600px;
    }
}


@media (hover: none) {
    .page-story {
        background: #ffffff;
    }
    .page-story .bg {
        background-attachment: initial;
    }

    .page-story .bg1 {
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        overflow: hidden;
    }
    .page-story .pageIntro {
        height: 50vh;
    }
    .page-story footer {
        position: absolute;
        width: 100%;
        z-index: 10;
    }
    .scroll {
        background: white;
        color: #111111;
        bottom: 80px;
        width: 200px;
        padding: 5px 0;
    }
}