﻿
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i&subset=vietnamese');

html {
    font-size: 62.5%;
}

body {
    overflow-x: hidden;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
}

a {
    color: #23408F;
}

    a:hover, a:active, a:focus, a:visited {
        text-decoration: none
    }

img {
    max-width: 100%;
    height: auto
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-title, .site-description {
    font-size: 0;
    margin: 0
}

.site-header .header-content {
    position: relative
}
/* Header style 1 */
.site-header.logo-left .header-content {
    display: table;
    width: 100%;
}

    .site-header.logo-left .header-content .logo img {
        margin: 10px 0;
    }

@media (min-width: 768px) {
    .site-header.logo-left .header-content .logo,
    .site-header.logo-left .header-content .main-navigation {
        display: table-cell;
        vertical-align: middle;
    }
}

.site-header.logo-left .header-content .logo img {
    margin: 10px 0;
    max-height: 80px;
}
/* Header style 2 */
.site-header.logo-center {
}

    .site-header.logo-center .logo {
    }

        .site-header.logo-center .logo img {
            margin: 2px 0;           
        }
    /*--------------------------------------------------------------
# Main Navigation
--------------------------------------------------------------*/
    .site-header.logo-center .main-navigation {
        background: #23408F;
    }

    .site-header.logo-center .main-navigation {
        float: left;
        width: 100%;
    }

.main-navigation {
    background: #23408F;
}

    .main-navigation ul {
        padding: 0;
        margin: 0;
    }

        .main-navigation ul.menu:before, .main-navigation ul.menu:after {
            content: "";
            display: table;
            clear: both;
        }

        .main-navigation ul.menu li {
            position: relative;
            display: block;
        }

        .main-navigation ul.menu > li {
            float: left;
        }

        .main-navigation ul.menu li a {
            font-size: 16px;
            color: #FFF;
            display: block;
            white-space: nowrap;
            padding: 6px 20px;
            font-weight: 400;
        }

        .main-navigation ul.menu > li > a {
            padding: 0 20px;
            line-height: 40px;
            font-weight: 400;
            text-transform: uppercase;
            border-left: 1px solid #ff765f;
            border-right: 1px solid #b7240c;
        }

.site-header.logo-left .main-navigation ul.menu > li > a {
    color: #333333;
}

.main-navigation ul.menu > li.li-home > a:before {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}

.main-navigation ul.menu li > a:hover,
.main-navigation ul.menu li.current-menu-item > a,
.site-header.logo-left .main-navigation ul.menu li > a:hover,
.site-header.logo-left .main-navigation ul.menu li.current-menu-item > a {
    color: #fff;
}
/* Submenu 1 */
.main-navigation ul ul {
    padding: 10px 0;
    min-width: 260px;
    left: 0;
    position: absolute;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    background: #23408F;
    -webkit-transition: -webkit-transform 0.25s ease, opacity 0.5s ease;
    -moz-transition: -moz-transform 0.25s ease, opacity 0.5s ease;
    -o-transition: -o-transform 0.25s ease, opacity 0.5s ease;
    transition: transform 0.25s ease, opacity 0.5s ease;
}

.main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}
/* Submenu 2 */
.main-navigation ul ul ul {
    position: absolute;
    left: 80%;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    -moz-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
    -webkit-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
    -o-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
    transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
}

    .main-navigation ul ul ul li {
        width: 100%;
        opacity: 1;
    }

.main-navigation ul ul li:hover ul {
    opacity: 1;
    left: 100%;
    visibility: visible;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
.heading {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    line-height: 40px;
    text-transform: uppercase;   
    
}

    .heading a {
        position: relative;
        display: inline-block;
        color: #333333;
        padding: 3px 33px 10px 32px;
        border-bottom: 1px solid #009242;
    }

  

        .heading .viewall:hover {
            color: #23408F;
        }

    .heading a:not(.viewall):after {
        content: '';
        display: inline-block;
        position: absolute;
        bottom: -2px;
        left:28%;
        width: 40%;
        height: 3px;
        background: #23408F;
    }

.breadcrumb > li
{
    text-transform:uppercase;
}


.page-title-bar {
    align-items: center;
    padding: 10px 0 20px 0;
    text-align: center;
}

    .page-title-bar .title {
        font-size: 24px;
        line-height: 1.4;
        margin-top: 0;
    }

.breadcrumb {
    padding: 5px 0;
    margin-bottom: 10px;
    background: none;
}

#back-top {
    margin: 0
}

    #back-top a {
        display: block;
        -webkit-transition: 1s;
        -moz-transition: 1s;
        transition: 1s
    }

    #back-top span {
        border-radius: 5px;
        display: inline-block;
        height: 40px;
        width: 40px;
        position: fixed;
        bottom: 60px;
        right: 30px;
        z-index: 9;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        background: #23408F url(lib/images/top.png) no-repeat center 50%;
        opacity: .5;
        -webkit-transition: opacity .3s 0s, visibility 0s .3s;
        -moz-transition: opacity .3s 0s, visibility 0s .3s;
        transition: opacity .3s 0s, visibility 0s .3s
    }

        #back-top span:hover {
            opacity: 1
        }

iframe[name='google_conversion_frame'] {
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    margin-top: -13px;
    float: left
}

.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col-xs-15 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

@media (min-width: 768px) {
    .col-sm-15 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.wpcf7 label {
    font-weight: 600;
    display: block
}

.wpcf7 div.wpcf7-validation-errors {
    margin: 2em 0 1em
}

.wpcf7 .span.wpcf7-not-valid-tip {
    margin: 5px 0
}

.page_nav {
    text-align: center;
    margin-bottom: 20px;
}

    .page_nav * {
        display: inline-block;
        padding: 3px 10px;
        background: #FFF;
        border: 1px solid #23408F;
        margin: 0;
    }

    .page_nav .current, .page_nav .page-numbers:hover {
        background: #23408F;
        color: #FFF;
    }

.screen-reader-text {
    display: none
}

.btn {
    font-size: 14px;
    background: #23408F;
    color: #FFF;
}

    .btn.focus, .btn:focus, .btn:hover {
        color: #FFF;
        opacity: .9;
    }

.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
    background: #23408F;
    border: none;
}

.form-control {
    height: 34px;
    font-size: 14px;
}

textarea.form-control {
    height: 160px;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}
.widget {
    margin: 0 0 1.5em;
}

    .widget select {
        max-width: 100%;
    }

.sidebar .widget {
}

.sidebar .widget-title {
    font-size: 15px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    background: #23408F;
    line-height: 40px;
    height: 40px;
    margin: 0;
}

.sidebar .widget_nav_menu .widget-title:before {
    content: "\f0c9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
}


.sidebar ul {
    margin: 0;
    padding: 0;
}

    .sidebar ul li {
        display: block;
    }



.sidebar .widget_nav_menu ul li {
    position: relative;
    padding: 5px 2px;
}

    .sidebar .widget_nav_menu ul li:not(:last-child) {
        border-bottom: 1px solid #cccccc;
    }

    .sidebar .widget_nav_menu ul li a {
        position: relative;
        font-size: 14px;
        font-weight: normal;
        display: block;
        color: #333333;        
        padding-right: 10px;
    }

        .sidebar .widget_nav_menu ul li a img {
            position: absolute;
            top: 1px;
            left: 0;
            z-index: 1;
        }

        .sidebar .widget_nav_menu ul li a span {
            display: inline-block;
            padding-left: 28px;
        }

.sidebar .widget_nav_menu .menu-item-has-children > .sub-menu {
    display: none;
}

.sidebar .widget_nav_menu .menu-item-has-children .sub-menu {
    background: #f6f6f6;
    position: absolute;
    left: 80%;
    top: -1px;
    z-index: 99;
    opacity: 1;
    visibility: hidden;
    width: 200px;
    border: 1px solid #cccccc;
    -moz-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
    -webkit-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
    -o-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
    transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear
}

.sidebar .widget_nav_menu .menu-item-has-children:hover > .sub-menu {
    display: block;
    left: 100%;
    opacity: 1;
    visibility: visible
}
/* Widget Recent Posts */
.sidebar .widget_recent_entries ul li {
    padding: 5px 10px;
    border-bottom: 1px solid #cccccc;
}

    .sidebar .widget_recent_entries ul li:last-child {
        border-bottom: none;
    }

.sidebar .widget_recent_entries .post-date {
    display: block;
}
/* Widget Recent Posts */
.widget .list-post-item li {
    margin-bottom: 10px;
}

    .widget .list-post-item li:last-child {
        margin-bottom: 0;
    }

.widget .list-post-item .post:after {
    clear: both;
}

.widget .list-post-item .alignleft {
    width: 100px;
    margin-right: 10px;
}

.widget .list-post-item .alignright {
    width: 100px;
    margin-left: 10px;
}

.widget .list-post-item .aligncenter {
    text-align: center;
}

.widget .list-post-item h3 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    max-height: 40px;
    overflow: hidden;
}

    .widget .list-post-item h3 a {
        color: inherit;
    }
/* Widget Support */
@media (min-width: 1200px) {
    .widget_supports .list-supporter {
        padding-top: 100px;
        background-image: url(lib/images/bg-support.png);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: contain;
    }

    .widget_supports .support-style-3 {
        padding-top: 0;
        background: none;
    }
}

.widget_supports .support-style-1 {
    background-color: #f6f6f6;
}

    .widget_supports .support-style-1 .support_contact {
        border-bottom: 1px solid #FFF;
        padding: 15px 10px 10px 10px;
    }

        .widget_supports .support-style-1 .support_contact > div {
            margin-bottom: 5px;
        }

    .widget_supports .support-style-1 li {
        padding: 5px 0;
    }

    .widget_supports .support-style-1 .support_phone {
        font-size: 18px;
        font-weight: bold;
        color: #f50808;
    }

    .widget_supports .support-style-1 .social a {
        margin: 0 5px;
    }

    .widget_supports .support-style-1 .register_email {
        padding: 10px 10px;
    }

        .widget_supports .support-style-1 .register_email label {
            font-size: 12px;
            font-weight: bold;
            color: #009242;
            text-transform: uppercase;
        }

        .widget_supports .support-style-1 .register_email .form_dk {
            overflow: hidden;
            border: 1px solid #cccccc;
        }

        .widget_supports .support-style-1 .register_email input[type=email] {
            float: left;
            width: calc( 100% - 45px );
            height: 23px;
            border: none;
            padding: 5px;
        }

        .widget_supports .support-style-1 .register_email input[type=submit] {
            float: left;
            width: 45px;
            height: 23px;
            background: #23408F;
            color: #FFF;
            border: none;
        }

.widget_slider_products li .item-product {
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #cccccc;
}

    .widget_slider_products li .item-product:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

.widget_slider_products li .alignleft, .widget_slider_products li .alignright {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFF;
    align-items: center;
}

.widget_slider_products li .alignleft {
    margin-right: 15px;
}

.widget_slider_products li .alignright {
    margin-left: 15px;
}

.widget_slider_products li .item-product img {
    width: auto;
    display: inline-block;
}

.widget_slider_products li .item-product .alignnone img {
    margin: 0 auto 10px;
}

.widget_slider_products li h3 {
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 24px;
    max-height: 48px;
    overflow: hidden;
}

    .widget_slider_products li h3 a {
        color: #333333;
    }

.widget_slider_products li .price {
    color: #23408F;
    margin: 0;
}

.sidebar .widget_listpost_widget ul {
    padding: 20px 10px;
    background: #fafafa;
}

.owl-carousel .owl-nav > div > div {
    background: #f5f5f5;
    padding: 5px 10px;
}

.owl-carousel .owl-nav .fa {
    font-size: 20px;
    color: #23408F
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    opacity: 0;
    transition: opacity .3s, background .3s, box-shadow .3s, -webkit-transform .3s;
    transition: transform .3s, opacity .3s, background .3s, box-shadow .3s;
    transition: transform .3s, opacity .3s, background .3s, box-shadow .3s, -webkit-transform .3s;
}

.owl-carousel .owl-nav .owl-prev {
    -webkit-transform: translateX(20%);
    -ms-transform: translateX(20%);
    transform: translateX(20%);
    left: 2%;
}

.owl-carousel .owl-nav .owl-next {
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
    right: 2%;
}

.owl-carousel:hover .owl-nav .owl-next, .owl-carousel:hover .owl-nav .owl-prev {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    background: transparent;
}

.owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    margin: 20px 0 0 0
}

    .owl-dots .owl-dot {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1
    }

        .owl-dots .owl-dot span {
            background: #cccccc;
            width: 10px;
            height: 10px;
            margin: 5px 7px;
            display: block;
            -webkit-backface-visibility: visible;
            -webkit-transition: opacity 200ms ease;
            -moz-transition: opacity 200ms ease;
            -ms-transition: opacity 200ms ease;
            -o-transition: opacity 200ms ease;
            transition: opacity 200ms ease;
            -webkit-border-radius: 30px;
            -moz-border-radius: 30px;
            border-radius: 30px
        }

        .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot span:hover {
            background: #f3c40a
        }


.widget_information .fa {
    width: 14px;
    margin-right: 5px;
}
/* Widget Social */
.widget_social ul li {
    display: inline-block;
    margin-right: 5px;
    font-size: 20px;
}

    .widget_social ul li a {
        display: inline-block;
        height: 30px;
        width: 30px;
        color: #333;
        background: #fff;
        box-shadow: 0 3px 5px #616161;
        line-height: 33px;
        border-radius: 50%;
        transition: transform 300ms;
        font-size: 20px;
        text-align: center;
    }
.widget_social ul li a:hover {
    transform: translatey(-5px)
}




.sidebar .cpd li:last-child {
    border-bottom: none;
}
.entry-content {
    line-height: 25px;
}

.single .entry-content table tr td {
    padding: 8px;
    line-height: 1.42857143;
    border: 1px solid #333;
}

.entry-meta {
    font-size: 13px;
    margin-bottom: 10px;
}

    .entry-meta span {
        display: inline-block;
        margin-right: 10px;
    }

        .entry-meta span .fa {
            color: #23408F;
        }
/* Make sure embeds and iframes fit their containers. */
embed, iframe, object {
    max-width: 100%
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Layout construct 
--------------------------------------------------------------*/
.site-content {
    padding-top: 20px;
}

.sidebar-content .site-main,
.content-sidebar .site-main {
    float: right;
    width: 74.5%;
}

.site-main {
    width: 100% !important;
}

.content-sidebar .site-main {
    float: left;
}

.content-sidebar .sidebar {
    float: right;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap,
.content-sidebar-sidebar .content-sidebar-wrap {
    float: left;
    width: 75.5%;
}

.sidebar-content-sidebar .site-main,
.sidebar-sidebar-content .site-main,
.content-sidebar-sidebar .site-main {
    float: right;
    width: 67.5496689%;
}

.sidebar-content-sidebar .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary,
.content-sidebar-sidebar .sidebar-primary {
    float: left;
    width: 31.1258278%;
}

.sidebar-content-sidebar .sidebar-secondary,
.sidebar-sidebar-content .sidebar-secondary {
    float: right;
    width: 23.5%;
}

.sidebar-sidebar-content .sidebar {
    float: left;
}

.sidebar-sidebar-content .content-sidebar-wrap {
    float: right;
}

.content-sidebar-sidebar .sidebar-primary {
    float: right;
}

.content-sidebar-sidebar .sidebar-secondary {
    float: right;
    width: 23.5%;
}

.content-sidebar-sidebar .site-main {
    float: left;
}

.page-template-page-fullwidth .site-main {
    width: 100%;
}

@media (max-width: 992px) {
    .sidebar-content .site-main, .content-sidebar .site-main, .sidebar-content .sidebar, .content-sidebar .sidebar, .sidebar-content-sidebar .content-sidebar-wrap, .sidebar-sidebar-content .content-sidebar-wrap, .content-sidebar-sidebar .content-sidebar-wrap, .sidebar-content-sidebar .site-main, .sidebar-sidebar-content .site-main, .content-sidebar-sidebar .site-main, .sidebar-content-sidebar .sidebar-primary, .sidebar-sidebar-content .sidebar-primary, .content-sidebar-sidebar .sidebar-primary, .sidebar-content-sidebar .sidebar-secondary, .sidebar-sidebar-content .sidebar-secondary, .content-sidebar-sidebar .sidebar-secondary {
        width: 100%;
    }
}
/*--------------------------------------------------------------
## Category
--------------------------------------------------------------*/
.new-list article {
    overflow: hidden;
    margin-bottom: 20px;
}

    .new-list article h3 {
        margin: 0 0 10px 0;
        font-size: 16px;
        line-height: 1.4;
    }

        .new-list article h3 a {
            color: #23408F;
            font-weight: 600;
        }

    .new-list article p {
        color: #747474;
        text-align: justify;
    }

    .new-list article .alignleft {
        width: 35.5%;
        margin-right: 15px;
        overflow: hidden;
    }

        .new-list article .alignleft img {
            width: 100%;
            height: auto;
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out
        }

            .new-list article .alignleft img:hover {
                transform: scale(1.1);
                -webkit-transform: scale(1.1)
            }

.ps-meta-info {
    margin-top: 20px;
    padding: 5px 0;
    border-top: 1px solid #e0dede;
    border-bottom: 1px solid #e7e6e6;
    font-size: 13px;
}

.ps-alignleft {
    display: inline;
    margin-right: 15px;
}

.ps-alignright {
    display: inline;
    margin-left: 15px;
}

.ps-inline-sep {
    padding: 0 5px;
}

.post-categories, .post-categories * {
    display: inline-block;
}
/*--------------------------------------------------------------
## Shortcode 
--------------------------------------------------------------*/
.sh-blog-shortcode .element .entry-content {
    margin: 0;
}

.sh-blog-shortcode .element .entry-thumb a {
    overflow: hidden;
    display: block;
}

    .sh-blog-shortcode .element .entry-thumb a img {
        width: 100%;
        height: auto;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out
    }

        .sh-blog-shortcode .element .entry-thumb a img:hover {
            transform: scale(1.1);
            -webkit-transform: scale(1.1)
        }


.sh-blog-shortcode .element .entry-description {
    text-align: justify;
    line-height: 1.4;
}
/* Blog Shortcode 1 */
.sh-blog-shortcode.style-1 .element .entry-thumb {
    float: left;
    width: 35%;
    margin-right: 15px;
}


.sh-blog-shortcode.style-1 .element .entry-description p {
    margin-bottom: 5px;
}
/* Blog Shortcode 5 */
.sh-blog-shortcode.style-5 .post-inner:before, .sh-blog-shortcode.style-5 .post-inner:after {
    content: '';
    display: table
}

.sh-blog-shortcode.style-5 .post-inner:after {
    clear: both;
}

.sh-blog-shortcode.style-5 .entry-thumb {
    float: left;
    width: 110px;
    margin-right: 15px;
}


.sh-blog-shortcode.style-5 .element .entry-description {
    font-size: 13px;
}
/* Blog Shortcode 6 */
.sh-blog-shortcode.style-6 .entry-thumb {
    padding: 3px;
    background: #FFF;
    border: 1px solid #cdcdcd;
}


.sh-blog-shortcode.style-6 .first-element-layout, .sh-blog-shortcode.style-6 .second-element-layout {
    margin-bottom: 20px;
}

    .sh-blog-shortcode.style-6 .second-element-layout .entry-thumb {
        float: left;
        width: 110px;
        margin-right: 15px;
    }

   

    .sh-blog-shortcode.style-6 .second-element-layout .element:not(:last-child) {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dfdfdf;
    }

    .sh-blog-shortcode.style-6 .second-element-layout .element:last-child {
        margin-bottom: 0;
    }

    .sh-blog-shortcode.style-6 .second-element-layout .element:before, .sh-blog-shortcode.style-6 .second-element-layout .element:after {
        content: '';
        display: table;
    }

    .sh-blog-shortcode.style-6 .second-element-layout .element:after {
        clear: both;
    }
/* Blog Shortcode 7 */
.sh-blog-shortcode.style-7 .first-element-layout .element .entry-thumb {
    float: left;
    width: 30%;
    margin-right: 20px;
}



.sh-blog-shortcode.style-7 .second-element-layout {
    margin-bottom: 20px;
}

    .sh-blog-shortcode.style-7 .second-element-layout .element {
        margin-bottom: 5px;
    }


@media (max-width: 414px) {
    .sh-blog-shortcode .element {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/*--------------------------------------------------------------
## Menu Mobile 
--------------------------------------------------------------*/
.navbar {
    display: none;
    margin-bottom: 0;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    background: #FFF;
    z-index: 999999;
    background: #23408F;
    padding: 0;
}
/* Breakpoint Responsive  */
@media (max-width: 1024px) {
    #site-navigation {
        display: none
    }

    .navbar {
        display: block
    }

    .site {
        padding-top: 6px
    }
    .logged-in .site {
        padding-top: 14px
    }
}

@media (max-width: 782px) {
    .logged-in .site {
        padding-top: 0
    }
}

.navbar-brand {
    color: #FFF !important;
    height: 46px;
    padding: 12px 15px;
    font-size: 16px;
    /*position: absolute;
	left: 50%;
    transform: translate(-50%, 0);*/
}

    .navbar-brand img {
        max-height: 30px;
    }

#mobilenav {
    background: #1e1e1e;
    position: fixed;
    height: 100%;
    width: 250px;
    top: 0;
    font-size: 0.9em;
    left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transform: translate(-250px);
    -moz-transform: translate(-250px);
    -ms-transform: translate(-250px);
    -o-transform: translate(-250px);
    transform: translate(-250px);
    z-index: 9999999;
}

    #mobilenav.opened {
        -webkit-transform: translate(0px);
        -moz-transform: translate(0px);
        -ms-transform: translate(0px);
        -o-transform: translate(0px);
        transform: translate(0px);
        z-index: 9999999;
    }

.toplg {
    padding: 32px 10px 16px 10px;
    text-align: center;
}

    .toplg img {
        max-width: 150px;
        margin: 0 auto;
    }

#mobilenav h3, #mobilenav p {
    color: #f2f2f2;
    text-align: center;
    font-size: 18px;
}

#mobilenav .mobile-menu {
    margin: 15px 0;
    padding: 0 10px;
}

#mobilenav li {
    display: block;
    position: relative;
}

    #mobilenav li a {
        color: #fff;
        position: relative;
        display: block;
        text-align: left;
        margin: 0;
        padding: 5px 10px;
        line-height: 25px;
        -webkit-transition: all 0.35s linear;
        -moz-transition: all 0.35s linear;
        -o-transition: all 0.35s linear;
        transition: all 0.35s linear;
    }

    #mobilenav li.current-menu-item > a, #mobilenav li:hover > a {
        background: #282d36;
    }

#mobilenav .arrow {
    border-radius: 0;
    position: absolute;
    top: 6px;
    right: 5px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    text-align: center;
    font-family: "FontAwesome";
    line-height: 25px;
    vertical-align: top;
    color: #FFF;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
}

    #mobilenav .arrow:before {
        content: "\f067";
    }

#mobilenav li.menu-item-has-children.open > .arrow:before {
    content: "\f068";
}

#mobilenav ul.sub-menu {
    
    list-style: none;
    margin: 0;
    padding: 0 0 0 10px;
}

.panel-overlay {
    opacity: 0;
    filter: alpha(opacity=0);
}

    .panel-overlay.active {
        background: #000;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 999999;
        min-height: 100vh;
        opacity: 0.35;
        filter: alpha(opacity=35);
        -webkit-transition: opacity 0.2s ease-in-out 0s;
        -moz-transition: opacity 0.2s ease-in-out 0s;
        transition: opacity 0.2s ease-in-out 0s;
    }

#showmenu {
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 5;
}

#hamburger .hamburger {
    margin-left: 10px
}

.hamburger {
    padding: 10px;
    height: 45px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity,-webkit-filter;
    transition-property: opacity,filter;
    transition-property: opacity,filter,-webkit-filter;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px
}

    .hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
        width: 30px;
        height: 2px;
        background-color: #FFF;
        border-radius: 2px;
        position: absolute;
        -webkit-transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform,-webkit-transform;
        -webkit-transition-duration: .15s;
        transition-duration: .15s;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease
    }

        .hamburger-inner::after, .hamburger-inner::before {
            content: "";
            display: block
        }

        .hamburger-inner::before {
            top: -10px
        }

        .hamburger-inner::after {
            bottom: -10px
        }

.hamburger--collapse .hamburger-inner::before {
    -webkit-transition: top .12s .3s cubic-bezier(.33333,.66667,.66667,1),-webkit-transform .15s cubic-bezier(.55,.055,.675,.19);
    transition: top .12s .3s cubic-bezier(.33333,.66667,.66667,1),transform .15s cubic-bezier(.55,.055,.675,.19);
    transition: top .12s .3s cubic-bezier(.33333,.66667,.66667,1),transform .15s cubic-bezier(.55,.055,.675,.19),-webkit-transform .15s cubic-bezier(.55,.055,.675,.19)
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    -webkit-transition: top .3s .3s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear;
    transition: top .3s .3s cubic-bezier(.33333,.66667,.66667,1),opacity .1s linear
}

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
    -webkit-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}

.hamburger--collapse.is-active .hamburger-inner {
    -webkit-transform: translate3d(0,-10px,0) rotate(-45deg);
    transform: translate3d(0,-10px,0) rotate(-45deg);
    -webkit-transition-delay: .32s;
    transition-delay: .32s;
    -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transition-timing-function: cubic-bezier(.215,.61,.355,1)
}

    .hamburger--collapse.is-active .hamburger-inner::before {
        top: 0;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: top .12s .18s cubic-bezier(.33333,0,.66667,.33333),-webkit-transform .15s .42s cubic-bezier(.215,.61,.355,1);
        transition: top .12s .18s cubic-bezier(.33333,0,.66667,.33333),transform .15s .42s cubic-bezier(.215,.61,.355,1);
        transition: top .12s .18s cubic-bezier(.33333,0,.66667,.33333),transform .15s .42s cubic-bezier(.215,.61,.355,1),-webkit-transform .15s .42s cubic-bezier(.215,.61,.355,1)
    }

    .hamburger--collapse.is-active .hamburger-inner::after {
        top: 0;
        opacity: 0;
        -webkit-transition: top .3s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .27s linear;
        transition: top .3s cubic-bezier(.33333,0,.66667,.33333),opacity .1s .27s linear
    }
/*--------------------------------------------------------------
## Footer 
--------------------------------------------------------------*/
.site-footer {
    color: #FFF;
    background: #23408F;
}

    .site-footer p {
        margin-bottom: 0;
    }

    .site-footer a {
        color: #FFF;
    }

.footer-widgets {
    padding: 20px 0 10px 0;
}

    .footer-widgets h4.widget-title {
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
    }

    .footer-widgets ul {
        padding-left: 0;
        list-style: none;
    }

        .footer-widgets ul li {
            padding: 3px 0;
        }

.site-info {
    padding: 10px 0;
    background: #000000;
}
/*--------------------------------------------------------------
## Custom Css 
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .container {
        max-width: 1230px;
    }
}

.home .site-main {
    width: 100%;
}

.top-header {
    background: #23408F;
    padding: 5px 0;
}

    .top-header .widget, .top-header ul {
        padding: 0;
        margin: 0;
    }

    .top-header .widget_nav_menu ul.menu {
        text-align: right;
    }

    .top-header .widget_nav_menu ul li {
        padding: 0 15px;
        display: inline-block;
    }

        .top-header .widget_nav_menu ul li:last-child {
            padding-right: 0;
        }

        .top-header .widget_nav_menu ul li a {
            color: #f6f6f6;
        }

            .top-header .widget_nav_menu ul li a:hover {
                color: #FF0;
            }

        .top-header .widget_nav_menu ul li:not(:last-child) {
            background: url(lib/images/border.png) right center no-repeat;
        }

    .top-header .widget select {
        font-size: 13px;
        padding: 0 5px;
    }

.header-content .row {
    margin-left: -5px;
    margin-right: -5px;
}

.header-content [class*='col'] {
    padding-left: 5px;
    padding-right: 5px;
}

.information_header .img {
    float: left;
    margin-right: 9px;
}

.information_header p {
    font-size: 12px;
    margin: 0;
    line-height: 1.1;
}

.information_header strong {
    font-size: 14px;
    color: #009242;
}

.information_header .hotline {
    font-size: 20px;
    font-weight: bold;
    color: #23408F;
}

.information_header .information_item:not(:last-child) {
    margin-right: 56px;
}

.information_header .information_item:first-child .float-right {
    margin-top: 4px;
}

.main_home {
    float: none !important;
    width: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

    .main_home .widget {
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 5px;
        padding-left: 5px;
        background: none;
        margin: 0 0 15px 0;
    }

@media (min-width: 1200px) {
    
    .main_home .widget_revslider {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.top_footer {
    border-top: 5px solid #23408F;
    padding: 25px 0 10px 0;
}

    .top_footer .widget {
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }

@media (min-width: 768.98px) {
    .top_footer .widget {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.top_footer .widget-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.top_footer ul {
    padding: 0;
    margin: 0;
}

    .top_footer ul li {
        list-style: none;
    }

        .top_footer ul li a {
            color: #333333;
        }

            .top_footer ul li a:hover {
                color: #23408F;
            }

.partner {
    margin-bottom: 30px;
}

    .partner .heading {
        margin-bottom: 0;
    }

    .partner .item .middle {
        display: table;
        width: 100%;
        height: 60px;
    }

        .partner .item .middle span {
            display: table-cell;
            vertical-align: middle;
            text-align: center;
        }

    .partner .item img {
        display: inline-block !important;
        width: auto !important;
        max-height: 60px;
    }

.partner_wrap {
    border: 1px solid #cccccc;
    padding: 20px;
}

.partner .owl-carousel .owl-nav .owl-prev {
    top: calc( 50% - 15px );
}

.partner .owl-carousel .owl-nav .owl-next {
    top: calc( 50% - 15px );
}

.partner .owl-carousel .owl-nav > div > div {
    background: #23408F;
    color: #FFF;
}

.wrap_pro {
    overflow: hidden;
    margin-bottom: 20px;
}

    .wrap_pro .img_cat {
        float: left;
        width: 19.1666667%;
    }

    .wrap_pro .listpro {
        float: right;
        width: 100%;
        padding: 15px 15px 0 15px;
        background: #f6f6f6;
    }



  






@-webkit-keyframes quick-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1;
    }

    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1;
    }
}

@-o-keyframes quick-alo-circle-anim {
    0% {
        -o-transform: rotate(0) scale(.5) skew(1deg);
        -o-opacity: .1;
    }

    30% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        -o-opacity: .5;
    }

    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        -o-opacity: .1;
    }
}

@-moz-keyframes quick-alo-circle-fill-anim {
    0% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }

    50% {
        -moz-transform: rotate(0) -moz-scale(1) skew(1deg);
        opacity: .2;
    }

    100% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }
}

@-webkit-keyframes quick-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2;
    }

    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }
}

@-o-keyframes quick-alo-circle-fill-anim {
    0% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }

    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2;
    }

    100% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }
}

@-moz-keyframes quick-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes quick-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-o-keyframes quick-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes quick-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

.alo-floating {
    display: block;
    left: 10px;
    bottom: 10px;
    position: fixed;
    z-index: 9999;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    padding-right: 5px;
    max-width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #008ff3;
    padding: 0 10px;
}

    .zalo-alo-floating a,
    .alo-floating a {
        color: #FFF;
    }

.zalo-alo-floating {
    bottom: 65px;
    background: #008ff3;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    min-width: 150px;
    line-height: 40px;
    left: 10px;
    z-index: 99999999999;
    text-transform: uppercase;
}
/*--------------------------------------------------------------
## Responsive 
--------------------------------------------------------------*/
/* Extra large devices (large desktops) */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .main-navigation ul.menu li a {
        font-size: 14px;
    }

    .main-navigation ul.menu > li > a {
        padding: 0 10px;
    }

    .main_home .widget_metaslider_widget {
        display: none;
    }

    .sidebar .widget_nav_menu .menu-item-has-children .sub-menu {
        display: none;
    }
}

@media (max-width: 1024.98px) {
    .site-header .woocommerce-product-search {
        display: none;
    }

    .site-header.logo-center .logo {
        text-align: center;
    }

        .site-header.logo-center .logo img {
            max-height: 80px;
        }

    .home .site-content {
        padding-top: 0;
    }
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .top-header ul.menu {
        text-align: left;
    }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
    .site-info, .site-info * {
        text-align: center;
    }

    .wrap_pro .img_cat {
        display: none;
    }

    .wrap_pro .listpro {
        width: 100%;
    }

    .top-header ul li {
        padding: 0 10px;
    }

        .top-header ul li:first-child {
            padding-left: 0;
        }

    .top-header .widget_nav_menu ul li:not(:last-child) {
        display: none;
    }
    .top-header {
        padding: 0;
    }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    /* .top-header {
		display: none;
	} */

}
