:root {
  --color-main: #087f07;
  --color-social: #007aff;
  --color-hover: #2557ae;
  --color-text: #2557ae;
  --m1: #000;
  --m2: #ffda6b;
  --color-red: #e52727;
}

@font-face {
  font-family: "Roboto";
  font-display: block;
  src: url("../fonts/Roboto-Regular.woff");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  font-display: block;
  src: url("../fonts/Montserrat-VariableFont_wght.ttf");
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes runtext {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

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

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

button.owl-next,
button.owl-prev {
  width: 30px;
  height: 30px;
  border: 1px solid #ebebeb !important;
  border-radius: 3px !important;
  font-size: 30px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999 !important;
  position: absolute;
  top: calc(50% - 15px);
  background: #fff;
}

button.owl-prev {
  left: -35px;
}

button.owl-next {
  right: -35px;
}

button.owl-next span,
button.owl-prev span {
  top: -3px !important;
  position: relative;
}

.slick_photo2 a.thumb-pro-detail {
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
}

.slick_photo2 a.thumb-pro-detail.mz-thumb-selected {
  border-color: #ccc !important;
}

.slick_photo2 button.owl-prev {
  left: 0px;
}

.slick_photo2 button.owl-next {
  right: 0px;
}

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

.blink {
  animation: blink 1s infinite;
}

.runtext {
  animation: runtext 2s infinite linear;
}

.hover_xam {
  position: relative;
  overflow: hidden;
  display: block;
}

.hover_xam:before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -khtml-opacity: 1;
  -o-opacity: 1;
  -ms-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 3;
}

.hover_xam:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  position: absolute;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -khtml-opacity: 1;
  -o-opacity: 1;
  -ms-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 2;
}

.hover_xam:hover:before,
.hover_xam:hover:after {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition-duration: 1.3s;
  -moz-transition-duration: 1.3s;
  -ms-transition-duration: 1.3s;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s;
  -khtml-opacity: 0;
  -o-opacity: 0;
  -ms-opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
}

body {
  font-size: 14px;
  font-family: "Montserrat";
  overflow-x: auto;
  background: #fff3d4;
}

.max-width {
  width: 93%;
  max-width: 1200px;
  margin: 0px auto;
}

img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

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

.scale-img {
  overflow: hidden;
}

.scale-img img {
  transform: scale(1, 1);
}

.scale-img:hover>img {
  transform: scale(1.1, 1.1);
}

.hover-img {
  position: relative;
  overflow: hidden;
  display: block;
}

.p-relative {
  position: relative;
}

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

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

.row1 {
  -webkit-line-clamp: 1;
}

.row2 {
  -webkit-line-clamp: 2;
}

.row4 {
  -webkit-line-clamp: 4;
}

.row5 {
  -webkit-line-clamp: 5;
}

.row6 {
  -webkit-line-clamp: 6;
}

.row7 {
  -webkit-line-clamp: 7;
}

.social li:hover {
  transition: 0.7s ease;
  transform: rotateY(180deg);
}

.wrap-content-1300 {
  margin: auto;
  width: calc(100% - 20px);
  max-width: 1300px;
  padding: 0px;
}

.header {
  position: relative;
  z-index: 99;
  background: url(../images/bg1.jpg) center no-repeat;
  background-size: cover;
}

.header2 {
  position: relative;
  top: 0;
}

.header .wrap-content {}

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

.menu-head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu-head a {
  color: #fff;
  font-size: 18px;
  display: inline-block;
}

.menu-head li.line {
  position: relative;
  display: inline-block;
  background: #fff;
  width: 1px;
  height: 20px;
}

.menu-head .li-hoso a {
  background: var(--color-main);
  padding: 2px 10px;
  border-radius: 3px;
}

.menu-head a:hover {
  color: #fed402;
}

.line-head {
  background-color: #72b2fd;
  height: 32px;
  width: 1px;
}

.header-top {}

.header-top .wrap-content {
  padding: 10px 0 0;
}

.info-header {
  font-weight: 500;
  margin-bottom: 0;
  color: #171600;
  width: 30%;
}

.info-header:nth-child(2) {
  font-weight: 800;
  font-size: 16px;
  width: auto;
}

.info-header marquee {
  display: block;
}

.info-header i {
  margin-right: 7px;
}

.header-bottom {}

.lang-header {}

#google_language_translator {
  height: 31px;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 5px;
  max-width: 125px;
}

#google_language_translator select {
  height: 30px;
  padding: 0 5px;
  background: var(--color-main);
  color: #fff;
  border: 0;
  border-radius: 50vw;
  text-align: center;
  width: 125px;
  margin: 0;
}

.slideshow {
  position: relative;
  z-index: 10;
}

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

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

.control-slideshow {
  opacity: 0;
}

.slideshow a {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
}

.slideshow a img {
  width: 100% !important;
  height: 100% !important;
}

.slideshow-image p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-search {
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ds-item-search {
  width: calc(100% - 70px);
}

.ds-item-search a {
  font-size: 14px !important;
  color: #333;
  text-transform: unset !important;
}

.show-search {
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  height: 350px;
  overflow-y: auto;
}

.box-search .price-product {
  width: 100%;
  margin: 0px;
  text-align: left;
  border: 0;
  line-height: inherit;
  height: auto;
}

.box-search .price-product .price-new {
  color: #f00;
  font-size: 14px;
  font-family: "SFProDisplayRegular";
}

.box-search .price-product .price-old {
  color: #999;
  text-decoration-line: line-through;
}

.search {
  width: 37%;
  height: 41px;
  color: #000;
  position: relative;
}

.search::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      #bb814a 2.09%,
      #ce9a63 21.6%,
      #dfb079 36.33%,
      #ce9a63 46.29%,
      #dfb079 57.29%,
      #e0bb88 73.02%,
      #ce9660 90.78%,
      #c78851 100%);
}

.search p {
  float: left;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  margin: 0px;
  color: #bd834c;
  width: 40px;
  height: 40px;
  position: relative;
  top: 0px;
  text-transform: uppercase;
  font-size: 15px;
  margin-right: 3px;
}

.search input {
  width: calc(100% - 50px);
  height: 42px;
  float: left;
  outline: none;
  padding: 0px;
  border: 0px;
  background: transparent;
  text-indent: 10px;
  font-size: 13px;
  color: #333;
}

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

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

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

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

.search1 {
  width: 100%;
  height: 55px;
  margin-left: 15px;
  border: solid 1px #d9d9d9;
  background-color: #fff;
}

.search1 p {
  float: left;
  line-height: 45px;
  cursor: pointer;
  text-align: center;
  margin: 0px;
  color: #fff;
  background: #ab0407;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 23px;
  margin-top: 4px;
  margin-left: -3px;
}

.search1 input {
  width: calc(100% - 46px);
  height: 53px;
  float: left;
  outline: none;
  padding: 0px;
  border: 0px;
  background: transparent;
  text-indent: 10px;
  font-size: 13px;
  color: #000;
}

.search1 input::-webkit-input-placeholder {
  color: #ccc;
}

.search1 input:-moz-placeholder {
  color: #ccc;
}

.search1 input::-moz-placeholder {
  color: #ccc;
}

.search1 input:-ms-input-placeholder {
  color: #ccc;
}

.fsearch-show {
  z-index: 10112313;
  width: 580px;
  height: 40px;
  position: relative;
  z-index: 9;
}

.fsearch-show input[type="search"],
.fsearch-show button {
  background-color: #fff;
  box-shadow: none;
  border: solid 2px #dd3333;
  height: 100%;
}

.fsearch-show input[type="search"] {
  color: #000;
  padding: 0 15px;
  width: calc(100% - 580px);
  width: -moz-calc(100% - 580px);
  width: -webkit-calc(100% - 50px);
}

.fsearch-show button {
  width: 35px;
  padding: 0;
  text-align: center;
  color: #757575;
  margin-left: -5px;
}

#menu {
  display: none;
}

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

#hamburger:before,
#hamburger:after,
#hamburger span {
  background: #000;
  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;
}

.wrap-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.menu-head-left {
  position: relative;
}

.title-menu {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  line-height: 40px;
  display: block;
}

.menu-product-list {
  position: absolute;
  z-index: 99;
  top: 100%;
  width: 250px;
  background: #fff;
  border-radius: 2px;
}

.menu-product-list ul {
  padding: 0px;
  margin-bottom: 0px;
}

.menu-product-list ul ul {
  position: absolute;
  width: 750px;
  background: #fff;
  left: 100%;
  top: 0px;
  border: 1px solid #999;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 100%;
  overflow-x: hidden;
}

.menu-product-list ul ul ul {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  border: none;
  display: block;
  height: auto;
}

.menu-product-list ul li a {
  position: relative;
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px 5px 10px;
  border-bottom: 1px solid #ddd;
}

.menu-product-list ul li a .icon-down {
  position: absolute;
  right: 10px;
  top: 10px;
}

.menu-product-list ul ul li a span {
  position: absolute;
  right: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #00a3ff;
}

.menu-product-list ul li a:hover {
  color: #f00;
}

.menu-product-list ul ul li a {
  border-bottom: none;
  font-weight: bold;
}

.menu-product-list ul ul ul li a {
  font-weight: normal;
}

.menu {
  position: relative;
  z-index: 99;
  padding: 0px 0 8px;
}

.menu2 {}

.menu .wrap-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.fix_menu {
  position: fixed !important;
  box-shadow: 0 0 1px #999;
  background: #fff;
}

.menu-ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-fix .menu {
  padding: 0;
}

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

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

.menu ul.ulmn>li {}

.menu ul li.li-mobi {
  display: none;
}

.menu ul li.li-home i {
  font-size: 17px;
}

.menu ul li .li-tim a {
  min-width: 50px;
  justify-content: center;
  cursor: pointer;
}

.menu ul li .li-tim a i {
  font-weight: 400;
}

.menu ul li.line {
  width: 2px;
  height: 50px;
  border-left: 1px solid #c28417;
  border-right: 1px solid #ffc359;
}

.menu ul li a {
  color: var(--m1);
  position: relative;
  z-index: 1;
  text-decoration: none !important;
  padding: 16px 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
}

.menu ul li a:before {}

.menu ul li a:hover:before,
.menu ul li a.active:before {
  opacity: 1;
  transition: 0.5s;
}

.menu ul li a img {
  vertical-align: middle;
  margin-right: 5px;
}

.menu ul li a.active,
.menu ul li:hover>a {
  transition: 0.2s;
  color: var(--color-main);
}

.menu ul li ul {
  position: absolute;
  min-width: 250px;
  left: 0;
  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;
  background: #fff;
}

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

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

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

.menu ul li ul li a {
  font-size: 14px;
  padding: 10px;
  text-decoration: none !important;
  line-height: 20px;
  text-align: left;
  font-weight: 500;
  text-transform: capitalize;
  color: #000 !important;
  background: unset !important;
  transition: 0.2s all;
  width: 100%;
  justify-content: flex-start !important;
  gap: 10px;
}

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

.menu ul li ul li a:before {
  content: "";
  opacity: 0;
  height: 1px;
  width: 0px;
  transition: 0.3s all;
}

.menu ul li ul li a:hover:before,
.menu ul li ul li>a.active:before {
  left: 0;
  opacity: 1;
  width: 20px;
  background: var(--color-main);
}

.menu ul li ul li a:hover {
  visibility: visible;
}

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

.menu_mobi_add,
.menu_mobi {
  display: none;
}

.logo-header {
  display: block;
  margin-bottom: -60px;
}

.menu-fix {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background: var(--m2);
  transition: 0.5s ease;
}

.menu-fix .wrap-content {
  padding: 0;
}

.menu-fix .logo-header {
  zoom: 0.7;
  margin-bottom: 0;
}

.left-menu,
.right-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-menu {
  width: 37%;
}

.right-menu {
  width: 39%;
}

.header-bottom {
  position: relative;
}

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

.slideshow .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: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.box-photo-ct {
  border-radius: 20px;
  overflow: hidden;
}

.title-detail {
  position: relative;
}

.title-detail h1 {
  font-size: 21px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
}

.tt-week {
  font-size: 25px;
  text-align: center;
  margin: 20px 0px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.title-cat-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0px;
  gap: 20px;
}

.title-cat-main span {
  display: block;
  color: #999;
  background: linear-gradient(64.85deg, #fca600 23.67%, #ffd41d 106.12%);
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.title-cat-main span:hover,
.title-cat-main span.active {
  background: linear-gradient(64.85deg, #ffd41d 23.67%, #fca600 106.12%);
  color: #000;
}

.title-main {
  text-align: center;
  padding-bottom: 20px;
  margin: auto;
  display: grid;
  justify-content: center;
}

.title-main span {
  position: relative;
  z-index: 10;
  font-size: 25px;
  text-align: center;
  color: var(--m1);
  text-transform: uppercase;
  margin: 0;
  font-weight: 800;
}

.title-main p {
  margin: 0;
  position: relative;
  color: #333333;
  font-size: 15px;
}

.title-main h2 {
  position: relative;
  z-index: 10;
  font-size: 35px;
  text-align: center;
  font-family: "UTMAmericanSans";
  color: #333333;
  text-transform: uppercase;
  margin: 0;
}

.line-main {
  font-size: inherit !important;
  padding: 0 !important;
}

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

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

.time-news {
  color: #fed402;
  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: var(--color-main);
}

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

.left-newsDetail {
  width: 75%;
}

.right-newsDetail {
  width: 23%;
}

.box-news-detail {
  display: block;
  border: 1px solid var(--m1);
  border-radius: 10px;
  padding: 0px 10px 10px;
  margin-bottom: 20px;
}

.info-news-detail {
  font-weight: 400;
  font-size: 16px;
  border: 0 !important;
  padding: 5px 0 !important;
  margin: 0 !important;
  color: #333;
  word-wrap: break-word;
  width: 100%;
  display: flex;
}

.info-news-detail span {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 1.2;
}

.info-news-detail i {
  color: var(--m1);
  padding-top: 4px;
}

.contact-news-detailDm {
  display: block;
  background: var(--m1);
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 7px 10px;
  margin-top: 11px;
}

.contact-news-detailDm:hover {
  transition: 0.5s ease;
  color: #fff;
}

.newsHome {
  position: relative;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin: 15px 15px;
  width: calc(100% - 30px);
  padding: 0;
  flex-wrap: wrap;
}

.info-newsHome {
  width: 48%;
}

.pic-newsHome {
  position: relative;
  margin-bottom: 0;
  width: 49%;
  border-radius: 5px;
}

.box-pic-newsHome {
  position: relative;
  margin-bottom: 20px;
}

.time-newsHome {
  position: relative;
  color: var(--m1);
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: 300;
  letter-spacing: -0.52px;
}

.time-newsHome i {
  margin-right: 2px;
}

.time-newsHome span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.name-newsHome {
  font-size: 25px;
  color: #222;
  font-weight: 600;
  -webkit-line-clamp: 2;
  margin-bottom: 7px;
  line-height: normal;
  text-transform: uppercase;
}

.newsHome:hover .name-newsHome {
  transition: 0.7s ease;
  color: var(--m1);
}

.desc-newsHome {
  line-height: 25px;
  margin-bottom: 0px;
  color: #222;
  -webkit-line-clamp: 5;
  font-size: 14px;
  padding-top: 30px;
  position: relative;
}

.desc-newsHome::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  height: 1px;
  width: 92px;
  background: #a58251;
}

.view-newsHome {
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--m1);
  margin-top: 30px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  background: var(--m2);
  padding: 13px 20px;
  text-transform: capitalize;
}

.view-newsHome svg {
  display: inline-block;
}

.newsHome:hover .name-newsHome {
  transition: 0.5s ease;
  color: var(--color-main) !important;
}

.newsHome:hover .view-newsHome,
.newsHomeBest:hover .view-newsHome {
  transition: 0.5s ease;
  background: var(--color-main);
  color: #fff;
}

.newsHome:hover .view-newsHome path {
  fill: #fff;
}

.box-readmore {
  padding: 8px 15px;
}

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

.meta-toc:not(.meta-toc-fixed) .box-readmore {
  display: none;
}

.meta-toc {
  border-radius: 5px;
  background-color: #ceeafd;
  display: block;
  padding: 8px 15px;
}

.mucluc-dropdown-list_button {
  cursor: pointer;
  font-size: 20px;
  font-family: "RobotoBold";
  color: #000;
  text-transform: uppercase;
  display: block;
}

.mucluc-dropdown-list_button svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 45px;
  height: 40px;
  line-height: 20px;
  border-radius: 5px;
  background-color: #015aff;
  text-align: center;
  padding: 10px;
}

.mucluc-dropdown-list_button svg path {
  fill: #fff;
}

.meta-toc-fixed {
  position: fixed;
  left: 10px;
  top: 125px;
  z-index: 99;
  background: transparent;
  padding: 0;
  display: none;
}

.meta-toc-fixed .box-readmore {
  width: 350px;
  display: none;
  margin-top: 2px;
  border: 1px solid #dedede;
  border-radius: 5px;
  background: #ceeafd;
}

.meta-toc-fixed.active {
  display: block;
}

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

.info-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  gap: 20px;
  margin-bottom: 5rem;
}

.info-footer .icon-footer {
  background: var(--m2);
  padding: 15px 5px;
  min-width: 55px;
  margin-right: 8px;
  text-align: center;
  border-radius: 5px;
}

.info-footer .icon-footer img {}

.info-footer span {
  display: block;
  font-weight: 700;
}

.info-footer li {
  text-align: left;
  width: 21%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-items: center;
  font-size: 15px;
}

.info-footer li:nth-child(1) {
  width: 29%;
  font-size: 14px;
}

.info-footer .info-company {
  flex: 1;
  max-width: calc(100% - 65px);
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.info-footer p {
  margin-bottom: 0;
}

.social-footer {
  display: flex;
  gap: 6px;
  margin: 15px 0px 20px;
  justify-content: center;
}

.info-footer a {
  color: #fff;
}

.ul-footer {}

.ul-footer li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
}

.ul-footer li i {
  width: 38px;
  color: var(--color-main);
  text-align: center;
  margin-right: 10px;
  font-size: 20px;
}

.ul-footer li p {
  flex: 1;
  margin-bottom: 0;
}

.title-tags {
  position: relative;
  font-size: 1em;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: #777;
}

.title-tags:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.1);
  display: block;
  height: 3px;
  width: 30px;
}

.flex-tags {
  display: flex;
  gap: 5px;
}

.flex-tags a {
  color: #333;
  border: 1px solid;
  border-radius: 3px;
  display: inline-block;
  font-size: 0.8em !important;
  opacity: 0.8;
  padding: 2px 5px;
}

.flex-tags a:hover {
  background-color: #446084;
  border-color: #446084;
  color: #fff;
  opacity: 1;
}

.footer-powered {
  background: var(--color-main);
}

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

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

.flex-product-main {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

.product {
  display: block;
  position: relative;
  text-align: center;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(87, 174, 255, 0.25);
  padding-bottom: 5px;
}

.product .info-product {}

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

.product .pic-product {
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.pic-product>div {
  border-radius: 7px;
}

.product .pic-product img {
  width: 100%;
  -webkit-transform-style: preserve-3d;
  height: 100%;
  object-fit: cover;
}

.product .pic-product>a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.first_img {
  position: absolute;
  top: 0;
  transition: all 0.5s ease;
  height: 100%;
}

.product:hover .first_img {
  transform: scale(0);
}

.second_img {
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  transition: all 0.5s ease;
  height: 100%;
}

.product:hover .second_img {
  right: 0;
  top: 0;
  transition: all 0.5s ease;
}

.product .name-product {
  margin-bottom: 5px;
}

.product .name-product a {
  font-size: 16px;
  color: #211402;
  font-weight: 700;
  text-transform: capitalize;
  line-height: normal;
}

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

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

.product .desc-product {
  line-height: 30px;
  color: #333;
  font-size: 15px;
  text-align: justify;
}

.product .price-product {
  margin-bottom: 5px;
  color: #555;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.product .price-new {
  text-align: center;
  color: var(--color-red);
  font-size: 16px;
}

.product .price-new b {
  color: #7c7c7c;
  font-weight: normal;
}

.product .price-old {
  padding: 0 10px;
  font-size: 14px;
  text-decoration: line-through;
  display: block;
  color: #616161;
}

.product .price-per {
  color: #fff;
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-main);
  background-size: 100%;
  width: 47px;
  height: 21px;
  line-height: 21px;
  border-radius: 5px;
}

.view-product {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-main) url(../images/xt.png) right 2px center no-repeat;
  line-height: 42px;
  padding: 0 47px 0 13px;
  border-radius: 50vw;
  color: #fff;
  margin-top: 10px;
}

.view-product:hover {
  transition: 0.5s;
  background-color: var(--color-red);
  color: #fff;
}

.view-product:hover svg path {
  fill: #fff;
}

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

.box-cat h3 {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.box-cat:hover h3 {
  color: #f00;
}

.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-product {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.grid-product .product .product-info {
  margin-top: 10px;
  color: #333;
}

.grid-product .product .product-info h3 {
  font-size: 17px;
  color: #333;
}

.grid-product .product .product-info .price span {
  color: #f00;
}

.grid-product .product .pic-product {
  display: block;
}

.box-btn-product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.box-btn-product-detail a {
  display: inline-block;
  background: #1182fc;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  min-width: 170px;
  text-align: center;
}

.box-btn-product-detail a:nth-child(3) {
  background: var(--color-red);
}

.box-btn-product-detail a:hover {
  transition: 0.7s ease;
  background: #074d97;
}

.box-btn-product-detail a:hover:nth-child(3) {
  background: var(--color-main);
}

.grid-pro-detail {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}

.grid-pro-detail .left-pro-detail {
  width: 47%;
}

.grid-pro-detail .right-pro-detail {
  width: 50%;
}

.grid-pro-detail .right-right-pro-detail {
  width: 26%;
}

.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 .right-pro-detail ul li .attr-content-pro-detail .price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: #f00;
}

.policy_intuitive {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 25px;
}

.policy {
  margin: 20px 16px 0 16px;
}

.policy__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
}

.policy__list>li {
  border-bottom: 1px solid #f1f1f1;
  position: relative;
  padding: 12px 0 12px 35px;
  width: 50%;
  display: inline-block;
}

.policy__list>li:nth-child(2n + 1) {
  padding-right: 20px;
}

.policy__list li>div.iconl {
  left: 0;
  position: absolute;
  top: 15px;
}

.policy__list li .iconl {
  width: 32px;
}

.policy__list li p {
  line-height: 20px;
  padding-left: 5px;
  margin: 0px;
}

.policy__list li:last-child {
  border-bottom: 0;
}

.policy__list>li:nth-child(2n + 1):nth-last-child(2) {
  border: 0;
}

.ul-actions {
  display: flex;
  justify-content: center;
  margin: 20px;
  gap: 15px;
  align-items: flex-start;
}

.ul-actions li,
.ul-actions>div {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 80px;
  text-align: center;
}

.ul-actions .active .box__tabr,
.ul-actions .box__tabr:hover {
  border-color: #fd6e1d;
}

.ul-actions .box__tabr {
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  min-height: 55px;
  padding: 4px;
  height: 60px;
  width: 80px;
}

.icon-action {
  background-image: url("../images/icon_chitiet@2x-min.png");
  background-repeat: no-repeat;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  vertical-align: middle;
  background-size: 300px 180px;
}

.icon-dnb {
  background-position: 0 0;
  height: 28px;
  width: 28px;
}

.icon-tskt {
  background-position: -105px 0;
  height: 30px;
  width: 30px;
}

.icon-ttsp {
  background-position: -140px 0;
  height: 19px;
  width: 23px;
}

.ul-actions p {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 5px;
  white-space: normal;
  color: #000;
}

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

.box-ct {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: rgb(233, 230, 230);
  padding: 10px;
  border-radius: 10px;
}

.box-ct img {
  border-radius: 50%;
  margin-right: 10px;
}

.ds-ct h3 a {
  font-size: 17px;
  color: #333;
}

.ds-ct h3 a:hover {
  color: #f00;
}

.block__promo {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 10px;
}

.promoadd__list {
  padding: 10px;
}

.promoadd__list li {
  margin-bottom: 15px;
  background: url(../images/tick.png) no-repeat 0px 3px;
  background-size: 15px;
  padding-left: 25px;
}

.pr-top {
  background-color: #f6f6f6;
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 10px;
}

.pr-txtb {
  font-weight: bold;
}

.pr-top .pr-txt {
  color: #666;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 5px;
  font-style: normal;
}

.pr-content .pr-item:last-child {
  border: none;
}

.pr-content .pr-item {
  padding: 15px 10px 10px 10px;
}

.divb {
  margin-bottom: -10px;
}

.divb .nb {
  background-color: #4a90e2;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  float: left;
  height: 16px;
  line-height: 16px;
  margin-top: 2px;
  text-align: center;
  width: 16px;
}

.divb-right {
  padding-left: 26px;
}

.pr-content .pr-item p {
  margin: 0px 0px 0px 0px;
}

.divb-right a {
  color: #4a90e2;
}

.wrap-ti {
  padding: 20px 0px;
}

.box-ti {
  background: #f1f1f1;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  min-height: 135px;
}

.wrap-ti .owl-item:nth-child(n + 1) .box-ti {
  background-color: rgb(220, 238, 255);
}

.wrap-ti .owl-item:nth-child(n + 2) .box-ti {
  background-color: rgb(254, 245, 207);
}

.wrap-ti .owl-item:nth-child(n + 3) .box-ti {
  background-color: rgb(255, 239, 219);
}

.wrap-ti .owl-item:nth-child(n + 4) .box-ti {
  background-color: rgb(225, 254, 207);
}

.ds-ti {
  width: calc(100% - 45px);
}

.ds-ti h3 {
  font-size: 15px;
}

.ds-ti h3 a {
  color: #333;
}

.ds-ti h3 a:hover {
  color: #f00;
}

.contact-map {
  position: relative;
  margin-top: 30px;
  height: 300px;
}

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

.breadCrumbs {
  padding: 10px 0px;
  background: #ddd;
}

.breadcrumb {
  padding: 0;
  background: transparent;
}

.breadCrumbs ol {
  margin: 0px;
}

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

.breadCrumbs ol li a:hover {
  color: #f00;
}

.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: var(--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 var(--background, rgba(7, 41, 103, 0.8));
  opacity: 0.1;
  border-color: var(--background, #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: var(--background, 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;
}

.wrap-xh {
  background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
  padding: 10px;
  border-radius: 10px;
}

.title-xh {
  font-size: 25px;
  margin: 20px 0px;
  color: #333;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.image-xh {
  border-radius: 10px;
  overflow: hidden;
}

.name-xh {
  text-align: center;
  color: #333;
  font-size: 16px;
  margin: 10px 0px 0px;
}

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

.grecaptcha-badge {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  overflow: hidden;
}

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

.product-page a:hover,
.product-page a.active {
  background-color: #666;
  color: #fff;
}

.product-page {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.product-page a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #666 solid 1px;
  color: #000;
  cursor: pointer;
  border-radius: 500%;
}

.product-list {
  position: relative;
  flex-wrap: wrap;
  background: #f2f2ea;
  display: inline-flex;
  border-radius: 50vw;
  margin-bottom: 30px;
}

.product-list a,
.product-list h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  color: #282828;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  z-index: 1;
  border-radius: 500vw;
  margin: 0 2px;
  text-transform: capitalize;
}

.product-list a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-main);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: 0.5s ease;
  display: none;
}

.product-list a:hover::after,
.product-list a.active::after {
  opacity: 1;
  transition: 0.5s ease;
}

.product-list a:hover,
.product-list a.active,
.product-list h2:hover,
.product-list h2.active {
  background: #fef200;
  transition: 0.5s ease;
}

.slideshow-next,
.slideshow-prev {
  z-index: 9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 50px;
  background: #00000085;
  border-radius: 5px;
  color: #fff;
  font-size: 1.875rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 30%;
  cursor: pointer;
  transition: 0.2s all;
}

.slideshow-next:hover,
.slideshow-prev:hover {
  opacity: 90%;
}

.slideshow-next {
  right: 10px;
}

.slideshow-prev {
  left: 10px;
}

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

.footer-title {
  font-size: 16px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 700;
  color: #fff;
}

.footer-title:after {
  content: "";
  width: 24px;
  height: 1px;
  background: #ffff;
  top: 10px;
  left: 0;
  position: absolute;
  display: none;
}

.footer-title-2 {
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "UTM HelvetIns";
  color: var(--color-main);
}

.footer-info:nth-child(1) .footer-title span {
  display: block;
  font-size: 48px;
  color: var(--color-red);
}

.footer-ul {}

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

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

.footer-ul li a:hover {
  transition: 0.5s ease;
  color: var(--color-main);
}

.footer-fanpage iframe {
  width: 100%;
}

.footer-layout {
  padding: 60px 0px 0px;
  color: #1c1c1c;
  position: relative;
  background: #ffff;
}

.product-d {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.header-company-name {
  color: #212529;
  font-size: 22px;
  flex: 1;
  font-family: "bm";
}

.header-company-name span {
  color: var(--m2);
  font-family: "bb";
}

.menu-social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.menu-social a {
  display: flex;
}

.header-box {
  flex: 1;
}

.box-logo {
  display: inline-block;
}

.product-info {
  margin-top: 15px;
}

.product-number {
  font-size: 64px;
  font-family: "dw";
  color: #e79108;
}

.productmenu-slide {
  margin: 0px -22px;
}

.productmenu-item {
  background: #f9f2e7;
  margin: 0px 22px;
  display: grid;
  justify-items: center;
  border-radius: 250px;
  padding: 60px 30px 30px 45px;
}

.productmenu-box:nth-child(1) {
  position: absolute;
  left: 30px;
}

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

.productmenu-title {
  font-size: 52px;
  font-family: "dw";
  writing-mode: vertical-lr;
  position: relative;
}

.productmenu-title:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 150px;
  background-color: #000;
  top: -30px;
}

.productmenu {
  background: url("../images/menu.png");
  background-position: center;
  background-size: cover;
  background-color: var(--m1);
  padding: 105px 0px 100px 0px;
  position: relative;
}

.productmenu-txt-1 {
  font-size: 30px;
  font-family: "mm";
  text-transform: uppercase;
  margin: 10px 0px 0px 0px;
}

.productmenu-box:nth-child(1) {}

.productmenu-box:nth-child(2) {
  margin: 0px 10%;
}

.productmenu-menu {
  height: 250px;
  overflow-y: auto;
  gap: 20px;
  display: grid;
  margin: 10px 0px 15px 0px;
  width: 100%;
}

.productmenu-txt-2 {
  font-size: 16px;
  font-family: "mm";
  -webkit-line-clamp: 1;
}

.productmenu-txt-3 {
  position: relative;
  white-space: nowrap;
}

.productmenu-pricenew {
  font-size: 17px;
}

.productmenu-priceold {
  text-decoration: line-through;
  position: absolute;
  bottom: -15px;
  width: 100%;
  left: 0px;
  text-align: right;
  font-size: 11px;
}

.productmenu-product {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-right: 10px;
  color: #000;
}

.productmenu-product:hover {
  color: var(--m1);
}

.productmenu-line {
  min-width: 10%;
  border-bottom: #000 dashed 1px;
  flex: 1;
}

.productmenu1,
.productmenu2 {
  position: absolute;
  width: 100%;
  left: 0px;
}

.productmenu1 {
  top: 0px;
}

.productmenu2 {
  bottom: 0px;
}

.video-feedback {
  margin: 100px 0px 70px 0px;
}

.video-feedback .wrap-content {
  display: grid;
  grid-template-columns: 7fr 5fr;
}

.video-feedback .wrap-content>div {
  min-width: 100%;
}

.video-box {
  display: flex;
  align-items: center;
  justify-content: end;
}

.video-number {
  width: 75px;
}

.video-slide {
  max-width: 495px;
}

.video-item {
  border: #212529 solid 1px;
  padding: 10px;
  position: relative;
  display: block;
  margin: 1px;
}

.play-ic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-number {
  width: 43px;
  height: 88px;
  background: var(--m1);
  font-family: "dw";
  font-size: 30px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  margin-right: 35px;
}

.video-number:after {
  content: "";
  width: 75px;
  height: 45px;
  border: #212529 solid 3px;
  border-top: 0px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.video-number:before {
  content: "";
  width: 2px;
  height: 70px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: -50px;
}

.video-number span {
  position: relative;
  bottom: 10px;
}

.video-number span:before,
.video-number span:after {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.video-number span:before {}

.video-number span:after {
  bottom: 0px;
}

.footer-info:nth-child(1) {
  width: 100%;
  text-align: center;
}

.footer-info:nth-child(2) {
  width: 36%;
  background: #fff;
  text-align: center;
  padding: 20px 20px;
  border-radius: 50vw 50vw 0 0;
  filter: drop-shadow(0px 0px 20px #bd834c);
}

.footer-info:nth-child(3) {
  width: 28%;
}

.footer-info:nth-child(4) {
  width: 27%;
}

.footer-info:nth-child(5) {
  width: 24%;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
  align-items: center;
}

.footer-social span {
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}

.footer-social a {
  display: inline-block;
}

.footer-social a:hover {
  transition: 1s ease;
  transform: rotateY(180deg);
}

.footer-policy {
  display: grid;
  gap: 15px;
}

.footer-policy a {
  color: #1e1e1e;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-policy a:hover {
  transition: 0.5s ease;
  color: #c00;
}

.footer-policy a:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #1e1e1e;
  border-radius: 50%;
}

.footer-powered .wrap-content {
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  position: relative;
  font-size: 13px;
}

.footer-line {
  width: 1px;
  height: 60px;
  background: #fff;
  margin: 0px 27px;
}

.copyright {}

.copyright b {}

.copyright-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 13px 15px;
  flex: 1;
  color: var(--m1);
  font-size: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright__text {
  font-weight: 400;
}

.copyright__thongke {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  padding: 0;
  margin: 0;
}

.copyright__thongke li {
  font-weight: 400;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 5px 0;
}

.copyright__thongke li span {
  margin-left: 5px;
}

.copyright__thongke li+li {
  margin-left: 20px;
}

.copyright__thongke li+li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background-color: var(--m1);
  left: -10px;
}

footer {
  position: relative;
}

.best-next,
.best-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.best-next {
  right: -50px;
}

.best-prev {
  left: -50px;
}

.header-mobile {
  display: none;
}

.album-d {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.pbThumbs li {
  width: 100px !important;
}

.intro-info-box {
  position: absolute;
  left: 111px;
  top: 104%;
  white-space: nowrap;
  display: grid;
  gap: 17px;
}

.tabs-pro-detail .ul-tabs-pro-detail {
  padding: 0px;
  list-style: none;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e7e7e7;
}

.tabs-pro-detail .ul-tabs-pro-detail li {
  cursor: pointer;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
  background: #eee;
  padding: 10px 20px;
  text-transform: uppercase;
}

.tabs-pro-detail .ul-tabs-pro-detail li.active {
  background: var(--color-main);
}

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

.tabs-pro-detail .content-tabs-pro-detail {
  display: none;
}

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

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

#footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50vw;
}

.main {
  margin: auto;
  display: block;
  position: relative;
  text-align: center;
  padding-top: 15px;
}

.pic-banners {
  padding-bottom: 16px;
}

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

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

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

.control-owl button.owl-prev {
  left: -30px;
  top: 0px;
}

.control-owl button.owl-next {
  right: -30px;
  top: 0px;
}

.wrap-brand {
  padding: 50px 0 60px;
  background: url(../images/p1.jpg);
}

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

.brandHome {
  display: block;
  background: #fff;
  border: 1px solid #d9d9d9 !important;
  margin: 10px 5px 10px;
  padding: 5px 10px;
}

.brandHome img {}

.title-product {
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
  background: #e3f5e4;
  margin-bottom: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.title-product span {
  position: relative;
  font-size: 15px;
  color: #fff;
  background: var(--color-main);
  font-family: "RobotoSemiBold";
  text-transform: capitalize;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 5px;
  padding-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.see_pro {
  color: #333;
  font-size: 14px;
  margin-right: 5px;
}

.catProduct_i {
  margin: 0px 5px;
  position: relative;
}

.catProduct_i a {
  cursor: default;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  color: #333333 !important;
  font-family: "SFProDisplaySemibold";
  cursor: pointer;
}

.catProduct_i a:hover,
.catProduct_i a.active {
  transition: all ease 0.4s;
  color: #dd3333 !important;
  background: none;
}

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

.flex_product>div:nth-child(1) {
  width: 285px;
}

.flex_product>div:nth-child(2) {
  width: calc(100% - 295px);
}

.title-product-cat {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0;
  max-width: 90%;
}

.control-products2,
.control-products {
  top: 0;
}

.product-list .control-owl.add button.owl-prev,
.product-list-2 .control-owl.add button.owl-prev {
  display: none;
}

.product-list .control-owl.add button.owl-next,
.product-list-2 .control-owl.add button.owl-next {
  right: 0px;
  top: 0px;
  background: none;
}

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

.header .wrap-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.wrap-Newsletter {
  padding: 40px 0 130px;
  background: #f4eddd;
  position: relative;
  margin-bottom: -90px;
}

.wapNewsletter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 85%;
  margin: auto;
}

.left-Newsletter {
  width: 46%;
  position: relative;
  border-radius: 10px;
  padding: 10px;
}

.right-Newsletter {
  width: 46%;
  text-align: center;
}

.w-newsletter {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  padding: 40px 20px 20px;
  border-radius: 50vw 50vw 0 0;
}

.title-newsletter {
  color: var(--color-main);
  text-align: center;
  font-family: "UTM HelvetIns";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.slogan-newsletter {
  margin-bottom: 16px;
  color: #333;
  font-size: 15px;
  text-align: center;
}

.slogan-newsletter-2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background: var(--color-main);
  display: table;
  margin: 0 auto 15px;
  padding: 10px 20px;
  border-radius: 50vw;
  text-transform: uppercase;
  min-width: 80%;
}

.box-newsletter {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

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

.w-input .newsletter-input {
  width: 48%;
}

.newsletter-input {
  margin-bottom: 20px;
}

.newsletter-input input,
.newsletter-input textarea {
  height: 50px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0;
  border: 0;
  background: rgba(0, 122, 255, 0.1);
  color: var(--m2);
  text-transform: capitalize;
}

.newsletter-input textarea {
  height: 111px;
}

.newsletter-button {
  display: block;
}

.newsletter-button input {
  display: table;
  min-width: 190px;
  height: 45px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 0;
  padding: 5px 18px;
  font-weight: 800;
  background: linear-gradient(270deg,
      #d91d5c 12.24%,
      #ed211e 51.92%,
      #ef4a1e 93.29%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: auto;
  border: 1px solid #d91d5c;
}

.newsletter-button input:hover {
  transition: 0.5s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.newsletter-input input::placeholder,
.newsletter-input textarea::placeholder {
  color: var(--m2);
}

.wrap-aboutHome {
  padding: 70px 0;
  background: #fff3d4 url(../images/bg2.jpg) center top no-repeat;
}

.view-aboutHome {
  font-size: 18px;
  color: var(--m1);
  display: table;
  margin: auto;
  line-height: 30px;
  font-weight: 500;
}

.view-aboutHome:hover {
  transition: 0.5s;
  color: var(--color-main);
}

.view-aboutHome:hover svg path {
  fill: var(--color-main);
}

.title-main-index h2 {
  font-family: Arial;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background: url(../images/d1.png) center bottom no-repeat;
  padding-bottom: 45px;
}

.desc-aboutHome {
  line-height: 30px;
  font-size: 18px;
  color: var(--m1);
  text-align: center;
}

.social-header {
  width: 43%;
  justify-content: flex-start;
  position: relative;
  padding: 9px 0;
  border-bottom: 1px dashed var(--color-main);
}

.gg-translate {
  width: 43%;
  border-bottom: 1px dashed var(--color-main);
}

.lang-header-ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding-bottom: 9px;
}

.lang-header-ul li img {
  max-width: 36px !important;
  border-radius: 2px;
}

svg {
  display: inline-block;
}

.wrap-serviceHome {
  padding: 0px 0 30px;
}

.serviceHome {
  position: relative;
  display: block;
  margin: 15px 15px;
  width: calc(100% / 3 - 30px);
  padding: 0 20px 20px 0px;
}

.serviceHome::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  left: 20px;
  bottom: 0;
  border: 1px solid #a58251;
  z-index: -1;
}

.pic-serviceHome {
  margin-bottom: 0;
}

.info-serviceHome {
  background: #fff;
  padding: 15px 15px;
  text-align: center;
}

.name-serviceHome {
  font-family: Arial;
  font-size: 19px;
  font-weight: 700;
  line-height: 30px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 0;
}

.serviceHome:hover .name-serviceHome {
  transition: 0.5s;
  color: var(--color-main);
}

.wrap-albumHome {
  padding: 20px 0 60px;
  width: 100%;
  overflow: hidden;
}

.wap-album {
  display: flex;
  flex-wrap: wrap;
}

.albumHome {
  position: relative;
  display: block;
  margin: 10px 10px;
  width: calc(100% / 3 - 20px);
}

.pic-albumHome {
  margin-bottom: 0;
}

.wrap-newsHome {
  padding: 60px 0;
}

.wap-newsHome {
  display: flex;
  flex-wrap: wrap;
}

.newsHome:nth-child(2n) {
  flex-direction: row-reverse;
  text-align: right;
}

.newsHome:nth-child(2n) .desc-newsHome::after {
  right: 0;
  left: inherit;
}

.newsHome:hover .desc-newsHome::after {
  background: var(--color-main);
}

.box-branch {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  border-top: 2px solid rgba(34, 34, 34, 0.1);
  padding: 25px 0 45px;
}

.item-branch {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background: var(--m2);
  padding: 10px 25px;
  border-radius: 50vw;
  text-transform: uppercase;
}

.item-branch:hover {
  transition: 0.5s;
  background: var(--color-main);
  color: #fff;
}

.logo-footer {
  display: block;
  margin: 0 auto 2rem;
}

.header ul {
  list-style: none;
}

@media (max-width: 1001px) {
  .header.menu-fix {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: #fff2e1;
    z-index: 9;
  }

  .productmenu-title {
    writing-mode: unset;
    font-size: 30px;
  }

  .productmenu-title:before {
    content: unset;
  }

  .productmenu-box:nth-child(1) {
    position: unset;
    text-align: center;
  }

  .header-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;

    .header-company-name {
      display: flex !important;
    }

    .logo-header {
      display: flex !important;
      width: 100px;
    }
  }

  .thuvienanh {
    margin: 30px 0px;
  }

  .productmenu {
    padding: 60px 0px;
  }

  .intro {
    padding-bottom: 30px;
    background-size: cover;
  }

  .thuvienanh-txt-4 {
    display: block;
    font-size: 30px;
  }

  .thuvienanh-item>* {
    display: none;
  }

  .thuvienanh .wrap-content {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .thuvienanh-item {
    margin: 0px !important;
    width: 100%;
    height: 100%;
    padding: 0px !important;
  }

  .thuvienanh-item * {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    aspect-ratio: 2/3;
  }

  .thuvienanh-img {
    display: block !important;
    margin: 0px !important;
  }

  .video-feedback,
  .tintuc {
    margin: 30px 0px;
  }

  .footer-powered .wrap-content {
    flex-wrap: wrap;
    text-align: center;
  }

  .footer-line {
    display: none;
  }

  .footer-layout .wrap-content {
    grid-template-columns: 1fr;
  }

  .feedback-txt-1 {
    font-size: 18px;
    -webkit-line-clamp: 2;
  }

  .feedback-title {
    font-size: 30px;
    margin-right: 0px;
  }

  .feedback-slide {
    margin: 20px 0px 0px 0px;
  }

  .video-slide {
    max-width: calc(100% - 100px);
  }

  .video-feedback .wrap-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .la1 {
    max-width: 30vw !important;
    bottom: -8%;
  }

  .productmenu-box:nth-child(2) {
    margin: 0px;
  }

  .product .name-product {
    -webkit-line-clamp: 2;
    font-size: 13px;
  }

  .bestseller {
    padding: 20px 0px;
  }

  .bestseller-title div {
    margin: 0px;
    font-size: 20px;
  }

  .bestseller-title div:before {
    content: unset;
  }

  .best-next {
    right: -0px;
  }

  .best-prev {
    left: -0px;
  }

  .mm-page {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .intro-txt-3 {
    font-size: 30px;
  }

  .intro-img-item {
    padding: 10px;
  }

  .intro .wrap-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-box:nth-child(2) {
    margin-top: 0px;
  }

  .menu {
    display: none;
  }

  .header-company-name {
    display: none;
  }

  .logo-header {}

  .logo-mb {
    padding: 0 20px;
    display: block;
    text-align: center;
  }

  .logo-mb img {
    max-width: 100px;
  }

  .thongtin-mb {}

  .thongtin-mb ul {
    padding: 0 20px !important;
  }

  .thongtin-mb ul li {
    list-style: none;
    color: #333;
    margin-bottom: 12px;
  }

  .thongtin-mb ul li i {
    font-size: 15px;
    margin-right: 10px;
    color: #333;
  }

  @-webkit-keyframes my {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @-moz-keyframes my {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @-o-keyframes my {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes my {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .hidden_mobi,
  #arcontactus,
  #messages-facebook,
  .quick_contact {
    display: none;
  }

  .hidden_destop {
    display: block;
  }

  .menu_baophu {
    background: #000;
    opacity: 0.8;
    z-index: 998;
    left: 0px;
    top: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
  }

  .icon_menu_mobi {
    color: var(--maincolor);
    font-size: 25px;
    text-decoration: none;
    width: 50px;
    display: block;
    cursor: pointer;
    float: left;
    margin: 0;
    margin-top: 15px;
  }

  .icon_menu_mobi i {
    float: left;
    margin-top: 8px;
  }

  a.home_mobi {
    color: var(--color-main);
    text-decoration: none;
    float: right;
    font-size: 20px;
  }

  .logo-mobi {
    flex: 1;
    display: inline-block;
    padding: 5px 0;
    /* text-align: right; */
    text-align: center;
    padding-right: 50px;
  }

  .logo-mobi a {}

  .logo-mobi img {
    display: inline-block;
    zoom: 0.6;
  }

  a.phone_mobi {
    color: #fff;
    text-decoration: none;
    float: left;
    font-size: 18px;
  }

  a.phone_mobi i {
    margin-right: 12px;
    -webkit-animation: my 700ms infinite;
    -moz-animation: my 700ms infinite;
    -o-animation: my 700ms infinite;
    animation: my 700ms infinite;
  }

  .mm-panel {}

  .mm-navbar_sticky {}

  .header .header-bottom {}

  .header .header-bottom .wrap-content {
    justify-content: center;
  }

  .header .header-bottom .logo-header {
    display: none;
  }

  .header .header-bottom .logo-header img {}

  .header .header-bottom .banner-header {}

  .header .header-bottom .banner-header img {}

  .menu {
    display: none;
  }

  .menu-res {
    display: block;
  }

  .menu-respon {
    position: relative;
    display: flex;
    align-items: center;
  }

  .menu-respon .icon-menu {
    width: 50px;
    height: 48px;
    cursor: pointer;
    line-height: 43px;
    text-align: center;
    margin: 0px;
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    border: 1px solid #fff;
    border-radius: 10px;
    letter-spacing: 4px;
    font-size: 20px;
  }

  .menu-respon .icon-menu img {
    width: 32px;
    vertical-align: middle;
    filter: brightness(0) saturate(100%) invert(24%) sepia(81%) saturate(2902%) hue-rotate(84deg) brightness(96%) contrast(109%);
    -webkit-filter: brightness(0) saturate(100%) invert(24%) sepia(81%) saturate(2902%) hue-rotate(84deg) brightness(96%) contrast(109%);
    -moz-filter: brightness(0) saturate(100%) invert(24%) sepia(81%) saturate(2902%) hue-rotate(84deg) brightness(96%) contrast(109%);
  }

  .comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .comment-item-poster {
    width: auto;
    margin-right: 0px;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .comment-item-letter {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    margin-bottom: 0;
  }

  .comment-item-name {
    margin-bottom: 0px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .comment-item-information {
    width: 100%;
  }

  .price-procart {
    display: none;
  }

  .price-procart-rp {
    display: block;
  }

  .quantity-procart {
    text-align: right;
  }

  .top-cart {
    margin-bottom: 2rem;
  }

  .search-respon {
    position: relative;
    width: 40px;
  }

  .search-respon .icon-search {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    margin: 0px;
  }

  .search-respon .icon-search img {
    width: 60%;
    height: 60%;
    vertical-align: middle;
    filter: brightness(0) saturate(100%) invert(24%) sepia(81%) saturate(2902%) hue-rotate(84deg) brightness(96%) contrast(109%);
    -webkit-filter: brightness(0) saturate(100%) invert(24%) sepia(81%) saturate(2902%) hue-rotate(84deg) brightness(96%) contrast(109%);
    -moz-filter: brightness(0) saturate(100%) invert(24%) sepia(81%) saturate(2902%) hue-rotate(84deg) brightness(96%) contrast(109%);
  }

  .search-respon .icon-search i {
    color: var(--maincolor);
    font-size: 17px;
  }

  .search-respon .icon-search.active {}

  .search-respon .search-grid {
    position: absolute;
    height: 45px;
    overflow: hidden;
    background: #fff;
    z-index: 2;
    line-height: normal;
    width: 0;
    right: 0;
    top: 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }

  .search-respon .search-grid p {
    float: right;
    width: 55px;
    height: 45px;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 0px;
    display: block;
    line-height: 45px;
    text-align: center;
    border-left: 2px solid var(--color-main);
  }

  .search-respon .search-grid p img {
    width: 40%;
    height: 50%;
    vertical-align: middle;
  }

  .search-respon .search-grid input {
    width: calc(100% - 55px);
    float: left;
    line-height: 45px;
    outline: none;
    border: none;
    color: #000;
    font-size: 13px;
    padding: 0 10px;
  }

  .search-respon .search-grid input::-webkit-input-placeholder {
    color: #000;
  }

  .search-respon .search-grid input:-moz-placeholder {
    color: #000;
  }

  .search-respon .search-grid input::-moz-placeholder {
    color: #000;
  }

  .search-respon .search-grid input:-ms-input-placeholder {
    color: #000;
  }

  .menu_mobi {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    width: 100%;
    cursor: pointer;
    height: auto;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 6px;
  }

  .menu_mobi_add {
    display: block;
    position: fixed;
    left: -100%;
    top: 0;
    background: #fff;
    z-index: 99999;
    color: #fff;
    height: 100vh;
    overflow: auto;
    overflow-x: hidden;
    line-height: 1.5;
    padding: 40px 0px 20px 0px;
    width: 85%;
    max-width: 40px;
    max-width: 340px;
    box-shadow: inset -4px 0px 8px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
  }

  .menu_mobi_active {
    left: 0;
  }

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

  .menu_mobi_add ul li .li-tim,
  .menu_mobi_add ul li.li-sp,
  .menu_mobi_add ul li a.logo-header {
    display: none;
  }

  .menu_mobi_add ul li .li-cn,
  .menu_mobi_add ul li.li-mobi {
    display: block;
  }

  .menu_mobi_add ul li h2 {
    font-size: 17px;
    margin-bottom: 0;
  }

  .menu_mobi_add ul li b {
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
  }

  .menu_mobi_add ul li b img {
    display: inline-block;
    vertical-align: top;
  }

  .menu_mobi_add ul li a {
    color: #333;
    display: block;
    border-bottom: 1px solid rgb(132 132 132 / 20%);
    padding: 13px 40px 13px 15px;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .menu_mobi_add ul li a.active2 {
    color: var(--color-main);
  }

  .menu_mobi_add ul li a span {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    width: 47px;
    line-height: 47px;
    text-align: center;
    border-left: 1px solid rgb(132 132 132 / 20%);
  }

  .menu_mobi_add ul li a span i {
    transform: rotate(90deg);
  }

  .menu_mobi_add ul li a.active2 span i {
    transform: rotate(0deg);
  }

  .menu_mobi_add ul ul {
    display: none;
    padding-left: 0;
  }

  .menu_mobi_add ul li ul li a {
    padding-left: 30px;
    color: #333;
  }

  .menu_mobi_add ul li ul li ul li a {
    padding-left: 45px;
  }

  .close_menu {
    position: absolute;
    top: 5px;
    right: 7px;
    font-size: 15px;
    background: var(--color-main);
    width: 25px;
    text-align: center;
    line-height: 25px;
    cursor: pointer;
  }

  #hamburger {
    display: block;
  }

  .menu-head {
    display: none;
  }

  .wrap-menu {
    display: none;
  }

  .cart-head {
    padding: 5px;
    font-size: 12px;
  }

  .header {
    padding: 10px 0px;
  }

  .flex-product-main {
    display: block;
  }

  .flex-product-main .left-product {
    display: none;
  }

  .flex-product-main .left-product.show {
    transform: translateX(0px);
  }

  .flex-product-main .right-product {
    width: 100%;
  }

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

  .filter {
    display: block;
  }

  .mm-panel {}

  .mm-navbar_sticky {}

  .header {
    display: none;
  }

  .fsearch-show {
    display: none;
  }

  .flex_hotline,
  .flex_cart {
    display: none;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .flex_slide>div:nth-child(1) {
    display: none;
  }

  .flex_slide>div:nth-child(2) {
    width: 100%;
  }

  .wrap-content {
    margin: auto;
    width: 100%;
    padding: 010px;
  }

  .social-header {
    display: none !important;
  }

  .search {
    display: none;
  }

  .footer-layout {
    padding: 30px 0 0px;
  }

  .footer-info {
    width: 100% !important;
    margin-bottom: 20px;
    text-align: center;
  }

  .contact-map {
    margin-top: 0;
  }

  div.box-hethong .ht-left {
    width: 100%;
    position: relative;
    padding: 10px 10px;
  }

  .box-chinhanh {
    width: 100%;
  }

  .td-chinhanh {
    font-size: 20px;
  }

  div.box-hethong .ht-left .item-ht {
    padding: 10px 10px;
    font-size: 14px;
  }

  .box-hethong2 .ht-left {
    width: 100%;
  }

  .box-hethong2 .ht-right {
    width: 100%;
  }

  .wap-parameter,
  .grid-pro-detail .right-right-pro-detail {
    width: 100%;
    margin-top: 20px;
  }

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

  .header-top {
    display: none;
  }

  .lang-header-ul img {
    max-width: 30px !important;
  }

  .left-newsDetail {
    width: 100%;
  }

  .right-newsDetail {
    width: 100%;
    margin-top: 20px;
  }

  .slick-newsDetail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .title-main span {
    font-size: 20px;
  }

  .left-menu,
  .right-menu {
    width: 100%;
    display: block;
  }

  .gg-translate {
    width: 100%;
    border-bottom: 0;
    padding: 10px 0;
  }

  .lang-header-ul {
    justify-content: center;
  }
}

@media (max-width: 850px) {
  .album-d {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .intro-txt-2 {
    font-size: 12px;
  }

  .productmenu-menu {
    max-height: 230px;
  }

  .productmenu-pricenew {
    font-size: 15px;
  }

  .productmenu-priceold {
    font-size: 11px;
    bottom: -10px;
  }

  .productmenu-menu {
    gap: 15px;
  }

  .bestseller-title span,
  .intro-txt-1 {
    font-size: 40px;
  }

  .bestseller-title span {
    gap: 10px;
  }

  .intro-txt-1 div {
    font-size: 20px;
  }

  .product-d {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-header {
    display: none;
  }

  .info-header:nth-child(1) {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .wrap-Newsletter {
    padding: 20px 0;
    margin-bottom: 0;
  }

  .left-Newsletter {
    width: 100%;
  }

  .right-Newsletter {
    width: 100%;
    margin-top: 20px;
  }

  .w-input .newsletter-input {
    width: 100%;
  }

  .info-newsletters {
    width: 100%;
  }

  .newsletter-button input[type="submit"] {
    width: 100%;
    font-size: 15px;
  }

  .desc-aboutHome {
    font-size: 14px;
  }

  .newsletter-input {
    margin-bottom: 15px;
  }

  .newsletter-button {
    width: calc(100% - 10px);
    margin: 0 5px;
  }

  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;
  }

  .footer-title {
    font-size: 15px;
  }

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

  .copyright-wrap {
    justify-content: center;
    text-align: center;
    margin-top: 0px;
  }

  #footer-map {
    height: 50vh;
  }

  .wrap-aboutHome {
    padding: 30px 0 20px;
  }

  .title-main-index h2 {
    font-size: 18px;
    background-size: auto 15px;
    padding-bottom: 22px;
  }

  .view-aboutHome {
    zoom: 0.7;
  }

  .wrap-serviceHome {
    padding: 25px 0;
  }

  .serviceHome {
    margin: 10px 5px;
    width: calc(50% - 10px);
    padding: 0 10px 10px 0;
  }

  .info-serviceHome {
    padding: 10px 10px;
  }

  .name-serviceHome {
    font-size: 15px;
  }

  .wrap-albumHome {
    padding: 20px 0 30px;
  }

  .albumHome {
    margin: 5px 5px;
    width: calc(50% - 10px);
  }

  .wrap-newsHome {
    padding: 30px 0;
  }

  .newsHome {
    margin: 10px 5px;
    width: calc(50% - 10px);
    text-align: center;
  }

  .pic-newsHome {
    width: 100%;
  }

  .info-newsHome {
    width: 100%;
    padding-top: 15px;
  }

  .name-newsHome {
    font-size: 16px;
  }

  .desc-newsHome {
    padding-top: 10px;
    -webkit-line-clamp: 3;
    padding-top: 0;
  }

  .view-newsHome {
    margin-top: 10px;
    padding: 10px 10px;
    zoom: 0.8;
  }

  .newsHome:nth-child(2n) {
    flex-direction: inherit;
    text-align: center;
  }

  .desc-newsHome::after {
    display: none;
  }

  .logo-footer {
    margin-bottom: 20px;
  }

  .box-branch {
    padding: 20px 0;
    gap: 10px;
  }

  .item-branch {
    font-size: 14px;
  }

  .info-footer li,
  .info-footer li:nth-child(1) {
    width: 100%;
  }

  .info-footer {
    margin-bottom: 10px;
  }
}

@media (max-width: 769px) {
  .tintuc-txt-2 {
    height: 30px;
  }

  .tintuc-txt-1 {
    -webkit-line-clamp: 2;
  }

  .tintuc-slide {
    margin: 0px -5px;
  }

  .tintuc-item {
    margin: 0px 5px;
  }

  .tintuc-title {
    font-size: 30px;
  }

  .tintuc-title img {
    display: none;
  }

  .bestseller-slide {
    margin: 0px -5px;
  }

  .bestseller .product {
    margin: 0px 5px;
  }

  .product-number {
    font-size: 40px;
  }

  .bestseller-title span,
  .intro-txt-1 {
    font-size: 30px;
  }

  .text-cart {
    display: none;
  }

  .grid-pro-detail {
    display: block;
  }

  .grid-pro-detail .left-pro-detail {
    width: 100%;
    padding: 0px;
    border-right: none;
  }

  .slick_photo1 {
    text-align: center;
  }

  .grid-pro-detail .right-pro-detail {
    width: 100%;
  }

  .right-product .grid-product,
  .grid-product,
  .grid-product-index {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .partnerHome {
    width: calc(100% / 2 - 12px);
  }
}

@media (max-width: 600px) {
  .play-ic {
    max-width: 50% !important;
  }

  .productmenu-item {
    margin: 0px 5px;
  }

  .productmenu-txt-1 {
    font-size: 20px;
  }

  .feedback-img .scale-img {
    width: 95px;
    top: 25px;
    left: 10px;
  }

  .feedback-img {
    width: 130px;
    height: 160px;
  }

  .productmenu-item {
    padding: 30px 20px;
  }

  .intro-txt-1 div {
    font-size: 15px;
  }

  .wap-produce {
    zoom: 0.4;
  }
}

@media (max-width: 440px) {
  .policy__list>li {
    width: 100%;
    padding-right: 0px !important;
    border-bottom: 1px solid #f1f1f1 !important;
  }
}

@media (max-width: 369px) {}

.slick-banner {
  width: 100%;
  overflow: hidden;
}

.slick-banner .slick-prev {
  left: 15px;
}

.slick-banner .slick-next {
  right: 15px;
}