.section-our-products {
    background-color: var(--color-white);
}

.section-our-products div.container>div {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.section-our-products div.container>div>div {
    width: calc((100% - (var(--column-margin) *2)) / 3);
    padding: 1.5rem;
    border-radius: .5rem;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition: all .3s;
}

.section-our-products div.container>div>div:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.text-green-icon {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity));
}

.text-blue-icon {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity));
}

.text-purple-icon {
    --tw-text-opacity: 1;
    color: rgb(147 51 234 / var(--tw-text-opacity));
}

.icon-dimensions {
    width: 3rem;
    height: 3rem;
}

.section-our-products ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.section-our-products ul li {
    display: flex;
    align-items: center;
}

.section-our-products ul li svg {
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 768px) {
    .section-our-products div.container>div {
        flex-wrap: wrap;
    }

    .section-our-products div.container>div>div {
        width: 100%;
    }
}