.header-container{
}
.header-row{
    height: 70px;
}
.header-links{

}

.header-links div a{
    font-size: 14px!important;
}



.menu-dropdown{
    position: relative;
    transition: max-height .5s;
}

.menu-dropdown-content {
    display: none!important;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 9999;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s;
    border-radius: 15px;
}
.menu-dropdown:hover .menu-dropdown-content {
    display: block!important;
    max-height: 500px;
}







@media screen and (max-width: 767px) {
    .header-links-container{
        position: absolute;
        right: 0;
        left: 0;
        top: 70px;
        background-color: white;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .5s ease-in-out;
    }
    .header-links-container.active{
        opacity: 1;
        max-height: 300px;
    }

    .menu-dropdown:hover .menu-dropdown-content {
        display: none!important;
    }
}
