.ab-title {
    width: 100%;
    font-size: 50rem;
    line-height: 1.2;
    margin-bottom: 70rem;
    text-align: center;
}

.ab-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30rem;
}

.ab-box {
    padding: 60rem 40rem;
    border: 2px solid #ddd;
    background-color: #f5f5f5;
}

.ab-box h6 {
    color: #222;
    font-size: 24rem;
}

.ab-box p {
    color: #333;
    font-size: 18rem;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 40rem;
}

.ab-box p b {
    color: var(--gold-point);
    display: block;
    font-size: 20rem;
    font-family: 'Montserrat';
    margin-bottom: 10rem;
}

.ab-bottom {
    color: #222;
    text-align: center;
    margin-top: 100rem;
}

.ab-bottom h5 {
    font-size: 30rem;
}

.ab-bottom p {
    color: #aaa;
    font-size: 20rem;
    font-weight: bold;
    font-family: serif;
    font-style: italic;
    letter-spacing: 1rem;
    margin-top: 10rem;
}

.ab-logo {
    width: 400rem;
    margin-top: 50rem;
}


/*==================================================*/
@media (max-width: 991px) {
    .ab-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media (max-width: 550px) {
    .ab-box h6 {
        font-size: 32rem;
    }

    .ab-box p {
        font-size: 22rem;
    }

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