.article_1 {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    padding: 60px 20px;
    color: white;
}

.article_1 img {
    width: 510px;
    height: auto;
}

.article_1_right h2 {
    max-width: 404px;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 28px;
    margin: 20px 0;
}

.article_1_right .text {
    max-width: 600px;
    line-height: 1.5;
}

@media (max-width:992px) {
    .article_1 {
      flex-direction: column;
      align-items: center;
    }

    .article_1 img {
        width: 600px;
        height: auto;
    }
}

@media (max-width:600px) {
    .article_1 {
      flex-direction: column;
      align-items: center;
    }

    .article_1 img {
        width: 100%;
        height: auto;
    }
}