/* ===============================
   SHORESH HALEV NAV HOVER
=============================== */

.boxynav {
    cursor: pointer;
    transition: all 0.3s ease;
}

.boxynav h4 {
    transition: color 0.3s ease;
}

.boxynav img {
    transition: filter 0.3s ease;
}

.boxynav:hover {
    background: #31C4C2;
}

.boxynav:hover h4 {
    color: #F9F9F9 !important;
}

.boxynav:hover img {
    filter: brightness(0) invert(1);
}