.boxes {
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-top: 30px;
}


@media screen and (max-width: 1080px) {
    .boxes {
        display: flex;
        flex-direction: column;
    }
}



/*mobile */
@media screen and (max-width: 599px) {
    .boxes {
        grid-template-columns: 1fr;
    }
}

.boxes_box {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.20);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.boxes_box.active {
    border: 2px solid var(--blue);
    background: #FFF;
    box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.50);
}

.boxes_box i {
    width: 40px;
    height: 40px;
    font-size: 40px;
}

.boxes_box .fa-brands.fa-whatsapp {
    color: #2AB319;
}

.boxes_box .fa-solid.fa-envelopes-bulk {
    color: #0340CC;
}

.boxes_box.active i {
    color: var(--blue);
    border: none;
    box-shadow: none;
}
.boxes_box h2 {
    color: #000;
    font-family: var(--font-poppins);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.boxes_box p {
    color: #000;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

/* box_content */
.container .tab-content.box_content .content {
    min-height: 100px;
}
