@font-face {
    font-family: feather;
    src: url("../fonts/feather-webfont.eot");
    src: url("../fonts/feather-webfont.eot") format("embedded-opentype"),
    url("../fonts/feather-webfont.woff") format("woff"),
    url("../fonts/feather-webfont.ttf") format("truetype"),
    url("../fonts/feather-webfont.svg") format("svg")
}




#noty_layout__bottom,#noty_layout__bottomCenter,#noty_layout__bottomLeft,#noty_layout__bottomRight,#noty_layout__center,#noty_layout__centerLeft,#noty_layout__centerRight,#noty_layout__top,#noty_layout__topCenter,#noty_layout__topLeft,#noty_layout__topRight,.noty_layout_mixin {
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 9999999;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    filter: blur(0);
    -webkit-filter: blur(0);
    max-width: 90%
}

#noty_layout__top {
    top: 0;
    left: 5%;
    width: 90%
}

#noty_layout__topLeft {
    top: 20px;
    left: 20px;
    width: 325px
}

#noty_layout__topCenter {
    top: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(calc(-50% - .5px)) translateZ(0) scale(1);
    transform: translate(calc(-50% - .5px)) translateZ(0) scale(1)
}

#noty_layout__topRight {
    top: 20px;
    right: 20px;
    width: 325px
}

#noty_layout__bottom {
    bottom: 0;
    left: 5%;
    width: 90%
}

#noty_layout__bottomLeft {
    bottom: 20px;
    left: 20px;
    width: 325px
}

#noty_layout__bottomCenter {
    bottom: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(calc(-50% - .5px)) translateZ(0) scale(1);
    transform: translate(calc(-50% - .5px)) translateZ(0) scale(1)
}

#noty_layout__bottomRight {
    bottom: 20px;
    right: 20px;
    width: 325px
}

#noty_layout__center {
    top: 50%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(calc(-50% - .5px),calc(-50% - .5px)) translateZ(0) scale(1);
    transform: translate(calc(-50% - .5px),calc(-50% - .5px)) translateZ(0) scale(1)
}

#noty_layout__centerLeft {
    left: 20px
}

#noty_layout__centerLeft,#noty_layout__centerRight {
    top: 50%;
    width: 325px;
    -webkit-transform: translateY(calc(-50% - .5px)) translateZ(0) scale(1);
    transform: translateY(calc(-50% - .5px)) translateZ(0) scale(1)
}

#noty_layout__centerRight {
    right: 20px
}

.noty_progressbar {
    display: none
}

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #d7d7d7;
    opacity: .2;
    filter: alpha(opacity=10)
}

.noty_bar {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate(0) translateZ(0) scale(1);
    transform: translate(0) scale(1);
    -webkit-font-smoothing: subpixel-antialiased;
    overflow: hidden;
    border-radius: 5px;
    position: relative
}

.noty_bar .noty_body {
    font-weight: 500;
    padding: 8px 34px 8px 14px!important;
    display: flex;
    align-items: center;
    width: 100%;
    vertical-align: middle;
    min-height: 40px
}

.noty_effects_open {
    opacity: 0;
    -webkit-transform: translate(50%);
    transform: translate(50%);
    -webkit-animation: noty_anim_in .5s cubic-bezier(.68,-.55,.265,1.55);
    animation: noty_anim_in .5s cubic-bezier(.68,-.55,.265,1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_effects_close {
    -webkit-animation: noty_anim_out .5s cubic-bezier(.68,-.55,.265,1.55);
    animation: noty_anim_out .5s cubic-bezier(.68,-.55,.265,1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_fix_effects_height {
    -webkit-animation: noty_anim_height 75ms ease-out;
    animation: noty_anim_height 75ms ease-out
}

.noty_close_with_click {
    cursor: pointer
}

.noty_close_button {
    position: absolute;
    top: 2px;
    right: 2px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color: rgba(0,0,0,.05);
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.noty_close_button:hover {
    background-color: rgba(0,0,0,.1)
}

.noty_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    opacity: .3;
    left: 0;
    top: 0
}

.noty_modal.noty_modal_open {
    opacity: 0;
    -webkit-animation: noty_modal_in .3s ease-out;
    animation: noty_modal_in .3s ease-out
}

.noty_modal.noty_modal_close {
    -webkit-animation: noty_modal_out .3s ease-out;
    animation: noty_modal_out .3s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

@-webkit-keyframes noty_modal_in {
    to {
        opacity: .4
    }
}

@keyframes noty_modal_in {
    to {
        opacity: .4
    }
}

@-webkit-keyframes noty_modal_out {
    to {
        opacity: 0
    }
}

@keyframes noty_modal_out {
    to {
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_in {
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@keyframes noty_anim_in {
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@-webkit-keyframes noty_anim_out {
    to {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@keyframes noty_anim_out {
    to {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_height {
    to {
        height: 0
    }
}

@keyframes noty_anim_height {
    to {
        height: 0
    }
}

.noty_theme__mint.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    border-radius: 5px;
    position: relative
}

.noty_theme__mint.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px
}

.noty_theme__mint.noty_bar .noty_buttons {
    padding: 10px
}

.noty_theme__mint.noty_type__alert,.noty_theme__mint.noty_type__notification {
    background-color: #fff;
    border-bottom: 1px solid #d1d1d1;
    color: #2f2f2f
}

.noty_theme__mint.noty_type__warning {
    background-color: #ffae42;
    border-bottom: 1px solid #e89f3c;
    color: #fff
}

.noty_theme__mint.noty_type__error {
    background-color: #de636f;
    border-bottom: 1px solid #ca5a65;
    color: #fff
}

.noty_theme__mint.noty_type__info,.noty_theme__mint.noty_type__information {
    background-color: #7f7eff;
    border-bottom: 1px solid #7473e8;
    color: #fff
}

.noty_theme__mint.noty_type__success {
    background-color: #afc765;
    border-bottom: 1px solid #a0b55c;
    color: #fff
}

.noty_theme__empire.noty_bar {
    margin: 0 0 15px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    -webkit-box-shadow: rgba(0,0,0,.098039) 2px 2px 2px 0;
    box-shadow: 2px 2px 2px 0 rgba(0,0,0,.098039);
    padding-left: 50px
}

.noty_theme__empire.noty_bar:before {
    font-family: feather;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px
}

.noty_theme__empire.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    background: #fff
}

.noty_theme__empire.noty_bar .noty_body:after {
    content: "\EA00";
    font-family: feather;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.noty_theme__empire.noty_bar .noty_buttons {
    padding: 10px
}

.noty_layout .noty_theme__empire.noty_bar {
    z-index: 5
}

.noty_layout .noty_theme__empire.noty_bar:nth-child(2) {
    position: absolute;
    top: 0;
    margin-top: 4px;
    margin-right: -4px;
    margin-left: 4px;
    z-index: 4;
    width: 100%
}

.noty_layout .noty_theme__empire.noty_bar:nth-child(3) {
    position: absolute;
    top: 0;
    margin-top: 8px;
    margin-right: -8px;
    margin-left: 8px;
    z-index: 3;
    width: 100%
}

.noty_layout .noty_theme__empire.noty_bar:nth-child(4) {
    position: absolute;
    top: 0;
    margin-top: 12px;
    margin-right: -12px;
    margin-left: 12px;
    z-index: 2;
    width: 100%
}

.noty_layout .noty_theme__empire.noty_bar:nth-child(5) {
    position: absolute;
    top: 0;
    margin-top: 16px;
    margin-right: -16px;
    margin-left: 16px;
    z-index: 1;
    width: 100%
}

.noty_layout .noty_theme__empire.noty_bar:nth-child(n+6) {
    position: absolute;
    top: 0;
    margin-top: 20px;
    margin-right: -20px;
    margin-left: 20px;
    z-index: -1;
    width: 100%
}

#noty_layout__bottomLeft .noty_theme__empire.noty_bar:nth-child(2),#noty_layout__topLeft .noty_theme__empire.noty_bar:nth-child(2) {
    margin-top: 4px;
    margin-left: -4px;
    margin-right: 4px
}

#noty_layout__bottomLeft .noty_theme__empire.noty_bar:nth-child(3),#noty_layout__topLeft .noty_theme__empire.noty_bar:nth-child(3) {
    margin-top: 8px;
    margin-left: -8px;
    margin-right: 8px
}

#noty_layout__bottomLeft .noty_theme__empire.noty_bar:nth-child(4),#noty_layout__topLeft .noty_theme__empire.noty_bar:nth-child(4) {
    margin-top: 12px;
    margin-left: -12px;
    margin-right: 12px
}

#noty_layout__bottomLeft .noty_theme__empire.noty_bar:nth-child(5),#noty_layout__topLeft .noty_theme__empire.noty_bar:nth-child(5) {
    margin-top: 16px;
    margin-left: -16px;
    margin-right: 16px
}

#noty_layout__bottomLeft .noty_theme__empire.noty_bar:nth-child(n+6),#noty_layout__topLeft .noty_theme__empire.noty_bar:nth-child(n+6) {
    margin-top: 20px;
    margin-left: -20px;
    margin-right: 20px
}

.noty_theme__empire.noty_type__alert,.noty_theme__empire.noty_type__notification {
    background-color: #073b4c;
    color: #fff
}

.noty_theme__empire.noty_type__alert:before,.noty_theme__empire.noty_type__notification:before {
    content: "\E904"
}

.noty_theme__empire.noty_type__alert .noty_body,.noty_theme__empire.noty_type__notification .noty_body {
    color: #073b4c
}

.noty_theme__empire.noty_type__alert .noty_progressbar,.noty_theme__empire.noty_type__notification .noty_progressbar {
    background-color: #fff
}

.noty_theme__empire.noty_type__warning {
    background-color: #ffd166;
    color: #fff
}

.noty_theme__empire.noty_type__warning:before {
    content: "\E904"
}

.noty_theme__empire.noty_type__warning .noty_body {
    color: #ffd166
}

.noty_theme__empire.noty_type__error {
    background-color: #d71845;
    color: #fff
}

.noty_theme__empire.noty_type__error:before {
    content: "\E904"
}

.noty_theme__empire.noty_type__error .noty_body {
    color: #d71845
}

.noty_theme__empire.noty_type__error .noty_progressbar {
    opacity: .4
}

.noty_theme__empire.noty_type__info,.noty_theme__empire.noty_type__information {
    background-color: #118ab2;
    color: #fff
}

.noty_theme__empire.noty_type__info:before,.noty_theme__empire.noty_type__information:before {
    content: "\E97A"
}

.noty_theme__empire.noty_type__info .noty_body,.noty_theme__empire.noty_type__information .noty_body {
    color: #118ab2
}

.noty_theme__empire.noty_type__info .noty_progressbar,.noty_theme__empire.noty_type__information .noty_progressbar {
    opacity: .6
}

.noty_theme__empire.noty_type__success {
    background-color: #018462;
    color: #fff
}

.noty_theme__empire.noty_type__success:before {
    content: "\E92A"
}

.noty_theme__empire.noty_type__success .noty_body {
    color: #018462
}

.my-profile-bottom-right{
    text-align: -webkit-right !important;
    text-align: -moz-right !important;

}

.not-found-div{
    width: 100%;
    text-align: center;
}

.not-found-text{
    font-size: 30px;
    font-weight: 600;
}

.page-item.active .page-link {
    background-color: #f63635;
    border-color: #e03130;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #cd1716;
    border-color: #e03130;
}

.page-item .page-link {
    color: #5a5a5a;
}

/* .btn-danger{
    background-color: #5a5a5a;
    border-color: #424242;
} */

/* .btn-danger:hover,.btn-danger:active,.btn-danger:visited,.btn-danger:focus,.btn-danger:focus {
    background-color: #5a5a5a;
    border-color: #424242;
} */

input[type=checkbox]:checked.empire_checkbox  {
    border: 2px solid #c1192c;
    background: url(../img/checkd.png) no-repeat;
    background-size: contain;
}

input[type=checkbox].empire_checkbox {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border: 2px solid #c1192c;
    background: #fff;
    outline: none;
}
.main-header .sidebar-toggle {
    color:white;
}

.navbar-nav>li>a {
    color:white;
}
.btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open>.dropdown-toggle.btn-danger.focus, .open>.dropdown-toggle.btn-danger:focus, .open>.dropdown-toggle.btn-danger:hover {
    color: #fff;
    background-color: #16a9a6;
    border-color: #0e5f5e;
}

footer {
    padding: 90px 0 90px 0;
}

.mini-footer{
    margin-top: 20px;
}
.mini-footer p.right{
    float: right;
}
input[type=file]{
    cursor: pointer;
}
label#requirement_image-error{
    margin-top: 62px;
}
div.article-heading p{
    font-size: 20px;
    font-weight: 600;
}
div.article-list ul{
    list-style-type: disc;
    padding: 15px 35px;
}
div.article-list li{
    padding: 5px 5px;
    font-size: 18px;
    font-family: "SourceSansPro";
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.8);
}

div.article-list p{
    font-weight: 600;
    font-size: 18px;
}
.bottm40{
    margin-bottom: 40px;
}
textarea.section2-textarea{
    padding: 10px 10px !important;
}
img.requirement_image{
    max-width: 250px;
}
.no-padd-copyright{
    padding-left: 10px;
}
.no-padd-powerd{
    padding-right: 30px;
}

.home-services .inner .hs-row .hs-grid .hs-gridin .rg-top .overlay-max-width {
    max-width: 250px;
}

.hedear-coming-img
{
    justify-content: center;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.hedear-coming-img p{
    color: white;
    font-size: 50px;
    font-weight: 600;
}
nav.empire-article-nav
{
    margin-bottom: 10px;
}

nav.empire-article-nav > .nav.nav-tabs{

    border: none;
    color:#fff;
    background:#272e38;
    border-radius:0;

}

nav.empire-article-nav > div a.nav-item.nav-link,
nav.empire-article-nav > div a.nav-item.nav-link.active
{
    border: none;
    padding: 18px 25px;
    color:#fff;
    background:#272e38;
    border-radius:0;
    text-transform: uppercase;
}
nav.empire-article-nav > div a.nav-item.nav-link.active{
    background: #2acbc7;
}
nav.empire-article-nav > div a.nav-item.nav-link.active:after
{
    content: "";
    position: relative;
    bottom: -50px;
    left: -10%;
    border: 15px solid transparent;
    border-top-color: #2acbc7 ;
}

nav.empire-article-nav .tab-content{
    background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #ddd;
    border-top:5px solid #2acbc7;
    border-bottom:5px solid #2acbc7;
    padding:30px 25px;
}

nav.empire-article-nav > div a.nav-item.nav-link:hover,
nav.empire-article-nav > div a.nav-item.nav-link:focus
{
    border: none;
    background: #2acbc7;
    color:#fff;
    border-radius:0;
    transition:background 0.20s linear;
}

.catpagegrid-row .cat-grid .gridin .cpg-text-grid h3.category-name {
    width: 90%;
}
.innerbanner .slick-slide img {
    max-width: 100%;
    width: 100%;
    background-size: cover;
}

.home-categories{
    display: block;
}
.mobile_category_home_wrapper{
    display: none;
}
.home_category_none{
    display: block;
}
.loggedin_wrapper li{
    padding: 0px 19px !important;
}
#chatPanel{
    display: none !important;
}
.emojione {
    margin-right: 242px !important;
}

.list-post-group{
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid #888;
    margin-bottom: 15px;
}
.list-post-group:last-child{
    border-bottom: none;
}
.list-blog-heading p {
    font-size: 23px;
    font-weight: 600;
    color: black;
}

.list-blog-introduction p {
    color: #888888;
    font-size: 15px;
}

.list-blog-content p {
    color: #888888;
    font-size: 15px;
    font-weight: 600;
}
.list-blog-link ul{
    list-style: none;
    display: inline-flex;
}

.list-blog-link ul li{
    margin-right: 15px;
}
.list-blog-link ul li a{
    color: #888888;
}
.list-blog-link ul li:last-child{
    color:#239caa;
}

.blog-image-thumbnail{
    height: 7.25rem;
    margin: 0 0 0 1.5rem;
    max-width: 9.375rem;
    min-width: 7.75rem;
    overflow: hidden;
    text-align: center;
    width: 100%;

}

.blog-image-thumbnail .image-thumbnail{
    height: 100%;
    width: auto;
    max-height: 100%;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}
@media (max-width: 768px){
    .no-padd-copyright{
        padding-right: 0px;
        padding-left: 0px;
    }
    .no-padd-powerd{
        padding-right: 0px;
        padding-left: 0px;
    }

    header .resp-login-wrp {
        display: -webkit-inline-box;
    }
    header .resp-login-wrp .post-requirement-media{
        padding-right: 5px;
    }
}
@media (max-width: 575px){
    .mini-footer p {
        float: none !important;
        text-align: center;

    }


    footer {
        padding: 45px 0 45px 0;
    }
    .search-big .search-big-form .text-select-wrp {
        flex-direction: row;
        padding: 0 0;
    }
    .welcome-search-wrp {
        width: 330px;
    }
    .search-big .search-big-form .text-select-wrp .sb-textfield {

        border-right: 1px solid #e5e5e5;
        width: 10px;
        padding: 20px;
        /*padding: 0 0px;*/
    }
    .innerSection {
        padding-bottom: 0px !important;
    }

    .inner-services {
        padding-bottom: 0px !important;
    }
    .pagination-wrp {
        padding-top: 15px;
        padding-bottom: 20px;
    }
    .inner-about{
        padding-bottom: 40px !important;
    }

    nav.empire-article-nav > div a.nav-item.nav-link.active:after
    {
        display: none;
    }
    nav.empire-article-nav > div a.nav-item.nav-link,
    nav.empire-article-nav > div a.nav-item.nav-link.active
    {
        width: 100%;
    }

    .empireInnerSection{

    }

    header .resp-login-wrp {
        display: flex;
        flex-direction: row;
        width: 94%;
        justify-content: space-between;
    }
    .modal-pulp .md-content .md-field {
        width: 90%;
    }
    .modal-pulp .md-content .md-textarea {
        width: 90%;
    }

    .home_category_none{
        display: none;
    }
    .mobile_category_home_wrapper{
        display: block;
    }
    .mobile_category_head{
        display: flex;
        width: 100%;
        justify-content: space-between;
        position: relative;
        top: 26px;
    }

    .mobile_categories{
        padding: 0px 16px;
    }
    .mobile_categories p{
        margin: 55px 0px 40px;
    }

    .mobile_category_home_wrapper .image {
        width: 100%;
        height: 178px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }
    .mobile_category_home_wrapper .hc-grid {
        padding-left: 25px;
        padding-right: 25px;
        margin-bottom: 40px;
    }

    .mobile_category_home_wrapper .hc-grid .hc-gridin:hover .overlay {
        top: 0;
    }

    .mobile_category_home_wrapper .overlay{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 10px;
        background: #449fb7;
        background: -moz-linear-gradient(top, rgba(68, 159, 183, 0.85) 0%, rgba(42, 203, 199, 0.85) 100%);
        background: -webkit-linear-gradient(top, rgba(68, 159, 183, 0.85) 0%, rgba(42, 203, 199, 0.85) 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 159, 183, 0.85)), to(rgba(42, 203, 199, 0.85)));
        background: -o-linear-gradient(top, rgba(68, 159, 183, 0.85) 0%, rgba(42, 203, 199, 0.85) 100%);
        background: linear-gradient(to bottom, rgba(68, 159, 183, 0.85) 0%, rgba(42, 203, 199, 0.85) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#449fb7', endColorstr='#2acbc7', GradientType=0);
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .mobile_category_home_wrapper .overlay h4 {
        font-family: "SourceSansPro";
        font-size: 18px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: center;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .mobile_category_home_wrapper  .overlay p {
        font-family: "SourceSansPro";
        font-size: 14px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: center;
        color: #ffffff;
    }

}


