.ac-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.ac-image h5 {
    width: 100%;
    color: var(--epm-navy);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-align: right;
}

.ac-image h5 span {
    display: block;
    color: #aaa;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0;
    margin-top: 7px;
}

.ac-box-wrapper {
    width: 100%;
    padding-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ddd;
}

.ac-box-group {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.ac-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 15px;
    background-color: #f5f5f5;
    transition: all .3s;
}

.ac-box img {
    height: 60px;
    filter: invert(13%) sepia(7%) saturate(7043%) hue-rotate(192deg) brightness(95%) contrast(97%);
    user-select: none;
}

.ac-box p {
    color: #222;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.ac-box p span {
    color: #aaa;
    font-size: 14px;
}

.ac-box-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--epm-navy);
}

.ac-box-arrow i {
    color: #fff;
    font-size: 16px;
}

.ac-text {
    width: 100%;
    padding: 60px 50px;
    border: 1px solid #eee;
    background-color: #f5f5f5;
}

.ac-text h5 {
    color: #222;
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.ac-text p {
    color: #777;
    font-size: 17px;
    line-height: 1.8;
}

.ac-box.on {
    background-color: var(--epm-navy);
}
.ac-box.on p {
    color: #fff;
}
.ac-box.on img {
    filter: invert(95%) sepia(66%) saturate(0%) hue-rotate(81deg) brightness(109%) contrast(101%);
}


/*==================================================*/
@media (max-width: 1050px) {
    .ac-box-wrapper {
        flex-direction: column;
        gap: 1rem;
        border-bottom: none;
    }

    .ac-box-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ac-box-arrow {
        transform: rotate(90deg);
    }

    .ac-box {
        padding: 30px;
    }
    
    .ac-image h5 {
        text-align: center;
    }
}


@media (max-width: 768px) {
    .ac-text {
        padding: 40px;
    }

    .ac-text h5 {
        font-size: 22px;
    }

    .ac-text p {
        font-size: 15px;
    }
}


@media (max-width: 550px) {
    .ac-box-wrapper {
        gap: 10px;
    }
    
    .ac-box {
        padding: 18px 24px;
        gap: 10px;
        border-radius: 10px;
        border: 1px solid #eee;
    }

    .ac-box img {
        height: 44px;
    }

    .ac-box p {
        font-size: 12px;
    }

    .ac-box-arrow {
        width: 24px;
        height: 24px;
    }

    .ac-box-arrow i {
        font-size: 14px;
    }

    .ac-image {
        margin-bottom: 2rem;
    }

    .ac-image h5 {
        width: 70%;
        font-size: 12px;
    }

    .ac-image h5 span {
        font-size: 11px;
    }
}


@media (max-width: 450px) {
    .ac-box-wrapper {
        padding-bottom: 2rem;
    }
    
    .ac-text {
        padding: 25px;
    }

    .ac-text h5 {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }

    .ac-text p {
        font-size: 13px;
    }
}