/* en_head start */
.header-nav {
    background: #fff;
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0 50px;
    position: relative;
    justify-content: center;
    gap: 30rem;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 100%;

}

.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
}

.menu {
    display: flex;
    height: 100%;
    flex-wrap: nowrap;
    padding: 0 20px;
    justify-content: center;
}

.menu > li {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: 0 25px;
    flex-shrink: 0;
}

.menu > li > a {
    display: block;
    height: 100%;
    line-height: 120px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    padding: 0 5px;
}

.menu > li:hover > a {
    color: #4ab344 !important;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 5px;
    z-index: 1000;
}

.submenu li {
    padding: 0 20px;
}

.submenu a {
    display: block;
    line-height: 45px;
    color: #666;
    transition: all 0.2s;
    text-decoration: none;
}

.submenu li:hover a {
    color: #4ab344 !important;
    transform: translateX(5px);
}

.menu > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.active-parent > a {
    color: #4ab344 !important;
    position: relative;
}

.active-parent > a:after {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #4ab344;
    border-radius: 50%;
    transform: translateX(-50%);
}

.menu > li.active-parent > a {
    color: #4ab344;
}

/* en_head end */