* {
    box-sizing: border-box;
    padding: 0;
    margin:0;
}
.primary-logo{
    height: 100px;
}
#top-header{
    padding-top: 10px;
    padding-bottom: 0px;
    background: #FFF;
}
#top-nav ul{
    display: flex;
    padding: 0;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top:10px;
}
#top-nav ul li{
    display: flex;
    align-items: center;
    margin-left: 5px;
    margin-right: 5px;
}
#top-nav ul li a{
    display: block;
    max-width: 100%;
    height: 40px;
    padding: 0 19px;
    color: #2F2B2B!important;
    line-height: 38px;
    text-decoration: none;
    border: 1px solid #000;
    background: #FFF;
    transition: all 0.5s ease !important;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
} 
#dropdown_1 {
    position: relative;
}
#dropdown_1 > a {
    cursor:pointer;
}
#social_links {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    visibility:hidden;
    opacity: 0;
    height: 0px;
    width: 100%;
    transition: visibility 0s, opacity 0.5s linear;
    background-color: white;
    z-index: 20;
}
#dropdown_1:hover #social_links {
    visibility: visible;
    opacity: 1;
    border-top: none;
    height: fit-content;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
}
#social_links > ul {
    float: none !important;
}
#social_links > ul > li > a {
    position: relative;
    border: none !important;
    margin-left: 5px;
    margin-right:5px;
    padding: 0;
    top: 0;
    background: transparent;
    transition: top ease 0.5s;
}
#social_links > ul > li > a:hover {
    border: none !important;
    margin-left: 5px;
    margin-right:5px;
    padding: 0;
    background: transparent;
    position: relative;
    top: -5px;
}
@media (min-width: 768px) {
    #top-bar{
        padding-bottom: 10px;
    }
    #top-nav ul{
        float: right;
    }
} 