@charset "UTF-8"; 
@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap');
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
    margin: 0;
}
:root {
    --white: #ffffff;
    --red: #a6180d;
    --green: #c9ecf5;
    --blue: #05244f;
    --over-lay: #ffd2c4;
    --over-lay-gradient: #ffe8e1;
    --grey: #868686;
    --grey-gradient: #f5f5f5;
}
body {
    font-size: 14px;
    font-family: "Wix Madefor Display", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    background: #f9fafa;
    word-wrap: break-word;
}

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

a, input, textarea {
    oautline: none;
    padding: 0px;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

form {
    position: relative;
}

form.submit:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent url(../images/loading.gif) no-repeat center;
    z-index: 9;
}

.clearfix {
    float: none;
    clear: both;
}

.clearfix * {
    margin: revert;
}

.clearfix:before {
    content: "";
    display: table;
}

.clearfix:after {
    content: "";
    clear: both;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.container {
    display: block;
    margin: 0 auto;
    width: 100%;
    min-width: 1200px;
    max-width: 1920px;
    background: #fff;
}

.container.no-index {
    background: #fff;
}

.hidden {
    display: none;
}

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

.wrap-content {
    width: 1200px;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}

.updating {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    margin: 10px 0;
}

.updating.white {
    color: #fff;
}

#info {
    padding: 20px 0;
}

.noidung-info * {
    margin: revert;
}


#popup {
    display: none;
}

/* flex */
.flex {
    display: flex;
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.flex-start {
    align-items: flex-start;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

/* Header */
#header {
    width: 100%;
    position: relative;
    background: #fff;
}

#header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 1px 5px #0000003d;
    z-index: 9;
}

#header .logo {
    display: block;
}

#header .infomation {
    display: block;
    text-align: center;
}

#header .infomation .slogan {
    font-size: 15px;
}

#header .infomation .company-name {
    color: #1685b6;
    font-family: SVN-HelveticaNeueHeavy;
    font-size: 1.6rem;
}

#header .infomation .address {
    font-family: HelveticaNeue-Medium;
    font-size: 1rem;
}

/* Menu */
#menu {
    position: relative;
    z-index: 2;
    /* flex: 1; */
}
#menu.fixed{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}
#menu.fixed .mega-menu > ul, .mega-menu-detail > ul {
    display: none;
}
#menu.fixed .mega-menu:hover > ul, .mega-menu-detail:hover > ul  {
    display: block;
}

.menu {
    position: relative;
}

.menu.fixed>ul {
    padding: 0 !important;
}

.menu>ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

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

.menu ul li {
    position: relative;
    flex: auto;
}

.menu > ul > li {
    text-align: center;
}

.menu > ul > li > a {
    line-height: 50px;
    cursor: pointer;
    display: block;
}

.menu ul li a.active h2, .menu ul li a:hover h2 {
    color: #a6180d;
}

.menu > ul > li > a> h2 {
    font-size: 16px;
    color: #05244f;
    font-weight: 500;
    transition: 0.5s all;
    padding: 0 1.3em;
}
.menu > ul > li:last-child > a > h2 {
    padding-right: 0;
}
.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 {
    position: absolute;
    width: 100%;
    min-width: 300px;
    background: #fff;
    box-shadow: 0 3px 11px 0rgba(0, 0, 0, 0.1);
    -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 > ul > li > a {
    padding: 10px;
    display: block;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
}
.menu > ul > li > ul > li > a > h2 {
    font-size: 15px;
    color: #333;
    text-transform: capitalize;
    font-weight: 500;
    text-align: left;
}

.menu > ul > li > ul > li > ul > li h2 {
    font-size: 15px;
    color: #7d7d7d;
    font-weight: 400;
    padding: 5px 0;
}


.cart {
    width: 32px;
    line-height: 32px !important;
    margin: 0 0 0 0.5rem;
    background: #0e5271;
    border-radius: 0.3em;
}
.cart span {
    position: absolute;
    top: -5px;
    right: -5px;
    color: #fff;
    background: #db0000;
    width: 18px;
    font-size: 11px;
    line-height: 18px;
    border-radius: 1rem;
}

.cart img{
    width: 18px;
    margin: 7px;
}

.hotline-search {
    flex: unset !important;
    margin: 0 0 0 10px;
}
.menu-lang a {
    display: flex !important;!importanti;!importantim;!i;!;
    align-items: center;
}
/* Search */
.search {
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search input {
    width: calc(100% - 130px);
    padding: 0 15px 0 50px;
    font-weight: 400;
    font-family: 'SVN-HelveticaNeue';
    color: #909090;
    font-size: 13px;
    border: 1px solid #cbcbcb;
    border-radius: 60px;
    background: url(../images/search.png) no-repeat 15px center;
    position: absolute;
    right: 0;
    top: 0;
}

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

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

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

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

.search p {
    cursor: pointer;
    width: 40px;
    line-height: 40px;
    background: #0e5271 url(../images/search.png) no-repeat center;
    color: #fff;
    border-radius: 50px;
    display: block;
}
/* Banner */
#banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: var(--red);
}
#banner .content {
    width: 45%;
    color: #c9ecf5;
    padding: 1em 4em;
    padding-left: calc((100% - 1200px) / 2 + 20px);
}
#banner h2 {
    letter-spacing: -0.02em;
    font-size: 60px;
    line-height: 1.5em;
}
#banner h3 {
    font-size: 40px;
    font-weight: 100;
    line-height: 1.3em;
    margin: .3em 0;
}
#banner a {
    color: #e4f9ff;
    font-size: 1em;
    padding-bottom: .5em;
    border-bottom: 1px solid #fff;
}
#banner img{
    width: 55%;
}
/* Why Choose us */
#why-choose-us {
    overflow: hidden;
    margin-bottom: 5em;
}
.box-why-choose-us {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
}
.box-why-choose-us .why-choose-us:first-child {
    grid-column: 1 / 3;
}
.why-choose-us {
    background: var(--red);
    position: relative;
}
.why-choose-us .content {
    position: absolute;
    color: var(--white);
    padding: 3em 1.5em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    text-shadow: 5px 1px 5px #000000c2;
    overflow: hidden;
}
.why-choose-us .content h3 {
    font-size: 32px;
}
.why-choose-us .content p {
    font-size: 17px;
    margin: 1em 0;
}
.why-choose-us .content a {
    color: #e4f9ff;
    font-size: 1em;
    padding-bottom: .5em;
    border-bottom: 1px solid #fff;
}
/* Numbers */
#numbers {
    overflow: hidden;
}
.content-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3em;
}
.content-numbers .content .title-numbers {
    display: block;
    margin-bottom: .5em;
    font-size: 42px;
    color: var(--grey);
}
.content-numbers .content .description {
    line-height: 25px;
}
.content-numbers .content .title-numbers span {
    color: var(--blue);
}
.box-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2em;
}
.box-numbers .numbers {
    position: relative;
    display: block;
    text-align: center;
}
.box-numbers .numbers .content {
    text-align: center;
    margin: auto;
}
.box-numbers .numbers .content .count span {
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--blue);
}
.box-numbers .numbers .content label {
    font-size: 17px;
    font-weight: 500;
    display: block;
}
.box-numbers .photo-numbers {
    grid-column: 2;
    grid-row: 2;
}
/* Breadcrumb */
.breadCrumbs {
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.breadCrumbs .breadcrumb {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-radius: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 15px;
}

.breadCrumbs .breadcrumb-item {
    position: relative;
    padding: 0 15px 0 0;
    margin: 0 10px 0 0;
    color: #000;
}
.breadCrumbs .breadcrumb-item:first-child {
    background: url('../images/home.png') no-repeat left center;
    padding-left: 23px;
}
.breadCrumbs .breadcrumb-item:after {
    position: absolute;
    content: '/';
    right: 0;
    bottom: 0;
}

.breadCrumbs .breadcrumb-item:last-child {
    margin: 0;
    padding: 0;
}

.breadCrumbs .breadcrumb-item:last-child:after {
    display: none;
}

.breadCrumbs .breadcrumb-item a {
    color: var(--blue);
    text-transform: capitalize;
}

.breadCrumbs .breadcrumb-item.active a {
    color: var(--red);
}

/* Danh Muc */
#danhmuc {
    padding: 40px 0;
}

.slick-danhmuc {
    display: none;
    margin: 0 calc(-15px / 2);
}

.slick-danhmuc .slick-slide {
    margin: 5px calc(15px / 2);
    padding: 3px;
    border-radius: 150px;
    overflow: hidden;
    box-shadow: 0 0 5px 0px #00000054;
}

.danhmuc {
    position: relative;
    display: block;
    border-radius: 150px;
    overflow: hidden;
}

.danhmuc img {
    border-radius: 20px;
}

.danhmuc h3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    background: #000000ba;
    padding: 10px 10px;
    font-weight: 400;
}

.danhmuc:hover h3 {
    background: #126da6e6;
}

/* San Pham */
#product {
    position: relative;
    display: block;
    padding: 2em 0;
}
.grid-product {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.box-product {
    margin-bottom: 30px;
}
.box-product:last-child {
    margin-bottom: 0;
}
.box-product .list-product {
    padding: .5rem .7rem;
    border: 1px solid #1685b6;
    border-radius: 0 .5rem .5rem .5rem;
}
.product {
    padding: 5px;
    border-radius: .3em;
    box-shadow: 0 0 0.5em 0px #00000014;
    margin: .5em;
}
.product .image {
    border-radius: .3em;
    position: relative;
}
.product .image[data-percent]:before{
    position: absolute;
    z-index: 1;
    top: .5em;
    left: .5em;
    content: attr(data-percent);
    background: #db0000;
    padding: .4em .3em;
    font-size: 12px;
    color: #fff;
    border-radius: .3em;
    line-height: 1;
    -webkit-animation-name: tada;
    -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: tada;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.product .content{
    padding: 0;
    text-align: center;
    margin: .5rem 0;
}
.product .content .add-cart {
    background: #fff url('../images/cart.svg') no-repeat calc(100% - 5px) center;
    background-size: 15px;
    padding: .25em 2em .25em 1em;
    border-radius: .3em;
    cursor: pointer;
    font-size: .7rem;
    font-weight: 400;
    transition: 0.5s all;
    color: #1685b6;
    border: 1px solid #1685b6;
    display: inline-block;
}
.product .content .add-cart:hover {
    background: #1685b6 url('../images/cart-white.svg') no-repeat calc(100% - 5px) center;
    background-size: 15px;
    color: #fff;
}
.product h3 a{
    font-family: HelveticaNeue-Medium;
    font-size: 13px;
    font-weight: 100;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 18px;
    -webkit-line-clamp: 2;
    min-height: 36px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.product:hover h3 a {
    color: #0e5271;
}
.product .price-product {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: .3em 0;
    gap: .5em;
}
.product .price-product .price {
    font-size: 15px;
    font-family: 'HelveticaNeue-Medium';
    color: #db0000;
}
.product .price-product .price-giagoc {
    text-decoration: line-through;
    color: #0e5271;
    font-size: 14px;
}
.empty {
    display: block;
    background: url(../images/no-data.png) no-repeat center;
    background-size: 15rem;
    height: 150px;
}
/* Detail */
.pro-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.pro-detail-images {
    width: 45%;
    position: sticky;
    top: 60px;
    left: 0;
}

.pro-detail-images #Zoom-1 {
    border: 1px solid #eee;
    display: table;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.pro-detail-images .pro-detail-gallery {
    margin: 0 -2px;
    margin-top: 5px;
}

.pro-detail-images .pro-detail-gallery .pro-detail-gallery-thumb {
    margin: 0 2px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.pro-detail-images .pro-detail-gallery .pro-detail-gallery-thumb img {
    border: none;
    padding: 0;
    margin: 0;
}

.pro-detail-images .slick-track {
    margin: 0 auto;
}

.pro-detail-desc {
    width: calc(55% - 20px);
}

.pro-detail-desc .title-brand {
    color: #808080;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.pro-detail-desc-title {
    margin: 0;
    font-size: 1.3em;
    font-weight: 100;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #f7f7f7;
    color: #0e5271;
    font-family: 'HelveticaNeue-Medium';
}

.pro-detail-desc-item {
    border-bottom: 1px solid #f7f7f7;
    padding: .3em 0;
    margin: 0 !important;
    gap: .5em;
    align-items: baseline;
}

.pro-detail-desc-item.pro-detail-desc-item-content * {
    margin: revert;
}

.pro-detail-desc-item .quatang {
    background: url('../images/qua.png') no-repeat left center;
    color: #ff0000;
    padding: 0 0 0 15px;
    font-size: 13px;
    font-weight: 400;
}

.pro-detail-desc-item b {
    font-size: 15px;
    color: #7d7d7d;
    font-weight: 400;
}

.pro-detail-desc-label {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.pro-detail-desc-price {
    margin: 0;
    display: flex;
    gap: .5em;
    align-items: baseline;
    line-height: 1;
}
.hidden {
    display: none !important;
}
.show {
    display: block !important;
}
.pro-detail-desc-price .price-product {
    display: block;
}
.pro-detail-desc-price .price-new {
    font-size: 20px;
    color: #c9202a;
    font-family: 'HelveticaNeue-Medium';
}

.pro-detail-desc-price .price-old {
    font-size: 15px;
    color: #9a9a9a;
    text-decoration: line-through;
}
.pro-detail-desc-price .percent {
    display: inline-flex;
    color: #c9202a;
    margin: 0 0 0 10px;
    align-items: center;
    gap: .3em;
    border: 1px dashed #c9202a;
    padding: .15em .3em;
    border-radius: .3em;
    font-size: 13px;
}
.pro-detail-desc .box-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pro-detail-desc .box-flex .pro-detail-desc-left {
    width: calc(100% - 280px);
}

.pro-detail-desc .box-flex .pro-detail-desc-right {
    width: 250px;
    text-align: center;
}

.pro-detail-desc .box-flex .pro-detail-desc-right label {
    display: block;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #252525;
    font-weight: 500;
}

.pro-detail-content {
    width: 100%;
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pro-detail-other {
    width: 100%;
    margin: 30px 0 0 0;
}

.pro-detail-content-right {
    width: calc(100% - 320px);
}

.pro-detail-tabs {
    width: 100%;
}

.pro-detail-tabs .pro-detail-ul {
    padding: 0px;
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.pro-detail-tabs .pro-detail-ul li {
    cursor: pointer;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 400;
    color: #333;
    background: #fff;
}

.pro-detail-tabs .pro-detail-ul li.active {
    background: #0e5271;
    color: #fff;
    border-radius: .5em .5em 0 0;
}

.pro-detail-tabs .pro-detail-ul li:last-child {
    margin-right: 0px;
}

.pro-detail-tabs .pro-detail-content-tabs {
    display: none;
    padding: 15px;
    border: 1px solid #0e5271;
    background: #fff;
    border-radius: 0 .5em .5em .5em;
}

.pro-detail-tabs .pro-detail-content-tabs.active {
    display: block;
}

.pro-detail-tabs .pro-detail-content-tabs * {
    margin: revert;
}

.pro-detail-desc-item.shipping-services {
    display: block;
    overflow: hidden;
    padding: .5em;
    background: #f6f8fa;
    line-height: 25px;
    font-size: 15px;
    border-radius: .5em;
}
.pro-detail-desc-item.shipping-services .color-green {
    color: #1685b6;
    font-family: HelveticaNeue-Medium;
    font-weight: 100;
}
/* News detail */
.fotorama-detail {
    margin: 0 auto;
    text-align: center;
}

.news-content-detail {
    display: block;
    line-height: 25px;
}

.news-content-detail * {
    margin: revert;
}

.news-content-detail iframe {
    max-width: 100%;
}

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

.time-post {
    font-size: 13px;
    color: #9c9c9c;
    margin: 0 0 5px 0;
    font-style: italic;
}

.time-post i {
    margin-right: 5px;
}

.box-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    margin: 10px 0;
}

/* share */
.share {
    line-height: normal;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0 0 0;
    border: none;
}

.share label {
    display: block;
}

/* othernews */
.othernews {
    margin-top: 20px;
}

.othernews label {
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'HelveticaNeue-Medium';
    font-weight: 100;
    color: var(--blue);
    margin: 0 0 .3em 0;
}

.list-news-other {
    list-style: square;
    margin: 0;
    padding: 1em 1em 1em 2em;
    border: 1px solid #eee;
    border-radius: .5em;
}

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

.list-news-other li a {
    text-transform: none;
    color: #000;
    font-size: 15px;
}

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

/* Contact */
.box-contact {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
}

.thongtin-contact, .frm-contact {
    width: calc(50% - 20px);
}

.frm-contact.w100 {
    width: 100%;
    margin-top: 20px;
}

.frm-contact .input {
    width: 100%;
    padding: 10px;
    border-radius: 2px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    font-family: 'SVN-HelveticaNeue';
    font-weight: 400;
    color: #333;
    font-size: 14px;
}

.frm-contact .input.w-50 {
    width: calc(50% - 5px);
}

.frm-contact input[type=submit], .frm-contact input[type=reset] {
    display: inline-block;
    padding: 8px 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'SVN-HelveticaNeue';
}

.frm-contact input[type=submit] {
    background: #1685b6;
}

.frm-contact input[type=reset] {
    background: #ccc;
    color: #000;
}

.frm-contact input[type=submit]:hover, .frm-contact input[type=reset]:hover {
    background: #0e5271;
    color: #fff;
}

.frm-contact input::-webkit-input-placeholder {
    color: #848484;
}

.frm-contact input:-moz-placeholder {
    color: #848484;
}

.frm-contact input::-moz-placeholder {
    color: #848484;
}

.frm-contact input:-ms-input-placeholder {
    color: #848484;
}

/* showroom */
.box-showroom {
    width: calc(50% - 20px);
}

.slick-showroom-map, .slick-showroom-title {
    display: none;
}

.showroom-map iframe {
    display: block;
    height: 375px;
    width: 100%;
}

.showroom-title {
    text-align: center;
    padding: 0;
}

.showroom-title label {
    font-size: 16px;
    color: #0e5271;
    font-family: 'HelveticaNeue-Medium';
    font-weight: 100;
    display: block;
}

.showroom-title p {
    font-size: 14px;
    color: #333;
}

.slick-showroom-title {
    background: #eee;
    padding: 10px 50px;
}

.slick-showroom-title .slick-arrow {
    font-size: 20px;
    position: absolute;
    z-index: 1;
    width: 30px;
    line-height: 30px;
    text-align: center;
    top: calc(50% - 15px);
    background: #000;
    color: #fff;
    cursor: pointer;
}

.slick-showroom-title .fa-angle-left {
    left: 10px;
}

.slick-showroom-title .fa-angle-right {
    right: 10px;
}

/* Footer */
.title-footer {
    margin-bottom: 1.5em;
    font-size: 21px;
    font-weight: 500;
    position: relative;
}
#footer {
    background: var(--grey-gradient);
    padding: 5em 0;
    margin-top: 5em;
}
.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5em;
    font-size: 17px;
}
.footer-info .content {
    font-size: 17px;
    font-weight: 300;
}
.form-contract {
    grid-column: 3 / 5;
}
.frm-contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.frm-contact.loading:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent url(../images/loading.gif) no-repeat center;
    z-index: 9;
}
.form-group {
    display: block;
    width: 100%;
    margin-bottom: 1em;
}
.form-1-2 {
    width: calc(50% - 10px);
}
.form-group label {
    display: block;
    font-size: 17px;
    font-weight: 100;
    margin-bottom: .1em;
}
.form-group .form-control {
    display: block;
    width: 100%;
    border: none;
    padding: 1em .5em;
    border-bottom: 1px solid var(--blue);
}
.form-group .form-control:focus {
    background: var(--green)
}
.frm-contact button {
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    padding: .5em 1em;
    =:
    inline-block;
}
/* Social */
.social ul {
    list-style: none;
    padding: 0;
}
.social ul li {
    margin-bottom: .3em;
}
.social ul li a {
    display: block;
    color: var(--blue);
    font-weight: 300;
}
.social ul li a:hover {
    text-decoration: underline;
}
.social-fixed {
    position: fixed;
    left: 20px;
    bottom: 20px;
}
.social-fixed a {
    display: block;
    margin: 14px 0;
}
/* twitter-share-button */
.twitter-share-button {
    position: relative;
    line-height: 20px;
    box-sizing: border-box;
    padding: 0 .5em;
    background-color: #1DA1F2;
    color: #fff;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
}
.twitter-share-button i {
    position: relative;
    width: 14px;
    height: 14px;
    background: transparent 0 0 no-repeat;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' fill='none'/%3E%3Cpath d='M17.9686 14.1623L26.7065 4H24.6358L17.0488 12.8238L10.9891 4H4L13.1634 17.3432L4 28H6.07069L14.0827 18.6817L20.4822 28H27.4714L17.9681 14.1623H17.9686ZM15.1326 17.4607L14.2041 16.132L6.81679 5.55961H9.99723L15.9589 14.0919L16.8873 15.4206L24.6368 26.5113H21.4564L15.1326 17.4612V17.4607Z' fill='white'/%3E%3C/svg%3E%0A");
}
.twitter-share-button span {
    white-space: nowrap;
    font-size: 13px;
    display: block;
    line-height: 1;
}
.twitter-share-button:hover {
    background-color: #0B88D8;
}

/* copyright */
.copyright {
    font-size: 14px;
    width: 100%;
    position: relative;
    padding: 1em 0;
    font-weight: 400;
    color: var(--blue);
    border-top: 1px solid #ffffff45;
}

.copyright span {
    font-family: 'Shopee2021-Bold';
}

/* Like Share */
.social-plugin {
    display: flex;
    flex-wrap: wrap;
    gap: .3em;
}

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

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

/* Phân Trang */
.pagination-home {
    display: block;
    margin-top: 20px;
}

.pagination-home .pagination {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: .875rem;
    padding: 5px 10px;
    display: block;
}

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

/* Phân Trang Ajax */
.pagination-ajax {
    text-align: center;
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination-ajax a {
    display: block;
    vertical-align: top;
    margin: 2px 3px;
    color: #221e1f;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    border-radius: 3px;
    border: 1px solid #221e1f;
    width: 27px;
    line-height: 25px;
    text-align: center;
}

.pagination-ajax a.current, .pagination-ajax a:hover {
    background: #000;
    color: #fff;
}

.pagination-ajax .first, .pagination-ajax .next, .pagination-ajax .last, .pagination-ajax .next, .pagination-ajax .prev {
    display: none;
}

/* Popup custom */
.modal-custom .modal-footer {
    padding: 0.5rem;
}

.modal-custom .modal-footer .btn {
    font-size: 14px;
}

/* 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: 20px;
    right: 15px;
    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;
}

/* Hover after-before */
.hover1 {
    display: block;
    position: relative;
}

.hover1:before {
    z-index: 1;
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}

.hover1:after {
    z-index: 1;
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(0, 1);
    transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}

.hover1:hover:before, .hover1:hover:after {
    transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
}

/* Hover sang */
.hover-sang {
    position: relative;
    overflow: hidden;
}

.hover-sang:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: '';
    z-index: 10;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
    transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
}

.hover-sang:hover:before {
    webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
    transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
}

/* 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: 45px;
    height: 45px;
    position: fixed;
    right: 13px;
    z-index: 2;
    cursor: pointer;
}

.btn-frame i {
    display: flex;
    display: -ms-flex;
    justify-content: center;
    align-items: center;
    -ms-flex-align: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0e5271;
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 20px;
}

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

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

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -7px;
    right: -7px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid #0e5271;
    opacity: .1;
    border-color: #0e5271;
    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: -12px;
    right: -12px;
    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: #0e5271;
    opacity: .4;
}

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

.btn-zalo {
    bottom: 150px;
}

.btn-phone {
    bottom: 235px;
}

.btn-cart span {
    position: absolute;
    width: 25px;
    line-height: 25px;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    right: -5px;
    top: -5px;
    z-index: 1;
    font-size: 12px;
}

/* 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: 70px;
    right: 7px;
    width: 56px;
    height: 56px;
    text-align: center;
    background: #0e5271;
    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: 100px;
    right: 50px;
    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: #fff;
    background: #0d73c3
}

.js-facebook-messenger-top-header {
    display: block;
    position: relative;
    width: 220px;
    background: #221E1F;
    color: #fff;
    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: #fff;
    background: #0e5271;
}

.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: #0d73c3;
    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: #0d73c3;
    width: 25px;
    height: 25px;
    background: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    border-radius: 100%;
}

/* Toolbar */
.toolbar {
    background: #1685b6;
    width: 100%;
    height: 50px;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    left: 0px;
    display: none;
    padding: 8px 0;
}

.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%;
    line-height: 1;
}

.toolbar ul li a {
    display: inline-block;
    width: 100%;
    color: #fff;
}

.toolbar ul li a span {
    font-weight: 400;
    color: #fff;
    font-size: 14px;
    display: block;
    margin: 5px 0 0 0;
    text-transform: capitalize;
}

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

.toolbar ul li.actived .wrap_multiphone {
    display: block;
}

.wrap_multiphone {
    width: 180px;
    display: none;
    position: absolute;
    bottom: 60px;
    left: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 5px 20px;
    background: #fff;
}

.wrap_multiphone a {
    color: #E8383A !important;
    display: block;
    line-height: 25px !important;
    font-weight: 700;
}

.element-animation {
    animation: animationFrames linear 1s;
    animation-iteration-count: infinite;
    transform-origin: 50% 0%;
    animation-fill-mode: forwards;
    /*when the spec is finished*/
    -webkit-animation: animationFrames linear 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 0%;
    -webkit-animation-fill-mode: forwards;
    /*Chrome 16+, Safari 4+*/
    -moz-animation: animationFrames linear 1s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 0%;
    -moz-animation-fill-mode: forwards;
    /*FF 5+*/
    -o-animation: animationFrames linear 1s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 0%;
    -o-animation-fill-mode: forwards;
    /*Not implemented yet*/
    -ms-animation: animationFrames linear 1s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 0%;
    -ms-animation-fill-mode: forwards;
    /*IE 10+*/
}

@keyframes animationFrames {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transformrotate(15deg); }

    40% {
        transformrotate(-10deg); }

    60% {
        transformrotate(5deg); }

    80% {
        transformrotate(-5deg); }

    100% {
        transformrotate(0deg); }
}

@-moz-keyframes animationFrames {
    0% {
        -moz-transform: rotate(0deg);
    }

    20% {
        -moz-transform: rotate(15deg);
    }

    40% {
        -moz-transform: rotate(-10deg);
    }

    60% {
        -moz-transform: rotate(5deg);
    }

    80% {
        -moz-transform: rotate(-5deg);
    }

    100% {
        -moz-transform: rotate(0deg);
    }
}

@-webkit-keyframes animationFrames {
    0% {
        -webkit-transform: rotate(0deg);
    }

    20% {
        -webkit-transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-o-keyframes animationFrames {
    0% {
        -o-transform: rotate(0deg);
    }

    20% {
        -o-transform: rotate(15deg);
    }

    40% {
        -o-transform: rotate(-10deg);
    }

    60% {
        -o-transform: rotate(5deg);
    }

    80% {
        -o-transform: rotate(-5deg);
    }

    100% {
        -o-transform: rotate(0deg);
    }
}

@-ms-keyframes animationFrames {
    0% {
        -ms-transform: rotate(0deg);
    }

    20% {
        -ms-transform: rotate(15deg);
    }

    40% {
        -ms-transform: rotate(-10deg);
    }

    60% {
        -ms-transform: rotate(5deg);
    }

    80% {
        -ms-transform: rotate(-5deg);
    }

    100% {
        -ms-transform: rotate(0deg);
    }
}

/* 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;
}

/* widget */
.widget-desktop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.widget-desktop-items {
    margin-bottom: 20px;
    position: relative;
    border-radius: 50%;
    display: block;
}

.widget-desktop-items:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 91 180 / 35%);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation: scaleIn1 1s;
    animation: scaleIn1 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

.widget-desktop-items:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #005bb4;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation: scaleIn 1.2s;
    animation: scaleIn 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

.widget-desktop-items:last-child {
    margin-bottom: 0;
}

.widget-desktop-items__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    z-index: 999;
}

@-webkit-keyframes scaleIn {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    60% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes scaleIn {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    60% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@-webkit-keyframes scaleIn1 {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    60% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

@keyframes scaleIn1 {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    60% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

/* Plugbar */
.plugbar {
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #eae6e6;
    width: 100%;
    right: 0;
    max-width: 767px;
    margin: 0 auto;
    background: #fff;
    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: #fff;
    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 #fff;
    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: #fff;
    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)
    }
}

/****other-css***/
.wrap-album {
    padding: 50px 0px;
}

.item_content_pos {
    position: relative;
    width: 100%;
    margin: 15px auto;
}

.zoom_content_pos {
    overflow: hidden;
}

.zoom_content_pos img {
    width: 100%;
}

.name_content_pos {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
}

.name_content_pos h3 a {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.1s all ease-in-out 0.1s;
}

.item_content_pos:hover .name_content_pos h3 a {
    color: var(--color-main);
    transition: 0.1s all ease-in-out 0.1s;
}

/********wrap-tabs-sp**********/
.wrap-tabs {
    text-align: center;
    margin-bottom: 0px;
}

.list_mc {
    display: inline-block;
    list-style: none;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.list_mc li {
    position: relative;
    display: inline-block;
    line-height: 35px;
    margin: 0px 2px;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.list_mc li:after {
}

.list_mc li:last-child {
    background: none;
}

.list_mc a {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    cursor: pointer;
    text-transform: uppercase;
    padding: 0px 20px;
}

.list_mc li:hover {
    background: var(--color-main);
}

.list_mc li:hover a {
    color: #fff;
}

li.active_list_mc {
    background: var(--color-main);
}

li.active_list_mc a {
    color: #fff;
}

/*******end-wrap-tabs-sp*******/
/* wrap-2 */
.isfixed {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 80px;
}

.wrap {
    width: 100%;
    padding: 10px 0;
    position: relative;
}

.wrap-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wrap-left {
    width: 225px;
    position: relative;
    z-index: 3;
}

.wrap-right {
    width: calc(100% - 245px);
}

.item-isfixed {
    display: block;
    margin: 0 0 20px 0;
    background: #fff;
    position: relative;
}

.item-isfixed:last-child {
    margin: 0;
}

.item-isfixed>label {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    z-index: 2;
    position: relative;
    text-align: center;
    background: #4898b7;
    line-height: 50px;
    border-radius: 30px;
    margin: 0 0 -25px 0;
}

.isfixed-content {
    position: relative;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.icon-plus-submenu {
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid transparent;
    transition: 0.5s border;
    border-radius: 5px;
}

.icon-plus-submenu:hover {
    border-color: #e7e7e7;
}

.icon-plus-submenu:after, .icon-plus-submenu:before {
    background: rgba(9, 9, 9, 0.6);
    content: '';
    display: block;
    position: absolute;
    margin-right: 7px;
    top: 50%;
    right: 0;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}

.icon-plus-submenu:before {
    width: 9px;
    height: 1px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.icon-plus-submenu:after {
    width: 1px;
    height: 9px;
    right: 4px;
    transform-origin: center;
    -moz-transform: translateY(-50%) scale(1, 1);
    -ms-transform: translateY(-50%) scale(1, 1);
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
}

.icon-plus-submenu.opened:after {
    -moz-transform: translateY(-50%) scale(1, 0);
    -ms-transform: translateY(-50%) scale(1, 0);
    -webkit-transform: translateY(-50%) scale(1, 0);
    transform: translateY(-50%) scale(1, 0);
}

.menuList-links>li.has-submenu .icon-plus-submenu:hover {
    border: 1px solid #e7e7e7;
}

.list-product, .list-product ul {
    list-style: none;
    padding: 0;
}

.list-product li a {
    position: relative;
}

.list-product li {
    position: relative;
}

.list-product>li>a {
    font-size: 14px;
    color: #272727;
    display: block;
    padding: 10px 30px 10px 0;
    border-bottom: 1px dashed #e7e7e7;
}

.list-product>li:last-child>a {
    border: none;
}

.list-product li:hover>a {
    color: #fe0000;
}

.list-product>li ul li a {
    display: block;
    padding: 8px 30px 8px 15px;
    font-size: 13px;
    color: #272727;
}

.list-product>li ul li li a {
    padding-left: 30px;
    padding-right: 10px;
}

.list-product>li ul {
    display: none;
}

/* Danh Muc */
#lienket {
    padding: 30px 0;
}

.box-lienket {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px;
}

.lienket {
    text-align: center;
}

.lienket img {
    display: table;
    margin: 0 auto;
    margin-bottom: 10px;
    border-radius: 15px;
    background: #efefef;
    transition: 0.5s all;
}

.lienket label {
    font-size: 15px;
    color: #222222;
    font-weight: 100;
    text-transform: capitalize;
    display: block;
}

.lienket:hover img {
    transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transition: all 1s;
}

.lienket:hover label {
    color: #fe0000;
}

/* Title */
.title {
    display: block;
    margin: 1em 0;
    font-size: 42px;
    color: var(--blue);
}
h2.title-content {
    font-size: 45px;
    color: var(--blue);
    line-height: 1em;
    margin-bottom: .5em;
}
/* Gioi THieu */
#about-us .about-us{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: var(--green);
    margin-bottom: 5em;
}
#about-us .about-us .content, #about-us .about-us img {
    width: 50%;
}
#about-us .about-us .content  {
    padding: 2em;
    overflow: hidden;
}
#about-us .about-us .content .description {
    font-weight: 300;
    font-size: 17px;
    line-height: 1.8em;
}
/* welcome-mission */
.welcome-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 5em;
}
.welcome-mission .content {
    font-size: 17px;
    font-weight: 100;
    font-family: Arial,Helvetica,sans-serif;
}
.welcome-mission .box-content {
    padding: 3em;
    overflow: hidden;
}
.bg-over-lay {
    background: var(--over-lay);
}
.bg-over-lay-gradient {
    background: var(--over-lay-gradient);
}
.welcome-mission .box-content h2.title-content {
    margin-top: .5em;
}
/* vision-values */
.vision-values {
    padding: 3em;
    background: var(--green);
    margin-bottom: 5em;
}
.vision-values ul li {
    color: var(--blue);
    font-size: 35px;
    font-weight: 700;
    margin-bottom: .2em;
}
.vision-values ul li :last-child {
    margin: 0;
}
.vision-values ul li::marker {
    color: var(--red);
}
/* faculty-staft */
.faculty-staft {
    padding: 3em;
    background: var(--over-lay);
}
.box-faculty-staft {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.faculty-staft-item {
    display: block;
    position: relative;
}
.faculty-staft-item .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--blue);
    color: #fff;
    padding: 1em;
}
.faculty-staft-item .content h3 {
    font-size: 20px;
}
.faculty-staft-item .content p {
    font-size: 15px;
    margin-bottom: 1em;
}
.faculty-staft-item .content a {
    color: #fff;
}
.faculty-staft-item .content a:hover {
    text-decoration: underline;
}
/* FAQ */
.faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.faq-content {
    padding: 2em;
    background: var(--green);
}
.list-faq {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-bottom: 1em;
}
.list-faq  li {
    font-size: 20px;
    color: var(--blue);
    cursor: pointer;
}
.list-faq  li.active {
    color: var(--red);
}
.list-sq-content {
    
}
.list-sq-content > ul {
    list-style: none;
    padding: 0;
    display: none;
}
.list-sq-content > ul.active {
    display: block;
}
.list-sq-content > ul > li {
    border-bottom: 1px solid var(--blue);
    padding: 1.5em 0;
}
.list-sq-content > ul > li:last-child {
    border: none;
}
.list-sq-content > ul > li > label {
    display: block;
    position: relative;
    font-size: 17px;
    cursor: pointer;
    padding: .2em 0;
}
.list-sq-content > ul > li > label:after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: "\f107";
    right: 10px;
    top: calc(50% - 7px);
    width: 14px;
    line-height: 14px;
    font-weight: 900;
}
.list-sq-content > ul > li > .content {
    margin-top: 1.5em;
    display: none;
}
.list-sq-content > ul > li.active > .content {
    display: block;
}
.link-social {
    margin-top: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
/* Quang Cao */
.banner-qc {
    display: block;
}

.banner-qc img {
    width: 100%;
}

/* nhantin-danhgia */
.form-contact {
    width: 450px;
}
.frm-nhantin {
    position: relative;
    display: block;
}

.frm-nhantin .input {
    width: 100%;
    padding: 1em;
    border-radius: 5px;
    border: 1px solid #15274D;
    color: #15274D;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 1em;
}

.frm-nhantin .input::-webkit-input-placeholder {
    color: #525252;
}

.frm-nhantin .input:-moz-placeholder {
    color: #525252;
}

.frm-nhantin .input::-moz-placeholder {
    color: #525252;
}

.frm-nhantin .input:-ms-input-placeholder {
    color: #525252;
}

.frm-nhantin button {
    width: 178px;
    padding: 16px 21px;
    border-radius: 44px;
    background: #15274D;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 auto;
    display: table;
}

.frm-nhantin button:hover {
    background: #0e5271;
}

/* Bottom */
.title-center {
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
    padding-bottom: 1em;
}
.title-center:after {
    position: absolute;
    content: '';
    width: 200px;
    height: 1.5px;
    max-width: 90%;
    background: #0e5271;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.title-center h2, .title-center h4 {
    font-weight: 100;
    font-family: HelveticaNeue-Medium;
    text-transform: uppercase;
    font-size: 1.8em;
    color: #0e5271;
}
.title-center p {
    font-size: 14px;
    max-width: 90%;
    margin: 0 auto;
}
#bottom {
    padding: 3em 0;
    background: #f5f5f5;
}
.bottom {
    width: calc(50% - 30px);
}
.box-tintuc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}
.tintuc {
    position: relative;
}
.tintuc .img {
    border-radius: .3em;
}
.tintuc .date {
    position: absolute;
    text-align: center;
    top: .5em;
    left: .5em;
    z-index: 1;
    background: var(--red);
    line-height: 1;
    padding: .5em;
    border-radius: .3em;
}
.tintuc .date span {
    display: block;
}
.tintuc .date span.day {
    font-size: 15px;
    color: #fff;
}
.tintuc .date span.month {
    font-size: 12px;
    color: #fff;
}
.tintuc .content h3 {
    margin: .5em 0;
}
.tintuc .content h3 a {
    color: #15274D;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-align: justify;
}

.tintuc .content .date {
}

.tintuc .content .desc {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 23px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-align: justify;
}

.tintuc .content .view {
    display: table;
    margin: 0 0 0 auto;
    font-size: 14px;
    color: #060606;
}

.tintuc:hover .content h3 a {
    color: #0e5271;
}

.tintuc .content .view:hover {
    color: #0e5271;
    text-decoration: underline;
}
/* counter */
#counter {
    padding: 3em 0;
    background: url(../images/bg-counter.png) no-repeat center;
    background-size: cover;
}
.counter {
    text-align: center;
    color: #fff;
}
.counter .count {
    color: #FFF;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.counter label {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.counter img {
    width: auto !important;
    margin: 0 auto;
}
/* video */
#video {
    display: block;
    padding: 40px 0;
    background: url(../images/bgvideo.png) no-repeat center;
    background-size: cover;
}

.video {
    position: relative;
}

.video:before {
    position: absolute;
    content: '';
    width: 105px;
    height: 105px;
    background: url('../images/play.png') no-repeat center;
    z-index: 1;
    left: calc(50% - (106px / 2));
    top: calc(50% - (106px / 2));
    cursor: pointer;
}
/* feedback */
#feedback {
    padding: 3em 0;
}
.feedback {
    padding: 32px;
    border-radius: 15px;
    border: 2px solid #15274D;
    background: #FFF;
}
.feedback img {
    width: auto !important;
}
.feedback > p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin: 1em 0;
}
.feedback .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 1em;
}
.feedback .user-info {
    width: calc(100% - 65px);
}
.feedback .content img {
    border-radius: 50%;
}
.feedback .user-info label {
    color: var(--Black, #000);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
     /* 24px */
}
.feedback .user-info p{
    color: var(--Black, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
     /* 24px */
}
/* Lien He */
#lienhe {
    padding: 50px 0;
    background: url('../images/bglienhe.png') no-repeat center;
    background-size: cover;
}

.form-lienhe {
    width: 575px;
    display: table;
    margin: 0 0 0 auto;
    padding: 25px;
    background: #999999ad;
    max-width: 100%;
}

.form-lienhe .input-lienhe {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    font-family: 'SVN-HelveticaNeue';
    font-size: 14px;
    color: #333;
    text-transform: capitalize;
    border-radius: 3px;
}

.form-lienhe .input-lienhe::-webkit-input-placeholder {
    color: #333;
}

.form-lienhe .input-lienhe:-moz-placeholder {
    color: #333;
}

.form-lienhe .input-lienhe::-moz-placeholder {
    color: #333;
}

.form-lienhe .input-lienhe:-ms-input-placeholder {
    color: #333;
}

.form-lienhe button {
    display: table;
    margin: 0 0 0 auto;
    padding: 10px 25px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    background: #0e5271;
    border: none;
    text-transform: uppercase;
    font-family: 'SVN-HelveticaNeue';
    border-radius: 3px;
}

.form-lienhe button:hover {
    background: #000;
}

/* album */
.album {
    width: calc(100% / 3);
    padding: 5px;
}

/* Tien Ich */
#visao {
    padding: 20px 0;
}
.visao {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #1685b6;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #ffff;
    cursor: pointer;
}
.visao:hover {
    background: #0e5271;
}
.visao img {
    width: auto !important;
    transition: all 1s;
}
.visao .content {
    width: calc(100% - 55px);
}

.visao label {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 20px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-transform: uppercase;
    font-family: 'HelveticaNeue-Medium';
}

.visao p {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 18px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.visao:hover img {
    transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
}

/* Responsive */
@media(max-width: 1200px) {
    .container {
        min-width: 100%;
        max-width: 100%;
    }

    .wrap-content {
        width: 100%;
        padding: 0 15px;
    }

    .copyright {
        padding: 10px;
    }
    .hotline {
        display: none;
    }
    #header .wrap-content {
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
        gap: 10px;
    }
    #banner .content {
        padding-left: 20px;
    }
    #banner .content  h2 {
        line-height: 1.2em;
        font-size: 40px;
    }
    #banner .content  h3 {
        line-height: 1.3em;
        font-size: 25px;
    }
}

@media(max-width: 980px) {
    .img-center {
        display: none;
    }

   #banner .content, #banner img {
       width: 100%;
   }
    #banner .content {
        padding: 3em 2em;
        overflow: hidden;
    }
    .social-fixed {
        display: none;
    }
    .box-numbers .numbers {
        height: auto;
    }
}

@media(max-width: 750px) {
    .box-why-choose-us {
        grid-template-columns: repeat(2, 1fr);
    }
    .content-numbers {
        grid-template-columns: 1fr;
        grid-gap: 1em;
    }
    .footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        grid-gap: unset;
    }
    .footer > .footer-info, .footer > .social {
        width: 48%;
    }
    .footer .form-contract {
        margin-top: 20px;
        width: 100%;
    }
    
    .header_mm a {
        display: block;
    }
    #header .logo {
        width: 180px;
    }
    #menu {
        position: absolute;
        right: 15px;
    }
    #menu .menu > ul > li {
        display: none;
    }
    #menu .menu > ul > li.menu-lang {
        display: block;
    }
    
    .title {
        width: 100%;
        display: block;
        font-size: 30px;
    }
    .content-numbers .content .title-numbers {
        font-size: 30px;
    }
    .title h2 {
        background: #0e5271;
    }
    h2.title-content {
        font-size: 35px;
    }
    .vision-values ul li {
        font-size: 25px;
    }
    .box-product .list-product {
        border-radius: 0 0 .3em .3em;
    }
    .title a {
        display: none;
    }

    .padding-responsive {
        padding: 30px 0 !important;
    }
    .box-tintuc {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    #banner h2 {
        font-size: 6vw;
    }
    #banner h3 {
        font-size: 5vw;
    }

    #about-us .about-us .content, #about-us .about-us img {
        width: 100%;
    }
    #about-us .about-us {
        margin: 0;
    }
    .welcome-mission {
        grid-template-columns: 1fr;
        margin: 0;
    }
    .faq {
        grid-template-columns: 1fr;
    }
    .box-numbers .numbers .content .count span {
        font-size: 50px;
    }

    .box-faculty-staft {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .grid-product {
        grid-template-columns: repeat(2, 1fr);
    }
    .toolbar {
        display: block;
    }

    #messages-facebook, .res_none {
        display: none;
    }

    .scrollToTop {
        bottom: 55px;
    }


    .tintuc .content .view {
        margin: 0;
    }

    .tintuc .content h3 a {
        font-size: 14px;
        line-height: 22px;
    }
    .box-why-choose-us {
        grid-template-columns: 1fr;
    }
    .box-why-choose-us .why-choose-us:first-child {
        grid-column: 1;
    }
    .box-numbers {
        grid-gap: .5em;
    }
    .box-numbers .numbers .content .count span {
        font-size: 35px;
    }
    .box-numbers .photo-numbers {
        display: none;
    }
    .box-faculty-staft {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 380px) {
    .box-tintuc {
        grid-template-columns: 1fr;
    }
    .product h3 a {
        font-size: .6em;
        line-height: 15px;
        min-height: 30px;
    }
    .box-numbers {
        grid-template-columns: 1fr;
    }
}
