html,
body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1em;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: auto;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

    a:hover {
        text-decoration: none;
    }

blockquote {
    margin-bottom: 30px;
}

.section {
    padding: 40px 0;
}

.fixed {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.header-top-section {
    background: #015aac;
    padding: 5px 0;
}

    .header-top-section ul li {
        display: inline-block;
        color: #fff;
        font-size: 14px;
        margin-right: 10px;
    }

        .header-top-section ul li i {
            color: #fff;
            padding-right: 10px;
        }

    .header-top-section .header-address ul {
        text-align: right;
    }

@media screen and (max-width:767px) {
    .header-top-section .header-address ul {
        text-align: left;
    }
}
/*breacrumds*/
.breacrumds {
    min-height: 50px;
    background: #eee;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 50px;
}

    .breacrumds ul li {
        display: inline-block;
    }

        .breacrumds ul li:last-child a {
            font-weight: bold;
        }

        .breacrumds ul li a i {
            padding: 0 10px;
        }
/*menu*/
.site-content {
    padding-top: 66px;
}

.col-md-12-1 {
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.header {
    background: rgba(255, 255, 255, 0.9);
}

.header__logo {
    font-weight: 700;
    float: left;
}

    .header__logo img {
        padding: 10px;
    }

.menu {
    float: right;
}

    .menu a {
        padding: 7px 10px;
        text-transform: uppercase;
    }

    .menu > ul > li > a:hover, .menu .active a {
        background: #d81921;
        color: #fff;
    }

    .menu ul {
        padding: 0;
        margin: 0;
    }


@media only screen and (min-width: 1024px) {
    .menu ul li {
        position: relative;
        list-style: none;
        display: inline-block;
        line-height: 71px;
    }

    nav > ul > li ul li a {
        float: left;
        width: 160px;
        color: #fff;
    }

    .menu ul > li > ul li {
        width: 100%;
        line-height: 20px;
        padding: 5px;
        border-bottom: 1px dotted #fff;
    }

        .menu ul > li > ul li:hover {
            background: brown;
        }

        .menu ul > li > ul li:last-child {
            border-bottom: none;
        }
    /*menu level 2*/
    .menu li > ul {
        display: none;
        position: absolute;
        top: 30px;
        left: 0;
        visibility: hidden;
        z-index: 10000000;
        min-width: 200px;
        background: #d81921;
    }

    .menu > ul > li:hover > ul {
        display: block;
        top: 71px;
        visibility: visible;
        line-height: 0px;
    }

    /*menu level 3*/
    .menu > ul > li > ul > li > ul {
        display: none;
        position: absolute;
        top: -30px;
        left: 200px;
        visibility: hidden;
        z-index: 1;
        min-width: 200px;
        background: orange;
    }

    .menu ul > li > ul > li:hover > ul {
        display: block;
        top: 0;
        visibility: visible;
    }

    /*menu level 4*/
    .menu > ul > li > ul > li > ul > li > ul {
        display: none;
        position: absolute;
        top: -30px;
        left: 200px;
        visibility: hidden;
        z-index: 1;
        min-width: 200px;
        background: red;
    }

    .menu > ul > li > ul > li > ul > li:hover > ul {
        display: block;
        top: 0;
        visibility: visible;
    }
}


/* RESPONSIVE */
@media only screen and (max-width: 768px) {
    .site-pusher,
    .site-container {
        height: 100%;
    }

    .site-pusher {
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    .site-container {
        overflow: hidden;
    }

    .site-content {
        position: absolute;
        top: 66px;
        right: 0;
        left: 0;
        bottom: 0;
        padding-top: 0;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .header {
        position: static;
    }

    .header__icon {
        position: relative;
        display: block;
        float: right;
        width: 70px;
        height: 71px;
        cursor: pointer;
    }

        .header__icon:after {
            content: '';
            position: absolute;
            display: block;
            width: 1.7rem;
            height: 1px;
            top: 20px;
            left: 20px;
            box-shadow: 0 10px 0 1px #d71b22, 0 16px 0 1px #d71b22, 0 22px 0 1px #d71b22;
        }

    .menu {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #015aac;
        /*    overflow-y: scroll;
        -webkit-overflow-scrolling: touch;*/
        width: 250px;
        -webkit-transform: translateX(250px);
        transform: translateX(250px);
    }

        .menu li > ul > li > a, .menu li > ul > li > ul > li > a, .menu li > ul > li > ul > li > ul > li > a {
            padding-left: 20px;
        }

        .menu li > ul > li > ul > li > a {
            padding-left: 30px;
        }

        .menu li > ul > li > ul > li > ul > li > a {
            padding-left: 40px;
        }

        .menu ul li i {
            position: absolute;
            right: 0px;
            top: 0;
            padding: 12px;
            cursor: pointer;
            color: #fff;
        }

        .menu ul li {
            position: relative;
            display: block;
            width: 100%;
            overflow: hidden;
            border-bottom: 1px solid #337ab7;
        }

        .menu ul > li > ul {
            display: none;
            padding-top: 5px;
        }

        .menu a {
            text-align: left;
            line-height: 20px;
            width: 180px;
            display: inline-block;
            color: #fff;
            width: 100%;
            padding: 10px;
        }

        .menu > ul > li > a:hover, .menu .active a {
            background: #369ad8;
            color: #fff;
        }

    nav > ul > li > ul > li > a:before, nav > ul > li > ul > li > ul > li > a:before, nav > ul > li > ul > li > ul > li > ul > li > a:before {
        display: inline-block;
        margin-right: 10px;
        font: normal normal normal 14px/1 FontAwesome;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f148";
        -ms-transform: rotate(90deg); /* IE 9 */
        -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
        transform: rotate(90deg);
    }

    nav > ul > li > ul > li:last-child, nav > ul > li > ul > li > ul > li:last-child, nav > ul > li > ul > li > ul > li > ul > li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .with--sidebar .site-pusher {
        -webkit-transform: translateX(-250px);
        transform: translateX(-250px);
    }

    .with--sidebar .site-cache {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }
}
/*silder*/
#banner .item img {
    width: 100%;
}

.caption {
    position: absolute;
    font-size: 1.1em;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%); /* IE 9 */
    -moz-transform: translateY(-50%); /* Firefox */
    -webkit-transform: translateY(-50%); /* Safari and Chrome */
    -o-transform: translateY(-50%); /* Opera */
    left: 15px;
    right: 15px;
    width: 90%;
    color: #fff;
    text-shadow: 2px 2px 1px #000;
}

@media screen and (max-width:768px) {
    .caption {
        font-size: 1em;
        left: 20px;
    }
}

@media screen and (max-width:768px) {
    .caption {
        font-size: 0.7em;
    }

        .caption p {
            display: none;
        }
}
/*info about*/
#info_about {
    color: #fff;
    position: relative;
}

.text-more {
    text-align: center;
}

    .text-more a {
        text-align: right;
        text-transform: uppercase;
        font-size: 15px;
    }

.after-slider-content {
    display: table;
    width: 100%;
    height: 100px;
}

    .after-slider-content .inner {
        position: relative;
        padding-right: 75px;
        background-color: #369AD8;
        width: 76%;
    }

.tb-cell {
    display: table-cell;
    vertical-align: middle;
}

.after-slider-content .inner:after {
    content: '';
    display: block;
    clear: both;
}

.after-slider-content .inner:before {
    content: '';
    display: block;
    position: absolute;
    border: solid transparent;
    border-left-color: #369AD8;
    border-width: 50px 20px;
    top: -1px;
    right: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

.after-slider-content h1 {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 15px 0;
    line-height: 25px;
    float: left;
    margin: 0;
}

html .awe-color {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
}

.bg-color-1 {
    background-color: #11538C;
}

.after-slider {
    padding: 0;
}

.after-slider-bg-2 {
    background-color: #369AD8;
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width:768px) {
    .after-slider-content .inner {
        padding-right: 10px;
    }

    .after-slider-content h1 {
        font-weight: normal;
    }

    .after-slider-content .inner {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .after-slider-content .inner {
        width: 90%;
    }

    html .awe-color {
        display: none;
    }

    .after-slider-bg-2 {
        width: 100%;
    }

    .after-slider-content,
    .after-slider-content .tb-cell {
        display: block;
        height: auto;
        text-align: left;
        width: 100%;
        padding-right: 0;
        padding: 10px 0;
        text-align: center;
    }

        .after-slider-content .tb-cell {
            background: none;
        }

            .after-slider-content .tb-cell:before {
                display: none;
            }

    .after-slider .after-slider-bg-2 {
        display: none;
    }
}
/*about*/
.font-30 {
    font-size: 24px;
    margin-bottom: 0;
    color: #555;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-more .btn-primary {
    color: #fff;
    background-color: #11538c;
    border-color: #ffffff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #ed1c24;
    border-color: #ed1c24;
}

.btn-primary {
    color: #ed1c24;
    background-color: #ffffff;
    border-color: #ed1c24;
    padding: 12px 24px;
}

.seo-accordion {
    float: left;
    width: 100%;
}

.accordion_in {
    position: relative;
    z-index: 10;
}

    .accordion_in.acc_active > .acc_head {
        background: #2971b7;
        color: #ffffff;
        box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.15);
    }

.reputation-ccordion .accordion_in .acc_head {
    font-size: 14px;
    margin-top: 0;
}

.accordion_in .acc_head {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    color: #ffffff;
    background: #37abf2;
    height: 45px;
    margin-bottom: 15px;
    line-height: 45px;
    font-size: 16px;
    display: block;
    cursor: pointer;
    padding-left: 15px;
}

.accordion_in.acc_active > .acc_head .acc_icon_expand:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    background: #eeeeee;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.accordion_in .acc_head .acc_icon_expand:before {
    display: block;
    width: 25px;
    height: 25px;
    font-size: 12px;
    position: absolute;
    right: 10px;
    background: #ffffff;
    border-radius: 50%;
    top: 10px;
    content: "\f107";
    font: normal normal normal 14px/1 FontAwesome;
    text-align: center;
    color: #bdbdbd;
    line-height: 25px;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.accordion_in .acc_content {
    margin-bottom: 15px;
    padding: 5px 0;
    padding-left: 30px;
}

.reputation-ccordion .accordion_in .acc_content span {
    padding-right: 30px;
}

.accordion_in .acc_content span {
    font-size: 15px;
    line-height: 24px;
    position: relative;
    padding-left: 20px;
    display: inline-block;
}

    .accordion_in .acc_content span:before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        bottom: 5px;
        width: 1px;
        border-left: 1px dashed #e5e5e5;
    }

.padding-b-20 {
    padding-bottom: 20px;
}


/*products*/
.section-dark {
    background-color: #eee;
    padding: 30px 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 24px;
    color: #555;
}

@media screen and (max-width:768px) {
    #products .section-title {
        margin: 0;
    }
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.produc-item {
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portfolio-item, .gallery-item {
    display: inline-block;
}

.popup-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
}

.popup-gallery {
    display: inline-block;
    position: relative;
    background: #fff;
    /*border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;*/
}

    .popup-gallery:hover img {
        opacity: 0.25;
    }

.portfolio-item img {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.popup-gallery img, .popup-gallery a span {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.popup-gallery img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.width-100 {
    width: 100%;
}

.popup-gallery a span.eye-wrapper, .popup-gallery a span.eye-wrapper2 {
    background-color: #000;
    position: absolute;
    display: block;
    overflow: hidden;
    z-index: 2;
    height: 100% !important;
    top: 0%;
    margin-top: 0px;
    left: 0%;
    right: 0%;
    font-size: 22px;
    color: #fff;
    text-align: center;
    font-weight: 300;
    opacity: 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.popup-gallery a:hover span {
    opacity: 0.7;
}

.popup-gallery img, .popup-gallery a span {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

    .popup-gallery a span.eye-wrapper i, .popup-gallery a span.eye-wrapper2 i {
        position: absolute;
        display: inline-block;
        font-size: 38px;
        z-index: 3;
        top: 50% !important;
        margin-top: -19px !important;
        left: 0%;
        right: 0%;
    }

.icon-link:before {
    content: "\e091";
}

.portfolio-box, .portfolio-box-grey {
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    /* background-color: #fff; */
    border-bottom: 3px solid orange;
    margin-bottom: 20px;
    padding: 10px 20px 12px 20px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

    .portfolio-box h3, .portfolio-box-grey h3 {
        margin: 10px 0 1px 0 !important;
        line-height: 20px;
    }

    .portfolio-box p.portfolio-info {
        font-size: 15px;
        font-style: italic;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .portfolio-box h3 a, .portfolio-box-grey h3 a {
        font-size: 18px;
        transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        -webkit-transition: all .25s ease-in-out;
    }
/*services*/
#services {
    padding: 40px 0;
}

.features-item {
    margin: 30px 0;
    text-align: center;
}

.featured-item img {
    display: block;
    width: 100px;
    margin: auto;
    padding-top: 15px;
}

.featured-item h4 {
    margin: 10px 0;
}

.icon-pic {
    max-height: 72px;
}

.services_title {
    color: #555;
    margin-top: 40px;
}

.section-subtitle {
    margin: 0;
}

@media screen and (max-width: 767px) {
    #services .mc-section-1-content-1 {
        padding-bottom: 20px;
    }
}
/*customer*/
.section-blue {
    background-color: #3498db;
    padding: 40px 0;
}

.testimonials_item {
    position: relative;
    z-index: 100;
    margin: 30px 0;
    padding-bottom: 0;
    width: 100%;
}

.testimonials_box {
    background-color: #fff;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    padding: 30px 30px;
    position: relative;
    z-index: 100;
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

    .testimonials_box p {
        margin: 0;
        font-size: 16px;
        line-height: 26px;
    }

    .testimonials_box .testimonials_arrow {
        background: none repeat scroll 0 0 #fff;
        border-right: 1px solid rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.1);
        display: block;
        width: 12px;
        height: 12px;
        left: 60px;
        bottom: -6px;
        position: absolute;
        z-index: 50;
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        display: none\9;
    }

img.autor_pic {
    float: left;
    margin: 15px 15px 0 25px;
    padding: 4px 4px;
    background-color: #fff;
    width: 80px;
    height: 80px;
    -webkit-border-radius: 44px 44px;
    -moz-border-radius: 44px 44px;
    border-radius: 44px 44px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

p.autor {
    display: block;
    margin-top: 36px;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
}

    p.autor span {
        font-family: 'Roboto', sans-serif;
        text-transform: uppercase;
        color: #fff;
        font-weight: 500;
        font-size: 16px;
    }

.white {
    color: #fff;
}
/*support*/

.support-section {
    background: url(../img/bgsupport-section.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 40px 0;
}

.section-light .section-title .heading {
    color: #fff;
}

.section-title.has-excerpt .heading {
    margin-bottom: 0px;
}

.section-title .heading {
    text-transform: capitalize;
    font-size: 24px;
}

.section-title .heading {
    line-height: 1.5em;
    text-transform: uppercase;
}

.heading {
    margin-top: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title .excerpt {
    padding: 0 60px;
}

.section-title .excerpt {
    display: inline-block;
    max-width: 798px;
}

.excerpt {
    line-height: 24px;
    margin-bottom: 15px;
}

.support-section .excerpt p {
    line-height: 1.5em;
    color: #fff;
    font-size: 16px;
}

.support-section .col-support {
    border-right: 1px solid #fff;
}

.support-section .support-value {
    font-size: 2.4em;
}

@media screen and (max-width:768px) {
    .support-section .support-value {
        font-size: 2.1em;
    }

    .section-title .excerpt {
        padding: 0;
    }
}

.support-section .support-value, .support-section .support-label {
    text-align: center;
    text-transform: uppercase;
}

.col-support {
    color: #fff;
}

.section-content .col-support:last-child {
    border-right: none;
}
/*news*/
#news {
    background: #005aab;
}

.blog-item {
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    transition: all .50s ease-in-out;
    -moz-transition: all .50s ease-in-out;
    -webkit-transition: all .50s ease-in-out;
    margin: 30px 0 10px 0;
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    box-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

.popup-gallery {
    display: inline-block;
    position: relative;
}

.blog-item img {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.blog-item-inner {
    display: inline-block;
    padding: 1px 25px 20px 25px;
    background-color: #fff;
    border-bottom: 2px solid orange;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    transition: all .50s ease-in-out;
    -moz-transition: all .50s ease-in-out;
    -webkit-transition: all .50s ease-in-out;
}

.popup-gallery img, .popup-gallery a span {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.popup-gallery img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
}

h3.blog-title {
    margin-top: 15px;
    margin-bottom: 10px;
}

/*tuyendung*/
.content-recruitment {
    margin-top: 30px;
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all .50s ease-in-out;
    -moz-transition: all .50s ease-in-out;
    -webkit-transition: all .50s ease-in-out;
    border-bottom: 3px solid orange;
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    box-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

    .content-recruitment ul li {
        padding: 9px 0;
        border-bottom: 1px dotted #ccc;
    }

        .content-recruitment ul li:last-child {
            border-bottom: none;
        }

@media screen and (max-width:768px) {
    .td {
        padding-top: 25px;
    }

    .section-title.has-excerpt .heading {
        text-align: center;
    }
}
/*parnet*/
.parnet_item {
    margin-top: 30px;
    border: 1px solid #e2e2e2;
    width: 100%;
    padding: 10px;
    text-align: center;
    height: 96px;
    border-radius: 5px;
}

    .parnet_item:hover {
        border: 1px solid #005aab;
    }

    .parnet_item img {
        max-width: 100%;
        height: 77px;
        display: inline-block;
    }

.parnet_view_all {
    margin-top: 30px;
}
/*footer*/
#footer {
    background: url(../img/bg-footer.jpg) -150px -150px no-repeat;
    background-size: cover;
    background-position: center;
}

footer {
    background: #015aac;
    color: #fff;
}

.footer-title {
    font-weight: bold;
    color: #005aab;
}

.footer-list li {
    padding: 5px 0;
    display: block;
    overflow: hidden;
}

    .footer-list li i {
        float: left;
        width: 25px;
        font-size: 20px;
    }

    .footer-list li span {
        float: left;
        display: block;
        width: calc(100% - 25px);
    }

    .footer-list li:first-child i {
        font-size: 25px;
        padding-left: 1px;
    }

.socical ul li {
    display: inline-block;
    padding-right: 10px;
    font-size: 25px;
}

.block-title {
    background: #015aac;
    color: #fff;
    margin-bottom: 15px;
}

    .block-title a {
        display: block;
        background: #015aac;
        height: 40px;
        line-height: 40px;
    }

    .block-title span {
        float: left;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 25px;
        color: #fff;
        background: #094d8c;
        margin-right: 10px;
    }

.bg-tuyendung {
    margin-top: 30px;
}

    .bg-tuyendung img {
        width: 100%;
    }

.content-tuyendung {
    margin-top: 0px !important;
    border-radius: 0px 0px 5px 5px !important;
}

.page-gallery .nums, .page-doc .nums, .page-news .nums {
    margin-top: 0;
}

.nums a, .nums span {
    text-decoration: none !important;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
}

.nums > a {
    float: left;
    width: 32px;
    line-height: 32px;
    text-align: center;
    background: #001E46;
    color: #fff;
    margin-left: 2px;
}

    .nums > a:hover, .nums > a.current {
        background: #EF1625;
        color: #fff;
    }

.nums {
    float: right;
    margin-bottom: 30px;
}

    .nums > a * {
        color: inherit;
    }

    .nums a, .nums span {
        text-decoration: none !important;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
    }


    .nums a, .nums span {
        text-decoration: none !important;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
    }