.menu-item-image {
width: 50px; transition: transform 0.3s ease;
}
.custom-menu .menu-item:hover {
transform: scale(1.1);
z-index: 100;
}
.custom-menu .menu-container {
display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.custom-menu .menu-item {
position: relative; width: 200px; height: 100px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px;  cursor: pointer; transition: transform 0.3s; border: 5px solid #003706;
background-color: #003706; }
.custom-menu .menu-item:nth-child(even){
background-color: #004b13; border: 5px solid #004b13;
}
.image-overlay {
position: absolute; top: -100%;
left: 0px;
width: 100%;
height: 100%;
background-size: cover; background-position: center; opacity: 0; transition: opacity 0.3s; z-index: 1; transform: scale(1.05);
}
.custom-menu .menu-item:hover
{
border-bottom: 5px solid #fff;
border-left: 5px solid #fff;
border-right: 5px solid #fff;
-webkit-box-shadow: 1px 3px 35px 1px rgba(66, 68, 90, 1);
-moz-box-shadow: 1px 3px 35px 1px rgba(66, 68, 90, 1);
box-shadow: 1px 3px 35px 1px rgba(66, 68, 90, 1);
}
.custom-menu .menu-item:hover .image-overlay {
opacity: 1; border-top: 5px solid #fff;
border-left: 5px solid #fff;
border-right: 5px solid #fff;
}
.custom-menu .text {
position: relative; z-index: 2; border-left: 1px solid #fff;
padding: 1px 1px 1px 10px;
}
@media (max-width:1100px) {
.custom-menu{
display: flex;
flex-wrap: nowrap;
overflow: auto;
}
.menu-item {
width: unset !important;
flex: 0 0 auto;
}
}