.ar-title h5 em {
    color: #aaa;
    font-size: 22rem;
    font-weight: 600;
    font-style: normal;
    margin-left: 10rem;
}

.ct-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 120rem;
}

.ct-box-wrapper {
    display: flex;
    align-items: center;
    gap: 30rem;
    flex-wrap: wrap;
    margin-top: -150rem;
}

.ct-box {
    padding: 16rem 30rem;
    color: #222;
    font-size: 19rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #eee;
    box-shadow: 0 15rem 15rem 0 rgba(0, 0, 0, .03);
    transition: all .1s;
    cursor: pointer;
}

.ct-box:hover {
    color: #fff;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
}


/*==================================================*/
@media (max-width: 550px) {
    .ct-box {
        font-size: 24rem;
    }
}