.poster-block {
    position: relative;
    background-color: white;
    height: 229px;
    display: flex;
    align-items: center;
}
.poster-block.big {
    height: 353px;
}

.poster-text-block {
    position: relative;
    z-index: 1;
    width: 600px;
    margin-left: 30px;
}

.poster-block .poster-text-block h1 {
    font-size: 59px;
    font-weight: 700;
    color: var(--violet-text-color);
}

.poster-block .poster-text-block .poster-body-text {
    font-size: 22px;
    font-weight: 400;
}

.poster-background-color {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    mask-image: linear-gradient(67deg, transparent 60%, #000 50%);
}

.poster-image {
    position: absolute;
    z-index: 1;
    top: 14px;
    right: 47px;
    width: 415px;
    height: 215px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.poster-block.big .poster-image {
    top: auto;
    bottom: 0;
    right: 0;
    width: 505px;
    height: 303px;
}

@media (max-width: 780px) {
     .header.fullwidth{
         width: 100vw;
         margin-left: -20px;
     }
    .poster-block {
        height: unset;
        flex-direction: column;
        align-items: unset;
    }

    .poster-block.big {
        height: unset;
    }

    .poster-block .poster-text-block {
        order: 2;
        width: unset;
        margin: 10px 20px;
    }

    .poster-block .poster-text-block h1 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .poster-block .poster-text-block .poster-body-text {
        font-size: 16px;
    }

    .poster-background-color {
        mask-image: unset;
        height: 163px;
        position: unset;
        order: 1;
    }

    .poster-image,
    .poster-block.big .poster-image {
        width: 328px;
        height: 163px;
        order: 1;
        background-position: center bottom;
        top: unset;
        right: unset;
    }
    .poster-block.big .poster-image{
        bottom: unset;
    }
}