.a7-box-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .15);
    overflow: hidden;
}

.a7-box {
    padding: 60px 120px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: all .3s;
}

.a7-box:hover {
    background-color: rgba(255, 255, 255, .06);
}

.a7-box:last-child {
    border: none;
}

.a7-box h5 {
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
}

.a7-box p {
    color: #a7accb;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin-top: 1.5rem;
}


/*==================================================*/
@media (max-width: 768px) {
    .a7-box {
        padding: 40px;
    }

    .a7-box p br {
        display: none;
    }

    .a7-box:hover {
        background-color: transparent;
    }
}


@media (max-width: 550px) {
    .a7-box h5 {
        font-size: 18px;
    }

    .a7-box p {
        font-size: 15px;
    }
}