body {
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 400;
}

#ant-section__ant006_header {
    font-weight: 400;
}
#ant-section__ant006_header {
    background: #fff;
    padding: 20px 0;
    position: relative;
    border-bottom:1px solid #ddd;
    /* box-shadow: 0 2px 5px #00001a; */
}

#ant-section__ant006_header .ant006_header-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ant006_header-logo {
    min-height: 65px;
    align-items: center;
    display: flex;
}

.ant006_header-logo a {
    color: #000;
    font-size: 37px;
    font-weight: bold;
}

nav.ant006_header-container > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}

nav.ant006_header-container li a {
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    display: block;
    padding: 10px 15px;
}

nav.ant006_header-container li a:hover {
    color: #2668b9;
    text-decoration: none;
}

nav.ant006_header-container {
    height: 100%;
}

nav.ant006_header-container > ul li {
    position: relative;
}

nav.ant006_header-container > ul > li > .sub-menu {
    background: #fff;
    right: 10px;
    opacity: 0;
    filter: alpha(opacity=0);
    padding: 15px;
    position: absolute;
    border-radius: 4px;
    top: 115%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 200px;
    z-index: -99;
    box-shadow: 0px 30px 60px 0px rgba(0,0,0,0.08);
}

nav.ant006_header-container > ul > li:hover .sub-menu {
    top: 100%;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 999;
    visibility: visible;
}

nav.ant006_header-container ul {
    list-style: none;
    margin-bottom: 0;
}

nav.ant006_header-container li .sub-menu a {
    border-bottom: 1px solid #eee;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 13px 10px 12px;
    text-transform: uppercase;
}

nav.ant006_header-container li .sub-menu li:last-child a {
    border-bottom: none;
}

nav.ant006_header-container li .sub-menu a:hover {
    color: #2668b9;
    text-decoration: none;
}

#ant-section__ant006_header .ant006_header-toggle {
    display: none;
    line-height: 1;
    cursor: pointer;
}

#ant-section__ant006_header .ant006_header-toggle i {
    font-size: 30px;
}

@media screen and (max-width: 991px) {
    #ant-section__ant006_header .ant006_header-menu-wrap {
        justify-content: center;
        margin-top: 20px;
    }
    .ant006_header-logo {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    #ant-section__ant006_header .ant006_header-menu-wrap {
        justify-content: flex-end;
        margin-top: 0px;
    }
    .ant006_header-logo {
        text-align: left;
    }
    .ant006_header-logo img {
        max-height: 45px;
    }
    #ant-section__ant006_header .ant006_header-toggle {
        display: block;
    }
    nav.ant006_header-container {
        display: none;
        position: absolute;
        right: 0;
        z-index: 999;
        background: #fff;
        top: 65px;
        width: 200%;
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
        height: auto;
    }
    nav.ant006_header-container > ul {
        justify-content: center;
    }
    nav.ant006_header-container {
        width: calc(200% - 30px);
        right: 15px;
    }
    nav.ant006_header-container > ul {
        flex-wrap: wrap;
    }
    nav.ant006_header-container > ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    nav.ant006_header-container > ul li:last-child {
        border-bottom: none;
    }
    nav.ant006_header-container > ul li.menu-item-has-children:before {
        content: 'arrow_downward';
        font-family: 'Material Icons';
        position: absolute;
        z-index: 5;
        top: 0;
        right: 0;
        background-color: #f7f7f7;
        height: 100%;
        max-height: 42px;
        display: flex;
        align-items: center;
        padding: 0 20px;
    }
    nav.ant006_header-container > ul > li > .sub-menu {
        opacity: 1;
        visibility: visible;
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        background: #f9f9f9;
    }
    .ant006_header-logo a {
        font-size: 25px;
    }
}

@media screen and (max-width: 576px) {
    .ant006_header-logo a {
        font-size: 20px;
    }
}