.synopsis-section{
    width: 100vw;
    height: auto;
    min-height: 100vh;
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
@media all and (max-width: 830px) {
    .synopsis-section{
        height: auto;
        flex: 0 0 auto;
    }
} 
.synopsis-block{
    min-height: 100vh;
    display: flex;
    flex: 0 0 100vw;
    flex-direction: column;
}
@media all and (max-width: 830px) {
    .synopsis-block{
        height: auto;
        flex: 0 0 100%;
    }
} 

.synopsis-image-block{
    width: 100%;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.synopsis-picture{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 35% 0 0;
    display: block;
    flex: 0 0 auto;
    position: relative;
    z-index: 0;
}
@media all and (max-width: 830px) {
    .synopsis-picture{
        padding-top: 53%;
    }
} 
.synopsis-image{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.synopsis{
    width: 100%;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
}
.synopsis-headline{
    width: calc(100% - 100px);
    margin: 0;
    padding: 50px;
    display: block;
    color: #fff;
    line-height: 1.5;
    font-family: Times;
    font-size: 1.2em;
}
@media all and (min-width: 1200px) {
    .synopsis-headline{
        font-size: 1.5vw;
    }
}
@media all and (max-width: 560px) {
    .synopsis-headline{
        width: calc(100% - 50px);
        padding: 50px 25px;
        font-size: 1em;
    }
}
.synopsis-headline b{
    color: #f00;
}