.fast-menu-item:hover {
    transition: 230ms all;
    transform: scale(1.2);
    background: var(--primary);
}

.fast-menu-item:hover .fast-menu-title {
    color: #fff;
}


.text-col {
    display: flex;
    justify-content: center;
    margin-bottom: 15rem;
}

.fast-menu-container {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px;
    width: 100%;
    z-index: 10;
}

.fast-menu-item {
    flex: 1 1 150px;
    max-width: 150px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.fast-menu-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.fast-menu-title {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}