.article_type9 {
    flex-direction: column;
    align-items: center;
    color: white;
    background: no-repeat center top;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: saturation;
    position: relative;
}

.article_type9_container {
    display: flex;
    flex-direction: column;
    padding: 35px 120px;
    width: 100%;
}

.article_type9_title {
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 30px;
    font-family: 'gotham';
}

.article_type9_text {
    text-align: justify;
    column-count: 2;
    column-gap: 40px;
}

/* RESPONSIVE */
@media all and (max-width: 767px) {
    .article_type9_container {
        padding: 35px 60px;
    }

    .article_type9_text {
        column-count: 1;
    }
}