.situation {
    padding: 50px;
}

.situation .wrapper img {
    width: 100%;
}

.text_area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.situation_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    font-size: 25px;
    color: #fff;
}

.situation_text span {
    color: #ffff19;
}

.situation_text:first-child {
    align-self: flex-end;
    color: #333;
}

.situation_text:first-child span {
    color: #f4605d;
}


@media screen and (max-width: 979px) {

    .situation {
        padding: 25px 0;
    }

    .situation .wrapper img {
        display: none;
    }

    .text_area {
        position: static;
        width: 100%;
        height: auto;
    }

    .situation_text {
        width: 100%;
        height: auto !important;
        padding: 25px;
        font-size: 20px;
        background: #fc796f;
    }

    .situation_text:first-child {
        background: #f2f2f2;
    }

    .situation_text:first-child:before {
        content: '';
        width: calc( 100% + 50px );
        height: 150px;
        margin: -25px -25px 25px;
        background: url('../images/BG2_RWD_top.jpg') center;
        background-size: cover;
    }

    .situation_text:last-child {
        background: #fc796f;
        margin-top: 25px;
    }

    .situation_text:last-child:after {
        content: '';
        width: calc( 100% + 50px );
        height: 150px;
        margin: 25px -25px -25px;
        background: url('../images/BG2_RWD_bottom.jpg') center;
        background-size: cover;
    }
}