.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
    max-height: 115px;
    border-bottom: 1px solid #aaa;
    z-index: 999;
}
.header {
    padding: 0 30px;
    max-width: 1100px;
    height: 115px;
    margin: auto;
    position: relative;
}
.logo {
    padding: 20px;
}
.logo img {
    height: 40px;
}
.header-nav {
    max-height: 115px;
    position: absolute;
    bottom: 0;
    right: 30px;
    line-height: 18px;
}
.header-nav span {
    float: right;
    padding: 20px 0 0 10px;
    font-family: poppins-semibold, sans-serif;
    font-size: 19px;
}
.header-phone-span a {
    color: rgb(40, 42, 43);
}
a {
    text-decoration: none;
    cursor: pointer;
    color: #2585b4;
}

.header-menu ul {
    list-style-type: none;
    float: right;
}
.header-menu li {
    float: left;
}
.header-menu li a {
    display: block;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease;
}
.header-menu .menu-sub li a:hover {
    color: rgb(15, 127, 194);
}
.header-menu-mobile {
    display: none;
    float: right;
    top: 45px;
    position: relative;
}
.header-spacer {
    width: 100%;
    height: 115px;
}
.header-menu .menu-main {
    margin: 0;
    font-size: 14px;
}
.header-menu .menu-main a {
    color: rgb(40, 42, 43);
}
.header-menu .menu-main li {
    padding: 20px 0 20px 32px;
    cursor: pointer;
}
.header-menu .menu-sub {
    display: none;
    border-radius: 0 0 5px 5px;
    margin-top: 20px !important;
    border: 1px solid #c3c3c3;
    border-top: 0;
    background-color: white;
    padding: 0;
    margin: 4px;
    position: relative;
    left: 8px;
    min-width: 230px;
}
.header-menu .menu-sub li {
    padding: 0 !important;
    margin: 4px;
    cursor: pointer;
    background-color: white;
    border-radius: 3px;
    width: calc(100% - 8px);
}
.header-menu .menu-sub li a {
    text-align: left;
    margin: 0px;
    padding: 15px;
    display: block;
    width: calc(100% - 30px);
    height: 100%;
}
.header-menu .menu-sub li:hover {
    background-color: #d3d3d3 !important;
}
.header-menu .menu-item {
    position: relative;
}
.header-menu .menu-item:hover .menu-sub {
    display: block;
    position: absolute;
}
.mobile-menu {
    display: none;
    position: fixed;
    width: 100%;
    top: 116px;
    left: 0;
    list-style-type: none;
    height: calc(100% - 116px);
    overflow: auto;
    background-color: rgba(0,0,0, 0.5);
}
.mobile-menu a {
    color: rgb(40,42,43);
}
.mobile-menu ul {
    width: 100%;
    list-style-type: none;
}
.mobile-menu li {
    float: left;
    width: 100%;
}
.mobile-menu .menu-main {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 0;
    border-left: 1px solid #c3c3c3;
    border-right: 1px solid #c3c3c3;
    border-bottom: 1px solid #c3c3c3;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    clear: both;
    float: left;
    background-color: white;
}
.mobile-menu .menu-main .menu-item-title {
    font-family: poppins-semibold, sans-serif;
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 5px;
}
.mobile-menu .menu-main ul {
    width: 100%;
    list-style-type: none;
}
.mobile-menu .menu-sub {
    padding: 0;
}
.mobile-menu .menu-sub li {
    padding: 15px 15px 15px 45px;
    cursor: pointer;
    background-color: white;
    text-align: left;
    width: calc(100% - 60px);
    border-radius: 5px;
}
.mobile-menu .menu-sub li:hover {
    background-color: #f8f8f8;
}
.mobile-menu .menu-item {
    margin: 0;
}