:root {
    --mmp-background-color: white;
    --mmp-border-color: lightgrey;
    --mmp-accent-color: #3B9C68;
    --mmp-shadow-color: rgba(0, 0, 0, 0.15);
}

.mmp-hidden {
    display: none !important;
}

.mmp-mega-menu {
    position: absolute !important;
    width: 100%;
    /* height: 0; */
    height: 40vh;
    background-color: var(--mmp-background-color);
    /* background-color: lightblue; */
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    /* transition: height 0.5s ease-in-out; */
    transition: top 0.5s ease-in-out;
    overflow: hidden;
    box-shadow: 0 10px 10px var(--mmp-shadow-color);
    z-index: 1;
    border-top: 1px solid var(--mmp-border-color);

    top: -40vh;
}
.mmp-mega-menu.mmp-active {
    /* height: 25vh; */
    top: 0;
	margin-top: 35px; 
}

.mmp-mega-menu-inner-container {
    display: flex;
    flex-flow: row nowrap;
    width: 75%;
    height: 100%;
    padding: 2rem 0;
}

.mmp-mega-menu-list {
    display: flex;
    flex-flow: column nowrap;
    width: 25%;
    height: 100%;
    gap: 40px; 
}

.mmp-mega-menu-list-item {
    font-weight: bold;
    height: 2rem;
    position: relative;
    overflow: hidden;
    width: fit-content;
}
.mmp-mega-menu-list-item::after {
    content: '';
    position: absolute;
    bottom: -3px;
    display: block;
    width: 100%;
    height: 3px;
    background: var(--mmp-accent-color);
    transition: bottom .3s;
}

.mmp-mega-menu-list-item:hover::after,
.mmp-mega-menu-list-item.mmp-active::after {
    bottom: 0;
    /* //transition: width .3s; */
}
/* .mmp-mega-menu-list-item:hover {
    border-bottom: 1px solid var(--mmp-accent-color);
}
.mmp-mega-menu-list-item.mmp-active {
    border-bottom: 1px solid var(--mmp-accent-color);
} */

.mmp-mega-menu-content {
    width: 75%;
    height: 100%;
}

.menu-item.menu-item-type-post_type.menu-item-object-mmp_megamenu .sub-menu {
    display: none !important;
}

.mmp-list-item-link-style{
	color: black; 
	font-weight: bold;
	padding-bottom: 5px; 
}
.mmp-list-item-link-style:hover{
		border-bottom: solid 2px black; 
}


