.product-groups-wrapper {
    margin: auto;
    padding-bottom: 120px;
}

.product-groups {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-around;
    width: 100%;
    height: 100%;
    gap: 15px;
    margin: auto;
}

.product-groups .group {
    display: inline-block;
    border-radius: 25px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 150px;
    max-width: 300px;
    max-height: 230px;
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.2s ease;
}

.product-groups .group:hover {
    transform: scale(1.03)
}

.product-groups .group img {
    align-items: center;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-groups .group .text {
    background-color: white;
    box-sizing: border-box;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: center;
    font-weight: 600;
    padding: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 20px;
    width: calc(100% - 40px);
    box-sizing: border-box;
    margin-right: 20px;
    display: inline;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}


.product-categories .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #fdfdfd;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: rgb(0, 0, 0);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.product-categories img {
    border-radius: 12px;
}

.product-categories .icon-box:hover {
    transform: translateY(-5px);
    background-color: rgb(248, 248, 248);
}

.product-categories .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}

.product-categories .description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: center;
}


/*

*/
.products .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #fdfdfd;
    color: rgb(0, 0, 0);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.products .icon-box:hover {
    transform: translateY(-5px);
    background-color: rgb(248, 248, 248);
}

.products .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}

.products .description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: center;
}