.filter-btn {
    padding: 12px 24px;
    margin: 5px;
    border: none;
    background: #fff;
    color: #005B8D;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 16px;
}

.filter-btn:hover, .filter-btn:active {
    /* background-color: #005B8D; */
    padding: 12px 24px;
    border-radius: 6px;
    color:#606573;
}

.filter-box {
    width: 300px;
    height: 300px;
    /*background: linear-gradient(to bottom, #ccc, rgba(0, 0, 0, 0.8));*/
    display: none;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    /*box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);*/
    transition: transform 0.3s ease-in-out;
}

.filter-box:hover {
    transform: scale(1.05);
}

/* Show Development section by default */
.development {
    display: flex;
    width: 1310px;
        height: auto;
    font-size: 28px;
}

.filter-box.development:hover, .filter-box.brochures:hover{
    transform: none;
}

.brochures,.pack1 {
    display: flex;
    width: 1310px;
        height: auto;
    font-size: 28px;
}

