/*==================   RD Mobile Menu    =====================*/
.rd-mobilemenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9999999;
    text-align: left;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    font-family: 'Open Sans', sans-serif !important;
    transition: 0.3s all ease;
}

.rd-mobilemenu.active {
    right: 0;
}

ul.rd-mobilemenu_ul {
    position: fixed;
    top: -66px;
    left: 0;
    bottom: -35px;
    width: 240px;
    padding: 132px 0 76px;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600 !important;
    padding-left: 0 !important;
    overflow: auto;
    -moz-transform: translateX(-240px);
    -ms-transform: translateX(-240px);
    -o-transform: translateX(-240px);
    -webkit-transform: translateX(-240px);
    transform: translateX(-240px);
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -moz-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    -o-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    -webkit-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.rd-mobilemenu.active ul.rd-mobilemenu_ul {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    box-shadow: 0 0 7px 0px rgba(0, 0, 0, 0.3);
}

ul.rd-mobilemenu_ul a {
    display: block;
    padding: 10px 25px 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none !important
}

ul.rd-mobilemenu_ul ul a {
    padding: 8px 25px 8px;
}

ul.rd-mobilemenu_ul a.active {
    background: #4e74fc;
    color: #fff;
}

ul.rd-mobilemenu_ul a:hover {
    background: #4e74fc;
    color: #fff;
}

ul.rd-mobilemenu_ul a .rd-submenu-toggle {
    position: absolute;
    top: 50%;
    right: 11px;
    margin-top: -17.5px;
    width: 32px;
    height: 32px;
    font: 400 10px "FontAwesome";
    line-height: 32px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
}

ul.rd-mobilemenu_ul a .rd-submenu-toggle:after {
    content: '\f078';
}

ul.rd-mobilemenu_ul a .rd-submenu-toggle:hover {
    background: #FFF;
    color: #666;
}

ul.rd-mobilemenu_ul a.rd-with-ul {
    position: relative;
}

ul.rd-mobilemenu_ul a.rd-with-ul.active .rd-submenu-toggle {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

ul.rd-mobilemenu_ul ul a {
    padding-left: 40px;
}

ul.rd-mobilemenu_ul ul ul a {
    padding-left: 60px;
}

ul.rd-mobilemenu_ul:after {
    content: '';
    display: block;
    height: 20px;
}

.rd-mobilepanel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 56px;
    color: #000;
    z-index: 99999991;
    background: transparent;
}

.rd-mobilepanel_title {
    position: absolute;
    padding-top: 0;
    margin-top: 0;
    text-align: center;
    left: 78px;
    right: 56px;
    color: #000;
    font-size: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rd-mobilepanel_toggle {
    position: absolute;
    border: none;
    background: #4e74fc;
    top: 2px;
    left: 8px;
    width: 48px;
    height: 48px;
    border-radius: 3px;
    margin-bottom: 0 !important;
}

.rd-mobilepanel_toggle span {
    position: relative;
    display: block;
    margin: auto;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.rd-mobilepanel_toggle span:after,
.rd-mobilepanel_toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.rd-mobilepanel_toggle span:after {
    top: 8px;
}

.rd-mobilepanel_toggle span:after,
.rd-mobilepanel_toggle span:before,
.rd-mobilepanel_toggle span {
    width: 24px;
    height: 4px;
    background-color: #fff;
    backface-visibility: hidden;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.rd-mobilepanel_toggle span:before,
.rd-mobilepanel_toggle span:after {
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0s;
    transition-delay: 0.3s, 0s;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}

.rd-mobilepanel_toggle.active span {
    transition: background .3s 0s ease;
    background: transparent;
}

.rd-mobilepanel_toggle.active span:before, .rd-mobilepanel_toggle.active span:after {
    top: 0;
    -webkit-transition-delay: 0s, 0.3s;
    transition-delay: 0s, 0.3s;
}

.rd-mobilepanel_toggle.active span:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rd-mobilepanel_toggle.active span:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.rd-mobilepanel_title {
    padding: 8px 0 0 !important;
    height: 56px !important;
}

.rd-mobilepanel_title #logo img {
    max-width: 140px;
    display: block;
    height: auto;
    position: relative;
    top: -2px;
}

@media (max-width: 991px) {
    #menu {
        display: none;
    }

    .rd-mobilemenu,
    .rd-mobilepanel {
        display: block;
    }
}

@media (max-width: 359px) {
    .rd-mobilepanel_title {
        font-size: 18px;
    }
}

@media (min-width: 1370px) {
    .container {
        max-width: 1350px;
        width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
}

@media (max-width: 1400px) {

}

@media (max-width: 1200px) {

}

@media (min-width: 1070px) {

}

@media (max-width: 991px) and (min-width: 768px) {

}

@media (max-width: 991px) {
    #menuTop .sf-menu > li a {
        font-size: 16px;
    }

    #footer .contentFooter {
        min-height: 104px;
    }

    #footer .tfooter {
        display: block;
        float: none;
        text-align: center;
        padding-bottom: 10px;
        line-height: 20px;
    }

    #footer .tfooter .uspto {
        display: block;
    }

    #footer #powered {
        display: block;
        float: none;
        text-align: center;
    }

    #footer #powered a {
        display: inline-block;
    }

    #dateTop {
        display: none;
    }

    #logoTop {
        box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
    }

    #home-1 .content-area {
        width: 100%;
        padding-right: 0;
    }
}

@media (max-width: 850px) {
    body {
        padding-top: 0 !important;
    }

    #logoTop {
        box-shadow: none;
        margin-left: 50px;
    }

    #logoTop h1 {
        line-height: normal;
        font-size: 37px;
    }

    #logoTop h2 {
        display: none;
    }

    .rd-mobilepanel .rd-mobilepanel_toggle {
        margin-top: 14px;
    }

    main #post {
        padding: 10px 0;
    }
}

@media (max-width: 979px) {


}

@media (max-width: 850px) {
    #header .top {
        display: none;
    }

    body {
        padding-top: 52px
    }

    #menuTop {
        display: none;
    }
}

@media (max-width: 767px) {

}

@media (max-width: 767px) and (min-width: 481px) {

}

@media (max-width: 660px) {

}

@media (max-width: 580px) {
    .blogEntries .item {
        width: 100%;
        flex-basis: 100%;
    }

    .dB600 {
        display: block;
        width: 100%;
        height: 1px;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
    }
}

@media (max-width: 480px) {

}

@media (max-width: 460px) {

}

@media (max-width: 380px) {


}