.section-sms-system .boxes-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.section-sms-system .box-item {
    border: 1px solid #E9EBEE;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    transition: 0.3s;
}

.section-sms-system a.box-item:hover {
    box-shadow: 0px 4px 8px 0px #ABABAB29;
}

.section-sms-system .box-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.section-sms-system .box-item-header .box-item-title {
    font-variation-settings: "wght" 700, "wdth" 100;
    font-size: 1.125rem;
    line-height: 1.5;
    color: #242424;
}

.section-sms-system .box-item-header .icon-direction-left {
    color: #5B5C5F;
    font-size: clamp(0.75rem, 2vw, 1rem);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-sms-system .box-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2.75rem;
}

.section-sms-system .box-item-footer .box-item-desc {
    color: #5B5C5F;
    font-variation-settings: "wght" 400, "wdth" 100;
    font-size: 1rem;
    line-height: 1.78;
}

.section-sms-system .box-item-footer .box-item-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 2.5rem;
        max-height: 2.5rem;
    }
}

@media screen and (max-width: 767.99px) {
    .section-sms-system .boxes-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .section-sms-system .box-item-footer {
        gap: 0.75rem;
    }

    .section-sms-system .box-item-footer .box-item-icon {
        flex: 0 0 15%;
        max-width: 15%;
    }
}