.navbar-new {
    overflow: hidden;
}

.navbar-new .dropdown-new > a {
    float: left;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #000;
    text-align: center;
    text-decoration: none;
}

.navbar-new .dropdown-new > a::after {
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    font-size: 80%;
    font-weight: 900;
    content: "";
    margin-left: 0.5rem;
}

.dropdown-new {
    float: left;
    overflow: hidden;
}

.dropdown-new .dropbtn {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    border: none;
    outline: none;
    color: #000;
    background-color: inherit;
    font: inherit;
    margin: 0;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.15s linear;
    position: absolute;
    background-color: #FFF;
    width: 100%;
    margin-top: 52px;
    left: 0;
    right: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
}

.dropdown-content .header {
    background: red;
    padding: 16px;
    color: white;
}

.dropdown-new:hover > a {
    color: #0081c6;
}

.dropdown-new:hover .dropdown-content {
    transition-delay: 0.35s;
    visibility: visible;
    opacity: 1;
}

.column li:first-child a {
    color: #000;
    font-weight: 500;
}

.column a {
    float: none;
    color: #3e3e3e;
    text-decoration: none;
    display: block;
    text-align: left;
    padding-bottom: 5px;
    font-size: 0.875rem;
}

.column a:hover {
    color: #0081c6 !important;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        height: auto;
    }
}

.dropdown-new-secondary {
    cursor: pointer;
}

.dropdown-new-secondary .dropdown-content {
    top: -11px;
    min-width: 250px;
    padding: 1.25rem 0;
    cursor: default;
}

.dropdown-new-secondary .dropdown-content a {
    font-size: .875rem;
    background-color: transparent;
    padding: 0.375rem 1.6rem;
    transition: all 0.2s ease-in-out;
    outline: none !important;
}

.dropdown-new-secondary .dropdown-content a:hover {
    color: var(--jtbBlue);
    padding: 0.375rem 1.6rem 0.375rem 1.875rem;
}