:root {
    --primary-color: #00095b;
    --primary-hover: #061282;
    --secondary-color: #1700F4;
}


.click-dropdown {
    display: none;
}

@media screen and (max-width: 1024px) {
    .blog-item {
        flex-direction: row !important;
    }

    .blog-item .blog-image {
        flex: 0 0 30%;
        align-items: center;
        display: flex;
    }

    .blog-item .blog-image img {
        transform: scale(2);
    }

    .blog-item .blog-description .blog-title {
        height: 58px !important;
    }
}

@media screen and (max-width: 768px) {
    .click-dropdown {
        display: inline-block;
        border: none !important;
        background-color: transparent !important;
        color: var(--primary-color);
        position: absolute;
        top: 0;
        right: 16px;
        width: 100%;
        height: 35px;
        text-align: right;
    }

    .click-dropdown:focus {
        outline: none !important;
    }

    .click-dropdown i.fa {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .fa-angle-down {
        display: none !important;
    }

    div.header-first {
        background: #f3f3f3;
    }

    div.header-second {
        background: var(--primary-color);
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 999999;
        width: 100%;
        height: 100vh;
        transition: .3s ease-in-out;
        overflow-y: auto;
    }

    div.header-second.show {
        left: 0 !important;
    }

    div.header-second #mainMenu {
        width: 100%;
        margin-left: unset;
    }

    div.header-second #mainMenu nav > ul {
        display: block !important;
        width: 100%;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
    }

    div.header-second #mainMenu nav > ul > li {
        position: relative;
        margin-left: 0 !important;
        padding: 0 15px !important;
        overflow: hidden;
        background: var(--primary-color);
    }

    div.header-second #mainMenu nav > ul > li .dropdown-menu {
        background-color: #fff !important;
        -webkit-transform: scale(0);
        transform: scale(0);
        top: auto;
        border-radius: 0;
        margin-bottom: 2px !important;
    }

    div.header-second #mainMenu nav > ul > li .dropdown-menu > li {
        background-color: #fff;
        padding: 0 !important;
    }

    div.header-second #mainMenu nav > ul > li .dropdown-menu > li.dropdown-submenu a {
        color: #1b4c87 !important;
    }

    div.header-second #mainMenu nav > ul > li .dropdown-menu > li.dropdown-submenu .dropdown-menu {
        left: unset !important;
        top: unset !important;
        margin-left: unset !important;
    }

    div.header-second #mainMenu nav > ul > li .dropdown-menu > li:hover {
        background-color: #f7595b;
        color: #fff !important;
    }

    div.header-second #mainMenu nav > ul > li .dropdown-menu > li a {
        color: #1b4c87 !important;
    }

    div.header-second #mainMenu nav > ul > li .dropdown-mega-menu {
        min-width: 100%;
        background-color: #eee !important;
        -webkit-transform: scale(0);
        transform: scale(0);
        top: auto;
        left: 0;
        right: 0;
        height: 450px;
        border-radius: 0;
        margin-bottom: 2px !important;
        overflow-y: scroll;
    }

    div.header-second #mainMenu nav > ul > li > a {
        display: block;
        background-color: #fff;
        color: #1b4c87 !important;
        border-radius: 0;
        border-bottom: 1px solid var(--primary-color);
    }

    div.header-second #mainMenu nav > ul > li:hover > a {
        background-color: #fff;
    }

    div.header-second #mainMenu nav > ul > li:hover > ul {
        width: 100%;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    div.header-second #mainMenu nav > ul > li.hover-active > a {
        background-color: #fff !important;
        color: #1b4c87 !important;
    }

    div.header-second #mainMenu nav > ul > li.hover-active > ul {
        position: relative;
        min-width: 230px;
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 425px) {
    .scrollspy .scrollspy-menu .icon span {
        display: none !important;
    }

    .product-item .product-description .price {
        font-size: 12px !important;
    }

    .blog-item {
        flex-direction: row !important;
    }

    .blog-item .blog-image {
        flex: 0 0 30%;
        align-items: center;
        display: flex;
    }

    .blog-item .blog-image img {
        transform: scale(2);
    }

    .blog-item .blog-description .blog-title {
        height: 58px !important;
    }

    .footer {
        padding-bottom: 30px;
    }

    .footer .copyright {
        margin-bottom: 30px;
    }
}

@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.text-main {
    color: var(--primary-color) !important;
}

.text-black {
    color: #000;
}

.text-small {
    font-size: 12px;
}

body {
    background-color: #fff;
    font-family: 'Roboto';
    font-size: 14px;
}

a {
    text-decoration: none !important;
}

.font-main {
    font-family: 'Montserrat', sans-serif;
}

.btn-rounded {
    border-radius: 30px;
}

.bg-main {
    background-color: var(--primary-color);
}

.btn-footer {
    background-color: #c70000;
    border-color: #c70000;
}

.btn-footer:hover {
    background-color: #e10000;
}

.no-radius {
    border-radius: 0 !important;
}

.hover-animation:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.hover-animation:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.hover-animation:hover:before {
    right: 50%;
    left: 50%;
    width: 0;
    background: rgba(255, 255, 255, 0.3);
}

.hover-animation:hover:after {
    height: 0;
    top: 50%;
    bottom: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.hover-animation:hover img {
    width: 100%;
    height: auto;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.static {
    position: static !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: var(--primary-color);
    content: "\e92f";
    font-family: 'feather';
}

.seperator {
    color: #ccc;
    width: 100%;
    margin: 10px auto;
    overflow: hidden;
    text-align: center;
    line-height: 1.2em;
}

.seperator:before {
    border-bottom: 1px solid #eee;
    content: "";
    display: inline-block;
    height: .65em;
    margin: 0 0 0 -100%;
    vertical-align: top;
    width: 50%;
}

.seperator:after {
    border-bottom: 1px solid #eee;
    content: "";
    display: inline-block;
    height: .65em;
    margin: 0 -100% 0 0;
    vertical-align: top;
    width: 50%;
}

#searchForm,
#searchFormMobile {
    position: relative;
}

#searchForm input,
#searchFormMobile input {
    border: 2px solid var(--primary-color);
}

#searchForm .input-icon-addon,
#searchFormMobile .input-icon-addon {
    color: var(--primary-color);
}

#searchForm .timkiem,
#searchFormMobile .timkiem {
    position: absolute;
    z-index: 999;
}

#searchForm .timkiem .ketquatim,
#searchFormMobile .timkiem .ketquatim {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0;
    max-height: 400px;
    overflow-y: scroll;
}

#searchForm .timkiem .ketquatim .d-flex,
#searchFormMobile .timkiem .ketquatim .d-flex {
    margin-bottom: 5px;
}

#searchForm .timkiem .ketquatim .d-flex .image,
#searchFormMobile .timkiem .ketquatim .d-flex .image {
    border: 1px solid #eee;
    border-radius: 3px;
    margin-right: 5px;
    width: 30%;
}

#searchForm .timkiem .ketquatim .d-flex .info,
#searchFormMobile .timkiem .ketquatim .d-flex .info {
    width: 70%;
}

header .header-logo {
    position: relative;
}

header .header-logo .logo-link {
    display: block;
    margin-right: 15px;
    width: 130px;
    float: left;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: absolute;
    background-color: #fff;
    z-index: 999;
    top: -40px;
    left: 0;
    box-shadow: 1px 1px 3px #ddd;
    padding: 5px 15px;
}

header .header-logo .logo-link img {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-brand .header-brand-img {
    height: 3rem;
}

.header-first {
    background-color: var(--primary-color);
    position: relative;
}

.header-first .header-toggler {
    color: var(--primary-color);
    background: none;
    border: none;
}

.header-first .header-toggler:hover {
    color: var(--primary-color);
}

.close-menu {
    margin-bottom: .5rem;
}

.close-menu #btn-close-menu {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 30px;
    text-align: center;
    background: #174072;
    border: none;
    color: #fff;
}

.header-second {
    background-color: #f3f3f3;
}

.header-second #mainMenu {
    background-color: transparent;
    padding: 0;
}

.header-second #mainMenu > .container {
    padding: 0 !important;
}

.header-second #mainMenu [class*="col-lg-"] {
    line-height: 24px !important;
}

.header-second #mainMenu nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.header-second #mainMenu nav > ul > li {
    border: 0;
    transition: all .3s ease;
    margin-left: 0;
    transition: 0.3s;
    background-color: #f3f3f3;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 0;
}

.header-second #mainMenu nav > ul > li.active a {
    background-color: #0a1c32 !important;
    color: #fff;
}

.header-second #mainMenu nav > ul > li .dropdown-menu {
    display: block;
    transition: all 0.3s ease;
    min-width: 230px;
    -webkit-transform: scale(0);
    transform: scale(0);
    top: calc(100% - .25rem);
    border: none;
    background-color: #fff;
    border-radius: 0;
    left: auto;
    margin: 0;
    padding: 0;
    box-shadow: 0px 0px 18px 0 rgba(0, 0, 0, 0.05);
}

.header-second #mainMenu nav > ul > li .dropdown-menu > li {
    background-color: #fff;
    padding: 0;
}

.header-second #mainMenu nav > ul > li .dropdown-menu > li > a,
.header-second #mainMenu nav > ul > li .dropdown-menu > li > span,
.header-second #mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a {
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    color: var(--primary-color) !important;
    padding: 12px 20px 12px 18px;
    display: block;
    transition: .3s ease;
}

.header-second #mainMenu nav > ul > li .dropdown-menu > li > a:focus, .header-second #mainMenu nav > ul > li .dropdown-menu > li > a:hover, .header-second #mainMenu nav > ul > li .dropdown-menu > li > a:active, .header-second #mainMenu nav > ul > li .dropdown-menu > li > a.hover-active,
.header-second #mainMenu nav > ul > li .dropdown-menu > li > span:focus,
.header-second #mainMenu nav > ul > li .dropdown-menu > li > span:hover,
.header-second #mainMenu nav > ul > li .dropdown-menu > li > span:active,
.header-second #mainMenu nav > ul > li .dropdown-menu > li > span.hover-active,
.header-second #mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a:focus,
.header-second #mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a:hover,
.header-second #mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a:active,
.header-second #mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a.hover-active {
    background-color: var(--primary-color);
    color: #fff !important;
    cursor: pointer;
}

.header-second #mainMenu nav > ul > li .dropdown-menu > li > a a,
.header-second #mainMenu nav > ul > li .dropdown-menu > li > span a,
.header-second #mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a a {
    color: #fff !important;
    text-decoration: none !important;
}

.header-second #mainMenu nav > ul > li .dropdown-menu > li > a > i,
.header-second #mainMenu nav > ul > li .dropdown-menu > li > span > i,
.header-second #mainMenu nav > ul > li .dropdown-menu > li [class*="col-"] > ul > li > a > i {
    margin-left: -4px;
    margin-right: 6px;
    min-width: 14px;
}

.header-second #mainMenu nav > ul > li .dropdown-menu > li.current > a,
.header-second #mainMenu nav > ul > li .dropdown-menu > li.current > span, .header-second #mainMenu nav > ul > li .dropdown-menu > li:hover > a,
.header-second #mainMenu nav > ul > li .dropdown-menu > li:hover > span, .header-second #mainMenu nav > ul > li .dropdown-menu > li:focus > a,
.header-second #mainMenu nav > ul > li .dropdown-menu > li:focus > span, .header-second #mainMenu nav > ul > li .dropdown-menu > li:active > a,
.header-second #mainMenu nav > ul > li .dropdown-menu > li:active > span {
    color: #fff !important;
    text-decoration: none;
}

.header-second #mainMenu nav > ul > li .dropdown-mega-menu {
    list-style: none;
    display: block;
    transition: all 0.3s ease;
    min-width: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    border: none;
    background-color: #eee;
    left: 0;
    right: 0;
    margin: 0;
    box-shadow: 0px 0px 18px 0 rgba(0, 0, 0, 0.05);
    padding: .25rem;
    position: absolute;
    top: calc(100% - .25rem);
    z-index: 1000;
}

.header-second #mainMenu nav > ul > li .dropdown-mega-menu > li {
    height: 100%;
}

.header-second #mainMenu nav > ul > li .dropdown-mega-menu > li > .row {
    height: 100%;
}

.header-second #mainMenu nav > ul > li .dropdown-submenu {
    position: relative;
}

.header-second #mainMenu nav > ul > li .dropdown-submenu:before {
    line-height: 40px;
    content: "\f105";
    font-family: fontawesome;
    font-size: 12px;
    opacity: 0.6;
    position: absolute;
    right: 18px;
    color: #fff;
    transition: .3s ease;
}

.header-second #mainMenu nav > ul > li .dropdown-submenu > .dropdown-menu {
    margin-left: -6px;
    left: 100%;
    top: -1px;
}

.header-second #mainMenu nav > ul > li .dropdown-submenu > .dropdown-menu.menu-invert {
    right: 100%;
    left: auto;
}

.header-second #mainMenu nav > ul > li .dropdown-submenu:hover:before {
    right: 14px;
}

.header-second #mainMenu nav > ul > li .dropdown-submenu:hover > ul {
    min-width: 230px;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.header-second #mainMenu nav > ul > li:hover > ul {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.header-second #mainMenu nav > ul > li:last-child {
    margin-right: 0;
}

.header-second #mainMenu nav > ul > li > a {
    display: block;
    position: relative;
    padding: 11px 9px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 5px;
    color: var(--primary-color);
    text-transform: uppercase;
    transition: all .3s ease;
    line-height: normal;
}

.header-second #mainMenu nav > ul > li > a > i {
    margin-left: 2px;
    margin-right: 0;
    min-width: 14px;
    font-size: 14px;
}

.header-second #mainMenu nav > ul > li > a:after, .header-second #mainMenu nav > ul > li > a:before {
    transition: all .3s ease;
}

.header-second #mainMenu nav > ul > li.hover-active > a,
.header-second #mainMenu nav > ul > li.hover-active > span, .header-second #mainMenu nav > ul > li.current > a,
.header-second #mainMenu nav > ul > li.current > span, .header-second #mainMenu nav > ul > li:hover > a,
.header-second #mainMenu nav > ul > li:hover > span, .header-second #mainMenu nav > ul > li:focus > a,
.header-second #mainMenu nav > ul > li:focus > span {
    text-decoration: none;
}

.header-second #mainMenu nav > ul > li.hover-active > a, .header-second #mainMenu nav > ul > li.current > a, .header-second #mainMenu nav > ul > li:hover > a, .header-second #mainMenu nav > ul > li:focus > a {
    background-color: var(--primary-hover);
    color: #fff;
}

.mega-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 550px;
    overflow-y: auto;
}

@media only screen and (max-width: 768px) {
    .mega-menu {
        overflow-y: unset;
    }
}

.mega-menu li {
    position: relative;
}

.mega-menu li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.mega-menu li.active a {
    background-color: #eee;
    border-left: 3px solid var(--primary-color);
}

.mega-menu li.active .mega-menu-product {
    display: block;
}

.mega-menu li a {
    display: block;
    background-color: #fff;
    color: #333;
    padding: .5rem;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.mega-menu li a:hover {
    background-color: #eee;
    border-left: 3px solid var(--primary-color);
}

.mega-menu li .btn-show-product {
    display: none;
    position: absolute;
    right: -10px;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    line-height: 17px;
    text-align: center;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 7px;
    color: #fff;
    z-index: 9;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
}

.mega-menu li .btn-show-product:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: -5px;
    top: calc(50% - 15px);
    z-index: 99;
}

.mega-menu li .btn-show-product:hover, .mega-menu li .btn-show-product:focus {
    outline: none !important;
}

@media only screen and (max-width: 768px) {
    .mega-menu li .btn-show-product {
        display: block;
    }
}

.mega-menu li .btn-show-product i.fa {
    vertical-align: middle;
}

.mega-menu-product {
    position: relative;
    background-color: #eee;
    padding: 0 1rem;
    height: 550px;
    overflow-y: auto;
}

@media only screen and (max-width: 768px) {
    .mega-menu-product {
        height: 100%;
    }
}

.mega-menu-product > .row {
    position: absolute;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.mega-menu-product > .row.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.social-icons ul {
    padding: 0;
}

.text-center.social-icons ul {
    display: inline-block;
}

.social-icons li {
    float: left;
    list-style: none;
}

.social-icons li a {
    float: left;
    height: 32px;
    width: 32px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    margin: 0 4px 4px 0;
    border-radius: 4px;
    border: 0;
    background: transparent;
    color: #333;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.social-icons.social-icons-colored a,
.social-icons.social-icons-colored-hover a:hover {
    color: #fff;
    border: 0;
}

.social-icons.social-icons-colored .social-rss a,
.social-icons.social-icons-colored-hover .social-rss a:hover {
    background-color: #faa33d;
}

.social-icons.social-icons-colored .social-facebook a,
.social-icons.social-icons-colored-hover .social-facebook a:hover {
    background-color: #5d82d1;
}

.social-icons.social-icons-colored .social-twitter a,
.social-icons.social-icons-colored-hover .social-twitter a:hover {
    background-color: #40bff5;
}

.social-icons.social-icons-colored .social-vimeo a,
.social-icons.social-icons-colored-hover .social-vimeo a:hover {
    background-color: #35c6ea;
}

.social-icons.social-icons-colored .social-myspace a,
.social-icons.social-icons-colored-hover .social-myspace a:hover {
    background-color: #008dde;
}

.social-icons.social-icons-colored .social-youtube a,
.social-icons.social-icons-colored-hover .social-youtube a:hover {
    background-color: #ef4e41;
}

.social-icons.social-icons-colored .social-instagram a,
.social-icons.social-icons-colored-hover .social-instagram a:hover {
    background-color: #548bb6;
}

.social-icons.social-icons-colored .social-gplus a,
.social-icons.social-icons-colored-hover .social-gplus a:hover {
    background-color: #d68400;
}

.social-icons.social-icons-colored .social-stumbleupon a,
.social-icons.social-icons-colored-hover .social-stumbleupon a:hover {
    background-color: #ff5c30;
}

.social-icons.social-icons-colored .social-lastfm a,
.social-icons.social-icons-colored-hover .social-lastfm a:hover {
    background-color: #f34320;
}

.social-icons.social-icons-colored .social-pinterest a,
.social-icons.social-icons-colored-hover .social-pinterest a:hover {
    background-color: #e13138;
}

.social-icons.social-icons-colored .social-google a,
.social-icons.social-icons-colored-hover .social-google a:hover {
    background-color: #eb5e4c;
}

.social-icons.social-icons-colored .social-evernote a,
.social-icons.social-icons-colored-hover .social-evernote a:hover {
    background-color: #9acf4f;
}

.social-icons.social-icons-colored .social-dribbble a,
.social-icons.social-icons-colored-hover .social-dribbble a:hover {
    background-color: #f7659c;
}

.social-icons.social-icons-colored .social-skype a,
.social-icons.social-icons-colored-hover .social-skype a:hover {
    background-color: #13c1f3;
}

.social-icons.social-icons-colored .social-forrst a,
.social-icons.social-icons-colored-hover .social-forrst a:hover {
    background-color: #45ad76;
}

.social-icons.social-icons-colored .social-linkedin a,
.social-icons.social-icons-colored-hover .social-linkedin a:hover {
    background-color: #238cc8;
}

.social-icons.social-icons-colored .social-wordpress a,
.social-icons.social-icons-colored-hover .social-wordpress a:hover {
    background-color: #2592c3;
}

.social-icons.social-icons-colored .social-grooveshark a,
.social-icons.social-icons-colored-hover .social-grooveshark a:hover {
    background-color: #ffb21d;
}

.social-icons.social-icons-colored .social-delicious a,
.social-icons.social-icons-colored-hover .social-delicious a:hover {
    background-color: #377bda;
}

.social-icons.social-icons-colored .social-behance a,
.social-icons.social-icons-colored-hover .social-behance a:hover {
    background-color: #1879fd;
}

.social-icons.social-icons-colored .social-dropbox a,
.social-icons.social-icons-colored-hover .social-dropbox a:hover {
    background-color: #17a3eb;
}

.social-icons.social-icons-colored .social-soundcloud a,
.social-icons.social-icons-colored-hover .social-soundcloud a:hover {
    background-color: #ff7e30;
}

.social-icons.social-icons-colored .social-deviantart a,
.social-icons.social-icons-colored-hover .social-deviantart a:hover {
    background-color: #6a8a7b;
}

.social-icons.social-icons-colored .social-yahoo a,
.social-icons.social-icons-colored-hover .social-yahoo a:hover {
    background-color: #ab47ac;
}

.social-icons.social-icons-colored .social-flickr a,
.social-icons.social-icons-colored-hover .social-flickr a:hover {
    background-color: #ff48a3;
}

.social-icons.social-icons-colored .social-digg a,
.social-icons.social-icons-colored-hover .social-digg a:hover {
    background-color: #75788d;
}

.social-icons.social-icons-colored .social-blogger a,
.social-icons.social-icons-colored-hover .social-blogger a:hover {
    background-color: #ff9233;
}

.social-icons.social-icons-colored .social-tumblr a,
.social-icons.social-icons-colored-hover .social-tumblr a:hover {
    background-color: #426d9b;
}

.social-icons.social-icons-colored .social-quora a,
.social-icons.social-icons-colored-hover .social-quora a:hover {
    background-color: #ea3d23;
}

.social-icons.social-icons-colored .social-github a,
.social-icons.social-icons-colored-hover .social-github a:hover {
    background-color: #3f91cb;
}

.social-icons.social-icons-colored .social-amazon a,
.social-icons.social-icons-colored-hover .social-amazon a:hover {
    background-color: #ff8e2e;
}

.social-icons.social-icons-colored .social-xing a,
.social-icons.social-icons-colored-hover .social-xing a:hover {
    background-color: #1a8e8c;
}

.social-icons.social-icons-colored .social-wikipedia a,
.social-icons.social-icons-colored-hover .social-wikipedia a:hover {
    background-color: #b3b5b8;
}

.social-icons.social-icons-border li a {
    border: 1px solid #d7d7d7;
    background: transparent;
    color: #333;
}

.social-icons.social-icons-dark li a {
    background: #888;
    color: #fff;
}

.social-icons.social-icons-light li a {
    background: #fff;
    color: #333;
    border: 1px solid #eee;
}

.social-icons.social-icons-rounded li a {
    border-radius: 50%;
}

.social-icons.social-icons-medium li a {
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-size: 18px;
}

.social-icons.social-icons-large li a {
    height: 48px;
    width: 48px;
    line-height: 48px;
    font-size: 18px;
}

.social-icons:not(.social-icons-colored):not(.social-icons-colored-hover) li a:hover {
    background-color: #eee;
}

.social-icons li:hover i {
    -webkit-animation: toTopFromBottom 0.3s forwards;
    -moz-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards;
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@-moz-keyframes toTopFromBottom {
    49% {
        -moz-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

#topbar {
    position: relative;
    z-index: 200;
    background-color: var(--primary-color);
}

#topbar .top-menu {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    float: left;
}

#topbar .top-menu > li {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

#topbar .top-menu > li > a {
    font-size: 12px;
    font-weight: 700;
    display: block;
    color: #fff;
    height: 30px;
    margin-right: 16px;
    text-decoration: none;
}

#topbar .top-links {
    position: relative;
}

#topbar .social-icons {
    float: right;
    height: 100%;
    overflow: hidden;
}

#topbar .social-icons li,
#topbar .social-icons li a {
    float: left;
    list-style: outside none none;
}

#topbar .social-icons li a {
    border-radius: 0px;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 35px;
    overflow: hidden;
    margin: 0;
    color: #fff;
}

div.footer {
    background-color: #f3f3f3;
}

div.footer p.sub-title {
    font-weight: bold;
}

div.footer i {
    color: #111;
}

div.footer h5, div.footer h6, div.footer p, div.footer li, div.footer a {
    color: #111 !important;
}

div.footer h5 {
    text-transform: uppercase;
    color: #111 !important;
}

div.footer form input, div.footer form textarea {
    background-color: #ddd;
    border-color: #ddd;
    border-radius: 0;
    height: 40px;
}

div.footer form input::placeholder, div.footer form textarea::placeholder {
    color: #555;
}

div.footer form .btn-send {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border: none;
    padding: 5px 25px;
    height: 40px;
    color: #fff;
    cursor: pointer;
}

div.footer form .btn-send i {
    color: #fff;
}

div.footer form .btn-send:hover {
    background-color: var(--primary-hover);
}

#scrollUp {
    display: none;
    background-color: var(--primary-color);
    border-radius: 4px;
    position: fixed;
    bottom: 80px;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    right: 15px;
    text-align: center;
    width: 40px;
    z-index: 9;
}

.website-name {
    color: #111;
    font-size: 20px;
}

footer {
    background: #ddd !important;
}

footer .copyright {
    color: #111;
}

.tool {
    position: fixed;
    top: 30%;
    right: 0;
    width: 40px;
    text-align: center;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border-radius: 10px 0 0 10px;
    opacity: 1;
}

.tool ul {
    margin-bottom: 0;
}

.tool ul li {
    position: relative;
    z-index: 999;
}

.tool ul li:first-child a {
    border-top-left-radius: 10px;
}

.tool ul li:last-child a {
    border-bottom-left-radius: 10px;
}

.tool ul li a.hover {
    background-color: var(--primary-color);
    padding: 7px;
    display: block;
}

.tool ul li a.hover i {
    font-size: 25px;
    color: #fff;
}

.tool ul li:hover .hover {
    background-color: var(--primary-hover);;
}

.tool ul li:hover .show {
    right: 35px;
}

.tool ul li .show {
    position: absolute;
    top: 0;
    width: 200px;
    height: 35px;
    right: -200px;
    background-color: var(--primary-color);
    transition: right 0.5s;
    line-height: 35px;
    z-index: -1;
}

.tool ul li .show a {
    display: block;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

.idex-alo-phone {
    right: -119px;
    top: auto;
    bottom: 440px;
    zoom: 0.8;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-img-circle {
    background-color: #e9393b !important;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-circle {
    border-color: #e9393b !important;
    opacity: 0.5;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-circle-fill {
    background-color: #e9393b !important;
    opacity: 0.75 !important;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-img-circle, .idex-alo-phone.idex-alo-green:hover .idex-alo-ph-img-circle {
    background-color: #81d742 !important;
}

.idex-alo-phone.idex-alo-hover .idex-alo-ph-circle,
.idex-alo-phone:hover .idex-alo-ph-circle {
    border-color: #81d742 !important;
    opacity: 0.5;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-circle-fill,
.idex-alo-phone.idex-alo-green:hover .idex-alo-ph-circle-fill {
    background-color: #81d742 !important;
    opacity: 0.75 !important;
}

.idex-alo-phone {
    position: fixed;
    visibility: hidden;
    background-color: transparent;
    width: 200px;
    cursor: pointer;
    z-index: 200 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility .5s;
    -moz-transition: visibility .5s;
    -o-transition: visibility .5s;
    transition: visibility .5s;
    left: 5px;
    bottom: 0;
}

.idex-alo-phone.idex-alo-show {
    visibility: visible;
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

.idex-alo-phone.idex-alo-static {
    opacity: 0.6;
}

.idex-alo-phone.idex-alo-hover, .idex-alo-phone:hover {
    opacity: 1;
}

.idex-alo-ph-circle {
    width: 160px;
    height: 160px;
    bottom: -50px;
    right: 44%;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    border: 2px solid #bfebfc 9;
    opacity: .1;
    -webkit-animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    animation: idex-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.idex-alo-phone.idex-alo-active .idex-alo-ph-circle {
    -webkit-animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
    animation: idex-alo-circle-anim 1.1s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-static .idex-alo-ph-circle {
    -webkit-animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
    animation: idex-alo-circle-anim 2.2s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-hover .idex-alo-ph-circle, .idex-alo-phone:hover .idex-alo-ph-circle {
    border-color: #00aff2;
    opacity: 0.5;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-circle, .idex-alo-phone.idex-alo-green:hover .idex-alo-ph-circle {
    border-color: #75eb50;
    border-color: #baf5a7 9;
    opacity: 0.5;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-circle {
    border-color: #00aff2;
    border-color: #bfebfc 9;
    opacity: 0.5;
}

.idex-alo-ph-circle-fill {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: 60%;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .1;
    -webkit-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.idex-alo-phone.idex-alo-active .idex-alo-ph-circle-fill {
    -webkit-animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
    animation: idex-alo-circle-fill-anim 1.7s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-static .idex-alo-ph-circle-fill {
    -webkit-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    animation: idex-alo-circle-fill-anim 2.3s infinite ease-in-out !important;
    opacity: 0 !important;
}

.idex-alo-phone.idex-alo-hover .idex-alo-ph-circle-fill, .idex-alo-phone:hover .idex-alo-ph-circle-fill {
    background-color: rgba(0, 175, 242, 0.5);
    background-color: #00aff2 9;
    opacity: 0.75 !important;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-circle-fill, .idex-alo-phone.idex-alo-green:hover .idex-alo-ph-circle-fill {
    background-color: rgba(117, 235, 80, 0.5);
    background-color: #baf5a7 9;
    opacity: 0.75 !important;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-circle-fill {
    background-color: rgba(0, 175, 242, 0.5);
    background-color: #a6e3fa 9;
    opacity: 0.75 !important;
}

.idex-alo-ph-img-circle {
    z-index: 9;
    width: 60px;
    height: 60px;
    bottom: 0px;
    right: 70%;
    position: absolute;
    background: rgba(30, 30, 30, 0.1) url(../images/phone.png) no-repeat center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .7;
    -webkit-animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    animation: idex-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.idex-alo-phone.idex-alo-active .idex-alo-ph-img-circle {
    -webkit-animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
    animation: idex-alo-circle-img-anim 1s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-static .idex-alo-ph-img-circle {
    -webkit-animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
    -moz-animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
    -ms-animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
    -o-animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
    animation: idex-alo-circle-img-anim 0s infinite ease-in-out !important;
}

.idex-alo-phone.idex-alo-hover .idex-alo-ph-img-circle, .idex-alo-phone:hover .idex-alo-ph-img-circle {
    background-color: #00aff2;
}

.idex-alo-phone.idex-alo-green.idex-alo-hover .idex-alo-ph-img-circle, .idex-alo-phone.idex-alo-green:hover .idex-alo-ph-img-circle {
    background-color: #75eb50;
    background-color: #75eb50;
}

.idex-alo-phone.idex-alo-green .idex-alo-ph-img-circle {
    background-color: #00aff2;
    background-color: #00aff2;
}

a.hotline-mb {
    display: none;
}

.phone {
    position: relative;
}

.phone-hotline {
    background: #9b2022;
    padding: 13px 30px 13px 70px;
    text-align: center;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0px;
    border-radius: 100px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.phone-hover {
    width: 260px;
    opacity: 0.9;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.phone-hotline a {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -moz-transition: all 1s ease;
}

.phone-hotline a:hover {
    color: #fff;
    text-decoration: none;
}

.counter-section {
    padding: 1rem 0;
}

.counter-section .counter-item {
    padding: .25rem;
    text-align: center;
    z-index: 3;
}

@media only screen and (max-width: 768px) {
    .counter-section .counter-item {
        border-radius: .5rem;
        border: 1px solid #eee;
        margin: 1rem .1rem 0 .1rem;
    }
}

.counter-section .counter-item .counter-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: transparent;
    border-radius: 50%;
    font-size: 25px;
    color: var(--primary-color);
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .counter-section .counter-item .counter-icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
        background-color: var(--primary-color);
        color: #fff;
        font-size: 15px;
        margin: -1.25rem auto 0 auto;
    }
}

.counter-section .counter-item .counter span {
    font-size: 50px;
    color: var(--primary-color);
}

@media only screen and (max-width: 768px) {
    .counter-section .counter-item .counter span {
        font-size: 20px;
    }
}

.counter-section .counter-item p {
    font-weight: bold;
    color: var(--primary-color);
}

@media only screen and (max-width: 768px) {
    .counter-section .counter-item p {
        font-size: 9px;
        text-align: center;
    }
}

.icon-item {
    display: flex;
    align-items: center;
    padding: .5rem 2rem;
}

.icon-item.middle {
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
}

.icon-item-img {
    width: 30%;
}

.icon-item-text {
    width: 70%;
}

.icon-item-text p:first-child {
    font-size: 30px;
    margin-bottom: 0;
    color: #000;
}

.icon-item-text p {
    color: #a0a0a0;
}

.accessories-item {
    padding: .5rem;
    border-radius: .5rem;
    box-shadow: 2px 2px 9px #eee;
    margin-bottom: .5rem;
}

.accessories-item:hover .accessories-item-image img {
    width: 100%;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.accessories-item-image {
    border-radius: .25rem;
    overflow: hidden;
}

.accessories-item-image img {
    width: 100%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.accessories-item-info {
    text-align: center;
    padding: .5rem 0;
}

.accessories-item-info .accessories-name {
    font-weight: bold;
    color: #000;
    margin-bottom: 0;
    text-transform: uppercase;
    height: 40px;
    overflow: hidden;
}

.accessories-item-info .accessories-price {
    color: #c70000;
    font-weight: bold;
    margin-bottom: 0;
    text-transform: uppercase;
}

.accessories-detail-img {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .accessories-detail-img {
        width: 100%;
    }
}

.section-grey {
    background-color: #f3f3f3;
}

.ngangon {
    height: 82px;
    overflow: hidden;
}

.section-image {
    position: relative;
    background: url("../img/HinhMatTienBannerWeb.jpg") no-repeat fixed;
    background-size: cover;
}

.header-section {
    padding: 15px 0;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.header-section h1 {
    margin: 0;
    color: var(--primary-color);
    text-align: center;
    font-size: 23px;
}

.header-section h2 {
    font-size: 24px;
}

.header-section .readmore {
    position: absolute;
    right: 0;
    top: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    z-index: 9;
}

.header-detail {
    padding: 15px 0;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.header-detail h3 {
    margin: 0;
    color: #000;
    text-align: left;
}

.list-vehical {
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.list-vehical li {
    display: inline-block;
    margin: 0 0.25rem .25rem .25rem;
}

@media only screen and (max-width: 768px) {
    .list-vehical li {
        margin: 0 0.25rem .75rem .25rem;
    }
}

.list-vehical li a {
    position: relative;
    display: block;
    padding: .25rem 1rem;
    background: #ddd;
    color: var(--primary-color);
    text-transform: capitalize;
    font-size: 12px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .list-vehical li a {
        border-radius: 30px;
        padding: .25rem .5rem;
    }
}

.list-vehical li a:before {
    content: '';
    top: 0;
    bottom: 0;
    right: 100%;
    position: absolute;
    border-bottom: 26px solid #ddd;
    border-left: 10px solid transparent;
}

@media only screen and (max-width: 768px) {
    .list-vehical li a:before {
        display: none;
    }
}

.list-vehical li a:after {
    content: '';
    top: 0;
    bottom: 0;
    left: 100%;
    position: absolute;
    border-bottom: 26px solid #ddd;
    border-right: 10px solid transparent;
}

@media only screen and (max-width: 768px) {
    .list-vehical li a:after {
        display: none;
    }
}

.list-vehical li a:hover, .list-vehical li a.active {
    background-color: var(--primary-color);
    color: #fff;
    z-index: 9;
}

.list-vehical li a:hover:before, .list-vehical li a.active:before {
    border-bottom: 26px solid var(--primary-color);
    z-index: 9;
}

.list-vehical li a:hover:after, .list-vehical li a.active:after {
    border-bottom: 26px solid var(--primary-color);
    z-index: 9;
}

.list-module {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.list-module li {
    margin: 3px;
    display: inline-block;
}

.list-module li a {
    display: block;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.list-module li a:hover {
    background: var(--primary-color);
    color: #fff;
}

.list-module li a.active {
    background-color: var(--primary-color);
    color: #fff;
}

.car-preview {
    position: relative;
}

.car-preview h1 {
    font-size: 65px;
    width: 90%;
    line-height: 65px;
    color: #141414;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 1.5rem;
}

@media only screen and (max-width: 768px) {
    .car-preview h1 {
        width: 100%;
        font-size: 25px;
        line-height: 30px;
    }
}

.car-preview-content {
    display: flex;
}

@media only screen and (max-width: 768px) {
    .car-preview-content {
        flex-direction: column;
    }
}

.car-preview-content .basic {
    text-transform: uppercase;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .car-preview-content .basic {
        position: static;
    }
}

.car-preview-content .basic .banner-price {
    font-size: 12px;
}

.car-preview-content .basic .banner-price span {
    color: var(--primary-color);
    font-size: 34px;
}

.car-preview-content .car-preview-image {
    width: 70%;
    padding-top: 4rem;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .car-preview-content .car-preview-image {
        padding-top: 0;
        margin: 2rem auto 0 auto;
    }
}

.car-preview-content .car-preview-image img {
    width: 100%;
}

.car-preview-content .car-preview-image .car-color-name {
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin-top: .75rem;
}

.car-preview-content .car-preview-color {
    display: flex;
    flex-direction: column;
    width: 80px;
    z-index: 5;
}

@media only screen and (max-width: 768px) {
    .car-preview-content .car-preview-color {
        position: static;
        width: 100%;
        flex-direction: row;
    }
}

.car-preview-content .car-preview-color .color-item {
    margin: .25rem 0;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: .5rem;
    transition: .5s ease;
    overflow: hidden;
}

.car-preview-content .car-preview-color .color-item:hover {
    border: 2px solid var(--primary-color);
}

.product-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 5px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.product-item:hover {
    -webkit-box-shadow: 1px 1px 5px #999;
    -moz-box-shadow: 1px 1px 5px #999;
    box-shadow: 1px 1px 5px #999;
}

.product-item:hover .border-effect .border {
    width: 109%;
}

.product-item .border-effect {
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 100%;
    height: 5px;
}

.product-item .border-effect .border {
    display: block;
    background-color: var(--primary-color);
    width: 0;
    height: 5px;
    -webkit-transition: width .6s ease-in-out;
    -moz-transition: width .6s ease-in-out;
    -ms-transition: width .6s ease-in-out;
    -o-transition: width .6s ease-in-out;
    transition: width .6s ease-in-out;
}

.product-item .badge {
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    height: 42px;
    right: -10px;
    line-height: 36px;
    position: absolute;
    text-align: center;
    top: -10px;
    width: 42px;
    z-index: 5;
    background-color: #c70000;
}

.product-item .product-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.product-item .product-image:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.product-item .product-image .badge-hot {
    position: absolute;
    top: 6px;
    left: -26px;
    color: #fff;
    font-weight: bold;
    background-color: #E9B71E;
    padding: .15rem 2rem;
    z-index: 5;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.product-item .product-image img {
    border-radius: 5px;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.product-item .product-description {
    width: 100%;
    text-align: center;
    padding-top: 5px;
}

.product-item .product-description .product-title {
    color: #666;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 0;
    height: 40px;
    overflow: hidden;
}

.product-item .product-description .product-title:hover {
    color: var(--primary-color);
}

.product-item .product-description .price {
    color: #c70000;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
}

.product-item .product-description .description {
    text-align: left;
    padding: .5rem 1rem;
    min-height: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-item .product-description .description {
        min-height: 120px;
    }
}

@media only screen and (max-width: 768px) {
    .product-item .product-description .description {
        min-height: auto;
    }
}

.product-item .product-description .description ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-item .product-description .description ul li {
    color: #666;
    text-transform: capitalize;
    font-size: 13px;
    line-height: 18px;
}

.product-item .product-description .description ul li:before {
    content: '\f0a9';
    font-family: fontawesome;
    margin-right: 5px;
}

.product-item .product-description .read-more {
    float: right;
}

.info-item {
    padding-bottom: .5rem;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05) 99%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.info-item.active {
    background: #fff;
}

.info-item p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 0;
    height: 65px;
    overflow: hidden;
}

.info-item p.active {
    height: auto;
    -webkit-line-clamp: 100;
}

.info-readmore {
    display: block;
    width: 25px;
    height: 25px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color);
    margin: -10px auto 0 auto;
    box-shadow: 1px 1px 6px #ddd;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.info-readmore.active {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.table-thongso p {
    margin: 0;
}

.blog-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    background: #fff;
    margin-bottom: 15px;
    position: relative;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.blog-item:hover {
    -webkit-box-shadow: 1px 1px 5px #999;
    -moz-box-shadow: 1px 1px 5px #999;
    box-shadow: 1px 1px 5px #999;
}

.blog-item .blog-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-item .blog-description {
    width: 100%;
    padding: 15px;
}

.blog-item .blog-description .blog-title {
    display: block;
    height: 58px;
    margin: 0;
    overflow: hidden;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #000;
}

.blog-item .blog-description .blog-title:hover {
    color: var(--primary-color);
}

.blog-item .blog-description .ngangon {
    text-align: justify;
    color: #777;
}

.blog-item .blog-description .blog-short {
    color: #777;
}

.blog-item .blog-description .blog-short ul {
    padding-left: .75rem;
    margin: 0;
}

.blog-item .blog-description .date {
    color: #999;
    text-align: right;
}

.blog-item-2 {
    display: flex;
    margin-bottom: .75rem;
    border-bottom: 1px solid #eee;
}

.blog-item-2 .blog-image {
    position: relative;
    width: 30%;
}

.blog-item-2 .blog-image img {
    width: 100%;
}

.blog-item-2 .blog-info {
    width: 70%;
    padding-left: .5rem;
}

.blog-item-2 .blog-info .blog-title {
    display: block;
    height: 38px;
    margin: 0;
    margin-bottom: 3px;
    overflow: hidden;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.3;
    color: #000;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-item-2 .blog-info .blog-title:hover {
    color: var(--primary-color);
}

.blog-item-2 .blog-info .ngangon {
    height: 58px;
    font-size: 13px;
    color: #222;
    opacity: .7;
}

.blog-item-2 .blog-info .date {
    color: #333;
    font-size: 13px;
    text-align: right;
}

.simple-blog-title {
    color: #000;
    font-weight: 700;
    display: block;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.simple-blog-title:hover {
    color: var(--primary-color);
}

.simple-blog-title i {
    color: var(--primary-color);
    font-size: 7px;
}

.lmore {
    display: none;
}

.guest-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    margin-bottom: 15px;
    position: relative;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.guest-item:hover {
    -webkit-box-shadow: 1px 1px 5px #999;
    -moz-box-shadow: 1px 1px 5px #999;
    box-shadow: 1px 1px 5px #999;
}

.guest-item .guest-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.guest-item .guest-image:hover .ngangon {
    bottom: 0;
}

.guest-item .guest-image .ngangon {
    position: absolute;
    bottom: -50px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    height: 50px;
    font-weight: bold;
    padding: 0 15px;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.guest-item .guest-title {
    height: 43px;
    margin: 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin: 5px 0;
    overflow: hidden;
}

.guest-item .guest-title strong {
    color: #000;
    font-weight: bold;
}

.guest-item .guest-title strong:hover {
    color: var(--primary-color);
}

.limit {
    height: 80px;
    overflow: hidden;
}

.portfolio-item {
    position: relative;
    margin-bottom: 15px;
}

.portfolio-item .portfolio-image {
    position: relative;
    width: 100%;
    height: 143px;
    line-height: 150px;
    background: #eee;
    overflow: hidden;
}

.portfolio-item .portfolio-image:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolio-item .portfolio-image a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.portfolio-item .portfolio-image img {
    width: 100%;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.portfolio-item .portfolio-description {
    position: absolute;
    left: 0;
    top: 35%;
    text-align: center;
    width: 100%;
}

.portfolio-item .portfolio-description a {
    display: block;
    background: #c70000;
    width: 60px;
    height: 40px;
    padding: 10px;
    margin: 0 auto;
    border-radius: 10px;
    color: #fff;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.portfolio-item .portfolio-description a:hover {
    background: #ff1515;
    color: #fff;
}

.single-post .title {
    padding: 15px 0;
    border-bottom: 1px solid #000;
    color: #000;
}

.img-preview {
    border: 1px solid #eee;
    border-radius: 5px;
}

.img-preview img {
    width: 100%;
    cursor: zoom-in;
}

.img-nav {
    margin-top: 15px;
}

.img-nav img {
    width: 100%;
    cursor: pointer;
}

.list-product .list-title {
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.list-product .list-title h4 {
    text-transform: uppercase;
}

.product p {
    margin: 0;
}

.product .title {
    color: #222;
    font-size: 22px;
}

.product .price {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

.product .old-price {
    color: #c70000;
    font-size: 22px;
    text-decoration-line: line-through;
    margin-left: 5px;
}

.product .discount {
    color: #A1CC56;
    font-size: 20px;
}

.owl-main .owl-nav {
    width: 100%;
}

.owl-main .owl-nav button.owl-prev {
    position: absolute;
    top: calc(50% - 25px);
    left: 0;
    opacity: .7;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--primary-color);
    font-size: 20px;
    text-align: center;
    line-height: 50px;
}

.owl-main .owl-nav button.owl-prev:hover {
    background-color: #2870c7;
}

.owl-main .owl-nav button.owl-next {
    position: absolute;
    top: calc(50% - 25px);
    right: 0;
    opacity: .7;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--primary-color);
    font-size: 20px;
    text-align: center;
    line-height: 50px;
}

.owl-main .owl-nav button.owl-next:hover {
    background-color: #2870c7;
}

.owl-main .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6) 0%, rgba(250, 250, 250, 0.1) 100%);
}

.owl-main .owl-dots .owl-dot.active span {
    background: transparent;
    border: 2px solid var(--primary-color);
}

.owl-main .owl-dots .owl-dot span {
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 10px;
    margin: 5px 7px;
    background: var(--primary-color);
    border: 2px solid transparent;
    width: 10px;
}

.left-module .tag {
    margin: 0.1rem;
}

.mega-product {
    margin-bottom: 15px;
}

.mega-product .mega-product-image {
    position: relative;
    width: 100%;
    height: 100px;
    line-height: 100px;
    overflow: hidden;
}

.mega-product .mega-product-image img {
    width: 100%;
}

.mega-product .mega-product-description {
    padding: 15px 0;
}

.mega-product .mega-product-description .title {
    margin: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    color: #424242;
    font-family: Arial;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: bold;
}

.mega-product .mega-product-description ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mega-product .mega-product-description ul li {
    color: #666;
    text-transform: capitalize;
    font-size: 13px;
    line-height: 18px;
    white-space: nowrap;
}

.mega-product .mega-product-description ul li:before {
    content: '\f0a9';
    font-family: fontawesome;
    margin-right: 5px;
}

.scrollspy {
    background-color: var(--primary-color);
    z-index: 9 !important;
}

.scrollspy .scrollspy-menu {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    margin: 0;
    width: 100%;
}

.scrollspy .scrollspy-menu li {
    width: 100%;
}

.scrollspy .scrollspy-menu li.active {
    border-bottom: 3px solid #fff;
    background-color: var(--primary-hover);
}

.scrollspy .scrollspy-menu li a {
    display: block;
    font-size: 14px;
}

.scrollspy .scrollspy-menu li .icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0;
}

.scrollspy .scrollspy-menu li .icon img {
    margin: 0 auto;
}

.scrollspy .scrollspy-menu li .icon span {
    font-weight: bold;
    color: #fff;
}

.other-product {
    display: flex;
    padding: 15px 0;
}

.other-product .other-image {
    width: 55%;
}

.other-product .other-image img {
    width: 100%;
}

.other-product .other-info {
    width: 45%;
    display: flex;
    align-items: center;
}

.other-product .other-info p, .other-product .other-info h5 {
    margin: 0;
    font-size: 13px;
}

.other-product .other-info a {
    color: #000;
}

.other-product .other-info a:hover {
    color: var(--primary-color);
}

.other-product .other-info .other-name {
    border-left: 4px solid var(--primary-color);
    padding-left: 5px;
}

.product-detail .header {
    border-bottom: 1px solid;
    width: 70%;
}

.product-detail .header h4 {
    color: #c70000;
    margin: 0;
}

.product-detail .detail {
    padding: 5px 0;
}

.product-detail .detail .price {
    position: relative;
    width: 200px;
}

.product-detail .detail .price sup {
    font-size: 14px;
    margin-left: 5px;
}

.product-detail .description ul {
    padding-left: 15px;
}

.product-detail .img .color-name {
    border-bottom: 2px solid #000;
    width: 100%;
    text-align: right;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-detail .btn-compair {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.product-detail .btn-compair:hover {
    background-color: #000;
    color: #fff;
}

.product-detail .btn-compair:focus {
    background-color: #000;
    color: #fff;
}

.product-detail .pick-color {
    list-style: none;
}

.product-detail .pick-color li {
    display: inline-block;
    border: 3px solid #fff;
}

.product-detail .pick-color li.active {
    border: 3px solid #c70000;
}

.product-detail .pick-color li a {
    display: block;
}

.product-detail .pick-color li a .color {
    width: 50px;
    height: 50px;
}

.product-detail .pick-color li a .color.bac {
    background-color: #eee;
}

.product-detail .pick-color li a .color.den {
    background-color: #000;
}

.product-detail .pick-color li a .color.nau {
    background-color: brown;
}

.product-detail .pick-color li a .color.trang {
    background-color: #fff;
    border: 3px solid #000;
}

.product-detail .pick-color li a .color.xam {
    background-color: #999;
}

.see-more {
    margin-bottom: 2.5em;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: relative;
    display: inline-block;
    margin-top: 3.5em;
}

.see-more:hover span {
    background: var(--primary-color);
    color: #fff;
}

.see-more:before {
    left: 0;
    background: -webkit-gradient(linear, right top, left top, from(#ccc), color-stop(#ccc), to(#fff));
    background: -webkit-linear-gradient(right, #ccc, #ccc, #fff);
    background: -o-linear-gradient(right, #ccc, #ccc, #fff);
    background: linear-gradient(to left, #ccc, #ccc, #fff);
}

.see-more span {
    position: absolute;
    left: 50%;
    margin-left: -50px;
    min-width: 100px;
    background-repeat: no-repeat;
    background-position: 95% center;
    background-color: #fff;
    border-radius: 25px;
    top: 50%;
    font-weight: bold;
    padding: 5px 15px;
    padding-left: 15px;
    text-align: center;
    margin-top: -18px;
    z-index: 2;
    cursor: pointer;
    border: 1px solid #c70000;
    color: #c70000;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.customer {
    padding: 3rem 0;
}

.customer .comment {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 768px) {
    .customer .comment {
        flex-direction: column;
        align-items: center;
    }
}

.customer .comment-image {
    width: 150px;
    height: 150px;
    border: 3px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 10px #ddd;
}

.customer .comment-image img {
    width: 100%;
}

.customer .comment-content {
    width: 70%;
    position: relative;
    padding: 2.5rem 0.75rem 0.75rem 0.75rem;
    background-color: var(--primary-color);
    border-radius: .5rem;
    color: #fff;
    text-indent: 40px;
}

@media only screen and (max-width: 768px) {
    .customer .comment-content {
        width: 100%;
        margin-top: .75rem;
    }
}

.customer .comment-content:before {
    content: '';
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: url("../images/quote.png") no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    z-index: 9;
}

.feedback-card {
    padding: .75rem;
    box-shadow: 2px 2px 10px #ddd;
    margin-bottom: .5rem;
}

.feedback-card.normal .owl-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

@media only screen and (max-width: 768px) {
    .feedback-card.normal .owl-nav {
        right: 0;
        top: 0;
        bottom: unset;
        left: unset;
    }
}

.feedback-card.normal .owl-nav .owl-prev, .feedback-card.normal .owl-nav .owl-next {
    height: 30px;
    width: 40px;
    color: #fff;
    background-color: var(--primary-color);
    font-size: 20px;
    text-align: center;
    line-height: 35px;
}

.feedback-card.normal .owl-nav .owl-prev:hover, .feedback-card.normal .owl-nav .owl-next:hover {
    background-color: #2870c7;
}

.feedback-card.normal .owl-nav .owl-prev {
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem;
}

.feedback-card.normal .owl-nav .owl-next {
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
}

.feedback-card.normal .owl-dots {
    margin-top: .75rem;
    text-align: center;
}

.feedback-card.normal .owl-dots .owl-dot.active span {
    background: transparent;
    border: 2px solid var(--primary-color);
}

.feedback-card.normal .owl-dots .owl-dot span {
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 10px;
    margin: 5px 7px;
    background: var(--primary-color);
    border: 2px solid transparent;
    width: 10px;
}

.icon-bx-wraper {
    position: relative;
    border-width: 1px;
    border-style: solid;
    border-color: #ebedf2;
    padding: 30px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .icon-bx-wraper {
        padding: .5rem;
    }
}

.icon-bx-wraper .icon-xl {
    width: 100%;
    text-align: center;
    color: #D81517;
}

.icon-bx-wraper .icon-xl a {
    color: #D81517;
    font-size: 60px;
}

.icon-bx-wraper .icon-content h5 {
    color: #000;
}

.icon-bx-wraper .icon-content p {
    font-size: 13px;
}

@media only screen and (max-width: 768px) {
    .icon-bx-wraper .icon-content p {
        font-size: 12px;
    }
}

.well {
    min-height: 20px;
    padding: 19px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.contact-module {
    text-align: center;
}

.contact-module-header > h3 {
    color: #111;
}

.contact-module-header .btn-contact-module {
    display: inline-block;
    background: #0095ff;
    border-radius: .5rem;
    padding: 10px 15px;
    color: #fff;
    font-weight: bold;
    margin-bottom: .5rem;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.contact-module-header .btn-contact-module:hover {
    background: #33aaff;
}

.contact-module-header .group-box {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.contact-module-header .group-box .input-group .input-group-text {
    border-radius: 0;
    border-right: none;
    background: #fff;
}

.contact-module-header .group-box .input-group .input-group-text .fa {
    font-size: 24px;
}

.contact-module-header .group-box .input-group input {
    border-radius: 0;
    border-left: none;
}

.contact-module-header .group-box .input-group button {
    border-radius: 0;
    background: #0095ff;
    color: #fff;
}

.contact-module-header .group-box .input-group button:hover {
    background-color: #1aa0ff;
}

.contact-module-header .call-box .btn-call {
    background: #f16d6a;
    color: #fff;
    padding: 10px 30px;
    display: flex;
    border-radius: .5rem;
    max-width: 200px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: .5rem;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.contact-module-header .call-box .btn-call:hover {
    background: #f38481;
}

.contact-module-header .call-box .btn-call .fa {
    font-size: 30px;
    margin-right: 5px;
}

.contact-module-header .call-box p {
    font-size: 12px;
}

.contact-module-body .modal-content {
    border: none;
    background: transparent;
    margin-top: 130px;
}

.contact-module-body .modal-body {
    position: relative;
    padding: 70px 30px;
    border-radius: 1.5rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2af598), to(#009efd));
    background-image: -webkit-linear-gradient(top, #2af598 0%, #009efd 100%);
    background-image: -o-linear-gradient(top, #2af598 0%, #009efd 100%);
    background-image: linear-gradient(180deg, #2af598 0%, #009efd 100%);
}

.contact-module-body .modal-body .btn-close-module {
    position: absolute;
    right: -11px;
    top: -11px;
    background: #fff;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    box-shadow: 2px 2px 8px #ddd;
    cursor: pointer;
}

.contact-module-body .modal-body .btn-close-module:focus, .contact-module-body .modal-body .btn-close-module:hover {
    outline: none !important;
}

.contact-module-body .modal-body .form-contact-module > h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-module-body .modal-body .form-contact-module .form-module-control {
    background: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 1.5rem;
    -webkit-box-shadow: 0px 3px 15px #666;
    box-shadow: 0px 3px 15px #666;
}

.contact-module-body .modal-body .form-contact-module .form-module-control:focus, .contact-module-body .modal-body .form-contact-module .form-module-control:hover {
    outline: none !important;
}

.contact-module-body .modal-body .form-contact-module .btn-module-send {
    background: #ef5350;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: 5px 40px;
    border-radius: 1.5rem;
    border: none;
    cursor: pointer;
    -webkit-box-shadow: 0px 3px 15px #666;
    box-shadow: 0px 3px 15px #666;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.contact-module-body .modal-body .form-contact-module .btn-module-send:hover {
    background: #f3817f;
}

.footer-list > li > a {
    margin-left: 0.25rem;
}

.footer-list a:hover {
    color: #1b4c87 !important;
}

.tool .tool-phones {
    display: none;
}


@media (max-width: 767px) {
    .tool {
        width: 100% !important;
        top: unset !important;
        bottom: 0;
        text-align: center;
        background: var(--primary-color) !important;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        border-radius: 0 !important;
        opacity: 1;
    }

    .tool > ul > li:not(.tool-phones) {
        position: relative;
        z-index: 10;
    }


    .tool > ul > li:not(.tool-phones) {
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .tool > ul > li.home,
    .tool > ul > li.phone-desktop {
        display: none !important;
    }

    .tool .tool-phones {
        display: block;
        position: static;
    }

    .tool .tool-phones > ul {
        display: flex;
        flex-flow: column nowrap;
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        bottom: 100%;
        padding: 1.25rem 5vw;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        transform: translate(0, 100%);
        transition: all 0.25s ease-in-out;
        box-shadow: 0 0 10px 0 rgb(0 0 0 / 30%);
    }

    .tool > ul > .tool-phones.toggle > ul {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }

    .tool .tool-phones > ul > li {
        display: block;
        padding: 0;
    }

    .tool .tool-phones > ul > li + li > a {
        border-top: 1px solid #fff;
    }

    .tool .tool-phones > ul > li > a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.25rem;
        color: #495057;
        font-weight: 700;
    }

    .tool .tool-phones > ul > li {
        padding: 5px 0;
    }

    .tool .tool-phones > ul > li > a > i {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        flex-shrink: 0;
        font-size: 1rem;
        border-radius: 50%;
        color: #fff;
        background-color: var(--primary-color);
    }

    .tool .tool-phones > ul > li > a > span {
        display: block;
        width: 100%;
        font-size: 16px;
        flex-grow: 1;
        padding-left: 1rem;
        font-weight: 700;
        text-align: start;
    }

    .tool .tool-phones > button {
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        outline: none;
        border: none;
        background-color: transparent;
        color: #fff;
        position: relative;
        z-index: 10;
    }

    .tool .tool-phones > button > i {
        font-size: 25px;
        padding: 6px 5px;
    }

    .tool .tool-phones > button > span {
        font-size: 10px;
        font-weight: 700;
        white-space: nowrap;
    }


    .tool ul {
        display: flex;
    }

    .tool ul li {
        width: 100%;
        padding: 0 .5rem;
    }

    .tool ul li:first-child a {
        border-top-left-radius: 0 !important;
    }

    .tool ul li:last-child a {
        border-bottom-left-radius: 0 !important;
    }

    .tool ul li a.hover {
        background: var(--primary-color) !important;
        display: block;
        width: 100%;
        padding: 5px !important;
    }

    .tool ul li a.hover img {
        height: 30px;
    }

    .tool ul li .show {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        position: static !important;
        width: 100% !important;
        height: 18px !important;
        background-color: var(--primary-color) !important;
        line-height: 35px;
    }

    .tool ul li .show a {
        display: block;
        line-height: 1;
        font-size: 10px;
        color: #fff !important;
    }
}

@media (max-width: 576px) {
    .tool ul li:hover,
    .tool ul li:hover a,
    .tool ul li:hover span {
        background-color: var(--primary-hover) !important;
    }
}

.theme-footer-list > li {
    display: grid;
    grid-template-columns: 125px 95px 115px;
    grid-gap: 0.375rem;
    justify-content: flex-start;
    white-space: nowrap !important;
}

.theme-footer-list > li > a {
    margin-left: 0 !important;
    display: block;
    font-weight: 700 !important;
    color: #467fcf !important;
}

.theme-footer-list > li > span:last-child {
    text-align: start;
}


/*==================================================
              section-introduce
====================================================*/
.section-introduce {
    overflow: hidden;
}

.section-introduce__bg {
    background-size: cover;
}

.section-introduce__heading {
    --text-color: #111F62;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.section-introduce__title {
    font-family: "Exo 2", Sans-serif;
    line-height: 1.6;
}

.section-introduce__title .title {
    font-size: 36px;
}

.section-introduce__title .title-strong {
    font-size: 50px;
}

.title-strong {
    overflow: visible;
    text-align: inherit;
    display: inline-block;
    position: relative;
    vertical-align: bottom;
}

.title-strong > span {
    position: relative;
    z-index: 1;
}

.title-strong svg {
    position: absolute;
    left: 0;
    overflow: visible;
    top: 76%;
    width: 100%;
    height: 100%;
}

.title-strong svg path {
    stroke: #E6E8EA;
    stroke-width: 12px;
    -moz-animation-duration: 10s;
    -webkit-animation-duration: 10s;
    -o-animation-duration: 10s;
    -ms-animation-duration: 10s;
    animation-duration: 10s;
    stroke-linecap: round;
    stroke-linejoin: round;

    fill: none;
    stroke-dasharray: 1500;
    -webkit-animation: jkit-animated-dash 10s infinite;
    animation: jkit-animated-dash 10s infinite;
}


@keyframes jkit-animated-dash {
    0% {
        stroke-dasharray: 0 1500
    }
    15% {
        stroke-dasharray: 1500 1500
    }

    85% {
        opacity: 1
    }

    90% {
        stroke-dasharray: 1500 1500;
        opacity: 0
    }

    100% {
        stroke-dasharray: 0 1500;
        opacity: 0
    }
}

.section-introduce__text {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 16px;
}

.section-introduce__link > a {
    transition-duration: .3s;
    transition-property: transform;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    fill: #FFF;
    color: #FFF;
    background-color: var(--primary-color);
    border-radius: 8px 8px 8px 8px;
    padding: 14px 22px 14px 22px;
}

.section-introduce__link .link-intro:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .section-introduce__title {
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .title-strong svg {
        top: 86%;
    }
}

@media (max-width: 576px) {
    .section-introduce__title .title {
        font-size: 24px;

    }

    .section-introduce__title .title-strong {
        font-size: 30px;
    }

    .section-introduce__text {
        font-size: 14px;
    }

    .section-introduce__link > a {
        font-size: 14px;
        padding: 15px 30px 12px 30px;
    }

}

/*========================================
             section-news
=============================================*/
.section-news {
    background-color: #f3f3f3;
    padding: 20px 0;
}

.section-news__heading {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;

    --lines: 2;
    --line-height: 1.2;
    --font-size: 3.5em;
    height: calc(var(--font-size) * var(--line-height));

}

.section-news__heading .title {
    font-weight: 600;
    font-size: 24px;


}

.section-news__swiper {
    padding: 0 40px;
}

.card-news {
    overflow: hidden;
    background-color: transparent;
    border: 0;
    box-shadow: none;
}

.card-news__image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
}

.card-news__image img {
    transition: all 0.3s ease-in-out;
}

.card-news__image:hover img {
    transform: scale(1.05);
}

.card-news__subtitle {
    background-color: var(--primary-color);
    color: white;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin: 10px 0;
}

.card-body__inner {
    margin-bottom: 8px !important;
}

.card-news__title {
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
    color: var(--primary-color);
}

.card-news__title:hover {
    color: var(--primary-hover);
}

.card-news__link {
    text-transform: uppercase;
    color: #B3B9C0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.card-news__link:hover {
    color: var(--primary-hover);
}

.card-inner__left {
    margin-bottom: 10px;
}

.card-news__year {
    color: var(--primary-color);

}

.section-news__btn {
    position: absolute;
    top: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 0;
    z-index: 1;
    width: 100%;
}

.section-news__btn .btn-swiper {
    font-weight: bold;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.section-news__btn .btn-swiper:hover {
    color: var(--primary-hover);
}

.section-news__swiper .swiper {
    padding-bottom: 5px;
}

.section-news__btn .btn-swiper.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 1024px) {

    .section-news__heading {
        --margin-bottom: 20px;
        --lines: 2;
        --line-height: 1.2;
        --font-size: 3.5em;
        height: calc(var(--font-size) * var(--line-height) * var(--margin-bottom));

    }
}

@media (max-width: 991px) {
    .section-news__heading .title {
        font-size: 20px;
    }

    .section-news__swiper {
        padding: 0px 20px;
    }

}

.overflow-hidden {
    overflow: hidden;
}

.section-module .blog-item .blog-image {
    flex: unset;
}

.section-module #carcare .blog-item .blog-description .blog-title {
    display: flex;
    font-size: 13px;
}

.section-module .blog-item .blog-description {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 425px) {
    .section-module .blog-item {
        flex-direction: column !important;
    }

    .section-module .blog-item .blog-image img {
        transform: unset !important;
    }
}

.logo-footer {
    width: 50%;
}

.button-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.button-wrap .btn-call {
    width: 250px;
}

@media (max-width: 600px) {
    .button-wrap {
        gap: 5px;
        flex-direction: column;
    }
}


.theme-modal button[data-dismiss] {
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 14px;
    outline: none;
    border: none;
    background-color: #a52626 !important;
    opacity: 1 !important;
    color: #fff;
    border-radius: 50%;
    transform: translateX(calc(100% + 10px));
    transition: 0.25s ease-in-out;
    cursor: pointer;
}

.theme-modal button[data-dismiss]:not[disabled]:hover {
    background-color: #c63a3a !important;
}

.theme-modal button[data-dismiss][disabled] {
    background-color: var(--primary-hover) !important;
    opacity: 0.65 !important;
}

@media screen and (max-width: 768px) {
    .theme-modal button[data-dismiss]{
        transform: unset;
    }
}

.object-contain{
    object-fit: contain;
}
.section-hero .hero-slide_video,
.section-hero .hero-slide_youtube{
    width: 100%;
    height: 730px;
}
@media(max-width: 1300px) {
    .section-hero .hero-slide_video,
    .section-hero .hero-slide_youtube{
        height: 500px;
    }
}
@media(max-width: 1100px) {
    .section-hero .hero-slide_video,
    .section-hero .hero-slide_youtube{
        height: 400px;
    }
}
@media(max-width: 768px) {
    .section-hero .hero-slide_video,
    .section-hero .hero-slide_youtube{
        height: 300px;
    }
}
@media(max-width: 600px) {
    .section-hero .hero-slide_video,
    .section-hero .hero-slide_youtube{
        height: 200px;
    }
}
@media(max-width: 425px) {
    .section-hero .hero-slide_video,
    .section-hero .hero-slide_youtube{
        height: 180px;
    }
}
.noidung img{
    max-width:100% !important;
    height:auto !important;
}
