.hidden-seoh {
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

:root {
  --color-main: #282828;

  /* font */
  --font-diamonda: SVNDiamonda;
  --font-kelsonBold: SVNKelsonSansBold;
  --font-regular: SVNPoppinsRegular;
  --font-black: SVNPoppinsBlack;
  --font-bold: SVNPoppinsBold;
  --font-medium: SVNPoppinsMedium;
  --font-semibold: SVNPoppinsSemiBold;
}

body {
  font-size: 14px;
}

.max-width,
.wrap-content {
  width: calc(100% - 30px);
  margin: 0 auto;
  max-width: 1200px;
}

img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

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

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

.p-relative {
  position: relative;
}

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

/*   Header   */
.header {
  background: var(--color-main);
}

.cart-head {
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  color: #fff;
}

.cart-head:hover {
  color: #fed402;
}

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

.cart-head .count-cart {
  position: absolute;
  z-index: 999;
  color: #fff;
  background: #f00;
  border-radius: 50%;
  top: -10px;
  right: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
}

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

.slideshow .owl-carousel {
  display: block;
}

/* Search */
.search {
  width: 100%;
  max-width: 217px;
  background: rgb(0 0 0 / 10%);
  position: relative;
  right: 0;
  top: 0;
  border-radius: 5px;
}

.search input {
  width: calc(100% - 35px);
  font-size: 13px;
  color: #fff;
  border-radius: 10px;
  line-height: 35px;
  border: none;
  background: transparent;
  padding: 0 12px;
}

.search input::placeholder {
  color: #fff;
}

.search input:focus {
  border: none;
  box-shadow: none;
}

.search p {
  width: 35px;
  height: 35px;
  cursor: pointer;
  line-height: 35px !important;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

/* Search Responsive */
.search-res {
  position: relative;
  margin-left: 15px;
}

.search-res .icon-search {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  margin: 0px;
  border-radius: 50%;
}

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

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

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

.search-res .search-grid input {
  width: calc(100% - 35px);
  border: none;
  color: var(--color-main);
  font-size: 14px;
}

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

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

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

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

/* Menu */

.menu-res {
  display: none;
}

#hamburger {
  width: 35px;
  height: 23px;
  position: relative;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
  background: #ffffff;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
}

#hamburger:before {
  top: 0px;
}

#hamburger span {
  top: 10px;
}

#hamburger:after {
  top: 20px;
}

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

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

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

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

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

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

.mm-slideout {
  z-index: unset;
}

.menu {
  position: relative;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
}

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

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

.menu ul.ulmn {
  max-width: 500px;
  width: 100%;
}

.menu ul.ulmn:first-child {
  margin-left: 0;
  margin-right: auto;
}

.menu ul.ulmn:last-child {
  margin-right: 0;
  margin-left: auto;
}

.menu ul li {
  position: relative;
  z-index: 99;
  transition: 0.3s;
}

.menu ul.ulmn > li {
}

.menu ul li.line {
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  flex: none;
}

.menu ul li a {
  font-size: 15px;
  color: #000;
  margin: 0px;
  padding: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-align: center;
  text-decoration: none !important;
  display: block;
  font-family: var(--font-semibold);
}

.menu ul li a img {
  vertical-align: middle;
}

.menu ul li a.active,
.menu ul li:hover > a {
  color: #000;
}

.menu ul li ul {
  position: absolute;
  min-width: 250px;
  left: 0;
  top: calc(100% + 8px);
  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 0.5s;
}

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

.menu ul li ul li {
  text-align: left;
  border-bottom: 1px solid rgb(173 173 173 / 32%);
}

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

.menu ul li ul li a {
  font-size: 14px;
  padding: 10px;
  display: block;
  line-height: 20px;
  text-align: left;
  font-family: var(--font-medium);
  text-transform: capitalize;
  color: #111;
}

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

.menu ul li ul li a:before {
}

.menu ul li ul li a:hover:before,
.menu ul li ul li > a.active:before {
  left: 0;
  visibility: visible;
  opacity: 1;
  width: 30px;
}

.menu ul li ul li:hover {
  padding-left: 10px;
}

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%;
}

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

.control-owl button {
  opacity: 0.5;
  top: 0px;
  position: absolute;
  outline: none;
  border: 2px solid #fff;
  padding: 0px;
  margin: 0px;
  display: block;
  cursor: pointer;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  font-size: 25px;
  margin: 0px;
  background-color: var(--color-main);
  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;
}

.title-detail,
.title-main {
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}

.title-main p {
  font-size: 50px;
  font-family: var(--font-diamonda);
  color: #4d4d4d;
  margin-bottom: 0;
}

.title-main span {
  font-size: 14px;
  font-family: var(--font-regular);
  color: #4d4d4d;
  line-height: 30px;
  -webkit-line-clamp: 7;
  margin-top: 20px;
}

.title-main h2,
.title-detail h1 {
  color: var(--color-main);
  font-family: var(--font-kelsonBold);
  font-size: 35px;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* share */
.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: #fed402;
}

/* 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-family: var(--font-sbold);
  transition: 0.4s;
}

.box-readmore ul li ul li a {
  font-family: var(--font-regular);
}

.box-readmore ul li a:hover {
  color: var(--color-main) !important;
  padding-left: 8px;
}

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

/* Footer */
.social-footer {
    padding-left: 0;
    margin-bottom: 0;
}

.social-footer li {
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 50px;
}

.social-footer li a{
    color: #fff;
}

.footer-news:nth-child(3) h3 {
    font-size: 18px;
    font-family: 'SVNPoppinsBold';
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
    position: relative;
}

.footer-news:nth-child(3) h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #fff;
}
.footer {
}
.footer-article {
  background: url(../images/bg_footer.png)no-repeat;background-size: cover;
}
.footer-powered {
  padding: 10px;
  background: #000;
}
.copyright {
  color: #fff;
}

.d-fanpage {
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.d-fanpage h3 {
    font-size: 20px;
    font-family: 'SVNPoppinsBold';
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-title {
  font-size: 23px;
  font-family: 'SVNPoppinsMedium';
  color: #fff;
  margin-bottom: 0px;
}

.footer-news > h2 {
    font-size: 48px;
    font-family: 'SVNKelsonSansBold';
    color: #fff;
    text-transform: uppercase;
}
.footer-info {
  color: #fff;
}

.footer-news .ul-list li {
  margin-bottom: 10px;
}
.footer-news .ul-list li h4 {
  font-size: 14px;
}
.footer-news .ul-list li h4 a {
  color: #fff;
}

.d-map iframe {
  width: 100%;
  height: 400px;
}

.footer-news:nth-child(1){
  width: 35.3%; /* 400px/1200 */
}
.footer-news:nth-child(2){
  width: 15.8%; /* 190px/1200 */
}
.footer-news:nth-child(3){
  width: 12.5%; /* 150px/1200 */
}
.footer-news:nth-child(4){
  width: 25%; /* 300px/1200 */
}

/* Sort */
.sort-select {
  display: flex;
  justify-content: end;
  margin: 20px 0px;
  position: relative;
}

.sort-select .click-sort {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  margin: 0px;
}

.sort-select-main {
  display: grid;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
  position: absolute;
  padding: 0 7px;
  top: 30px;
  right: 0;
  width: 160px;
  z-index: 2;
}

.sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0px;
  order: 2;
}

.sort-select-main p:has(.check) {
  order: 1;
}

.sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}

.sort a.check i {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 100px;
  vertical-align: middle;
}

.sort a.check i::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -4px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}

.sort-select .sort-show {
  padding-right: 12px;
  position: relative;
}

.sort-select .sort-show::before {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  right: 0;
  width: 0;
}

/* Product */
.filter {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  display: none;
}

/* product detail */

.wr-search p {
  font-weight: bold;
  text-transform: uppercase;
}

.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: #fed402;
}

.cart-buy {
  background-color: #ff2e00;
  width: 93px;
  height: 33px;
}

.cart-buy:hover {
  background-color: #fed402;
}

.grid-pro-detail .left-pro-detail {
  width: 50%;
  border-right: 1px solid #cdd9b3;
}

.grid-pro-detail .right-pro-detail {
  width: calc(50% - 30px);
}

.detail-product {
  display: flex;
  justify-content: space-between;
}

.detail-product .left-pro-detail {
  width: 40%;
  border: 1px solid #ddd;
}

.detail-product .right-pro-detail {
  width: 57%;
}

.detail-product .right-pro-detail ul {
  list-style: none;
  padding: 0px;
}

.detail-product .right-pro-detail ul li {
  margin-bottom: 20px;
}

.detail-product .right-pro-detail ul li .title-pro-detail {
  font-size: 18px;
}

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

.detail-product .price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: #f00;
}

.attr-content-pro-detail {
  margin-left: 10px;
}

.attr-label-pro-detail {
}

.left-pro-detail > div {
  text-align: center;
}

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

.tabs-pro-detail .nav-tabs .nav-link {
  font-size: 13px;
  color: #333;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  background: #eee;
  margin: 0 5px 5px 0;
}

.tabs-pro-detail .nav-tabs .nav-link.active,
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  background: var(--color-main);
  color: #fff;
}

.attr-pro-detail li {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.tabs-pro-detail .nav-tabs {
  border-color: #cdd9b3;
}

/* modal-detail */
.modal-detail::-webkit-scrollbar {
  width: 10px;
}

.modal-detail::-webkit-scrollbar-thumb {
  width: 10px;
  background: #4d90e0;
  border-radius: 10px;
  height: 50px;
}

.modal-detail {
  position: fixed;
  z-index: 999;
  background: #000000c4;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.content-modal-detail {
  background: #fff;
  max-width: 1200px;
  margin: 0px auto;
  min-height: 100vh;
}

.content-modal-detail .tabs {
  display: flex;
  cursor: pointer;
  padding: 0;
  list-style: none;
  justify-content: center;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0px;
  background: #fff;
  z-index: 99;
}

.content-modal-detail .tabs li {
  padding: 20px 20px;
  margin-right: 5px;
  font-weight: bold;
  position: relative;
  border-bottom: 4px solid #fff;
}

.content-modal-detail .tabs li.active {
  color: #2d9cdb;
  border-bottom: 4px solid #2d9cdb;
}

.content-modal-detail .tab-content {
  padding: 20px;
  max-width: 900px;
  margin: 0px auto;
}

.content-modal-detail .tab-content.active {
  display: block;
}

.close-tab {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 10;
}

.btn-closemenu {
  position: fixed;
  top: 10px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  line-height: 21px;
  padding: 7px;
  text-align: right;
  width: 72px;
}

.btn-closemenu::before {
  transform: rotate(45deg);
}

.btn-closemenu::after {
  transform: rotate(-45deg);
}

.btn-closemenu::before,
.btn-closemenu::after {
  background-color: #333;
  content: "";
  left: 13px;
  height: 14px;
  position: absolute;
  top: 10px;
  width: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

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

.breadCrumbs ol {
  margin: 0px;
}

.breadCrumbs ol li a {
  color: #333;
  transition: 0.4s;
}

.breadCrumbs ol li a:hover {
  color: var(--color-main);
}

.breadCrumbs ol .breadcrumb-item.active {
  color: var(--color-social);
  font-family: var(--font-medium);
  transition: 0.4s;
}

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

.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;
}

[x-cloak] {
  display: none !important;
}

/* css  HuynhPhuc*/

.w-menu {
  z-index: 9;
  position: absolute;
  width: 100%;
  top: calc(100% + 10px);
}

.w-menu.menu-trangtrong {
    position: relative;
    background: #fff;
    padding: 5px 0;
}

li.menu-line {
}

.w-menu.fix_head {
  position: fixed !important;
  width: 100%;
  background: rgb(255 255 255 / 50%);
  top: 0;
  padding: 5px 0;
}

/* product */
.grid-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* product */
.product figure a {
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 259px;
}
.product-info {
  padding: 5px;
  margin-top: 10px;
  text-align: center;
}
.product-info h3 {
  font-size: 16px;
  font-family: var(--font-medium);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.product-info h3 a {
  color: var(--color-main);
  -webkit-line-clamp: 2;
}
.product-info h3 a:hover {
  color: #bf0000;
}
.product .price-new {
  font-size: 18px;
  font-family: var(--font-bold);
  color: #bf0000;
}

/* news */
.grid-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/* news */
.news {
}
.blogHot-contain .news {
  padding: 0 15px;
}
.slick-center .news{margin-top: 40px;}
.news figure p {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  background: #2f2f2f;
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-regular);
  position: absolute;
  left: 20px;
  bottom: -15px;
  padding: 0 15px;
  margin-bottom: 0;
}
.news figure a {
  border-radius: 10px;
}
.news-info {
  margin-top: 30px;
  padding-left: 15px;
  border-left: 1px solid #4d4d4d;
}
.news-info h3 {
  font-size: 16px;
  font-family: var(--font-bold);
  margin-bottom: 10px;
}
.news-info h3 a {
  color: #282828;
}
.news-info h3 a:hover {
  color: #f00;
}
.news-info span {
  font-size: 14px;
  font-family: var(--font-regular);
  color: #4d4d4d;
  line-height: 28px;
}
.news-info p {
}
.news .price-new {
}
.news .price-old {
}
.news .price-per {
}

/* header */
.header p {
  line-height: 45px;
  color: #fff;
  font-family: var(--font-regular);
}

.header-right > a {
  line-height: 35px;
  background: #3f3f3f;
  border-radius: 5px;
  padding: 0 10px;
  color: #fff;
  margin-left: 20px;
}

.header a:hover {
  color: #fc0;
}
.header p span {
  font-family: var(--font-bold);
}

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

.header-right {
  /* max-width: 360px; */
  /* width: 100%; */
}

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

.logo-header {
  box-shadow: 0 0 9px 0 rgb(0 0 0 / 10%);
  border-radius: 50%;
}

/* btn xem them */
.xemthem {
  margin-top: 30px;
  line-height: 45px;
  width: 135px;
  display: block;
  text-align: center;
  background: var(--color-main);
  color: #fff;
  border-radius: 5px;
  font-family: var(--font-bold);
  position: relative;
}

.xemthem:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  transition: 0.3s;
}

.xemthem:hover:after {
  top: 0;
  left: 0;
  transition: 0.3s;
}

.xemthem:hover {
  color: #fc0;
}

/* gioi thieu */
.gioithieu--index {
  padding-bottom: 30px;
}
.gioithieu-info,
.gioithieu-pic {
  width: 50%;
}

.gioithieu-info p {
  font-size: 45px;
  font-family: var(--font-diamonda);
  margin-bottom: 0;
  color: #4d4d4d;
  line-height: 55px;
}

.gioithieu-info h2 {
  font-size: 45px;
  font-family: var(--font-kelsonBold);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.gioithieu-info span {
  font-size: 14px;
  font-family: var(--font-regular);
  line-height: 30px;
  color: #4d4d4d;
  -webkit-line-clamp: 7;
}

.detail-photo {
  margin-top: 25px;
}

.gtDetailPhoto-pic {
  width: 60px;
}
.gtDetailPhoto-info {
  width: calc(100% - 75px);
  font-size: 15px;
  color: var(--color-main);
}
.gtDetailPhoto-info p {
  font-family: var(--font-bold);
}
.gtDetailPhoto-info span {
  font-family: var(--font-regular);
}

/* dich vu */
.dvListHot--index {
  background: #f2f2f2;
}
.dvListHot-title {
  width: 25.8%; /* 310px/1200 */
  padding-right: 20px;
}
.dvListHot-contain {
  width: 74%; /* 895px/1200 */
}

.line-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-wrapper {
  display: flex;
  width: 4000px;
  animation: runImage 50s linear infinite;
}

.image-wrapper > div {
  margin-right: 10px;
}

@keyframes runImage {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.dvListHot {
  max-width: 247px;
  position: relative;
  border-radius: 10px;
}

.dvListHot:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% / 3);
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  pointer-events: none;
}

.dvListHot-info {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 20px;
  padding: 0 10px;
  z-index: 2;
  -webkit-line-clamp: 1;
}

.dvListHot-info h3 {
  font-size: 16px;
  font-family: var(--font-semibold);
  text-transform: uppercase;
  color: #fff;
  line-height: 30px;
  -webkit-line-clamp: 1;
}

/* bang gia */
.banggia--index {
  background: url(../images/bg_banggia.png) no-repeat top left;
  background-size: 100% auto;
  padding-top: 30px;
}

.flipbook {
  margin: 0 auto !important;
  background: #fff;
  width: 100% !important;
}

.f-flipbook {
  max-width: 1056px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  border: 20px solid #1c1a18;
}

/* product hot */
.productHot-img {
  width: 33.3%; /* 399px/1200 */
}
.productHot-contain {
  width: 65.1%; /* 781px/1200 */
}

.productHot-img img {
  border-radius: 10px;
}

/* con so */
.conso--index {
  background-size: cover;
}
.conso-static {
  width: 43.1%; /* 517px/1200 */
  border: 5px solid #fff;
  border-radius: 10px;
  padding: 50px 35px;
  color: #fff;
}

.conso-static h2 {
  font-size: 35px;
  font-family: var(--font-kelsonBold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.conso-static span {
  font-size: 14px;
  font-family: var(--font-regular);
  line-height: 26px;
  -webkit-line-clamp: 3;
}

.conso-detail {
  width: 50%; /* 600px/1200 */
}

.conso {
  color: #fff;
}

.conso h3 {
  font-size: 55px;
  font-family: var(--font-bold);
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}

.conso h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.conso span {
  font-size: 16px;
  font-family: var(--font-regular);
  text-transform: capitalize;
}

/* dao tao */
.daotao-pic {
  width: 30.8%; /* 370px/1200 */
}
.daotao-info {
  width: 33.3%; /* 400px/1200 */
}

.daotao-info {
  order: 2;
}

.daotao-pic img {
  border-radius: 10px;
}

.daotao-pic:nth-child(2) {
  order: 3;
}

/* album */
.list-hot {
  margin: 0 30px -5px;
}

.list-hot a:hover,
.list-hot a.active {
  background: #4d4d4d;
  color: #fff;
}

.list-hot a.active {
  font-family: "SVNPoppinsBold";
}

.list-hot a {
  display: block;
  line-height: 40px;
  height: 40px;
  background: #f2f2f2;
  padding: 0 15px;
  margin: 0 5px;
  border-radius: 5px;
  color: #555;
  font-family: "SVNPoppinsRegular";
  text-transform: capitalize;
  cursor: pointer;
}

/* tiktok */
.video-left {
  width: 32.3%; /* 387px/1200 */
}

.video-right {
  width: 66.1%; /* 793px/1200 */
}

.video-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tiktok-embed {
  min-width: auto !important;
  margin: 0 !important;
}

div[data-testid*="card-component"] {
  display: none !important;
}

/* album */
.album-col {
  width: calc(100% / 3);
  padding: 0 15px;
}
.album-col .album-item {
  margin-bottom: 30px;
  position: relative;
}

.album-col .album-item p {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgb(0 0 0 / 50%);
  border-radius: 10px;
  font-size: 25px;
  font-family: "SVNPoppinsRegular";
  color: #fff;
  text-align: center;
  align-items: center;
  display: flex;
  padding: 0 20px;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  text-transform: uppercase;
}

.album-col .album-item:hover p {
  opacity: 1;
  transition: 0.3s;
}

.album-item a {
  border-radius: 10px;
}

.albums {
  margin-top: 30px;
}

.khachhangnb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  background: #f2f2f2;
}

.khachhangnb-pic {
  width: 254px;
  overflow: hidden;
  border-radius: 17px;
  padding: 10px;
  background: #000;
  position: relative;
}

.khachhangnb-pic:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 15px;
  background: #000;
  border-radius: 0 0px 13px 13px;
}

.khachhangnb-pic img {
  border-radius: 17px;
}

.khachhangnb-info {
  width: calc(100% - 300px);
  position: relative;
}

.khachhang--index {
  background: #f2f2f2;
}

.khachhang--index .title-main {
  width: 400px;
}

.khachhang--index .title-main img {
  box-shadow: 0 0 9px 0 rgb(0 0 0 / 10%);
  border-radius: 50%;
}

.khachhang--index .title-main p,
.khachhang--index .title-main h2 {
  text-align: start;
}

.khachhangnb-info img {
  position: absolute;
  left: -100px;
  top: -35px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.khachhangnb-info .khachhangnb-desc {
  padding: 30px 18px;
  border: 1px solid hsl(0deg 0% 30% / 25%);
  position: relative;
}

.khachhangnb-info .khachhangnb-desc:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid hsl(0deg 0% 30% / 25%);
}

.khachhangnb-info .khachhangnb-name {
  padding-left: 45px;
  margin-bottom: 50px;
}

.khachhangnb-info .khachhangnb-name p {
  font-size: 18px;
  font-family: "SVNPoppinsMedium";
  color: #282828;
  padding-left: 40px;
  margin-bottom: 0;
}

.khachhangnb-info .khachhangnb-name h3 {
  font-size: 50px;
  font-family: "SVNDiamonda";
  text-transform: capitalize;
  color: #4d4d4d;
}

.khachhangnb-info .khachhangnb-desc span {
  font-size: 14px;
  font-family: "SVNPoppinsRegular";
  line-height: 28px;
  -webkit-line-clamp: 5;
}

.khachhang-slick-vertical .khachhangnb-info .khachhangnb-name {
  text-align: end;
  padding-left: 0;
  padding-right: 45px;
}

.khachhang-slick-vertical .khachhangnb-info .khachhangnb-name p {
  padding-left: 0;
  padding-right: 40px;
}

.khachhang-slick-vertical .khachhangnb-info img {
  left: unset;
  right: -100px;
  z-index: 9;
}

.khachhang-slick-vertical .khachhangnb {
  height: 500px;
  background: transparent;
}

.khachhang-inside {
  position: absolute;
  top: -30px;
  right: 0;
  max-width: 800px;
}

iframe#\:1\.container,
.VIpgJd-yAWNEb-L7lbkb {
  display: none !important;
}

.skiptranslate {
  margin-bottom: -40px;
}

.goog-te-banner-frame {
  display: none;
}

#google_language_translator {
  clear: both;
  width: auto !important;
  text-align: right;
  display: none;
}

.box__changelang img{max-height: 25px;}
.box__changelang a{padding: 0 2px;}
.box__changelang {margin-left: 15px;}

.show-map {
    display: block;
    border: 1px solid #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    max-width: 70%;
    color: #fff;
    margin: 20px auto 0;
}

.show-map:hover {
    color: #fc0;
}

.show-map i {
    margin-right: 5px;
}