@charset "UTF-8";

/* Main */
:root {
    --main-color: #05286D;
    --second-color: #05286D;
    --hover-color: #FED345;
    --color-red: #FF0000;
    --color-medium-red: #cc2c32;
    --color-dark-red: #c31829;
    --color-green: #28a745;
    --color-dark-green: #207d36;
    --color-black: #212529;
    --color-gray: #6c757d;
    --color-white: #fff;
}

body {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    top: 0px !important;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a, input, textarea {
    outline: none;
    padding: 0px;
}

a:hover {
    text-decoration: inherit;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.w-clear:after {
    display: block;
    content: "";
    clear: both;
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.none {
    display: none;
}

.hidden-seoh {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    overflow: hidden;
}

.wrap-main {
    max-width: 1188px;
    margin: 40px auto;
}

.wrap-home {
    max-width: 100%;
    padding: 0px;
}

.wrap-content {
    margin: 0px auto;
    max-width: 1188px;
}

.container-custom {
    padding: 0px 10px;
    margin: 0px auto;
}

.content-ck {
    line-height: 2em;
}

.content-ck * {
    max-width: 100% !important;
}

.content-ck img {
    max-width: 100% !important;
    height: auto !important;
}

.content-ck iframe {
    max-width: 100% !important;
}

.content-ck table {
    margin: 0px auto;
}

.content-ck ul, .content-ck ol {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.content-ck p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

/* effect */
.effect-1 {
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

.effect-1:after {
    position: absolute;
    top: 0;
    left: -66%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    -webkit-transform: skewX(-10deg);
    transform: skewX(-10deg);
}

.effect-1:hover:after {
    -webkit-animation: shine .75s;
    */ animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.effect-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.effect-2:before, .effect-2:after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    z-index: 9;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 10px;
    top: 10px;
    transform-origin: center;
}

.effect-2:before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale3d(0, 1, 1);
}

.effect-2:after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scale3d(1, 0, 1);
}

.effect-2:hover {
    background: rgba(0, 0, 0, 0.45);
}

.effect-2:hover:before, .effect-2:hover:after {
    transform: scale3d(1, 1, 1);
    transition: transform 0.5s;
}

.effect-2>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.effect-2:hover>img {
    opacity: 0.8;
}

.effect-3>img {
    transform: translateY(0px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
}

.skiptranslate iframe {
    display: none;
}

/* Toc */
.box-readmore {
    padding: 8px 15px;
    border: 1px solid #dedede;
    margin-bottom: 2rem;
    border-radius: 5px;
    background-color: #eeeeee;
}

.box-readmore li ul>li {
    margin: 0;
    margin-bottom: 8px
}

.box-readmore li ul>li:before {
    content: counters(item, ".") " "
}

.box-readmore ul {
    list-style-type: none;
    counter-reset: item;
    margin-bottom: 0px;
    padding-left: 0px !important;
    margin-top: 8px;
}

.box-readmore ul li {
    display: table;
    counter-increment: item;
    margin-bottom: 5px
}

.box-readmore ul li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 5px
}

.box-readmore ul li a {
    color: #333333;
    cursor: pointer;
    font-weight: 600;
}

.box-readmore ul li a:hover {
    color: #767676;
}

/* General */
.title-main {
    margin-bottom: 35px;
    text-align: center;
    padding-bottom: 25px;
    background: url(../images/title_main.png) center bottom no-repeat;
}

.title-main span {
    text-transform: uppercase;
    color: #05286D;
    font-weight: 400;
    font-size: 19px;
    display: block;
    line-height: 45px;
    font-family: 'UTMNokia';
}

.title-main p {
    color: #1D7DB6;
    font-size: 27px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Roboto Condensed';
    line-height: 30px;
}

.time-main {
    margin-bottom: 0.75rem;
    color: #999999;
}

.time-main i {
    vertical-align: top;
    margin: 3px 7px 0px 0px;
}

.time-main span {
    vertical-align: top;
    display: inline-block;
}

.share {
    padding: 17px 15px 10px 15px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
}

.share b {
    display: block;
    margin-bottom: 5px;
}

.a2a_kit .a2a_svg {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.control-owl {
    position: absolute;
    width: 100%;
    z-index: 2;
    left: 0px;
    top: calc(50% - 45px/2);
}

.control-owl button {
    opacity: 0.5;
    top: 0px;
    position: absolute;
    outline: none;
    border: 0px;
    padding: 0px;
    margin: 0px;
    display: block;
    cursor: pointer;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin: 0px;
    background-color: #000000;
    border-radius: 3px;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.control-owl button:hover {
    opacity: 1;
}

.control-owl button.owl-prev {
    left: 20px;
}

.control-owl button.owl-next {
    right: 20px;
}

.form-control, .form-control-plaintext:not(textarea), .custom-select {
    height: calc(1em + 1.25rem + 8px);
}

.text-sm {
    font-size: .875rem !important;
}

/* Lazyload */
img.lazy {
    opacity: 0;
}

img:not(.initial) {
    transition: opacity 1s;
}

img.initial, img.loaded, img.error {
    opacity: 1;
}

img:not([src]) {
    visibility: hidden;
}

/* Header */
.header {}

.header-top {
    background: var(--main-color);
    padding: 0px 10px;
    position: relative;
}

.header-top::after {
    position: absolute;
    right: 0px;
    bottom: -10px;
    height: 100%;
    content: '';
    background: #FED345;
    width: calc(50% - 300px);
}

.header-top .wrap-content {
    height: 50px;
}

.left-header-top {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 13px 0px;
}

.right-header-top {
    display: flex;
    align-items: center;
    background: #FED345;
    height: 50px;
    position: relative;
    padding-left: 20px;
    z-index: 1;
    margin-bottom: -10px;
}

.right-header-top::before {
    position: absolute;
    right: 100%;
    top: 0px;
    bottom: 0px;
    width: 25px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    content: '';
    background: #FED345;
}

.right-header-top p {
    margin-bottom: 0px;
    margin-right: 90px;
    font-size: 15px;
    color: #161616;
}

.right-header-top p img {
    margin-right: 10px;
}

.info-header {
    margin-bottom: 0px;
}

.info-header i {
    vertical-align: top;
    margin: 3px 5px 0px 0px;
    font-size: 16px;
}

.social-header li {
    width: 30px;
}

.header-bottom {
    padding: 10px 10px;
    background: url(../images/br_banner.png);
    background-size: cover;
}

.hotline-header {
    padding-left: 77px;
    background: url(../images/hotline.png) no-repeat;
    min-height: 56px;
}

.hotline-header p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
}

.hotline-header span {
    display: block;
    color: #FED345;
    font-weight: 400;
    font-family: 'UTMNokia';
    font-size: 15px;
}

.user-header a {
    color: #ffffff;
    padding-right: 9px;
    margin-right: 7px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
}

.user-header a:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 8px;
    background-color: #ffffff;
    top: calc(50% - 7px/2);
    right: 0px;
    opacity: 0.7;
}

.user-header a:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.user-header a:last-child:after {
    display: none;
}

.logo-header {}

/* Menu */
.menu {
    position: sticky;
    top: 0px;
    z-index: 999;
    background: #FDFDFD;
    padding: 0px 10px;
}

.menu .wrap-content>ul {
    width: calc(100% - 195px);
    margin-bottom: -7px;
}

.menu .wrap-content>ul>li {
    flex-grow: 1;
    margin: 0px 5px;
}

.menu .wrap-content>ul>li>a {
    text-align: center;
    background: #05286D;
    color: #fff;
    transform: skew(-20deg);
}

.menu .wrap-content>ul>li>a>span {
    display: block;
    transform: skew(20deg);
}

.menu ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.menu ul li {
    position: relative;
    z-index: 1;
}

.menu ul li a {
    display: block;
    position: relative;
    font-size: 15px;
    color: #0F0F0F;
    padding: 15px 5px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none !important;
}

.menu ul li a.has-child {
    padding-right: 16px;
    margin-right: 8px;
}

.menu ul li a.has-child:after {
    content: '';
    position: absolute;
    bottom: calc(50% - 4px/2);
    right: 5px;
    width: 5px;
    height: 5px;
    border: 1px solid #fafafa;
    border-top: 0px;
    border-left: 0px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.menu .wrap-content>ul>li:hover>a {
    color: #161616;
    background: #FED345;
}

.menu ul li a.active {
    margin-bottom: -10px;
    color: #161616;
    background: #FED345;
}

.menu .wrap-content>ul>li:hover>a.has-child:after, .menu ul li a.active.has-child:after {}

.menu ul li ul {
    position: absolute;
    min-width: 250px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #fafafa;
    border-radius: 0.25rem;
    -webkit-box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
    box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.menu ul li:hover>ul {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    transition: all .7s;
}

.menu ul li ul li {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.menu ul li ul li a {
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    color: #313131;
    border-bottom: 1px solid #ececec;
}

.menu ul li ul li:last-child>a {
    border-bottom: 0px;
}

.menu ul li ul li a.has-child {
    margin-right: 0px;
}

.menu ul li ul li a.has-child:after {
    border-color: #313131;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu ul li ul li a.active, .menu ul li ul li:hover>a {
    color: var(--second-color);
}

.menu ul li ul li:hover>a.has-child:after, .menu ul li ul li a.active.has-child:after {
    border-color: var(--second-color);
}

.menu ul li ul li a {
    padding: 10px 0px 9px 0px;
    text-transform: capitalize;
}

.menu ul li ul li ul {
    top: -5px;
    left: 100%;
    margin-top: 0px;
}

.fixed {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
}

.fixed .logo-header {
    width: 147px;
    height: 100px;
    margin-bottom: -40px;
}

.fixed .logo-header img {
    max-height: 60px;
}

.social-header a {
    margin-left: 10px;
}

/* Search */
.search {
    width: 165px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #C0C7D5;
}

.search p {
    width: 20px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    color: #05286D;
    font-size: 14px;
}

.search input {
    width: calc(100% - 20px);
    height: 30px;
    outline: none;
    padding: 0px 10px;
    border: 0px;
    background: transparent;
    font-size: 14px;
}

.search input::-webkit-input-placeholder {
    color: #05286D;
}

.search input:-moz-placeholder {
    color: #05286D;
}

.search input::-moz-placeholder {
    color: #05286D;
}

.search input:-ms-input-placeholder {
    color: #05286D;
}

/* Mmenu */
.menu-res {
    display: none;
    height: 55px;
    z-index: 10;
    background: var(--color-red);
    position: relative;
    line-height: normal;
}

.menu-bar-res {
    height: 55px;
    padding: 0px 15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#menu {
    display: none;
}

#hamburger {
    display: none;
    width: 40px;
    height: 23px;
    position: relative;
}

#hamburger:before, #hamburger:after, #hamburger span {
    background: #fff;
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0px;
}

#hamburger:before {
    top: 0px;
}

#hamburger span {
    top: 10px;
}

#hamburger:after {
    top: 20px;
}

#hamburger:before, #hamburger:after, #hamburger span {
    -webkit-transition: none 0.5s ease 0.5s;
    transition: none 0.5s ease 0.5s;
    -webkit-transition-property: transform, top, bottom, left, opacity;
    transition-property: transform, top, bottom, left, opacity;
}

.mm-wrapper_opening #hamburger:before, .mm-wrapper_opening #hamburger:after {
    top: 10px;
}

.mm-wrapper_opening #hamburger span {
    left: -50px;
    opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
    transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
    transform: rotate(-45deg);
}

.mm-menu_opened {
    display: block !important;
}

/* Search Responsive */
.search-res {
    position: relative;
}

.search-res .icon-search {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 42px;
    color: #019050;
    font-size: 17px;
    margin: 0px;
}

.search-res .icon-search.active {
    color: var(--color-red);
    background: #ffffff;
    border-radius: 100%;
}

.search-res .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-red);
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    line-height: normal;
}

.search-res .search-grid p {
    float: left;
    width: 35px;
    height: 38px;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 0px;
    font-size: 17px;
    display: block;
    color: var(--color-red);
    line-height: 40px;
    text-align: center;
}

.search-res .search-grid input {
    width: calc(100% - 35px);
    float: right;
    line-height: 38px;
    outline: none;
    border: none;
    color: #000;
    padding: 0px 10px 0px 5px;
}

.search-res .search-grid input::-webkit-input-placeholder {
    color: #ccc;
}

.search-res .search-grid input:-moz-placeholder {
    color: #ccc;
}

.search-res .search-grid input::-moz-placeholder {
    color: #ccc;
}

.search-res .search-grid input:-ms-input-placeholder {
    color: #ccc;
}

/* Slideshow */
.slideshow {
    position: relative;
}

.slideshow-item {
    display: block;
    cursor: pointer;
    position: relative;
}

.slideshow:hover .control-slideshow {
    opacity: 1;
}

.control-slideshow {
    opacity: 0;
}

.slideshow-info {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 850px;
    text-align: center;
    transform: translate(-50%, -50%);
    width: 80%;
}

.slideshow-info span {
    display: block;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 45px;
}

.slideshow-info p {
    display: block;
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
}

.slideshow-info a {
    display: inline-block;
    width: 206px;
    line-height: 47px;
    text-align: center;
    color: #fff;
    background: #019050;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 30px;
}

.slideshow-info a:hover {
    color: #fff;
    background: #FF0000;
}

/* Partner */
.wrap-partner {
    padding: 0px 15px;
}

.wrap-partner .wrap-content {
    position: relative;
}

.partner {
    display: block;
    border: 1px solid #eee;
    max-width: 175px;
    margin: 0px auto;
}

/* Breadcrumb */
.breadCrumbs {
    background-color: #eee;
    margin-top: 12px;
}

.breadCrumbs .wrap-content {
    padding: 0.75rem 15px;
}

.breadCrumbs .wrap-content .breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

.breadCrumbs .wrap-content .breadcrumb-item a {
    color: var(--color-black);
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
    color: var(--color-gray);
}

/* Intro */
/*.wrap-intro{background-color:#EEEADD;}
.news-intro:before{content:'';position:absolute;width:1px;height:calc(100% - 50px);top:10px;left:90px;background-color:#CACACA;}
.news-scroll:before,.news-scroll:after{content:'';position:absolute;width:10px;height:10px;left:85px;border-radius:100%;background-color:#CACACA;}
.news-scroll:before{top:10px;}
.news-scroll:after{bottom:40px;}
.news-control{left:85px;font-size:13px;opacity:0.5;z-index:1;cursor:pointer;}
.news-control:hover{opacity:1;color:var(--color-main);}
.news-control#up{top:-10px;}
.news-control#down{bottom:20px;}
.news-shadow{padding-bottom:30px;}
.news-shadow-time{font-size:13px;width:75px;margin-right:45px;}
.news-shadow-time:after{content:'';position:absolute;width:20px;height:20px;top:calc(50% - 20px/2);right:-26px;background-repeat:no-repeat;background-position:center;background-image:url(../images/pattern-news.png);}
.news-shadow-article{width:calc(100% - 120px);padding:14px 15px;border-radius:10px;background-color:#ffffff;border:1px solid #cecabb;}
.news-shadow-article:before{content:'';position:absolute;top:calc(50% - 26px/2);left:-13px;z-index:0;border-top:13px solid transparent;border-right:13px solid #cecabb;border-bottom:13px solid transparent;}
.news-shadow-article:after{content:'';position:absolute;top:calc(50% - 24px/2);left:-11px;z-index:1;border-top:12px solid transparent;border-right:11px solid #ffffff;border-bottom:12px solid transparent;}
.news-shadow-image{margin-right:10px;width:90px;}
.news-shadow-info{width:calc(100% - 100px);}
.news-shadow-name{height:36px;font-size:15px;font-weight:700;}
.news-shadow-name a{color:#222222;}
.news-shadow-name a:hover{color:var(--color-main);}
.news-shadow-desc{height:38px;font-size:13px;}
.news-shadow-name a.text-split,.news-shadow-desc.text-split{-webkit-line-clamp:2;}*/
.wrap-intro {
    margin-bottom: 30px;
}

.left-intro {
    width: 49.67%;
}

.right-intro {
    width: 48.56%;
}

.title-intro {
    border-bottom: 1px solid var(--color-red);
    margin-bottom: 1.5rem;
}

.title-intro span {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    font-size: 20px;
}

.title-intro span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0px;
    left: 0px;
    background-color: var(--color-red);
}

.newshome-best {
    width: 43%;
    display: block;
    float: left;
    margin-right: 1.5%;
}

.pic-newshome-best {
    margin-bottom: 10px;
}

.pic-newshome-best img {
    width: 100%;
}

.name-newshome {
    margin-bottom: 10px;
}

.name-newshome a {
    color: #1A1A1A;
    font-size: 15px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: 700;
}

.name-newshome a:hover {
    color: #FF0000;
}

.name-newshome a.text-split {
    -webkit-line-clamp: 2;
}

.time-newshome {
    width: 45px;
    height: 41px;
    text-align: center;
    padding-top: 4px;
    position: absolute;
    right: 3px;
    top: 3px;
    background: -moz-linear-gradient(90deg, #C68E3D 0, #FDD97D 40%, #C68E3D 80%, #FDD97D 100%);
    background: -webkit-linear-gradient(90deg, #C68E3D 0, #FDD97D 40%, #C68E3D 80%, #FDD97D 100%);
    background: -o-linear-gradient(90deg, #C68E3D 0, #FDD97D 40%, #C68E3D 80%, #FDD97D 100%);
    background: -ms-linear-gradient(90deg, #C68E3D 0, #FDD97D 40%, #C68E3D 80%, #FDD97D 100%);
    background: linear-gradient(90deg, #C68E3D 0, #FDD97D 40%, #C68E3D 80%, #FDD97D 100%);
    z-index: 9;
}

.time-newshome p {
    color: #1A1A1A;
    font-size: 13px;
    font-family: 'Roboto';
    margin-bottom: 0px;
    line-height: 17px;
}

.desc-newshome {
    color: #1A1A1A;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}

.readmore-news {
    color: #FF0000;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.newshome-scroll {
    width: calc(100% - 44.5%);
    height: 450px;
    overflow: hidden;
}

.newshome-scroll ul li {
    margin-bottom: 15px !important;
}

.newshome-normal {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}

.pic-newshome-normal {
    width: 220px;
    position: relative;
}

.pic-newshome-normal img {
    width: 100%;
}

.info-newshome-normal {
    width: calc(100% - 240px);
}

.img-video-main {
    display: block;
    position: relative;
}

.img-video-main:before {
    content: "";
    position: absolute;
    width: 117px;
    height: 82px;
    top: calc(50% - 117px/2);
    left: calc(50% - 82px/2);
    z-index: 1;
    background-repeat: no-repeat;
    background-image: url(../images/video.png);
    background-size: 100% 100%;
}

.video-main {
    position: relative;
}

.video-main iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.listvideos {
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    border: 1px solid #ccc;
    color: var(--color-black);
    margin-top: 10px;
    cursor: pointer;
}

/* Video */
.row-video {
    margin: 0px -10px;
}

.col-video {
    padding: 0px 10px;
}

.video {
    cursor: pointer;
    margin-bottom: 20px;
}

.video-image {
    position: relative;
    margin-bottom: 0.75rem;
}

.video-image:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 35px;
    top: calc(50% - 50px/2);
    left: calc(50% - 35px/2);
    z-index: 1;
    background-repeat: no-repeat;
    background-image: url(../images/play.png);
}

.video-name {
    text-align: center;
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0px;
}

/* Album */
.row-album {
    margin: 0px -10px;
}

.col-album {
    padding: 0px 10px;
}

.album {
    cursor: pointer;
    margin-bottom: 20px;
}

.album-image {
    margin-bottom: 0.75rem;
}

.album-name {
    margin-bottom: 0px;
    text-align: center;
}

.album-name a {
    display: block;
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0px;
}

/* Brand */
.wrap-brand {
    margin-bottom: 50px;
    padding: 0px 15px;
}

.wrap-brand .wrap-content {
    position: relative;
}

.brand {
    display: block;
    border: 1px solid #eee;
    max-width: 160px;
    margin: 0px auto;
}

/* Product */
.row-product {
    margin: 0px -13.5px;
}

.col-product {
    padding: 0px 13.5px;
}

.box-product {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.pic-product {
    border-radius: 5px;
    position: relative;
}

.pic-product::after {
    position: absolute;
    left: -3px;
    top: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid #019050;
    border-radius: 5px;
    content: '';
    opacity: 0;
    transition: 0.7s;
    pointer-events: none;
}

.pic-product img {
    width: 100%;
    border-radius: 5px;
}

.box-product:hover .pic-product::after {
    opacity: 1;
}

.name-product {
    font-size: 18px;
    margin-top: 17px;
    text-align: center;
    margin-bottom: 6px;
}

.name-product a {
    font-size: 15px;
    color: #2C2C2C;
    font-weight: 700;
    text-transform: capitalize;
}

.name-product a:hover {
    color: var(--second-color);
}

.name-product.text-split {
    -webkit-line-clamp: 1;
}

.price-product {
    margin-bottom: 0px;
    text-align: center;
}

.price-product span {
    display: inline-block;
}

.price-new {
    margin: 0px 5px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-red);
}

.price-old {
    margin: 0px 5px;
    font-size: 14px;
    color: var(--color-gray);
    text-decoration: line-through;
}

.price-per {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffffff;
    background: var(--color-red);
    font-size: 11px;
    border-radius: 2px;
    width: 45px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}

.cart-product {
    margin-bottom: 0px;
}

.cart-product span {
    cursor: pointer;
    width: 49%;
    float: left;
    color: #ffffff;
    text-transform: capitalize;
    text-align: center;
    padding: 7px 5px;
    border-radius: 3px;
}

.cart-add {
    margin-right: 2%;
    background-color: var(--color-red);
}

.cart-add:hover {
    background-color: var(--color-dark-red);
}

.cart-buy {
    background-color: var(--color-green);
}

.cart-buy:hover {
    background-color: var(--color-dark-green);
}

/* Product Detail */
.grid-pro-detail {
    margin-bottom: 3rem;
}

.left-pro-detail {
    position: relative;
    text-align: center;
}

.left-pro-detail .MagicZoom {
    border: 1px solid #eee;
    padding: 7px;
    border-radius: 5px;
    background-color: #ffffff;
}

.gallery-thumb-pro {
    position: relative;
    margin-top: 10px;
}

.owl-pro-detail {
    padding: 0px 30px;
}

.control-pro-detail button {
    background-color: transparent;
    color: #222222;
    opacity: 1;
    width: 25px;
    font-size: 23px;
}

.control-pro-detail button:hover {
    opacity: 0.7;
}

.control-pro-detail button.owl-prev {
    left: 0px;
}

.control-pro-detail button.owl-next {
    right: 0px;
}

.thumb-pro-detail {
    display: block !important;
    border: 1px solid #eee;
    padding: 3px;
    border-radius: 3px;
    cursor: pointer;
    background-color: #ffffff;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
    border-color: #cecfd2;
}

.thumb-pro-detail img {
    box-shadow: none !important;
    filter: brightness(100%) !important;
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.title-pro-detail {
    text-transform: capitalize;
    font-size: 20px;
    display: block;
    font-weight: 700;
}

.comment-pro-detail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.social-plugin-pro-detail {
    margin-bottom: 1rem;
    margin-top: 0px !important;
}

.desc-pro-detail {
    margin-bottom: 1rem;
}

.attr-pro-detail {
    list-style: none;
    padding: 0px;
}

.attr-pro-detail li {
    margin-bottom: 0.5rem;
}

.attr-label-pro-detail {
    margin: 0px 5px 0px 0px;
}

.attr-label-pro-detail.d-block {
    display: block;
    margin: 0px 0px 5px 0px;
}

.attr-content-pro-detail {
    display: inline-block;
    margin-bottom: 0px;
}

.price-new-pro-detail {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-red);
}

.price-old-pro-detail {
    font-weight: 500;
    color: var(--color-gray);
    text-decoration: line-through;
    padding-left: 10px;
}

.color-pro-detail {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 35px;
    height: 30px;
    margin: 0px 0px 3px 0px;
    border: 1px solid transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.size-pro-detail {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 3px 10px 4px 10px;
    display: inline-block;
    position: relative;
}

.size-pro-detail.active, .color-pro-detail.active {
    border-color: #e5101d;
    color: #e5101d;
}

.size-pro-detail.active:after, .color-pro-detail.active:after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    background-image: url(../images/check-cart.png);
}

.color-pro-detail input[type=radio], .size-pro-detail input[type=radio] {
    display: none;
}

.quantity-pro-detail {
    width: 100%;
    max-width: 110px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.quantity-pro-detail span {
    line-height: 25px;
    padding: 0px;
    width: 30px;
    height: 30px;
    color: #5f5f5f;
    cursor: pointer;
    font-size: 22px;
    border: 1px solid #cccccc;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
    border-left: 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
    border-right: 0px;
}

.quantity-pro-detail input {
    height: 30px;
    border: 1px solid #cccccc;
    width: calc(100% - 60px);
    text-align: center;
    font-size: 14px;
    padding: 5px;
}

.cart-pro-detail {
    margin-bottom: 1rem;
}

.cart-pro-detail a {
    font-size: 14px;
    color: #ffffff !important;
    text-transform: uppercase;
}

.tags-pro-detail a {
    float: left;
    font-size: 13px;
    padding-bottom: 0.375rem;
    margin: 0px 5px 5px 0px;
}

.tags-pro-detail a i {
    font-size: 11px;
    margin: 5px 5px 0px 0px;
}

.tabs-pro-detail {
    margin-top: 2rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
    border-top-width: 3px;
    font-size: 13px;
    color: #000;
}

.tabs-pro-detail .nav-tabs .nav-link.active, .tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
    border-top-color: #01904E;
}

/* News */
.news {
    margin-bottom: 2rem;
}

.news-name {
    margin-bottom: 0.5rem;
}

.news-name a {
    color: #333;
    font-size: 16px;
    font-weight: 700;
}

.news-name a.text-split {
    -webkit-line-clamp: 2;
}

.news-name a:hover {
    color: var(--main-color);
}

.news-time {
    color: #84878a;
    margin-bottom: 0.25rem;
}

.news-desc {
    color: #333333;
    margin-top: 5px;
    line-height: 22px;
}

.othernews b {
    margin-bottom: 10px;
}

.list-news-other {
    padding-left: 17px;
    list-style: square;
}

.list-news-other li {
    margin-bottom: 10px;
}

.list-news-other li a {
    text-transform: none;
    color: #333333;
}

.list-news-other li a:hover {
    color: var(--main-red);
}

/* Contact */
.contact-article {
    margin-bottom: 3rem;
}

.contact-input {
    position: relative;
    margin-bottom: 15px;
}

.contact-input textarea {
    resize: none;
    height: 150px;
}

.contact-input .custom-file-label::after {
    content: attr(title);
}

.contact-map {
    position: relative;
    height: 500px;
}

.contact-map iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100% !important;
    height: 100% !important;
}

/* Newsletter */
.newsletter-slogan {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

.newsletter-input {
    position: relative;
}

.newsletter-button {
    margin-top: 5px;
}

.newsletter-button input[type=submit] {
    text-transform: uppercase;
    font-weight: 500;
}

/* Footer */
.footer {
    background: url(../images/br_footer.png) center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.footer-top {}

.footer-top .wrap-content {
    position: relative;
    padding: 65px 0px 25px;
}

.footer-top .wrap-content::after {
    position: absolute;
    left: 0px;
    top: -1px;
    right: 0px;
    background: #fff;
    height: 18px;
    content: '';
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 10px 100%);
}

.footer-company {
    text-align: center;
}

.footer-company span {
    color: #FED345;
    display: block;
    font-size: 30px;
    font-family: 'UTMNokia';
    text-transform: uppercase;
}

.footer-company p {
    color: #fff;
    font-size: 23px;
    font-family: 'UTMAmericanaB';
    text-transform: uppercase;
    margin-bottom: 0px;
}

.footer-article {}

.footer-article .wrap-content {
    padding: 30px 23px;
    background: rgb(0 6 76 / 60%);
    border: 1px solid #14599F;
    mix-blend-mode: hard-light;
}

.box-ft {
    width: 23%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-ft .img-ft {
    width: 70px;
}

.box-ft .info-ft {
    width: calc(100% - 90px);
}

.box-ft .info-ft p {
    margin-bottom: 0px;
    font-size: 15px;
    color: #fff;
    line-height: 24px;
}

.footer-branch {
    padding: 35px 0px 15px;
}

.title-hethong {
    color: #fff;
    font-size: 20px;
    font-family: 'UTMNokia';
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.footer-title {
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 18px;
    position: relative;
}

.row-branch {
    margin: 0px -20px;
}

.col-branch {
    padding: 0px 20px;
}

.box-branch {
    margin-bottom: 35px;
}

.box-branch h3 {
    color: #FED345;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
}

.box-branch .desc-branch {
    color: #fff;
    font-size: 14px;
}

.footer-title::after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 3px;
    background: #E7C558;
    content: '';
}

.footer-info {
    color: #fff;
    font-size: 15px;
}

.footer-news:nth-child(1) .footer-title {
    padding-bottom: 0px;
    margin-bottom: 10px;
}

.footer-news:nth-child(1) .footer-title::after {
    display: none;
}

.footer-ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-ul li {
    margin-bottom: 10px;
}

.footer-ul li:last-child {
    margin-bottom: 0px;
}

.footer-ul li a {
    color: #fff;
    font-size: 14px;
}

.footer-ul li a:hover {
    text-decoration: none;
    color: #E7C558;
}

.time-open {
    padding-left: 57px;
    background: url(../images/open.png) left center no-repeat;
    margin-top: 20px;
}

.time-open p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 5px;
}

.time-open span {
    color: #fff;
    font-size: 15px;
}

.footer-tags {
    background: #eee;
}

.footer-tags .wrap-content {
    padding: 30px 15px;
}

.footer-tags-lists {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-tags-lists li {
    float: left;
}

.footer-tags-lists li a {
    padding-bottom: 0.375rem;
}

.footer-powered {}

.footer-powered .wrap-content {
    padding: 20px 0px;
    border-top: 1px solid #1242A0;
}

.footer-copyright {
    color: #3A70DA;
    font-size: 13px;
}

.footer-copyright span {
    color: #3A70DA;
    text-transform: uppercase;
}

.footer-copyright a {
    color: #3A70DA;
}

.footer-statistic {
    color: #fff;
    font-size: 13px;
}

.footer-statistic span {
    padding-right: 10px;
    color: #fff;
}

.footer-statistic span strong {
    padding-right: 10px;
    font-weight: normal;
    color: #fff;
}

.footer-statistic span:last-child {
    padding-right: 0px;
}

.social-footer {
    margin-top: 15px;
}

.social-footer span {
    color: #fff;
    font-size: 15px;
}

.social-footer a {
    margin-left: 5px;
}

#footer-map {
    position: relative;
    height: 500px;
}

#footer-map iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
}

.frm-contact-footer .contact-input {
    margin-bottom: 30px;
}

.frm-contact-footer input {
    width: 100%;
    background: none;
    color: #fff;
}

.frm-contact-footer textarea {
    height: 60px;
    width: 100%;
    background: none;
    display: block;
}

.frm-contact-footer input::placeholder, .frm-contact-footer textarea::placeholder {
    color: #FFFFFF;
}

.frm-contact-footer .form-row {
    justify-content: space-between;
    margin: 0px;
}

.frm-contact-footer .form-row .contact-input {
    width: 47%;
}

.frm-contact-footer button {
    width: 227px;
    height: 46px;
    background: #019050;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    border: none;
    outline: none;
}

.frm-contact-footer button:hover {
    color: #fff;
    background: #FF0000;
}

/* Like Share */
.social-plugin {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.social-plugin .at-share-btn {
    margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
    margin-left: 3px;
}

/* Paging */
.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: .875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #555555;
    border-color: #555555;
}

/* Paging Ajax */
.pagination-ajax {
    text-align: center;
}

.pagination-ajax a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 3px 3px 3px;
    width: 35px;
    height: 35px;
    line-height: 33px;
    color: #666 !important;
    border: 1px solid #e6e6e6;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none !important;
    background-color: #ffffff;
}

.pagination-ajax a.current, .pagination-ajax a:hover {
    color: #ffffff !important;
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.pagination-ajax a.first, .pagination-ajax a.last, .pagination-ajax a.prev, .pagination-ajax a.next {
    text-indent: -9999px;
    position: relative;
    background-color: #ffffff !important;
}

.pagination-ajax a.first:before, .pagination-ajax a.last:before, .pagination-ajax a.prev:before, .pagination-ajax a.next:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
}

.pagination-ajax a.first:before {
    background-image: url(../images/page-first.png);
}

.pagination-ajax a.last:before {
    background-image: url(../images/page-last.png);
}

.pagination-ajax a.prev:before {
    background-image: url(../images/page-prev.png);
}

.pagination-ajax a.next:before {
    background-image: url(../images/page-next.png);
}

/* Popup */
#popup .modal-body {
    padding: 0px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
    overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
    display: none;
}

/* Scroll Top */
.scrollToTop {
    width: 41px;
    height: 41px;
    text-align: center;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: 65px;
    right: 25px;
    display: none;
    z-index: 10;
    cursor: pointer;
}

/* Text Hide */
.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

/* Transition All */
.transition {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

/* Scale IMG */
.scale-img {
    overflow: hidden;
    display: block;
}

.scale-img img {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.scale-img:hover>img {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
    -webkit-animation-name: blink;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blink;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blink;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

/* Button Frame */
.btn-frame {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.btn-frame i {
    display: flex;
    display: -ms-flex;
    justify-content: center;
    align-items: center;
    -ms-flex-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-color);
    position: relative;
    z-index: 1;
}

.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}

.btn-frame .animated.infinite {
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: .1;
    border-color: var(--main-color);
    opacity: .5;
}

.btn-frame .zoomIn {
    animation-name: zoomIn;
}

.btn-frame .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: .4;
}

.btn-frame .pulse {
    animation-name: pulse;
}

/* Zalo */
.btn-zalo {
    bottom: 230px;
}

/* Phone */
.btn-phone {
    bottom: 315px;
}

/* Messenger */
.js-facebook-messenger-container.closed, .js-facebook-messenger-tooltip.closed {
    display: none !important
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-tooltip {
    display: none;
    position: fixed;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    z-index: 1.0E+30
}

.js-facebook-messenger-close-tooltip {
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px
}

.js-facebook-messenger-box.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

.js-facebook-messenger-box.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-box {
    display: block;
    position: fixed;
    cursor: pointer;
    bottom: 150px;
    right: 17px;
    width: 56px;
    height: 56px;
    text-align: center;
    background: var(--main-color);
    border-radius: 100%;
    overflow: hidden;
    z-index: 99;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3)
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
    transform: rotate(0deg)
}

.js-facebook-messenger-box svg#fb-msng-icon {
    width: 32px;
    height: 33px;
    position: absolute;
    top: 13px;
    left: 12px;
    opacity: 1;
    overflow: hidden;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
    transform: rotate(-45deg)
}

.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    width: 19px;
    height: 20px;
    position: absolute;
    top: 19px;
    left: 19px;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000
}

.js-facebook-messenger-container {
    position: fixed;
    opacity: 0;
    transform: translateY(50px);
    bottom: 110px;
    right: 90px;
    border-radius: 10px;
    pointer-events: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -moz-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -o-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out
}

.js-facebook-messenger-top-header {
    width: 220px
}

.js-facebook-messenger-top-header {
    color: #ffffff;
    background: var(--main-color)
}

.js-facebook-messenger-top-header {
    display: block;
    position: relative;
    width: 220px;
    background: var(--main-color);
    color: #ffffff;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.js-facebook-messenger-container iframe, .js-facebook-messenger-container-button iframe {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000
}

.js-facebook-messenger-top-header {
    color: #ffffff;
    background: var(--main-color)
}

.js-facebook-messenger-top-header {
    width: 220px
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff
}

.js-facebook-messenger-container.open {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
    opacity: 0
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
    transform: rotate(0deg)
}

.js-facebook-messenger-box.open svg#close-icon {
    opacity: 1
}

/* Cart Fix */
.cart-fixed {
    position: fixed;
    right: 20px;
    bottom: 390px;
    z-index: 10;
    background: #4b4f56;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff !important;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-fixed i {
    font-size: 20px;
}

.cart-fixed span {
    position: absolute;
    top: 0px;
    right: -5px;
    color: #ffffff;
    width: 25px;
    height: 25px;
    background: var(--color-red);
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    border-radius: 100%;
}

/* Toolbar */
.toolbar {
    background: var(--main-color);
    width: 100%;
    padding: 7px 5px;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    height: auto;
    left: 0px;
    display: none;
}

.toolbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
}

.toolbar ul li {
    text-align: center;
    width: 25%;
}

.toolbar ul li a {
    display: block;
    width: 100%;
    cursor: pointer;
}

.toolbar ul li a img {
    height: 25px;
    width: auto;
}

.toolbar ul li a span {
    font-weight: 400;
    color: #ffffff;
    font-size: 13px;
    display: none;
}

/* Fixbar */
.fixbar {
    bottom: 0;
    display: block;
    background: #f0eff4;
    border-top: 1px solid #ddd;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    margin: 0;
    z-index: 500;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 50px;
}

.fixbar ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.fixbar ul li {
    display: inline-block;
    margin: 0 auto 10px;
    text-align: center;
    width: 25%;
    float: left;
}

.fixbar .icon-cart-mobile, .fixbar .icon-cart-new, .fixbar .icon-home-new, .fixbar .icon-hotdeal-new {
    width: 20px;
    height: 20px;
    display: block;
    margin: 8px auto 0;
}

.fixbar .icon-cart-mobile {
    background: url(../images/cart-mobile.png) no-repeat;
}

.cart-total-header-mobile {
    font-size: 10px;
    position: absolute;
    background: red;
    color: #fff !important;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    line-height: 15px;
    top: 5px;
    margin-left: 5px;
}

.fixbar ul li a {
    font-size: 11px;
    text-decoration: none;
    color: #333;
}

.fixbar ul li a i {
    font-size: 20px;
}

/* Plugbar */
.plugbar {
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #eae6e6;
    width: 100%;
    right: 0;
    max-width: 767px;
    margin: 0 auto;
    background: #ffffff;
    padding: 9px 10px 10px 7px;
    z-index: 10;
}

.plugbar ul {
    list-style: none;
    padding: 0;
    margin: 0px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plugbar ul li {
    width: 20%;
    float: left;
}

.plugbar ul li a {
    display: block;
    color: #696969;
    font-size: 12px;
    text-align: center;
    position: relative;
}

.plugbar ul li a i {
    font-size: 20px;
    color: #696969;
}

.plugbar ul li a span {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -40px;
    left: calc(50% - 50px/2);
    font-size: 14px;
    display: block;
    border: 1px solid rgba(234, 230, 230, 0.5);
    border-radius: 100%;
}

/* Combo Phone */
.support-online {
    position: fixed;
    z-index: 999;
    left: 10px;
    bottom: 0px;
}

.support-online a {
    position: relative;
    margin: 20px 10px;
    text-align: left;
    width: 40px;
    height: 40px;
}

.support-online i {
    width: 40px;
    height: 40px;
    background: #43a1f3;
    color: #ffffff;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
    position: relative;
    z-index: 999;
}

.support-online a span {
    border-radius: 2px;
    text-align: center;
    background: rgb(103, 182, 52);
    padding: 9px;
    display: none;
    width: 180px;
    margin-left: 10px;
    position: absolute;
    color: #ffffff;
    z-index: 999;
    top: 0px;
    left: 40px;
    transition: all 0.2s ease-in-out 0s;
    -moz-animation: headerAnimation 0.7s 1;
    -webkit-animation: headerAnimation 0.7s 1;
    -o-animation: headerAnimation 0.7s 1;
    animation: headerAnimation 0.7s 1;
}

.support-online a:hover span {
    display: block;
}

.support-online a {
    display: block;
}

.support-online a span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgb(103, 182, 52) transparent transparent;
    position: absolute;
    left: -10px;
    top: 10px;
}

.support-online .kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: rgba(0, 175, 242, 0.5);
    opacity: .75;
    right: -10px;
}

.support-online .kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    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);
    opacity: .1;
    border-color: #0089B9;
    opacity: .5;
}

.support-online .support-online .btn-support {
    cursor: pointer;
}

.support-online .mes i {
    background: orange;
}

.support-online .sms i {
    background: red;
}

.support-online .call-now i {
    background: green;
}

/* Phone Switch */
.widget-mobile {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 9999999;
}

#my-phone-circle {
    position: relative;
    width: 50px !important;
    height: 50px !important;
}

.wcircle-open .wcircle-icon i:before {
    content: '\f00d';
}

.wcircle-icon {
    background: #1282fc;
    border-radius: 50%;
    display: flex !important;
    display: -ms-flex !important;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative !important;
}

.wcircle-icon:before {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    background: rgba(18, 130, 252, .5);
    border: 1px solid #ffffff;
    border-radius: 50%;
    left: -5px;
    top: -5px;
    -webkit-animation: pulse 1s infinite ease-in-out;
    -moz-animation: pulse 1s infinite ease-in-out;
    -ms-animation: pulse 1s infinite ease-in-out;
    -o-animation: pulse 1s infinite ease-in-out;
    animation: pulse 1s infinite ease-in-out;
}

.wcircle-icon:after {
    position: absolute;
    content: '';
    width: 80px;
    height: 80px;
    background: rgba(18, 130, 252, .5);
    border-radius: 50%;
    left: -15px;
    top: -15px;
    -webkit-animation: zoomIn 2s infinite ease-in-out;
    -moz-animation: zoomIn 2s infinite ease-in-out;
    -ms-animation: zoomIn 2s infinite ease-in-out;
    -o-animation: zoomIn 2s infinite ease-in-out;
    animation: zoomIn 2s infinite ease-in-out;
}

.wcircle-menu {
    position: absolute !important;
    left: 0;
    top: 0;
    display: none;
}

.wcircle-menu-item {
    width: 50px;
    height: 50px;
    background: #1282fc;
    border-radius: 50%;
    display: flex;
    display: -ms-flex;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wcircle-menu-item img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
}

.wcircle-menu-item i, .wcircle-icon i {
    font-size: 25px;
    color: #ffffff;
    position: relative;
    z-index: 9999;
}

.shake-anim {
    -webkit-animation: shake-anim 1s infinite ease-in-out;
    -moz-animation: shake-anim 1s infinite ease-in-out;
    -ms-animation: shake-anim 1s infinite ease-in-out;
    -o-animation: shake-anim 1s infinite ease-in-out;
    animation: shake-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%
}

@-moz-keyframes shake-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%, 30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%, 40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%, 50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes shake-anim {
    0%, 100%, 50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10%, 30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%, 40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
}

@-o-keyframes shake-anim {
    0%, 100%, 50% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }

    10%, 30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%, 40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }
}

.wrap-list {
    margin-bottom: 65px;
}

.box-list {
    margin-bottom: 1px;
}

.img-list {
    border-radius: 3px 3px 0px 0px;
    display: block;
    overflow: hidden;
}

.info-list {
    border: 1px solid #E5E5E5;
    padding: 20px 20px 30px;
    border-top: none;
    border-radius: 0px 0px 3px 3px;
}

.info-list h2 {
    font-size: 21px;
    margin-bottom: 10px;
}

.info-list h2 a {
    color: #1C1C1C;
    font-size: 18px;
    font-weight: 700;
}

.info-list h2 a:hover {
    color: #019050;
}

.info-list p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #383838;
    line-height: 1.7;
}

.wrap-about {
    padding: 100px 0px;
}

.left-about {
    width: 50%;
    position: relative;
}

.right-about {
    width: 50%;
    position: relative;
    padding: 0 0 0 34px;
}

.img-about-1 {
    width: 100%;
}

.img-about-2 {
    width: 51.6%;
    position: absolute;
    right: 0px;
    top: 27%;
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.18));
}

.left-about .customer {
    position: absolute;
    right: 20px;
    top: 9%;
    display: none;
}

.left-about .customer p {
    color: #FED345;
    font-size: 50px;
    font-family: 'UTMNokia';
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 50px;
}

.left-about .customer span {
    color: #444;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
}

.left-about .years {
    position: absolute;
    left: 20px;
    bottom: -30px;
    padding: 25px 20px;
    background: #05286D;
    color: #fff;
    display: none;
}

.left-about .years::after {
    position: absolute;
    left: 100%;
    bottom: 0px;
    width: 26px;
    height: 30px;
    background: #1D7DB6;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    content: '';
}

.left-about .years p {
    font-size: 25px;
    color: #fff;
    margin-bottom: 0px;
    line-height: 30px;
}

.left-about .years p strong {
    font-size: 40px;
    color: #FED345;
    line-height: 40px;
    display: inline-block;
    font-family: 'UTMNokia';
}

.left-about .years span {
    display: block;
    font-size: 15px;
    letter-spacing: 0.45px;
}

.title-about {
    margin-bottom: 15px;
    position: relative;
    padding-top: 12px;
}

.title-about::after {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 60px;
    height: 3px;
    background: var(--gradient, linear-gradient(90deg, #FEBB53 0%, #FFD95A 100%));
    content: '';
}

.title-about p {
    color: #FED345;
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 700;
    font-family: 'Roboto Condensed';
}

.title-about h2 {
    color: #05286D;
    font-size: 30px;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'UTMNokia';
}

.desc-about {
    color: #444;
    font-size: 14px;
    margin-bottom: 60px;
    line-height: 1.8;
}

.desc-about.text-split {
    -webkit-line-clamp: 9;
}

.readmore-about {
    display: inline-block;
    color: #161616;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    width: 150px;
    line-height: 50px;
    background: #FED345;
}

.readmore-about:hover {
    color: #fff;
    background: #05286D;
}

.wrap-thongso {
    position: relative;
}

.wrap-thongso::after {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: calc(50% - 300px);
    background: #05286D;
    content: '';
}

.wrap-thongso .wrap-content {
    padding: 40px 0px;
    background: #05286D;
    position: relative;
    z-index: 9;
}

.wrap-thongso .wrap-content::after {
    position: absolute;
    left: -86px;
    top: 0px;
    width: 87px;
    height: calc(100% + 25px);
    background: #05286D;
    content: '';
    clip-path: polygon(100% 0, 100% calc(100% - 25px), calc(100% - 10px) 100%, 0% 100%);
}

.row-thongso {
    margin: 0px -10px;
}

.col-thongso {
    padding: 0px 10px;
}

.col-thongso:last-child {
    border-right: none;
}

.box-thongso {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.img-thongso {
    width: 93px;
    height: 107px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/polygon.png) center center no-repeat;
    background-size: 100% 100%;
}

.info-thongso {
    width: calc(100% - 110px);
}

.info-thongso span {
    display: block;
    font-size: 25px;
    font-family: 'UTMNokia';
    line-height: 25px;
    margin-bottom: 5px;
}

.info-thongso p {
    display: block;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed';
}

.wrap-product {
    margin-bottom: 30px;
}

.wrap-banner-contact {
    background: #019050;
}

.wrap-banner-contact .wrap-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 820px;
}

.left-banner-contact {
    width: 205px;
    margin-top: -27px;
}

.right-banner-contact {
    width: calc(100% - 235px);
}

.right-banner-contact span {
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 40px;
}

.right-banner-contact p {
    color: #fff;
    font-size: 21px;
    margin-bottom: 15px;
}

.contact-now {
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    width: 206px;
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 30px;
}

.contact-now:hover {
    color: #019050;
    background: #FFFFFF;
}

.wrap-customer {
    padding: 70px 0px;
    background: #EFEFEF;
    margin-bottom: 50px;
}

.box-customer {
    text-align: center;
}

.info-customer {
    padding: 130px 26px 70px;
    border-radius: 20px 20px 0px 0px;
    position: relative;
    background: url(../images/say.png) center 38px no-repeat, #FFFFFF;
}

.info-customer::after {
    position: absolute;
    left: 0px;
    top: 100%;
    right: 0px;
    height: 68px;
    background: url(../images/box_customer.png) center top no-repeat;
    background-size: 100% 100%;
    content: '';
}

.box-customer:hover .info-customer {
    background: url(../images/say_active.png) center 38px no-repeat, #01904E;
    color: #fff;
}

.box-customer:hover .info-customer::after {
    background: url(../images/box_customer_active.png) center top no-repeat;
    background-size: 100% 100%;
}

.desc-customer {
    text-align: justify;
    font-size: 14px;
    line-height: 1.7;
}

.desc-customer.text-split {
    -webkit-line-clamp: 5;
}

.name-customer {
    text-align: center;
    margin-top: -33px;
    position: relative;
    z-index: 9;
}

.img-customer {
    border: 4px solid #019050;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
    display: inline-block;
}

.name-customer h3 {
    color: #2C2C2C;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.name-customer span {
    color: #2C2C2C;
    font-size: 13px;
    display: block;
}

.prev-customer {
    position: absolute;
    left: -40px;
    top: 40%;
    cursor: pointer;
}

.next-customer {
    position: absolute;
    right: -40px;
    top: 40%;
    cursor: pointer;
}

.wrap-video {
    margin-bottom: 50px;
}

.box-video a {
    display: block;
    position: relative;
    text-align: center;
}

.box-video a strong {
    font-weight: normal;
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.box-video a strong::after {
    position: absolute;
    left: calc(50% - 65px / 2);
    top: calc(50% - 65px / 2);
    width: 65px;
    height: 65px;
    background: url(../images/video.png) center center no-repeat;
    background-size: 100% 100%;
    content: '';
}

.box-video a span {
    color: #2C2C2C;
    font-size: 15px;
    display: block;
    margin-top: 13px;
}

.box-video a:hover span {
    color: #019050;
}

.wrap-news {
    margin-bottom: 50px;
}

.row-news {
    margin: 0px -16.5px;
}

.col-news {
    padding: 0px 16.5px;
}

.box-news {
    margin-bottom: 30px;
}

.img-news {
    border-radius: 10px;
    margin-bottom: 17px;
    overflow: hidden;
}

.name-news {
    font-size: 18px;
    margin-bottom: 10px;
}

.name-news a {
    color: #000;
    font-size: 15px;
    font-weight: 700;
}

.name-news a:hover {
    color: #01904E;
}

.date-news {
    margin-bottom: 10px;
    color: #019050;
    font-size: 13px;
}

.date-news img {
    padding-bottom: 2px;
    margin-right: 7px;
}

.desc-news {
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}

.desc-news.text-split {
    -webkit-line-clamp: 2;
}

.wrap-service {
    padding: 60px 0px;
    overflow: hidden;
}

.row-service {
    margin: 0px -19.5px;
}

.col-service {
    padding: 0px 19.5px;
}

.box-service {
    margin-bottom: 39px;
}

.info-service {
    background: #EDEDED;
    padding: 18px 50px 23px 20px;
    position: relative;
    border-left: 4px solid #05286D;
}

.name-service {
    font-size: 22px;
    margin-bottom: 10px;
}

.name-service a {
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    color: #05286D;
    font-family: 'Roboto Condensed';
}

.desc-service {
    color: #000;
    font-size: 14px;
    line-height: 25px;
}

.desc-service.text-split {
    -webkit-line-clamp: 2;
}

.readmore-service {
    position: absolute;
    right: 0px;
    bottom: 0px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background: #05286D;
    color: #fff;
    font-size: 19px;
    width: 73px;
    height: 73px;
    padding: 40px 0px 0px 43px;
}

.box-service:hover .readmore-service {
    color: #05286D;
    background: #FED345;
}

.box-service:hover .info-service {
    border-color: #FED345;
}

.name-service a:hover {
    color: #FED345;
}

.wrap-why {
    padding: 60px 0px 70px;
}

.box-why {
    width: 36.1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-size: 100% 100% !important;
    min-height: 121px;
    margin-bottom: 55px;
}

.img-why {
    /* width: 90px; */
    /* height: 90px; */
    /* background: #FED345; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.info-why {
    width: calc(100% - 100px);
}

.info-why h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.info-why h3.text-split {
    -webkit-line-clamp: 1;
}

.info-why p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0px;
}

.info-why p.text-split {
    -webkit-line-clamp: 2;
}

.box-why:nth-child(2n+1) {
    flex-direction: row-reverse;
    padding: 18px 0px 13px 20px;
    text-align: right;
}

.box-why:nth-child(2n) {
    padding: 18px 20px 13px 0px;
}

.box-why:nth-child(2n+1) .img-why {
    margin-right: -25px;
}

.box-why:nth-child(2n) .img-why {
    margin-left: -25px;
}

.box-why:nth-child(1) {
    background: url(../images/mask1.png) no-repeat;
}

.box-why:nth-child(2) {
    background: url(../images/mask2.png) no-repeat;
}

.box-why:nth-child(3) {
    background: url(../images/mask3.png) no-repeat;
    margin-bottom: 0px;
}

.box-why:nth-child(4) {
    background: url(../images/mask4.png) no-repeat;
    margin-bottom: 0px;
}

.logo-why {
    position: absolute;
    left: 38.2%;
    top: 4%;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.25);
    width: 23.6%;
    padding-top: 23.6%;
}

.logo-why::after {
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    border: 2px solid #05286D;
    content: '';
}

.logo-why img {
    position: absolute;
    left: 14.4%;
    top: 14.4%;
    width: 71.2%;
}

.wrap-partner {
    padding: 40px 0px;
    background: #F1F1F1;
}

.box-partner {
    display: block;
    border: 1px solid #CACACA;
}

.wrap-album {
    padding: 65px 0px 90px;
}

.left-album {
    width: 28.6%;
}

.right-album {
    width: 70.3%;
}

.top-album {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.1%;
}

.top-album .box-album:nth-child(1) {
    width: 40.7%;
}

.top-album .box-album:nth-child(2) {
    width: 58.1%;
}

.bottom-album {
    display: flex;
    justify-content: space-between;
}

.bottom-album .box-album:nth-child(1) {
    width: 58.1%;
}

.bottom-album .box-album:nth-child(2) {
    width: 40.7%;
}

.box-album {
    display: block;
    position: relative;
    overflow: hidden;
}

.box-album span {
    position: absolute;
    left: 0px;
    top: 100%;
    right: 0px;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    transition: 0.7s;
    background: rgb(0 0 0 / 50%);
}

.box-album:hover span {
    transform: translateY(-100%);
}

.banner-header {
    width: 55%;
}

.box-ft.box2 {
    width: 17%;
}

.box-ft.box3 {
    width: 30%;
}