/*home services sections list*/
.hssl {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
    grid-auto-flow: column;
    position: relative;
}

/*home services sections list element*/
.hssl .hssle {
    color: #202020;
    border-radius: .375rem;
    padding: 0.7rem 0.9rem;
    line-height: 1;
    height: 3rem;
    display: flex;
    align-items: center;
    background: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, .1);
    border: 1px solid rgb(0 0 0 / 5%);
}

.hssl .hssle span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
/*home services sections list element link image*/
.hssl .hssle .hsslei {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}


@media only screen and (max-width: 991.98px) {
    .hssl {
        grid-template-columns: repeat(3, 1fr);
    }

    .hssl .hssle:nth-child(n+7) {
        display: none;
    }
}

@media only screen and (max-width: 767.98px) {
    .hssl {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .hssl .hssle:nth-child(n+7) {
        display: none;
    }
}

@media only screen and (max-width: 575.98px) {
    .hssl {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-flow: unset;
    }
}