.article {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    overflow: hidden;
    padding: 120px 0;
}

.article-wrapper {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.article-text {
    width: 500px;
}

.article-text h1 {
    color: #222;
    font-size: 50px;
    line-height: 1.3;
    font-weight: 700;
}

.article-text p {
    color: #555;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 2rem;
}


/*==================================================*/
@media (max-width: 1250px) {
    .article-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 1050px) {
    .article {
        padding: 60px 0;
    }
    
    .article-wrapper {
        flex-direction: column;
    }

    .aw-reverse {
        flex-direction: column-reverse;
    }

    .article-text {
        width: 100%;
    }
}



@media (max-width: 550px) {
    .article {
        padding: 30px 0;
    }

    .article-text h1 {
        font-size: 35px;
    }

    .article-text p {
        font-size: 17px;
        margin-top: 1rem;
    }
}


@media (max-width: 450px) {
    .article-text h1 {
        font-size: 28px;
    }

    .article-text p {
        font-size: 15px;
    }
}