.article {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    padding: 150px 0;
}

.article-wrapper {
    width: 1300px;
    display: flex;
    justify-content: space-between;
    gap: 70rem;
}

.at-title {
    width: 40%;
    min-width: 40%;
    margin-top: 70rem;
}

.at-wave {
    width: 30rem;
    margin-bottom: 10rem;
}

.at-title h4 {
    color: var(--main-color);
    font-size: 20rem;
    font-family: 'Montserrat';
    text-transform: uppercase;
    margin-bottom: 30rem;
}

.at-title h5 {
    color: #222;
    font-size: 50rem;
    line-height: 1.25;
}

.at-title h5 span {
    font-weight: 300;
}

.at-title p {
    color: #aaa;
    font-size: 17rem;
    line-height: 1.65;
    margin-top: 30rem;
}

.at-img-wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20rem;
}

.at-phone {
    width: 78%;
    max-width: 360rem;
    height: auto;
    filter: drop-shadow(0 25px 45px rgba(73, 51, 255, .18));
}

.at-img {
    width: 100%;
    height: 0;
    padding-bottom: 106%;
    border-radius: 20rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
    overflow: hidden;
}

/*========== Review ==========*/
.review-head {
    width: 1300px;
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 70rem;
}

.review-head h4 {
    color: var(--main-color);
    font-size: 20rem;
    font-family: 'Montserrat';
    text-transform: uppercase;
    margin-bottom: 20rem;
}

.review-head h5 {
    color: #222;
    font-size: 50rem;
    line-height: 1.25;
}

.review-head h5 span {
    font-weight: 300;
}

.review-grid {
    width: 1300px;
    max-width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24rem;
}

.review-card {
    padding: 45rem;
    border-radius: 28rem;
    background-color: #f7f7fb;
    border: 1px solid #ececf5;
    transition: transform .3s ease, box-shadow .3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(73, 51, 255, .1);
}

.review-emoji {
    font-size: 44rem;
    line-height: 1;
    margin-bottom: 24rem;
}

.review-card p {
    color: #444;
    font-size: 20rem;
    line-height: 1.65;
    font-weight: 500;
}


/*==================================================*/
@media (max-width: 1050px) {
    .at-phone {
        width: 62%;
    }
}

@media (max-width: 768px) {
    .review-head h5 {
        font-size: 60rem;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-card p {
        font-size: 24rem;
    }
}


/*==================================================*/
@media (max-width: 1350px) {
    .article-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 1050px) {
    .article {
        padding: 60px 0;
    }
    
    .article-wrapper {
        flex-direction: column;
    }
    .article1 .article-wrapper,
    .article3 .article-wrapper,
    .article5 .article-wrapper {
        flex-direction: column-reverse;
    }

    .at-title {
        width: 100%;
        min-width: 100%;
        margin-top: 0;
    }

    .at-img-wrapper {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .at-title h5 {
        font-size: 65rem;
    }

    .at-title p {
        font-size: 22rem;
    }
}


@media (max-width: 550px) {
    .at-wave {
        width: 40rem;
        margin-bottom: 20rem;
    }
    
    .at-title h4 {
        font-size: 30rem;
        margin-bottom: 40rem;
    }
    
    .at-title p {
        font-size: 24rem;
    }
}