.a1-box-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 100rem;
}

.a1-center {
    width: 500rem;
}

.a1-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20rem;
    background-color: #fff;
}

.a1-box h5 {
    font-size: 30rem;
    margin-bottom: 10rem;
}

.a1-box p {
    color: #444;
    font-size: 20rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
}

.a1-box p i {
    margin-bottom: -4px;
}

.a1-box:nth-child(1) {
    text-align: right;
}
.a1-box:nth-child(1) p {
    flex-direction: row-reverse;
}


/*==================================================*/
@media (max-width: 768px) {
    .a1-box-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60rem;
    }

    .a1-box:nth-child(1) {
        grid-row: 2 / 3;
    }
    .a1-center {
        grid-column: 1 / 3;
        margin: 0 auto;
        margin-bottom: -20rem;
    }
    .a1-box:nth-child(3) {
        grid-row: 2 / 3;
    }

    .a1-box {
        width: 100%;
    }
}


@media (max-width: 550px) {
    .a1-box h5 {
        font-size: 36rem;
    }

    .a1-box p {
        font-size: 24rem;
    }
}