.header-container {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 50px 0px;
    opacity: 0.9;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

/* sm screens */
@media only screen and (max-width: 767px) {
    .header-container {
        padding: 40px 0px;
    }
}


.active-header-link {
    background: #F2EAF4;
    border-radius: 8px;
}

#headerSmallContent {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 40px 0px;
}
.header-small-container, .header-dropdown-container {
    padding: 1em 2em;
    z-index: 10;
    width: 100%;
}

.header-dropdown-container {
    max-height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 0px!important;
    padding-left: 0px!important;
    overflow-y: hidden;
    transition: max-height 300ms linear;
}

.header-dropdown-container a {
    display: block;
    padding: 0.5rem 2rem;
}

.header-dropdown-container .active-header-link {
    font-weight: 700;
    border-radius: 0px;
}

.header-button {
    padding: 0.5rem 1rem;
}

.fixed-header {
    background-color: white;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.expand-header-dropdown {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    max-height: 1000px;
}

#collapseHeaderIcon {
    display: none;
}