:root {
  --color-main: #2557ae;
  --color-social: #2557ae;
  --color-hover: #2557ae;
  --color-text: #2557ae;
  --bk-paging:  #e67f3c;
  --z-index-lw: 10;
  --z-index-md: 99;
  --z-index-hg: 999;
}

@font-face {
  font-family: 'Arimo';
  src: url('../fonts/Arimo-Bold.woff2') format('woff2'),
      url('../fonts/Arimo-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-ProductSans';
  src: url('../fonts/SVN-ProductSans.woff2') format('woff2'),
      url('../fonts/SVN-ProductSans.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'SVN-ProductSans';
  src: url('../fonts/SVN-ProductSansBold.woff2') format('woff2'),
      url('../fonts/SVN-ProductSansBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
      url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}



@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@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);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-animation {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  10% {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.6, 1.6, 1.6);
    opacity: 0;
  }
}
@keyframes border-animation {
  0% {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0;
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.4, 1.4, 1.4);
    opacity: 0;
  }
}
/*main*/
*,:after,:before{box-sizing:border-box;}
.html {  -webkit-user-select: none; }
body{margin:0;font-size: 16px;font-family:  SVN-ProductSans,sans-serif!important;background-color: #fcfcfc;color:#000; }
.containers { overflow-x: hidden; min-height: 100vh; }
img{display:inline-block;max-width:100%!important;height:auto!important}
img.lazy { opacity: 0; }
img:not(.initial) { -webkit-transition: opacity 1s; transition: opacity 1s; }
img.initial, img.loaded, img.error { opacity: 1; }
img:not([src]) { visibility: hidden; }
a, input, textarea { outline: none; }
.slick-vertical .slick-slide { border: none;}
.wrap-content{margin:auto;max-width:1400px;}
.ckeditor { overflow-x: auto;}
.ckeditor:after { content:''; clear: both; display:block;}
.ckeditor *:not(iframe) { max-width: 100% !important; height: auto !important;}
.ckeditor iframe { max-width: 100% !important; }
.centery, .centery-after:after, .centery-before:before { -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);}
.centerx, .centerx-after:after, .centerx-before:before { -moz-transform: translateX(-50%); -webkit-transform: translateX(-50%); -o-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); transform: translateX(-50%); }
.centerxy, .centerxy-after:after, .centerxy-before:before { -moz-transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.flex-space-between { display: flex; justify-content: space-between; flex-wrap: wrap; }
.flex-space-left { display: flex; justify-content: flex-start; flex-wrap: wrap; }
.flex-space-right { display: flex; justify-content: flex-end; flex-wrap: wrap; }
.flex-space-center { display: flex; justify-content: center; flex-wrap: wrap; }
.text-split {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;}
.hover-a:hover { color: #e67f3c !important;}
.hover-a-line:hover { text-decoration: underline;}
.set-boostrap { color: inherit; font-size: inherit; font-weight: inherit; margin-bottom: 0px;  text-decoration: none;}
.set-boostrap:hover {  color: inherit;}
.page-link { color: var(--bk-paging); }
.page-item.active .page-link { background-color: var(--bk-paging); border-color: var(--bk-paging); }
.page-link:hover { color: var(--bk-paging); }
.slideshow .control-slideshow { opacity: 0; }
.slideshow:hover .control-slideshow { opacity: 1; }
.fixed { position: fixed !important; top: 0px; left: 0px; right: 0px; z-index: var(--z-index-hg); -webkit-animation: fadeInDown 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; animation: fadeInDown 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;     box-shadow: 0px 0px 5px #0000003b;}
.mmb-1{margin-bottom:10px}.mmb-2{margin-bottom:20px}.mmb-3{margin-bottom:30px}.mmb-4{margin-bottom:40px}.mmb-5{margin-bottom:50px}.mmb-6{margin-bottom:60px}.mmb-7{margin-bottom:70px}.mmb-1b{margin-bottom:5px}.mmb-2b{margin-bottom:15px}.mmb-3b{margin-bottom:25px}.mmb-4b{margin-bottom:35px}.mmb-5b{margin-bottom:45px}.mmb-6b{margin-bottom:55px}.mmb-7b{margin-bottom:65px}.mmt-1{margin-top:10px}.mmt-2{margin-top:20px}.mmt-3{margin-top:30px}.mmt-4{margin-top:40px}.mmt-5{margin-top:50px}.mmt-6{margin-top:60px}.mmt-7{margin-top:70px}.mmt-1b{margin-top:5px}.mmt-2b{margin-top:15px}.mmt-3b{margin-top:25px}.mmt-4b{margin-top:35px}.mmt-5b{margin-top:45px}.mmt-6b{margin-top:55px}.mmt-7b{margin-top:65px}.mmy-1{margin-top:10px;margin-bottom:10px}.mmy-2{margin-top:20px;margin-bottom:20px}.mmy-3{margin-top:30px;margin-bottom:30px}.mmy-4{margin-top:40px;margin-bottom:40px}.mmy-5{margin-top:50px;margin-bottom:50px}.mmy-6{margin-top:60px;margin-bottom:60px}.mmy-7{margin-top:70px;margin-bottom:70px}.mmy-1b{margin-top:5px;margin-bottom:5px}.mmy-2b{margin-top:15px;margin-bottom:15px}.mmy-3b{margin-top:25px;margin-bottom:25px}.mmy-4b{margin-top:35px;margin-bottom:35px}.mmy-5b{margin-top:45px;margin-bottom:45px}.mmy-6b{margin-top:55px;margin-bottom:55px}.mmy-7b{margin-top:65px;margin-bottom:65px}
.title-news { font-weight: bold; font-size: 25px; }
.title-news-relate { font-weight: bold; font-size: 18px; text-transform: uppercase; border-bottom: 1px solid #ccc; padding-bottom: 10px; }
.ul-relate { margin: 0px; padding: 0px 0px 0px 17px; }
.ul-relate li:not(:last-child) { margin-bottom: 10px; }
.date-view-news { color: #ccc; }
/*effetcs*/
.hvr-float {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s !important;
  transition-duration: 0.3s !important;
  -webkit-transition-property: transform !important;
  transition-property: transform !important;
  -webkit-transition-timing-function: ease-out !important;
  transition-timing-function: ease-out !important;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.scale-img{overflow:hidden}
.scale-img .scale-img-e{transform:scale(1,1)}
.scale-img:hover .scale-img-e{transform:scale(1.1,1.1)}
.hover-img{position:relative;overflow:hidden;display:block}
.gradient-img{position:relative;overflow:hidden}
.gradient-img .gradient-img-e{width:100%;display:block;transition:transform .3s ease}
.gradient-img::after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(45deg,rgba(255,0,150,0.5),rgba(0,230,118,0.5));opacity:0;transition:opacity .3s ease}
.gradient-img:hover::after{opacity:1}
.blurry-circle-eff{overflow:hidden;position:relative}
.blurry-circle-eff .blurry-circle-eff-e{transition:filter .5s ease}
.blurry-circle-eff:hover .blurry-circle-eff-e{filter:grayscale(100%)}
.blurry-circle-eff::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:radial-gradient(circle,transparent 50%,rgba(0,0,0,0.5) 100%);opacity:0;transition:opacity .5s ease}
.blurry-circle-eff:hover::after{opacity:1}
.shadow-box-eff{transition:box-shadow .3s ease}
.shadow-box-eff:hover{box-shadow:0 10px 20px rgba(0,0,0,0.3)}
.shadow-full-box-eff {
    overflow: hidden;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.5s ease;
}


.shadow-full-box-eff:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}
.move-light-eff{overflow:hidden;position:relative}
.move-light-eff .move-light-eff-e{transition:filter 1s ease}
.move-light-eff::before{content:"";position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:linear-gradient(45deg,rgba(255,255,255,0.1),rgba(255,255,255,0.5));pointer-events:none;transition:transform 1s ease;transform:translateX(-100%)}
.move-light-eff:hover::before{transform:translateX(100%)}
.card-eff{perspective:1000px;overflow:hidden;position:relative}
.card-eff .card-eff-e{width:100%;height:100%;transition:transform .5s ease;transform-origin:center right}
.card-eff:hover .card-eff-e{transform:rotateY(-15deg)}
.color-layer-eff{overflow:hidden;position:relative}
.color-layer-eff .color-layer-eff-e{transition:transform .5s ease,filter .5s ease}
.color-layer-eff:hover .color-layer-eff-e{transform:scale(1.1);filter:brightness(50%)}
.color-layer-eff::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(255,0,0,0.3);transition:opacity .5s ease;opacity:0}
.color-layer-eff:hover::after{opacity:1}
.border-eff {
    border: 2px solid transparent;
    transition: border-color 0.5s ease;
}

.border-eff:hover {
    border-color: yellow;
}

.flip-eff {
    perspective: 1000px;

}

.flip-eff .flip-eff-e {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-eff:hover .flip-eff-e {
    transform: rotateY(180deg);
}

.rotate-circle-scale-eff {
    overflow: hidden;
    position: relative;
}

.rotate-circle-scale-eff .rotate-circle-scale-eff-e {
    transition: transform 0.5s ease;
}

.rotate-circle-scale-eff:hover .rotate-circle-scale-eff-e {
    transform: rotate(360deg) scale(1.2);
}
/*header*/
.header { background: #E67F3C; background: linear-gradient(90deg, #E67F3C 0%, #CA6837 70.4%, #BF5F35 100%);} 
.bg-header-top { position: relative; background: #1C1F35; color: #fff; margin-left: 480px; padding: 10px 0px;}
.bg-header-top marquee { font-family: 'Arimo'; font-weight: bold; font-size: 16px; margin-right: 50px; line-height: 30px;}
.bg-header-top:before { content:''; position: absolute; top: 0px; bottom: 0px; right: 100%; margin-right: -1px; width: 45px;background: #1C1F35; clip-path: polygon(0 0, 100% 100%, 100% 0); }
.bg-header-top:after { content: ''; position: absolute; left: 100%; top: 0px; bottom: 0px; width: 2000px; background: #1C1F35;}
.header-link a { display: inline-block; vertical-align: middle; margin: 3px 0px; font-weight: bold; text-transform: uppercase; font-size: 16px;}
.header-link .line { display: inline-block; vertical-align: middle; width: 2px; height: 15px; margin: 3px 15px; background-color: #fff;}
.header-mid { padding-top: 15px; padding-bottom: 30px; }
.header-mid-left { margin-top: -45px; }
.header-mid-center { width: 46%;}
.header-key { font-size: 16px; color: #fff; margin-bottom: 12px;}
.header-hotline { font-family: 'Arimo'; font-size: 20px; color: #fff; margin-bottom: 6px;}
.header-hotline span { font-weight: bold;}
.header-tracking { font-family: 'Inter'; font-weight: bold; font-size: 20px; text-transform: uppercase; padding: 9px 20px; background-color: #E67F3C; color: #fff !important; border: 1px solid #FFF; border-radius: 10px;}
.header-tracking:hover {     background-color: #ffa76e; }
.header-dropdown { font-family: 'Inter'; font-weight: bold; font-size: 20px; text-transform: uppercase; color: #000; margin-left: 10px;}
.header-dropdown  button {     border-radius: 10px;  height: 50px; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.50); text-transform: uppercase;}
/*search*/
.search{ height: 50px; overflow:hidden}
.search:focus-within { outline: none;}
.search input{ border: 1px solid #000; border-radius:5px; background: #F9F9F9; width: calc(100% - 200px); height: 100%; padding-left: 15px; padding-right: 15px; }
.search button { text-transform: uppercase; border: none; width: 190px; height: 100%; color: #000; border-radius:5px; background: #F9F9F9;  border: 1px solid #000; font-size: 16px; font-weight: bold;}

.search-mobile { display: none !important; width: calc(100% - 100px); height: 35px; background-color: #fff; }

/*category*/
.category_menu{position:relative;width:270px;z-index: var(--z-index-md);font-size: 14px;}
.category_menu.v-none > .nicescl{display:none;top:100%}
.category_menu .title{ line-height: 1.0; padding: 0px 5px 0px 18px; height:100%;cursor:pointer; font-family: 'VL-ProximaNova';font-weight:bold;font-size:16px;text-transform: uppercase; background: #002400; color: #fff;}
.category_menu .title img { margin-right: 20px;}
.category_menu ul{padding:0;margin:0;list-style:none;text-align:left;background-color:#fff;}
.category_menu .content { height: 450px; }
.category_menu .nicescl{position:absolute;width:100%;left:0;top:100%;    box-shadow: 0px 3px 3px #0000001f;}
.category_menu .nicescl_list {     box-shadow: 0px 3px 3px #0000001f; top: 0px; height:  100%; -webkit-transform:scaleX(0);transform:scaleX(0);width:100%;display:none;position:absolute;z-index:var(--z-index-hover);left:calc(100% - 10px);left:-moz-calc(100% - 10px);left:-webkit-calc(100% - 10px);}
.category_menu ul img { margin-right: 10px;}
.category_menu li:not(:last-child) { border-bottom: 1px solid #f1f1f1;}
.category_menu li a{ position: relative; display:block;padding: 10px 45px 10px 18px; color: #0f0f0f;}
.category_menu ul ul{height: 100%; overflow:auto;}
.category_menu ul > li:hover > .nicescl_list{display:block;-webkit-animation:scale-up-hor-left .4s cubic-bezier(0.390,0.575,0.565,1.000) both;animation:scale-up-hor-left .4s cubic-bezier(0.390,0.575,0.565,1.000) both}
.category_menu ul > li:last-child{border-bottom:none}
.category_menu li:hover > a{background-color:#00000008}
.category_menu i { position: absolute; right: 12px; top: 50% }
@-webkit-keyframes scale-up-hor-left {
0%{-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;transform-origin:0 0}
100%{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transform-origin:0 0;transform-origin:0 0}
}
@keyframes scale-up-hor-left {
0%{-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;transform-origin:0 0}
100%{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transform-origin:0 0;transform-origin:0 0}
}
.custom_category_menu {
  overflow: auto;
}

.custom_category_menu::-webkit-scrollbar {
    width: 3px;
  }

.custom_category_menu::-webkit-scrollbar-track {
    background: #ffffff;
  }

.custom_category_menu::-webkit-scrollbar-thumb {
    background-color: #004f9a;
    border-radius: 3px;
    border: 0px solid #ffffff;
}
/*index*/
.social{list-style:none;padding:0;margin:0}
a.views_dm{width:140px;height:38px}
.effect_button{transform-style:preserve-3d;transform:translateZ(-25px);transition:transform .25s;position:relative;display:inline-flex;z-index:1}
.effect_button:after,.effect_button:before{position:absolute;content:"xem thêm";height:100%;width:100%;display:flex;align-items:center;justify-content:center;border:1px solid #5172fd;box-sizing:border-box;border-radius:5px;z-index:-1;text-transform:uppercase;font-weight:700;font-size:15px}
.effect_button:before{color:#fff;background:#5172fd;transform:rotateY(0deg) translateZ(25px)}
.effect_button:after{color:#5172fd;transform:rotateX(90deg) translateZ(25px)}
.effect_button:hover{transform:translateZ(-25px) rotateX(-90deg)}
a.btn_link{position:relative;margin:5px;height:36px;width:140px}
.btn_link.effect_button:first-child:after,.btn_link.effect_button:first-child:before{content:"facebook"}
.btn_link.effect_button:first-child:after,.btn_link.effect_button:first-child:before,.btn_link.effect_button:nth-child(2):after,.btn_link.effect_button:nth-child(2):before{border-width:1px;border-style:solid;--tw-border-opacity:1;border-color:#000;--tw-bg-opacity:1;background-color:#000}
.btn_link.effect_button:nth-child(2):after,.btn_link.effect_button:nth-child(2):before{content:"google map"}
div.slick.in-page:not(.slick-initialized){display:flex;gap:10px;overflow:hidden;white-space:nowrap}
.attr-pro-detail{margin:auto;padding:0}
.price-new-pro-detail{font-weight:700;font-size:20px;color:#ff2e00}
.price-old-pro-detail{font-weight:500;color:#666;text-decoration:line-through;padding-left:10px}
.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}
.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}
.duration-150,.transition-all{transition-duration:.15s}
.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}


.social-plugin {
  display: flex;
  margin-top: 10px;
}


/* Transition All */
.transition,
.btn-frame .kenit-alo-circle-fill,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover > ul,
.scale-img img,
.scale-img:hover > img,
.support-online .kenit-alo-circle-fill {
  transition: 0.3s all;
}
/*Tabs paging*/
.tabs { list-style: none; margin: 0px; padding: 0px 0px 0px 20px; font-weight: 800;}
.tabs li { display: inline-block; margin: 4px 0px; }
.tabs a { display: block; cursor: pointer; color: #141414; }
.tabs a.active { background-color: #004f9a; color: #ffcd54; padding: 7px 20px; border-bottom-left-radius: 10px; border-top-right-radius: 10px;}
.tabs li:not(:last-child) { margin-right: 30px;}
/*Header*/
header {
  background: url(../images/bg-header.png) no-repeat center/cover;
}
header .top {
  background: #2557ae;
  color: #fff;
  text-align: center;
  padding: 10px 0px;
}
header .top p {
  margin: 0px;
}
header .hotline-header {
  display: inline-block;
  padding-left: 80px;
  background-image: url(../images/hotline.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  padding: 10px 0px 10px 80px;
}
header .hotline-header p {
  margin-bottom: -2px;
  text-transform: capitalize;
  font-size: 15px;
  color: black;
}
header .hotline-header span {
  color: #f30000;
  font-size: 22px;
  display: block;
  font-family: impact;
}
.menu {position: relative;z-index: var(--z-index-hg);background-color: #E67F3C;}
.fix_menu {position: fixed !important;top: 0px; left: 0px; right: 0px;}
.menu-list { font-size: 15px; width: 100%;}
.menu-list ul { padding: 0px; margin: 0; list-style: none; }
.menu-list ul li { position: relative;}
.menu-list ul.ulmn > li > a { color: #fff; padding: 14.5px 10px; text-transform: uppercase; font-size: 16px; font-weight: bold; }
.menu-list ul li a {text-decoration: none !important;display: block;}
.menu-list ul ul li  a { text-transform: uppercase; color: #232323;}
.menu-list ul li a.active, .menu-list ul li:hover > a {color: #ffcd53;}
.menu-list ul ul li:hover > a {color: #e67f3c;}
.menu-list ul li ul {position: absolute;min-width: 250px;left: 0;right: 0;background: #fff;box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);-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-list 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-list ul li ul li {text-align: left; border-bottom: 1px solid rgb(173 173 173 / 32%);}
.menu-list ul li ul li:last-child { border-bottom: 0px; }
.menu-list ul li ul li a {font-size: 15px;padding: 10px;display: block;text-decoration: none !important;line-height: 20px;text-align: left;font-weight: 500;text-transform: capitalize;}
.menu-list ul li ul li ul { top: 0px; left: 100%; }
.menu-list ul li ul li a:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: #e67f3c;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    -ms-transition: all .3s linear;
    visibility: hidden;
    opacity: 0;
    }
.menu-list ul li ul li a:hover:before, .menu-list ul li ul li>a.active:before {
    left: 0;
    visibility: visible;
    opacity: 1;
    width: 30px;
}
.menu-list ul li ul li a:hover{padding-left:40px;}
.line-menu { background: url(../images/line-menu.png) no-repeat center; width: 12px; height: 12px; margin: 0px 10px;}
.menu-list i { margin-left: 5px; }

a.cart-header {
    position: relative;
}
a.cart-header span {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    font-size: 11px;
    width: 17px;
    height: 17px;
    text-align: center;
    border-radius: 50%;
}
/*footer*/
footer { color: #fff;}
.footer-article { padding: 20px 0px; color: #fff; background: #050D45; background: linear-gradient(90deg, #050D45 0%, #1C1F35 100%);}
.footer-article .item-1 { width: 31%;}
.footer-article .item-2 { width: 17%;}
.footer-article .item-3 { width: 30%; overflow: hidden;}
.company-footer { list-style: none; padding: 0px; margin: 0px;}
.company-footer li { padding: 6px 0px; padding-left: 40px;}
.company-footer li:not(:last-child) { margin-bottom: 15px;}
.company-footer li.address { background: url(../images/company-map.png) no-repeat left center;}
.company-footer li.phone { background: url(../images/company-phone.png) no-repeat left center;}
.company-footer li.email { background: url(../images/company-email.png) no-repeat left center;}
.footer-ul { list-style: none; padding: 0px; margin: 0px;}
.footer-ul li:not(:last-child) { margin-bottom: 15px;}
.footer-powered { position: relative; background: #BF5F35; background: linear-gradient(270deg, #BF5F35 0%, #E67F3C 100%); padding: 13px 0px;}
.footer-map { overflow: hidden; border-radius: 20px;}
.footer-map iframe { display: block; width: 100% !important; height: 155px  !important;}
.title-footer { margin-bottom: 25px; font-size: 25px; font-weight: bold;}
.footer-article-company { text-transform: uppercase; font-size: 30px; font-family: 'VL-ProximaNova'; font-weight: bold; }
.footer-article-company span { display: inline-block; position: relative;}
.footer-article-company span:after { content: ''; position: absolute; top: 0px; bottom: 0px; left: 100%; margin-left: 20px; margin: auto; width: 2000px; height: 1px; background-color: #fff;}
.footer-statistic .line { margin: 0px 10px;}
.footer-tags { padding: 15px; }
.footer-tags label { vertical-align: middle; font-size: 20px; text-transform: uppercase; font-family: 'VL-ProximaNova'; font-weight: bold; margin-right: 20px;}
.footer-tags a { vertical-align: middle; color: #fff; font-weight: 500; margin-top: 5px; margin-bottom: 5px; }
.footer-tags span { vertical-align: middle; margin: 5px 10px;  }
.footer-tags a:hover { color: #ffcd53; }
.fb-page-bor { display: inline-block; overflow: hidden; border-radius: 25px; min-width: 345px; }

.filter-slider { position: absolute; z-index: 2; top: 50%; width: 50%; max-width: 680px; border-radius: 20px; background-color: #ffffff80; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); padding: 20px; }
.title-filter { font-weight:  bold; margin-bottom: 5px; }
.desc-filter { font-weight:  bold; font-size: 14px; margin-bottom: 0px; }
.content-filter { list-style: none; padding: 0px; margin: 0px;}
.content-filter li { margin-top: 15px;}
.item-filter { width: 100%; padding-left: 20px; }
.item-filter input[type="text"] { width: 100%; height: 30px; font-size: 14px; border: 1px solid #808080}
.item-filter input[type="submit"] { margin-left: 5px; width: 100px; height: 40px; color: #fff; font-size: 16px; background-color: #BF5F35; border-color: #BF5F35; }

.wrap-filter { max-width: 1060px; margin: auto;padding: 20px 45px 45px 45px; border-radius: 20px; border: 1px solid #989898; background-color: #fff; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); }
.wrap-filter .title-filter { font-size: 35px; text-align: center; }
.wrap-filter .desc-filter { font-size: 18px; text-align: center; margin-bottom: 20px;}
.link-return { display: inline-block; margin-top: 30px; border-radius: 10px; padding: 8px 15px; background: #BF5F35; color: #fff !important; font-size: 20px; font-family: Inter; font-weight: bold; text-transform: uppercase;  }
/*   SLider */
.control-owl {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0px;
  top: calc(50% - 27px);
}
.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;
  font-size: 25px;
  margin: 0px;
  background-color: #000000;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.control-owl button:hover {
  opacity: 1;
}
.control-owl button.owl-prev {
  left: 20px;
}
.control-owl button.owl-next {
  right: 20px;
}

/* News */
.grid-tintuc { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; flex-flow: row wrap; -webkit-flex-flow: row wrap; justify-content: space-between; }
.news {display: block;margin-bottom: 20px;display: block;}
.pic-news {border-radius: 10px;display: block;overflow: hidden;position: relative;}
.pic-news img { width: 100%; }
a.views {
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    border: solid 1px #ccc;
    padding: 7px 20px;
    border-radius: 20px;
    color: #000;
    font-size: 16px;
} 
a.views:hover {
    border: solid 1px #5172fd;
    color: #5172fd;
}
.info-news {}
.info-news h3 {}
.name-news {color: #1b1b1b;font-size: 18px;line-height: 22px;max-height: 40px;-webkit-line-clamp: 2 !important;font-weight: 400;}
a.name-news.name1 {
    font-size: 25px;
    line-height: 32px;
    max-height: 64px;
}
.name-news:hover {color: #5172fd;}
.time-news {color: #5172fd;margin-bottom: 0px;font-size: 12px;margin: 7px 0;font-style: italic;font-weight: 500;}
.desc-news { color: #333333; margin-top: 0px; line-height: 20px; height: 60px; }
.share { padding: 17px 10px 10px 10px; line-height: normal; background: rgba(128, 128, 128, 0.15); margin-top: 15px; border-radius: 5px; }
.share b { display: block; margin-bottom: 5px; }
.othernews b { margin-bottom: 10px; }
.list-news-other { padding-left: 17px; list-style: square; }
.list-news-other li { margin-bottom: 2px; }
.list-news-other li a { text-transform: none; color: #333333; }
.list-news-other li a:hover { color: #5172fd; }
/* 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; }

/* Partner */
.info-partner {
  background: #f8f8f8;
  padding: 15px 0px;
}

/* Footer */
.info-footer {
}
.info-footer .flex-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.info-footer .flex-footer .box-footer .social-footer {
  display: flex;
  gap: 5px;
  margin: 10px 0px;
}
.info-footer .flex-footer .box-footer:nth-child(1) {
  width: 33.3%;
}
.info-footer .flex-footer .box-footer:nth-child(2) {
  width: 40%;
}
.info-footer .flex-footer .box-footer:nth-child(3) {
  width: 25%;
}
.info-footer .flex-footer .title-footer {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 14px;
}
.info-footer .flex-footer .service-footer {
  margin-top: 20px;
}
.info-footer .flex-footer .service-footer ul {
  padding: 0px;
  margin: 0px;
}
.info-footer .flex-footer .service-footer ul li {
  list-style: none;
  padding: 5px 0px;
}
.info-footer a {
  color: #fff;
}

/*   TC   */
.item-criteria a {
  display: flex;
  align-items: center;
  color: #333;
}
.item-criteria a .ds-criteria {
  width: calc(100% - 60px);
  margin-left: 10px;
}
.item-criteria a .ds-criteria h3 {
  -webkit-line-clamp: 2;
  font-size: 16px;
  color: var(--color-main);
}
.item-criteria a .ds-criteria p {
  -webkit-line-clamp: 2;
  margin: 0px;
}

/* About */
.box-about {
  max-width: 700px;
  margin: 0px auto;
  text-align: center;
}
.box-about h3 {
  color: #ca0000;
  font-family: SVN;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: lowercase;
}
.box-about a {
  padding: 10px 20px;
  color: white;
  text-transform: uppercase;
  font-size: 15px;
  display: block;
  background: #ca0000;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  border-radius: 10px;
}

/* Service */
.item-service {
  position: relative;
}
.item-service h3 {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  font-size: 17px;
  margin: 0px;
}

/*box*/
.box-product-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.box-product-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.box-product .box {text-align: center; position: relative; }
.box-product .thumb { display: block; position: relative; border: 1px solid #002400; border-radius: 5px; overflow: hidden;}
.box-product .content { padding: 12px 0px;}
.box-product .name { margin-bottom: 0px; height: 48px; }
.box-product .name a { font-size: 16px; color: #002100; -webkit-line-clamp: 2; line-height: 1.5;}
.box-product .price-per { position: absolute; right: 5px; top: -5px; width: 92px; height: 43px; line-height: 37px; background: url(../images/bg-discount.png) no-repeat; color: #fff; font-weight: bold; font-size: 20px; }
.box-product .price-product { margin-bottom: 0px;}
.box-product .price-new { margin-top: 5px; display: inline-block;  font-size: 16px; color: #FF710B; font-weight: 600;}
.box-product .price-old { margin-top: 5px; display: inline-block;  font-size: 14px; color: #BFBFBF; margin-left: 20px; text-decoration: line-through;}
.box-product .cart-pro { display: block; background-color: #006600; color: #fff; font-size: 14px; padding: 9.5px;}
.box-product .owl-item { padding-top: 5px;}
.box-product.temp .box { padding: 6px; background-color: #F1F1F1; border: 1px solid #D1D1D1; border-radius: 5px;;}
.box-product.temp .thumb { border: none;}
.box-product .cart-pro-mid { opacity: 0; position: relative; z-index: 1; display: block; margin: auto; margin-top: -48px; width: 60px; height: 60px; line-height: 50px; text-align: center; border-radius: 50%; border: 5px solid #fff; background-color: #006600; color: #fff; }
.box-product .box:hover .cart-pro-mid { opacity: 1; }
.box-product .cart-pro:hover, .box-product .cart-pro-mid:hover { background-color: #ff710b; }

.box-project-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}
.box-project .box { border: 1px solid #3686d1; padding: 1px; text-align: left; color: #fff; }
.box-project .thumb { display: block; width: 54%;}
.box-project .content { width: 46%; padding: 35px 12px 20px 12px; }
.box-project .name { margin-bottom: 7px; height: 54px;}
.box-project .name a { font-weight: bold; font-size: 18px; color: #fff; -webkit-line-clamp: 2; line-height: 1.5;}
.box-project .desc { font-size: 14px; -webkit-line-clamp: 4; margin-bottom: 0px;}
.box-project .box:hover { background-color: #ffcd54; border-color: #ffcd54; color: #0e0e0e;}
.box-project .box:hover .name a {color: #0e0e0e;}


.box-news-cus-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.box-news-cus-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
.box-news-cus .box { background-color: #F1F1F1; border-radius: 10px; padding: 10px; text-align: center;}
.box-news-cus .thumb { display: block; border-radius: 10px;}
.box-news-cus .name { margin-top: 20px; font-weight: 600; line-height: 1.5;}
.box-news-cus .name:after { content: ''; display: block; margin: auto;  margin-top: 12px; width: 57px; height: 1px; background-color: #e67f3c;}
.box-news-cus .name a { -webkit-line-clamp: 2;}
.box-news-cus .desc { margin-top: 10px; -webkit-line-clamp: 3; line-height: 2.0; margin-bottom: 0px;}
.box-news-cus .box:hover .name a {color: #0e0e0e;}

.box-news-cus.no-line .box { padding: 0px; border-radius: 0px;}
.box-news-cus.no-line .thumb { border: 1px solid #000; border-radius: 0px;}
.box-news-cus.no-line .name:after { display: none;}
.box-news-cus.no-line .desc { -webkit-line-clamp: 3; line-height: 1.5;}


.box-news-def .box { text-align: left; margin-bottom: 25px;}
.box-news-def .thumb { display: block; border-radius: 10px; width: 38%; }
.box-news-def .content { width: 60%; } 
.box-news-def .name { font-weight: 600; line-height: 1.5; font-size: 18px;}
.box-news-def .desc { margin-top: 10px; -webkit-line-clamp: 3; line-height: 2.0; margin-bottom: 0px;}

.box-album-detail { margin-top: 15px; }
.box-album-detail-6 {display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 5px;}
.box-album-detail .box { position: relative; }
.box-album-detail .box a { cursor: zoom-in; }
.box-album-detail .title { position: absolute; z-index: 2; left: 0px; right: 0px; bottom: 0px; padding: 15px; color: #fff; background-color: #006600ba; font-size: 15px; }
.box-album-detail .text-split { -webkit-line-clamp: 1 }

.box-video { margin-top: 15px; }
.box-video-3 {display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px;}
.box-video-3 .box { position: relative; }
.box-video i { position: absolute; z-index: 1; top: 50%; left: 50%; color: #fff; font-size: 70px; opacity: 0.6}
.box-video .box:hover i { opacity: 1; color:#f00;}
.box-video .box:hover i:before { position: relative; z-index: 1;}
.box-video .box:hover i:after { content: ''; position: absolute; margin: auto; top: 0px; bottom: 0px; left: 0px; right: 0px; width: 50%; height: 50%; background-color: #fff;}


.box-partner-6 { display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;}

.box-partner.owl-page { padding: 0px 40px;}
.box-partner .box { border-radius: 15px;}
.control-partner-p { position: relative;}

/* product detail */
.left-pro-detail { width: 48%; text-align: center;}
.right-pro-detail { width: 48%;}
.title-pro-detail { font-size: 25px; font-weight: bold; }
.desc-pro-detail { margin-bottom: 1rem; }
.album-product { margin-top: 10px; position: relative;  padding: 0px 30px;}
.thumb-pro-detail { border: 1px solid #ccc; border-radius: 3px; overflow: hidden;}
.thumb-pro-detail.mz-thumb img { padding-bottom: 0px; border:0px}
.control-album-product.control-owl { top: calc(50% - 12.5px)}
.control-album-product.control-owl button { width: 20px; height: 25px;}
.control-album-product.control-owl button svg { width: 100%; height: 100%;}
.control-album-product.control-owl button.owl-prev { left: 0px;}
.control-album-product.control-owl button.owl-next { right: 0px;}

.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-size: 25px; color: #d0021c; font-weight: bold; }
.attr-price-si { font-size: 18px; color: #d0021c; font-weight: bold; }

.price-old-pro-detail { font-size: 17px; color: #6c757d; text-decoration: line-through; padding-left: 5px; }

.discount-pro-detail {  font-size: 16px;  color: #d0021c; padding-left: 5px;}

.cart-product {margin: 5px 0 0 0px;}
.cart-product span {cursor: pointer;color: #fff;text-align: center;padding: 0px 5px;border-radius: 5px;display: inline-block;line-height: 34px;font-size: 13px;font-weight: 700;}
.cart-add {margin-left: 10px;background-color: #00A5D9;width: 155px;}
.cart-add:hover { background-color: #5172fd; }
.cart-buy {background-color: #FF2E00;width: 93px;height: 33px;}
.cart-buy:hover {background-color: #5172fd;}

.social-pro a { border-radius: 5px; display: inline-block; padding: 10px 15px; margin: 5px 0px; background: linear-gradient(180deg, #F3B860 0%, #FFC86B 36.5%, #FBC066 70%, #DF9D51 100%); color: #000; }
.social-pro a:not(:last-child) { margin-right: 5px; }

.tabs-pro-detail, .tab-pro-related { margin-top: 50px;}
.label-tags-pro-detail { margin-right: 5px; }
.label-tags-pro-detail i { font-size: 16px; vertical-align: middle; }
.tags-pro-detail { margin-top: 30px; }
.tags-pro-detail a { vertical-align: middle; margin: 2px 0px; }
.tags-pro-detail span { vertical-align: middle; margin: 2px 5px; }
#tabsProDetail.nav-tabs a.nav-link { color: inherit; }
/* Letter */
.form-newsletter { background: #fff;  border-radius: 20px; border: 1px solid #000; height: 55px; overflow: hidden; }
.form-newsletter input  { width: calc(100% - 65px); height: 100%; border: none; text-indent: 10px; font-size: 16px; }
.form-newsletter button { width: 65px; height: 100%; border: none; font-size: 25px; background-color: transparent;}

/* Contact */
.contact-map {
  position: relative;
  height: 500px;
  margin-top: 30px;
}
.contact-map iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

/*  breadCrumbs */
.breadCrumbs {
  padding: 10px 0px;
  background: #ddd;
}
.breadCrumbs ol {
  margin: 0px;
}
.breadCrumbs ol li a {
  color: #333;
}
.breadCrumbs ol li a:hover {
  color: #f00;
}

/* paging */
.pagination {
  margin: 20px 0px;
}
.pagination li a {
  cursor: pointer;
}

.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1182fc;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: #1182fc;
  opacity: 0.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;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  animation-name: pulse;
}

.grid-properties {
  display: flex;
  gap: 10px;
  margin: 10px 0px;
}
.grid-properties span {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  cursor: pointer;
}
.grid-properties span:hover, .grid-properties span.active {
  border: 1px solid #f00;
  color: #f00;
}
.grid-properties span:hover:after, .grid-properties span.active:after {
  content: "";
  border: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
  bottom: 0;
  position: absolute;
  right: -0.9375rem;
}
.grid-properties span.outstock {
  pointer-events: none;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.26);
  cursor: not-allowed;
}

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

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

/* Contact */
.form-floating.form-floating-cus > input,
.form-floating-cus > select {
  height: 45px;
  font-size: .875rem;
}
.form-floating.form-floating-cus > textarea {
  height: 100px;
}
.form-floating.form-floating-cus > label {
  padding: 10px 10px;
  color: var(--color-gray);
}
.contact-article {
  margin-bottom: 3rem;
}

.contact-input {
  position: relative;
  margin-bottom: 20px;
}
.contact-input input,
.contact-input textarea {
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
.contact-input input:focus,
.contact-input textarea:focus {
  box-shadow: none;
  outline: none;
}
.contact-input textarea {
  resize: none;
  height: 150px;
}

.contact-input .custom-file-label::after {
  content: attr(title);
}
/*index*/
.mmt { margin-top: 60px;}
.title-main { text-align: center; font-size: 35px;  font-family: 'Arimo'; font-weight: bold;}
.cus-control.control-owl button { border-radius: 50%; background: #BF5F35;}

.wrap-linkservice .box {
  padding: 30px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.50);
}

.wrap-linkservice .box img { border-bottom: 3px solid #000; }

.wrap-linkservice .box:hover {
  color: #fff;
  background: #E67F3C;
  background: linear-gradient(270deg, #E67F3C 0%, #BF5F35 100%);
}
.wrap-linkservice .box:hover img {  filter: brightness(0) invert(1); -webkit-filter: brightness(0) invert(1);}
.wrap-linkservice .box:hover .link { color: #fff;}
.wrap-linkservice .name { margin-top: 80px; height: 100px; font-size: 25px; font-family: 'Arimo'; font-weight: bold; -webkit-line-clamp: 2; line-height: 2.0;}
.wrap-linkservice .link { display: inline-block; background-color: #E67F3C; color: #000; padding: 10px 15px; font-size: 20px; border-radius: 10px;}

.owl-service .owl-item { padding: 1px; }

.wrap-why { margin-top: 40px; background: #1C1F35; background: linear-gradient(270deg, #1C1F35 0%, #050D45 100%);}
.wrap-why .item-1 { padding: 78px 0px; width: 49%;}
.wrap-why .item-2 { width: 49%; align-self: flex-end;}
.box-why { color: #fff; list-style: none; padding: 0px; margin: 0px;}
.box-why .thumb { border-radius: 50%; overflow: hidden; background: linear-gradient(270deg, #BF5F35 0%, #E67F3C 100%);}
.box-why .content { padding-left: 40px;}
.box-why .name { font-size: 25px; font-weight: bold;}
.box-why li { margin-top: 40px;}

.wrap-procedure-content { position: relative; z-index: 1; margin-top: -50px; padding: 60px 50px 60px 50px; background-color: #fff; box-shadow: 0px -6px 4px 0px rgba(0, 0, 0, 0.25);}
.list-procedure { list-style: none; margin: 0px; padding: 0px; font-size: 25px;}
.list-procedure li { display: inline-block; vertical-align: middle;}
.list-procedure li:not(:last-child) { margin-right: 50px;}
.list-procedure a { display: block; position: relative; margin-bottom: 10px; cursor: pointer;}
.list-procedure .active { font-weight:  bold;}
.list-procedure .active:after { content: ''; display: block; position: absolute; bottom: -10px; left: 0px; width: 100px; max-width: 100%; height: 5px; background-color: #000;}

.box-process {}
.box-process .box:not(:last-child) { min-width: 277px; margin-right: 8px;}
.box-process .box:last-child { width: 160px;}
.box-process .box-top { position: relative; margin-top: 30px; } 
.box-process .box-top:before { content: ''; position: absolute; top: 0px; bottom: 0px; left: 0px; right: -8px; height: 3px; margin: auto; border-bottom: 3px dashed #000;} 
.box-process .box:last-child .box-top:before { right: 2px; }
.box-process .box-top span { position: relative; z-index: 1; display: block; text-align: center; border-radius: 50%; width: 40px; height: 40px; line-height: 40px; font-size: 20px; font-weight: bold; background: linear-gradient(270deg, #E67F3C 0%, #BF5F35 100%); color: #fff;}
.box-process .box-top img { position: absolute; bottom: 75%; left: 0px; right: 0px; margin: auto; } 
.box-process .box-bot { background-color: #fff; border: 1px solid #000; border-radius: 20px; padding: 20px 13px; margin-top: 30px; min-height: 117px;}
.box-process .box-bot .name { font-size: 20px; font-weight: bold; margin-bottom: 0px;} 
.box-process .box-bot .link { display: inline-block; font-weight: bold; margin-top: 20px;}
.box-process .box-bot .link span { display: inline-block; vertical-align: middle;}
.box-process .box-bot .link i { border-radius: 50%; display: inline-block; vertical-align: middle; margin-left: 5px; width: 20px; height: 20px; background: url(../images/icon-check-process.png) no-repeat center, #E67F3C;}
.box-process .box:not(:first-child) span { left: -22px}
.box-process .success { position: absolute; top:  -6px; right: 0px; width: 50px; height: 50px; background: url(../images/icon-check-success.png) no-repeat center; background-size: 100% 100%; } 

.box-process-mobile { margin-bottom: 80px; }
.box-process-mobile .box { margin-bottom: 30px; }
.box-process-mobile .box-top { position: relative; width: 96px; } 
.box-process-mobile .box-top:before { content: ''; position: absolute; top: 0px; bottom: -58px; left: 19px; border-left: 3px dashed #000;} 
.box-process-mobile .box-top span { position: relative; z-index: 1; display: block; text-align: center; border-radius: 50%; width: 40px; height: 40px; line-height: 40px; font-size: 20px; font-weight: bold; background: linear-gradient(270deg, #E67F3C 0%, #BF5F35 100%); color: #fff;}
.box-process-mobile .box-top img { position: absolute; bottom: 75%; left: 0px; right: 0px; margin: auto; } 
.box-process-mobile .box-bot { background-color: #fff; border: 1px solid #000; border-radius: 20px; padding: 20px 13px; min-height: 80px;}
.box-process-mobile .box-bot .name { font-size: 16px; font-weight: bold; margin-bottom: 0px;} 
.box-process-mobile .box-bot .link { display: inline-block; margin-top: 5px; font-size: 14px;}
.box-process-mobile .box-bot .link span { display: inline-block; vertical-align: middle;}
.box-process-mobile .box-bot .link i { border-radius: 50%; display: inline-block; vertical-align: middle; margin-left: 5px; width: 20px; height: 20px; background: url(../images/icon-check-process.png) no-repeat center, #E67F3C;}
.box-process-mobile .success { position: absolute; bottom:  -20px; left: -5px; width: 50px; height: 50px; background: url(../images/icon-check-success.png) no-repeat center; background-size: 100% 100%; } 



.wrap-customer { padding: 40px 0px; background-color: #f9f9f9;}
.box-feedback .box { border: 1px solid #000; background-color: #fff; padding: 30px; border-radius: 20px;}
.box-feedback .name { font-weight: bold; font-size: 20px; margin-bottom: 0px; margin-top: 25px;}
.box-feedback .cv { font-weight: bold; margin-bottom:10px;}
.box-feedback .desc { -webkit-line-clamp: 4; line-height: 2.0;}

.box-team .box { position: relative; }
.box-team .thumb { border-right: 1px solid #fff; padding: 8px; }
.box-team .content { position: absolute; bottom: 0px; left: 0px; right: 0px; color: #fff; background: #E67F3C; background: linear-gradient(270deg, #E67F3C 0%, #BF5F35 100%); }
.box-team .name { width: 100%; }
.box-team .info { padding: 5px 15px; }
.box-team .info p { margin-bottom: 0px; }
.box-team .info label { font-weight: bold; margin-bottom: 0px;}
.box-team .name { width: 100%; font-size: 16px; }
.box-team .hotline, .box-team .cv { margin-top: 5px; }

.box-answer { max-width: 1000px; margin: auto; padding: 0px; list-style: none; }
.box-answer li { padding: 25px 0px; }
.box-answer li:not(:last-child) { border-bottom: 1px solid #7e7e7e; }
.box-answer .name { position: relative; font-size: 20px; margin-bottom: 0px; padding-right: 30px; }
.box-answer .desc { margin-top: 20px; margin-bottom: 0px; }
.btn-extend-answer { cursor: pointer; position: absolute; margin: auto; width: 20px; height: 20px; top: 0px; bottom: 0px; right: 0px; line-height: 1.0; }
.btn-extend-answer:not(.collapsed):before { content: "\f068"; }

.wrap-newsletter { background: url(../images/bg-newsletter.jpg) no-repeat center; background-size: cover; padding: 80px 0px 80px 0px; }
.wrap-newsletter-content { width: 100%; background: #ffffffb3; padding: 35px 20px; border-radius: 10px; }
.wrap-newsletter .item-1 { font-size: 23px; font-family: 'Arimo'; font-weight: bold;  }
.wrap-newsletter .item-2 { padding: 0px 12px; width: 100%; }
.wrap-newsletter .item-3 { width: 280px; }

.title-social { font-size: 20px; margin-bottom: 5px;}
.social-footer img { margin: 5px 5px; }

.box-toogle { display: none; }
.box-toogle.active { display: block; }

.main-left { width: 20%; }
.main-right { width: 80%; padding-left: 30px; }
.main-left-faq { width: 25%; }
.main-right-faq { width: 75%; padding-left: 30px; }
.box-main { border: 1px solid #ddd; }
.title-item-main { background-color: #E67F3C; color: #fff; font-weight: bold; font-size: 20px; padding: 10px; }
.content-item-main { padding: 20px 10px; }
.list-faqs li:not(:last-child) { margin-bottom: 10px; }
.list-faqs .active { color: #E67F3C; }

.hidden-viewport { overflow: hidden; }
.slideshow-f { position: relative; overflow: hidden; }

.mm-menu .mm-search input { background-color: #fff !important; }

.main-left { width: 75%; }
.main-right { width: 23%;}
.main-item:not(:last-child) { margin-bottom: 25px; }
.title-main-right { font-weight: bold; font-size: 18px; margin-bottom: 15px; text-transform: uppercase; }
.search-detail { height: 40px; border: 1px solid #ccc; }
.search-detail input, .search-detail button { border: none; height: 100%; }
.search-detail input { width: calc(100% - 38px); }
.search-detail button { width: 38px; background-color: #e67f3c; color: #fff; text-align: center; }
.ul-main-right { list-style: none; padding: 10px; margin: 0px; border: 1px solid #ccc; border-radius: 10px;}
.ul-main-right li a { display: block; padding: 10px 0px; }
.ul-main-right li:not(:last-child) { border-bottom: 1px solid #ccc; }

