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

}

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

@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{
    position: relative;
    transition: max-height .5s;
}

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

@media screen and (max-width: 786px) {
    .menu-dropdown-content{
        position: relative!important;
    }
}

.menu-dropdown:hover .menu-dropdown-content {
    display: block;
    max-height: 500px;
}

.navbar-container{
    transition: max-height 1s ease-in-out;
    max-height: 0;
}
.navbar-container.active{
    height: auto!important;
    position: fixed!important;
    z-index: 9999!important;
    max-height: 100%!important;
}
