.type {
    padding: 50px 0;
}

.type .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: url('../images/BG4.png') center no-repeat;
    background-size: contain;
}

.type_content {
    padding: 150px 50px 125px;
    font-size: 20px;
    line-height: 35px;
    color: #fff;
}

.type_content .head {
    position: relative;
    font-size: 30px;
    margin-bottom: 10px;
}

.type_content .head span {
    color: #ffff19;
}

.type_content:first-child .head:before {
    content: '';
    position: absolute;
    top: -35px;
    left: 0;
    width: 40px;
    height: 20px;
    background: url('../images/arrow_left.png') center left no-repeat;
    background-size: contain;
}

.type_content:last-child .head:before {
    content: '';
    position: absolute;
    top: -35px;
    right: 0;
    width: 40px;
    height: 20px;
    background: url('../images/arrow_right.png') center left no-repeat;
    background-size: contain;
}


@media screen and (max-width: 979px) {
    .type .wrapper {
        flex-direction: column;
        background: none;
    }

    .type_content:first-child {
        background: #f4605d;
    }
    
    .type_content:last-child {
        background: #f99789;
    }

    .type_content {
        padding: 50px 25px;
        font-size: 18px;
        line-height: 30px;
        color: #fff;
    }

    .type_content + .type_content {
        margin-top: 15px;
    }

    .type_content .head {
        font-size: 25px;
        margin-bottom: 10px;
    }
    
    .type_content:first-child .head:before {
        top: -20px;
        width: 20px;
        height: 10px;
    }
    
    .type_content:last-child {
        text-align: right;
    }

    .type_content:last-child .head:before {
        top: -20px;
        width: 20px;
        height: 10px;
    }
}