.container {
    min-height: 70vh;
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    /*justify-content: center;*/
    flex-direction: column;
    padding-top: 4em;
}

.section {
    /*height: 100vh;*/
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*background: #fbfbfa;*/
    position: relative;
    /*border-bottom: 1px dotted #ccc;*/
}

.chapters {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.chapter {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.chapter-header {
    /*   background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 8em;
    min-height: 9em;*/
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.chapter-header h2 {
    line-height: 2em;
    font-style: italic;
    font-weight: normal;
}

.chapter-content,
.content-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content-item {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 90%;
    height: 80vh;
    border-top: 1px dotted #ccc;

}

.content-item:first-child {
    border: none;
}

.content-item .name {
    order: 3;
    width: 35%;
    display: flex;
    flex-direction: column;
}

.content-item .name h3 {
    font-size: 4.4em;
    line-height: 0.9em;
    margin: 0;
}

.content-item .intro {
    order: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 1em 2em;
    width: 35%;
    min-height: 200px;
}

.content-item .intro a {
    text-transform: uppercase;
    border: 2px solid #000;
    padding: 0.4em 1.6em;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
    background: #fff;
    display: inline-block;
    transition: 0.2s all;
    cursor: pointer;
    margin-top: 1em;
}
.content-item .intro a:hover{
    opacity: 0.7;
}
.content-item .ep {
    margin: 0;
    /*font-weight: bold;*/
    font-style: italic;
    line-height: 1;
}

.chapter-content img {
    order: 2;
    width: 65%;
    max-width: 70%;
    height: auto;
    margin-left: -20%;
    margin-right: -15%;
    z-index: -1;
}

.content-item.odd .name {
    order: 1;
}

.content-item.odd .intro {
    order: 3;
}

.chapter-content.odd img {
    margin-left: -20%;
    margin-right: -15%;
}

.sticky {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 0;
}

.fixed {
    position: fixed !important;
    top: 0;
}




.start {
    position: relative;
    /*height: 100vh;*/
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}



.start p {
    width: 60%;
}

/*.chapter-logo{
    width: 100%;
    position: relative;
}
*/



@media screen and (min-width: 2500px) {
    .chapter-content {
        width: 60%;
    }
}

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

@media screen and (max-width: 767px) {
    .container {
        padding-top: 0em;
    }

    .content-item {
        flex-direction: column;
        height: auto;
        padding-top: 3em;
    }

    .content-item .name,
    .content-item img,
    .content-item .intro {
        width: 100%;
    }

    .content-item .name {
        font-size: 0.7em;
        order: 1;
    }

    .content-item .name h3 {
        font-size: 3.8em;
        line-height: 0.9em;
    }

    .content-item img {
        margin: 0;
        max-width: 100%;
    }

    .content-item .intro {
        font-size: 0.75em;
        order: 3;
    }

    .content-item .intro a {
        padding: 0.8em 3em;
    }

}