
.has-scroll {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0px 2px 5px 0px #00000080;
  animation: menuSlideInDown 0.5s ease-out;
  background: #000;
  padding-top: 0 !important;
}

@keyframes menuSlideInDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Hvr Underline */
.hvr-underline {
  display: inline;
}

.hvr-underline {
  background: linear-gradient(90deg, transparent, transparent),
    linear-gradient(90deg, #1f1c17, #1f1c17);
  background-size: 100% 1px, 0 1px;
  background-position: 100% calc(100% - 3px), 0 calc(100% - 3px);
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}

.hvr-underline:hover {
  background-size: 0 1px, 100% 1px;
}

/* Hvr Double Box */
.hvr-double-shape {
  overflow: hidden;
  position: relative;
  display: block;
}

.hvr-double-shape:before,
.hvr-double-shape:after {
  opacity: 0.25;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: inline-block;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.hvr-double-shape:hover:before,
.hvr-double-shape:hover:after {
  transform: scaleX(1);
}

.hvr-double-shape:before {
  top: 0;
  bottom: 50%;
  transform-origin: 100% 0%;
}

.hvr-double-shape:hover:before {
  transform-origin: 0% 100%;
}

.hvr-double-shape:after {
  top: 50%;
  bottom: 0;
  transform-origin: 0% 100%;
}

.hvr-double-shape:hover:after {
  transform-origin: 100% 0%;
}

/* Hvr Double Box */
.hvr-double-box {
  overflow: hidden;
  position: relative;
  display: block;
}

.hvr-double-box:before {
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hvr-double-box:after {
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hvr-double-box:hover:before,
.hvr-double-box:hover:after {
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  -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;
}

/* Hvr Float Shadow */
.hvr-float-shadow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 1px transparent;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-float-shadow:before {
  opacity: 0;
  position: absolute;
  content: "";
  top: 100%;
  left: 5%;
  z-index: -1;
  width: 90%;
  height: 10px;
  background: -webkit-radial-gradient(center,
      ellipse,
      rgba(0, 0, 0, 0.35) 0,
      transparent 80%);
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.35) 0,
      transparent 80%);
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  pointer-events: none;
}

.hvr-float-shadow:active,
.hvr-float-shadow:focus,
.hvr-float-shadow:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.hvr-float-shadow:active:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:hover:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

/* Hvr Flash Shape */
.hvr-flash-shape {
  overflow: hidden;
  position: relative;
}

.hvr-flash-shape:before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 10;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.hvr-flash-shape:hover:before {
  transition: 1s;
  left: 130%;
}

/* Hvr Flash Box */
.hrv-flash-box {
  overflow: hidden;
  position: relative;
  display: block;
}

.hrv-flash-box:hover:before {
  top: 0;
  left: 0;
}

.hrv-flash-box:before {
  top: -100%;
  left: -100%;
}

.hrv-flash-box:after {
  right: -100%;
  bottom: -100%;
}

.hrv-flash-box:before,
.hrv-flash-box:after {
  display: block;
}

.hrv-flash-box:before,
.hrv-flash-box:after {
  content: "";
  position: absolute;
  z-index: 8;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3) none repeat scroll 0 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.hrv-flash-box:hover img {
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.hrv-flash-box img {
  transition: 0.7s;
}

.hrv-flash-box:hover:after {
  right: 0;
  bottom: 0;
}

/* Scale Img */
.scale-img {
  overflow: hidden;
  display: block;
}

.scale-img img {
  -webkit-transition: 0.3s ease-out !important;
  -moz-transition: 0.3s ease-out !important;
  -ms-transition: 0.3s ease-out !important;
  -o-transition: 0.3s ease-out !important;
  transition: 0.3s ease-out !important;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

.scale-img:hover>img {
  -webkit-transition: 0.3s ease-out !important;
  -moz-transition: 0.3s ease-out !important;
  -ms-transition: 0.3s ease-out !important;
  -o-transition: 0.3s ease-out !important;
  transition: 0.3s ease-out !important;
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.duongcheosang {
  transform: scale(1, 1);
  overflow: hidden;
  transition: width 2s, height 2s, transform 2s;
  cursor: pointer;
}

.duongcheosang:hover:before {
  transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
}

.duongcheosang:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  z-index: 10;
  transition: transform 0.6s;
  transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
}

.duongcheosang2 {
  overflow: hidden;
  position: relative;
}

.duongcheosang2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(67, 69, 113, 0);
  transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}

.duongcheosang2:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(67, 69, 113, 0);
  transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}

.duongcheosang2:hover:before {
  right: 50%;
  left: 50%;
  width: 0;
  background: rgba(255, 255, 255, 0.5);
}

.duongcheosang2:hover:after {
  height: 0;
  top: 50%;
  bottom: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.duongcheosang3 {
  position: relative;
  overflow: hidden;
}

.duongcheosang3::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  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: 1;
}

.duongcheosang3::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  position: absolute;
  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;
}

.duongcheosang3:hover::before,
.duongcheosang3:hover::after {
  transform: rotateY(180deg);
  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%;
}

/*phone xoay tron*/
.quick_contact {
  position: fixed;
  bottom: 5% !important;
  left: 60px;
  z-index: 20;
}

.quick_contact a {
  display: block;
  position: relative;
  font-size: 18px;
  color: #fff;
  padding: 0 20px 0 35px;
  height: 45px;
  line-height: 45px;
  text-decoration: none;
  border-radius: 0 40px 40px 0;
}

.quick_contact a span {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: -25px;
  top: -2.5px;
  border: solid 5px #fff;
}

.button_gradient {
  background-image: linear-gradient(90deg, #e51c23 0%, #ee1d23 100%);
  border: 2px #fff solid;
}

.quick_contact a span:before {
  content: "";
  position: absolute;
  top: -30px;
  left: -27px;
  width: 95px;
  height: 95px;
  background: url(../images/contact_rotate.html) center no-repeat;
  animation: rotate 3s linear infinite;
}

.quick_contact a span .fa {
  font-size: 26px;
  color: #fff;
}

.contact-phone {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 18px;
  height: 45px;
  font-weight: bold;
  animation-duration: 500ms;
  animation-name: calllink;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  line-height: 45px;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes calllink {
  0% {
    color: #eba11e;
  }

  50% {
    color: #fff;
  }

  100% {
    color: #ebfa48;
  }
}

/* Blink */
.blink {
  -webkit-animation-name: blink;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blink;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes shake-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    transform: rotate(0) scale(1) skew(1deg);
  }

  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }

  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}

@-webkit-keyframes shake-anim {

  0%,
  100%,
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }

  10%,
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20%,
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
}

/* Category Toggle */
.category-toggle {
    position: sticky;
    top: 60px;
}

.category-toggle-title {
    font: 700 18px/50px var(--font-main);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px 5px 0px 0px;
    background: var(--clr-main);
    height: 50px;
}

.category-toggle-list {
    width: 100%;
    list-style: none;
    padding: 0px;
    margin: 0;
}

.category-toggle-list.level-1 {
    border-right: 1px solid #dedede;
    border-left: 1px solid #dedede;
}

.category-toggle-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #dedede;
    padding: 10px 10px 10px 20px;
}

.category-toggle-list:not(.level-1) li:last-child {
    border-bottom: none;
}

.category-toggle-list li a {
    flex: 1;
    font: 700 15px/1.5 var(--font-main);
    color: var(--clr-static);
    text-transform: uppercase;
    transition: .3s ease-out;
}

.category-toggle-list li a.text-split {
    -webkit-line-clamp: 1;
}

.category-toggle-list li:has(.category-toggle-btn.active)>a,
.category-toggle-list li a:hover {
    color: var(--clr-main);
}

.category-toggle-list li span {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.category-toggle-list li span i {
    font-size: 16px;
    transform: rotateZ(0deg);
}

.category-toggle-list li span i.active {
    transform: rotateZ(-90deg);
}

.category-toggle-list li span i:hover,
.category-toggle-list li span i.active {
    color: var(--clr-main);
}

.category-toggle-list li ul {
    padding: 0;
}

.category-toggle-list li ul li:last-child {
    padding-bottom: 0;
}

/* Reset */
body {
  font: 400 15px/1.5 var(--font-main);
  color: #000;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

a,
input,
textarea,
button {
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
  transition: all .3s ease-out;
}

p,
address,
figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  line-height: 1;
  object-fit: cover;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.ckeditor a {
  color: -webkit-link;
  text-decoration: underline;
}

.ckeditor img {
  height: auto !important;
}

.ckeditor p {
  margin-bottom: 1rem;
}

.a2a_kit .a2a_svg {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.form-control,
.form-control-plaintext:not(textarea),
.custom-select {
  height: calc(1em + 1.25rem + 8px);
}

.quote-hidden:before,
.quote-hidden:after {
  content: unset;
}

.figcaption-hidden {
  overflow: hidden;
  width: 0;
  height: 0;
}

.hidden-seoh {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  margin: 0;
}

.hidden {
  display: none;
}

/* Main */
.body-container {
  position: relative;
  font-family: var(--font-main);
}

.main-content {
  max-width: 100%;
  padding: 0px;
  margin: 0 auto;
}

.wrap-home {
  max-width: 100%;
  padding: 0;
}

.wrapper-content {
  --w: 1200px;
  width: min(100% - 20px, var(--w));
  margin: 0 auto;
}

.rps-xl--visible[class*='rps-xl'][class*='--visible'],
.rps-lg--visible[class*='rps-lg'][class*='--visible'],
.rps-md--visible[class*='rps-md'][class*='--visible'],
.rps-sm--visible[class*='rps-sm'][class*='--visible'] {
  display: none !important;
}

.rps-xl--hidden[class*='rps-xl'][class*='--hidden'],
.rps-lg--hidden[class*='rps-lg'][class*='--hidden'],
.rps-md--hidden[class*='rps-md'][class*='--hidden'],
.rps-sm--hidden[class*='rps-sm'][class*='--hidden'] {
  display: block !important;
}

/* Grid Box */
.grid-container {
  display: grid;
  grid-template-columns: repeat(var(--grid-items, 4), minmax(0, 1fr));
  grid-template-rows: minmax(min-content, max-content);
  grid-gap: var(--grid-column, var(--grid-gap, 20px)) var(--grid-row, var(--grid-gap, 20px));
}

.grid-service {
  display: grid;
  grid-template-columns: repeat(var(--grid-items, 3), minmax(0, 1fr));
  grid-template-rows: minmax(min-content, max-content);
  grid-gap: var(--grid-column, var(--grid-gap, 24px)) var(--grid-row, var(--grid-gap, 24px));
}

.grid-album {
  display: grid;
  grid-template-columns: repeat(var(--grid-items, 3), minmax(0, 1fr));
  grid-template-rows: minmax(min-content, max-content);
  grid-gap: var(--grid-column, var(--grid-gap, 22px)) var(--grid-row, var(--grid-gap, 22px));
}

.grid-product {
  display: grid;
  grid-template-columns: repeat(var(--grid-items, 3), minmax(0, 1fr));
  grid-template-rows: minmax(min-content, max-content);
  grid-gap: var(--grid-column, var(--grid-gap, 20px)) var(--grid-row, var(--grid-gap, 20px));
}

/* Text Truncate */
[class *='text-split'] {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line-clamp, 3);
}

.text-split-1 {
  --line-clamp: 1;
}

.text-split-2 {
  --line-clamp: 2;
}

.text-split-4 {
  --line-clamp: 4;
}

.text-split-5 {
  --line-clamp: 5;
}

.text-split-6 {
  --line-clamp: 6;
}

.text-split-7 {
  --line-clamp: 7;
}

.text-split-8 {
  --line-clamp: 8;
}

/* Transition All */
.transition {
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

/* swipper */
.swiper-slide .item figure>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 40px;
  --swiper-navigation-color: #fff;
  --swiper-background-color: var(--clr-main);
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  background: var(--swiper-background-color);
  border-radius: 50%;
  transition: .5s ease-out;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  --swiper-navigation-size: 18px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  --swiper-background-color: var(--clr-hover);
}

.swiper-thumb-pro .swiper-button-prev,
.swiper-thumb-pro .swiper-button-next {
  --swiper-navigation-size: 30px;
}

.swiper-thumb-pro .swiper-button-next:after,
.swiper-thumb-pro .swiper-button-prev:after {
  --swiper-navigation-size: 18px;
}

/* bootstrap custom */
.form-check-input {
  margin-top: 1em;
}

/* Lazyload */
img.lazy{opacity:0;}
img:not(.initial){transition:opacity 1s;}
img.initial,img.loaded,img.error{opacity:1;}
img:not([src]){visibility:hidden;}

/* Like Share */
.social-plugin{display:flex;justify-content:flex-start;margin-top: 0px;gap: 9px;}
.social-plugin .at-share-btn{margin-bottom:0px!important;}
.social-plugin .zalo-share-button{margin-left:3px;}
.social-product ul {display: flex;justify-content: flex-start;margin-top: 0px;padding-left: 0px;list-style: none;margin-bottom: 0px;}
.addthis_inline_share_toolbox_dc09{display:none}
.social-product li {margin-top: 0px;margin-right: 8px;}

.social-product button {width: 30px;display: flex;height: 30px;border: none;cursor: pointer;color: #ffffff;border-radius: 3px;padding: 0px;font-size: 15px;transition: all 0.3s;justify-content: center;align-items: center;}

.social-product button:hover{
    transform: translateY(-5px);
}

.social-product .sharer1{
    background: #1c96e8;
}
.social-product .sharer2{
    background: #3d548e;
}
.social-product .sharer3{
    background: #3294bd;
}
.social-product .sharer4{
    background: #cb362d;
}
.social-product .sharer5{
    background: #df0022;
}


/* General */
@font-face {
	font-family: 'HelveticaNeue';
	font-display: swap;
	font-weight: 400;
	font-style: normal;
	src: url('../fonts/main/HelveticaNeue.ttf');
}

@font-face {
	font-family: 'HelveticaNeue-Medium';
	font-display: swap;
	font-weight: 500;
	font-style: normal;
	src: url('../fonts/main/HelveticaNeue-Medium.ttf');
}

:root {
	--clr-main: #51b8f2;
	--clr-xanhnhat: #e4f5ff;
	--clr-hover: #ff6801;
	--clr-static: #000;
	--bg-static: #ffffff;
	--font-main: 'HelveticaNeue';
	--font2: 'Roboto', sans-serif;
	--font3: 'HelveticaNeue-Medium';
	--background-g: linear-gradient(
		59deg,
		rgba(197, 154, 70, 1) 41%,
		rgba(240, 211, 122, 1) 50%,
		rgba(197, 154, 70, 1) 59%
	);
}

.title-main {
	text-align: center;
	margin-bottom: 35px;
	background: url('../images/trangtri1.png') no-repeat center bottom;
}

.title-main h2 {
	text-transform: uppercase;
	font-size: 30px;
	font-family: var(--font2);
}

.title-main span {
	text-transform: uppercase;
	font-size: 30px;
	font-family: var(--font2);
}

.title-main2 h2 {
	text-transform: capitalize;
	font-size: 22px;
	font-family: var(--font2);
}

.title-main p {
	font: 400 15px /1.5 var(--font-main);
}

[class*='-template'] .title-main {
	margin-bottom: 1.5em;
}

[class*='-template'] .title-main h2 {
	font-size: 26px;
}

[class*='-template'] .title-main span {
	font-size: 26px;
}

.time-main {
	margin-top: 1rem;
	color: #999999;
}

.time-main i {
	vertical-align: top;
	margin: 3px 7px 0px 0px;
}

.time-main span {
	vertical-align: top;
	display: inline-block;
}

.images-item {
	max-width: 263px;
	margin-left: auto;
}

.text-bn {
	font-size: 22px;
	font-weight: 700;
	max-width: 270px;
	position: absolute;
	bottom: 49px;
	right: 0;
	padding-left: 10px;
}

.banner-tghoatdong {
	position: relative;
}

.images-item2 {
	max-width: 390px;
	margin-top: -10px;
}

.images-item2 img {
	border-radius: 5px;
}

.images-item img {
	border-radius: 5px;
}

.share {
	line-height: normal;
}

.share b {
	display: block;
	margin-bottom: 5px;
}

.form-control,
.form-control-plaintext:not(textarea),
.custom-select {
	height: calc(1em + 1.25rem + 8px);
}

.text-sm {
	font-size: 0.875rem !important;
}

/* Header */
.menu-tc {
	margin-left: 40px;
}

span.count-cart {
	background: red;
	height: 21px;
	width: 21px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: #fff;
	font-size: 13px;
}

.header-hsnangluc a {
	background: var(--clr-xanhnhat);
	padding: 10px 20px;
	border-radius: 50px;
	height: 42.5px;
	display: inline-block;
	color: var(--clr-main);
}

a.cart-menu {
	display: flex;
	align-items: center;
	gap: 7px;
	background: var(--clr-xanhnhat);
	padding: 10px 20px;
	border-radius: 50px;
	color: var(--clr-main);
}

.contact-header {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: calc(100% - 131px - 190px);
}

.header-logo {
	width: 131px;
}

.header {
	background: #fbfbfb;
	color: #333;
}

.header-top {
	background: var(--clr-main);
	color: #ffffff;
	padding: 6px 0;
}

.header-bottom {
	padding: 6px 0;
}

.header-hotline .hotline-phone {
	font-size: 15px;
	color: #000;
}

/* Menu */
.navigation nav ul li .navigation-name::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	background-color: var(--clr-main);
	border-radius: 5px;
	left: 0px;
	bottom: 0px;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.5s;
}

.navigation nav ul li.active .navigation-name::before,
.navigation nav ul li:hover > .navigation-name::before {
	transform-origin: left;
	transform: scaleX(1);
}

.navigation {
	position: relative;
	z-index: 199;
	transition: all 0.3s ease-out;
	background: #ffffff;
	box-shadow: 0px 0px 5px #80808075;
}

.navigation > .navigation-inner {
	column-gap: 2rem;
}

.navigation nav {
	flex: 1;
}

.navigation nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.navigation nav ul:has(.level-0) {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navigation nav ul li {
	position: relative;
	z-index: 1;
}

.navigation nav ul li:is(.has-child) {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}

.navigation nav ul li .navigation-name {
	display: block;
	font-family: var(--font3);
	color: #000000;
	text-transform: uppercase;
	padding: 13px 0;
	font-size: 15px;
}

.navigation nav ul li:is(.has-child) > .navigation-name {
	flex: 1;
}

.navigation nav ul li.active > .navigation-name,
.navigation nav ul li:hover > .navigation-name {
	color: var(--clr-main);
}

.navigation nav ul li .navigation-button {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	background: transparent;
}

.navigation nav ul li .navigation-button i {
	font-size: 14px;
	color: #fff;
}

.navigation nav ul li.has-child:hover > .navigation-name + .navigation-button i,
.navigation nav ul li.has-child.active > .navigation-name + .navigation-button i {
	color: var(--clr-main);
}

.navigation nav ul li.has-child:hover > .navigation-name:is(.level-0) + .navigation-button i {
	transform: rotateZ(-90deg);
}

.navigation nav ul li.has-child:hover > .navigation-name:not(.level-0) + .navigation-button i {
	transform: rotateZ(-180deg);
}

.navigation nav ul li ul {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 265px;
	background: #fff;
	-webkit-box-shadow: 1px 1px 15px #00000026;
	box-shadow: 1px 1px 15px #00000026;
	-webkit-transform: perspective(600px) rotateX(-90deg);
	transform: perspective(600px) rotateX(-90deg);
	-webkit-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
	transition: all 0.5s ease-out;
}

.navigation nav ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	-webkit-transform: perspective(600px) rotateX(0);
	transform: perspective(600px) rotateX(0);
	-webkit-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
	transition: all 0.7s ease-out;
}

.navigation nav ul li ul li {
	isolation: isolate;
	padding: 0 0.75rem;
}

.navigation nav ul li ul li:hover {
	background: var(--clr-xanhnhat);
}

.navigation nav ul li ul li:not(:last-child):before {
	content: '';
	position: absolute;
	right: 0.75rem;
	bottom: 0;
	left: 0.75rem;
	z-index: -1;
	height: 1px;
	background: #ccc;
}

.navigation nav ul li ul li .navigation-name {
	font-size: 15px;
	text-transform: capitalize;
	padding: 10px 0px 9px 0px;
	color: #1a1a1a;
}

.navigation nav ul li ul li .navigation-name:hover {
	color: var(--clr-main);
}

.navigation nav ul li ul li .navigation-button i {
	font-size: 14px;
	color: #1a1a1a;
}

.navigation nav ul li ul li ul {
	top: 0;
	left: 100%;
	margin-top: 0;
}

/* Search */
.search-block {
	border-radius: 60px;
	background: #f4f4f496;
	border: 1px solid #fff;
}

.search-block .search-inner {
	display: flex;
	width: 248px;
	height: 40px;
}

.search-block .search-button {
	display: grid;
	place-items: center;
	width: 70px;
	border-radius: 0 60px 60px 0;
	transition: 0.3s ease-out;
	color: #fff;
	font-size: 20px;
	background: unset;
}

.search-block .search-button:hover {
	background: var(--clr-hover);
}

.search-block .search-input {
	flex: 1;
	font-size: 13px;
	color: #fff;
	text-indent: 25px;
	background: none;
	border-radius: 60px 0 0 60px;
}

.search-block .search-input::-webkit-input-placeholder,
.search-block .search-input:-ms-input-placeholder,
.search-block .search-input:-moz-placeholder,
.search-block .search-input::placeholder {
	color: #fff;
}

/* Search Responsive */
.search-toggle {
	position: relative;
}

.search-toggle .search-icon {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	width: 40px;
	font-size: 18px;
	color: var(--clr-main);
	border: 1px solid transparent;
	cursor: pointer;
	background: var(--clr-xanhnhat);
	border-radius: 50%;
}

.search-toggle .search-icon.active {
	color: var(--clr-main);
	border-radius: 50%;
	background: #fff;
}

.search-toggle .search-grid {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: 50px;
	right: 0;
	display: flex;
	width: 0;
	height: 40px;
	border: 1px solid var(--clr-main);
	border-radius: 999px;
	background: #fff;
	padding: 0rem 0.25rem;
}

.search-toggle .search-icon.active + .search-grid {
	visibility: visible;
}

.search-toggle .search-grid .search-button {
	display: grid;
	place-items: center;
	width: 35px;
	font-size: 17px;
	color: var(--clr-main);
	background: none;
}

.search-toggle .search-grid .search-input {
	flex: 1;
	color: var(--clr-main);
	text-indent: 10px;
}

.search-toggle .search-grid input::-webkit-input-placeholder,
.search-toggle .search-grid input:-moz-placeholder,
.search-toggle .search-grid input::-moz-placeholder,
.search-toggle .search-grid input:-ms-input-placeholder {
	color: #ccc;
}

/* Mmenu */
.menu-res {
	position: relative;
	z-index: 199;
	height: 50px;
	background: var(--clr-main);
	transition: all 0.3s ease-out;
}

#hamburger {
	position: relative;
	display: block;
	width: 40px;
	height: 23px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
	content: '';
	position: absolute;
	left: 0px;
	display: block;
	width: 100%;
	height: 3px;
	background: var(--clr-main);
}

#hamburger:before {
	top: 0px;
}

#hamburger span {
	top: 10px;
}

#hamburger:after {
	top: 20px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
	-webkit-transition: none 0.5s ease 0.5s;
	transition: none 0.5s ease 0.5s;
	-webkit-transition-property: transform, top, bottom, left, opacity;
	transition-property: transform, top, bottom, left, opacity;
}

.menu-res #menu {
	display: none;
}

.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
	top: 10px;
}

.mm-wrapper_opening #hamburger span {
	left: -50px;
	opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
	transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
	transform: rotate(-45deg);
}

.mm-menu_opened {
	display: block !important;
}

/* Slideshow */
.section-slider {
	overflow: hidden;
}

.section-slider .item {
	position: relative;
}

.section-slider .item .info {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	left: 0;
	width: 100%;
	z-index: 9;
}

.section-slider .swiper-slide-active .item .info label {
	animation-name: fadeInDown;
	animation-duration: 1s;
}

.section-slider .swiper-slide-active .item .info span {
	animation-name: fadeInLeft;
	animation-duration: 1s;
}

.section-slider .swiper-slide-active .item .info p {
	animation-name: fadeInRight;
	animation-duration: 1s;
}

.section-slider .swiper-slide-active .item .info a {
	animation-name: fadeInUp;
	animation-duration: 1s;
	display: inline-block;
}

/* Breadcrumb */
.breadCrumbs {
	background-color: #eee;
	padding: 0.75rem 0;
}

.breadCrumbs .wrapper-content .breadcrumb {
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	border-radius: 0;
}

.breadCrumbs .wrapper-content .breadcrumb-item a {
	color: #212529;
}

.breadCrumbs .wrapper-content .breadcrumb-item a:hover {
	color: var(--clr-main);
}

.breadCrumbs .wrapper-content .breadcrumb-item.active a {
	color: #000000;
	font-weight: 500;
}

.breadCrumbs .wrapper-content .breadcrumb-item a i {
	margin-right: 4px;
}

/* Gioi thieu */
.section-about-inner {
	text-align: center;
	max-width: 916px;
	margin: 0 auto;
}

.btn-style-one {
	position: relative;
	display: inline-block;
	color: var(--clr-main) !important;
	font-size: 15px;
	background: var(--clr-xanhnhat) !important;
	line-height: 30px;
	text-transform: uppercase;
	padding: 9px 48px 9px;
	border-radius: 50px;
	font-family: var(--font3);
}

.btn-style-one:before {
	background-image: linear-gradient(to left, var(--clr-hover) 0%, var(--clr-hover) 100%) !important;
	border-radius: 50px;
}

.btn-style-one .txt {
	position: relative;
	z-index: 1;
}

.btn-style-one:hover .txt {
	color: #fff;
}

.btn-style-one:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-transform: scale(0.2, 1);
	transform: scale(0.2, 1);
	background-image: -ms-linear-gradient(right, #444344 0%, #000101 100%);
	background-image: -moz-linear-gradient(right, #444344 0%, #000101 100%);
	background-image: -o-linear-gradient(right, #444344 0%, #000101 100%);
	background-image: -webkit-gradient(linear, right top, left top, color-stop(0, #444344), color-stop(100, #000101));
	background-image: -webkit-linear-gradient(right, #444344 0%, #000101 100%);
	background-image: linear-gradient(to left, #444344 0%, #000101 100%);
}

.btn-style-one:hover::before {
	opacity: 1;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.section-about .about-slogan {
	font: 400 14px/1.5 var(--font-title);
	color: var(--clr-static);
	margin-bottom: 20px;
}

span.title-na {
	font-size: 37px;
	font-family: var(--font2);
	font-weight: 300;
	color: var(--clr-main);
}

span.name-tt {
	font-size: 37px;
	font-family: var(--font2);
	color: #484848;
	font-weight: 600;
}

.section-about .about-desc {
	font: 400 14px/1.5 var(--font-main);
	color: var(--clr-static);
	margin-bottom: 30px;
}

/* Tieu chi */
.grid-taisao {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px 93px;
}

.criteria-item {
	cursor: pointer;
	text-align: center;
	position: relative;
}

.criteria-item .criteria-name {
	font: 400 14px/1.5 var(--font-main);
	color: #333333;
}

.criteria-item:hover .criteria-name {
	color: var(--clr-hover);
}

.criteria-item .criteria-desc {
	font: 400 14px/1.5 var(--font-main);
	color: #333333;
}

.hover-cricle [class*='img-inner'] {
	transition: all 0.8s ease-out;
}

.hover-cricle:hover [class*='img-inner'] {
	transform: rotateY(-360deg);
}

/* Newsletter  */
.newsletter-left {
	width: 50.75%;
}

.newsletter-right {
	width: calc(100% - 50.75% - 30px);
}

.grid-newsletter {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 20px;
	width: 100%;
}

.form-newsletter {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.newsletter-input {
	width: 100%;
}

.section-newsletter {
	background: #f9f9f9;
}

.newsletter-title {
	color: #1e1e1e;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.newsletter-slogan {
	color: #5f5f5f;
	font-style: italic;
	margin-bottom: 10px;
}

.newsletter-input:nth-child(5) {
	grid-column: auto / span 2;
}

.newsletter-input .form-control {
	box-shadow: none;
	border-radius: 50px;
	border: 1px solid #eae8e8;
	background: #efefef;
}

.newsletter-input input.form-control {
	height: 50px;
}

.newsletter-input textarea.form-control {
	height: 96px;
	border-radius: 10px;
}

.form-newsletter .newsletter-button {
	width: 220px;
	height: 47px;
	margin: 0 auto;
}

.newsletter-button input[type='submit'] {
	width: 100%;
	height: 100%;
	background: #00a1e4;
	display: grid;
	place-items: center;
	color: #ffffff;
	text-transform: uppercase;
	border-radius: 50px;
}

.newsletter-button:hover input[type='submit'] {
	background: var(--clr-hover);
}

/* Product */
.tags-pro-detail {
	border-top: 1px solid rgba(37, 36, 37, 0.1);
	padding-top: 30px;
	margin-top: 2rem;
}

.product-list-item {
	border-radius: 15px;
	padding: 5px;
	margin: 5px 0;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}

.product-list-item:hover {
	background: var(--clr-main);
	box-shadow: 0 0.46875rem 2.1875rem rgb(90 97 105 / 10%), 0 0.9375rem 1.40625rem rgb(90 97 105 / 10%),
		0 0.25rem 0.53125rem rgb(90 97 105 / 12%), 0 0.125rem 0.1875rem rgb(90 97 105 / 10%);
}

.product-info-inner .product-name {
	font-size: 15px;
	font-family: var(--font3);
	text-transform: uppercase;
}

.product-info {
	text-align: center;
	margin-top: 1.5rem;
}

.product-img {
	background: #fff;
	border-radius: 15px;
	position: relative;
}

.product-img .a-icon {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: 0.5s;
}

.product-item:hover .product-img .a-icon {
	opacity: 1;
	transition: 0.5s;
}

.product-box {
	position: relative;
}

.product-img-inner3 {
	position: absolute;
	top: 0;
	height: 100%;
	opacity: 0;
	transition: 0.3s;
}

.product-item:hover .product-img-inner3 {
	opacity: 1;
	transition: 0.3s;
}

.product-img-inner3 img {
	width: 100%;
	height: 100%;
}

.a-icon .addcart {
	display: inline-block;
}

.product-img-inner2.scale-img {
	border-radius: 15px;
}

section.section-product-list {
	background: #fafafa;
}

.product-item {
	position: relative;
	text-align: center;
}

.product-item .product-info {
	padding: 10px 0;
}

.product-item .product-name {
	margin-bottom: 5px;
	transition: 0.3s ease-out;
}

.product-item:hover .product-name {
	color: var(--clr-hover);
}

.product-item .product-price-old {
	font: 400 14px/1.5 var(--font-main);
	color: #333333;
}

.product-item .product-price-new {
	color: #e4000e;
	font-size: 15px;
	font-weight: 500;
}

.product-item .product-price-per {
	position: absolute;
	right: 8px;
	top: 8px;
	border-radius: 4px;
	background: #e4000e;
	padding: 2px 6px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
}

.product-item .product-cart {
	cursor: pointer;
	border-radius: 4px;
	background: #00a1e4;
	padding: 4.5px 0;
	transition: 0.3s ease-out;
}

.product-item .product-cart:hover {
	background: var(--clr-hover);
}

.product-item .product-addnow {
	background: url(../images/ic-addcart.html) left no-repeat;
	padding-left: 16px;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
}

span.price-new {
	font-size: 16px;
	font-family: var(--font3);
}

span.price-old {
	color: #7f7f7f;
	font-size: 13px;
}

.price_per {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #ffffff;
	background: var(--clr-main);
	font-size: 11px;
	border-radius: 2px;
	width: 45px;
	height: 25px;
	text-align: center;
	line-height: 25px;
}

.product-price {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
}

.section-product-inner .left {
	width: 23.4%;
}

.section-product-inner .right {
	width: calc(100% - 23.4% - 28px);
}

.title-list h3 {
	font-size: 20px;
	font-family: var(--font2);
	text-transform: uppercase;
	background: url('../images/menu-bars.png') no-repeat left;
	padding-left: 53px;
	line-height: 60px;
	background-position: 29px 25px;
}

.title-list {
	height: 60px;
	background: url('../images/bg-list.png');
	background-size: 100% 100%;
	text-align: center;
}

.title-product-list a {
	display: block;
	font-family: var(--font3);
	text-transform: uppercase;
	font-size: 15px;
	cursor: pointer;
	position: relative;
	white-space: nowrap;
	padding: 12px 24px;
}

.title-product-list a.active {
	color: var(--clr-main);
}

.title-product-list a.active::before {
	background: var(--clr-hover);
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0px;
	left: 0;
	right: 0;
	content: '';
	z-index: 9;
}

.title-product-list a::after {
	background: var(--clr-main);
	height: 13px;
	width: 1px;
	position: absolute;
	right: 0;
	top: 50%;
	content: '';
	transform: translateY(-50%);
}

.title-product-list {
	display: flex;
	margin-bottom: 2rem;
	border-top: 1px solid var(--clr-main);
}

/* tin tuc */
figure.news-img-inner.scale-img {
	border-radius: 10px;
}

.news-item .news-date {
	font: 400 14px/1.5 var(--font-main);
	color: #333333;
}

.news-item .news-name {
	font-family: var(--font3);
	font-size: 16px;
	margin-bottom: 10px;
}

.news-item:hover .news-name {
	color: var(--clr-hover);
}

.news-item .news-desc {
	color: #3c3c3c;
	font-size: 13px;
}

.news-info {
	padding-top: 15px;
}

/* Product Detail */

.images-detail {
	direction: rtl;
}
.images-detail .left {
	width: 92px;
}

.images-detail .right {
	width: calc(100% - 112px);
}

.grid-pro-detail {
	margin-bottom: 2rem;
}

.left-pro-detail .MagicZoom {
	border: 1px solid #eee;
	padding: 7px;
	border-radius: 5px;
	background-color: #ffffff;
}

.gallery-thumb-pro {
	position: relative;
}

.owl-pro-detail {
	padding: 0;
}

.control-pro-detail button {
	background-color: transparent;
	color: #222222;
	opacity: 1;
	width: 25px;
	font-size: 23px;
}

.control-pro-detail button:hover {
	opacity: 0.7;
}

.control-pro-detail button.owl-prev {
	left: 0px;
}

.control-pro-detail button.owl-next {
	right: 0px;
}

.thumb-pro-detail {
	display: block !important;
	border: 1px solid #eee;
	padding: 5px;
	border-radius: 3px;
	cursor: pointer;
	background-color: #ffffff;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
	border-color: #cecfd2;
}

.thumb-pro-detail img {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	-webkit-filter: brightness(100%) !important;
	filter: brightness(100%) !important;
	border-bottom: 0px !important;
	padding-bottom: 0px !important;
}

.title-pro-detail {
	text-transform: capitalize;
	font-size: 20px;
	display: block;
	font-weight: 700;
}

.comment-pro-detail {
	display: -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;
}

.social-plugin-pro-detail {
	margin-bottom: 1rem;
	margin-top: 0px !important;
}

.desc-pro-detail {
	margin-bottom: 1rem;
}

.attr-pro-detail {
	list-style: none;
	padding: 0px;
}

.attr-pro-detail li {
	margin-bottom: 0.5rem;
}

.attr-label-pro-detail {
	margin: 0px 5px 0px 0px;
}

.attr-content-pro-detail {
	display: inline-block;
	margin-bottom: 0px;
}

.brand-pro-detail a {
	background: var(--color-red);
	color: #fff;
	border-radius: 2px;
	padding: 2px 5px;
}

.price-new-pro-detail {
	font-weight: 700;
	font-size: 23px;
	color: var(--clr-main);
}

.price-old-pro-detail {
	font-weight: 400;
	color: var(--color-gray);
	text-decoration: line-through;
	padding-left: 10px;
}

.color-pro-detail {
	cursor: pointer;
	vertical-align: top;
	position: relative;
	width: 48px;
	height: 32px;
	margin: 0 8px 5px 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	border: 1px solid #dadada;
	transition: 0.3s;
	border-radius: 2px;
}

.size-pro-detail {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	width: 48px;
	position: relative;
	margin: 0 8px 0 0;
	border: 1px solid #dadada;
	border-radius: 2px;
	font-size: 12px;
	transition: 0.3s;
}

.size-pro-detail.active,
.color-pro-detail.active {
	border-color: var(--color-dark-red);
}

.size-pro-detail.active:after,
.color-pro-detail.active:after {
	content: '';
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 13px;
	height: 13px;
	background-repeat: no-repeat;
	background-image: url(../images/check-cart.png);
}

.color-pro-detail input[type='radio'],
.size-pro-detail input[type='radio'] {
	display: none;
}

.quantity-pro-detail {
	width: 150px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	height: 45px;
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid #dfdfdf;
}

.quantity-pro-detail span {
	line-height: 25px;
	padding: 0px;
	width: 45px;
	height: 100%;
	color: #000;
	cursor: pointer;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
	border-left: 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
	border-right: 0px;
}

.quantity-pro-detail input {
	height: 100%;
	border: none;
	width: calc(100% - 90px);
	text-align: center;
	font-size: 15px;
}

.cart-pro-detail {
	max-width: 400px;
}

.cart-pro-detail a {
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	width: calc(100% / 2 - 5px);
	border-radius: 5px;
}

.cart-pro-detail a.addnow {
	background: #fff;
	color: var(--color-red);
}

.cart-pro-detail a.addnow:hover {
	color: #fff;
	background: var(--color-red);
}

.cart-pro-detail a.buynow {
	background-color: #333;
}

.cart-pro-detail a.buynow:hover {
	background-color: var(--color-dark-red);
	color: #fff;
}

.cart-pro-detail a i {
	vertical-align: top;
	margin-right: 8px;
	font-size: 24px;
	position: relative;
	top: -2px;
}

.tags-pro-detail a {
	float: left;
	font-size: 13px;
	margin: 0px 5px 5px 0px;
	padding: 0;
	color: var(--clr-main);
}

.tags-pro-detail a i {
	font-size: 11px;
	margin: 5px 5px 0px 0px;
}

.tabs-pro-detail .nav-tabs .nav-link {
	font-size: 17px;
	color: #000;
	text-transform: uppercase;
	border-radius: 5px;
	font-family: var(--font3);
}

.tabs-pro-detail .nav-tabs .nav-link.active,
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
	background: var(--clr-main);
	color: #fff;
}

/* Othernews */
.othernews {
	position: sticky;
	top: 60px;
	z-index: 11;
}

.news-other:not(:last-child) {
	/* margin-bottom: 15px; */
}

.news-other-img {
	width: 40%;
}

.news-other-info {
	padding-left: 10px;
	width: calc(100% - 32px);
}

.news-other-name {
	font: 400 14px/1.5 var(--font-main);
}

.news-other:hover .news-other-name {
	color: var(--clr-hover);
}

/* Video detail */
.video-item {
	display: block;
}

.video-item .video-img {
	position: relative;
}

.video-item .video-img:before {
	content: '';
	position: absolute;
	width: 50px;
	height: 35px;
	top: calc(50% - 50px / 2);
	left: calc(50% - 35px / 2);
	z-index: 1;
	background: url(../images/play.png) no-repeat;
}

.video-item .video-info {
	padding-top: 10px;
}

.video-item .video-name {
	--line-clamp: 1;
	font: 400 15px/1.5 var(--font-main);
	color: var(--clr-static);
	margin-bottom: 0;
	transition: 0.5s ease-out;
}

.video-item:hover .video-name {
	color: var(--clr-main);
}

/* Contact */
.contact-article {
	margin-bottom: 3rem;
}

.contact-input {
	position: relative;
	margin-bottom: 15px;
}

.contact-input textarea {
	resize: none;
	height: 150px;
}

.contact-input .custom-file-label::after {
	content: attr(title);
}

.contact-map {
	position: relative;
	height: 500px;
}

.contact-map iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100% !important;
	height: 100% !important;
}

/* Footer */
.footer {
	background: #061939;
	color: #ffffff;
}

.footer-name h3 {
	font-size: 35px;
	font-family: var(--font2);
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.footer-detail.ckeditor {
	line-height: 2;
}

.footer-news:nth-child(1) {
	width: 28.08%;
}

.footer-news:nth-child(2) {
	width: 20.33%;
}

.footer-news:nth-child(3) {
	width: 17.5%;
}

.footer-news:nth-child(4) {
	width: 25%;
}

.footer-logo {
	margin-bottom: 2rem;
	text-align: center;
}

.footer-title {
	font: 700 15px/1.3 var(--font-main);
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 14px;
}

.footer-title::after {
	background: #ffffff;
	width: 34px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
}

.footer-ul-list {
	padding-left: 15px;
	margin: 0px;
}

.footer-ul-list li:not(:last-child) {
	margin-bottom: 9px;
}

.footer-ul-list li a:hover {
	color: var(--clr-hover);
}

.footer-tags-lists {
	list-style: none;
	padding: 0px;
	margin: 0px;
	gap: 2px 10px;
}

.footer-tags-lists li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s ease-out;
	color: var(--clr-main);
}

.footer-powered {
	padding: 14px 0;
	background: #000;
	text-align: center;
}

.footer-statistic {
	text-align: right;
}

.footer-statistic span:not(:last-child) {
	padding-right: 10px;
}

#footer-map {
	position: relative;
	height: 230px;
}

#footer-map iframe {
	position: absolute !important;
	width: 100% !important;
	height: 100% !important;
	top: 0px !important;
	left: 0px !important;
}

/* Chi nhanh */
#footer-chinhanh .main {
	position: relative;
}

#footer-chinhanh .left {
	position: absolute;
	right: 0;
	top: 30px;
	z-index: 1;
	width: fit-content;
	max-width: 1200px;
	padding-right: calc((100% - 1200px) / 2);
	display: flex;
	justify-content: flex-end;
	gap: 10px 5px;
}

#footer-chinhanh .left .item {
	cursor: pointer;
	display: inline-block;
	border-radius: 5px;
	background: #fff;
	padding: 12px 25px;
	color: #333333;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
}

#footer-chinhanh .left .item.act,
#footer-chinhanh .left .item:hover {
	background: var(--clr-main);
	border-color: var(--clr-main);
	color: #fff;
	box-shadow: none;
}

#footer-chinhanh .right {
	width: 100%;
	height: 500px;
	position: relative;
}

#footer-chinhanh .right iframe {
	position: absolute !important;
	width: 100% !important;
	height: 100% !important;
	top: 0px !important;
	left: 0px !important;
}

/* Like Share */
.social-plugin {
	margin-top: 10px;
	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;
}

.social-plugin .at-share-btn {
	margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
	margin-left: 3px;
}

/* Paging */
.pagination-home {
	margin-top: 1.5rem;
}

.pagination-home .pagination .page-item .page-link {
	color: #555555;
	font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
	color: #ffffff;
	background-color: var(--clr-main);
	border-color: var(--clr-main);
}

.pagination-ajax {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.25rem;
	margin-top: 2rem;
}

.pagination-ajax a {
	display: grid;
	place-items: center;
	width: 35px;
	height: 35px;
	font-size: 13px;
	color: #828282;
	border-radius: 50%;
	/* background: #fff; */
	cursor: pointer;
	user-select: none;
	transition: 0.3s ease-out;
}

.pagination-ajax a.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.pagination-ajax a.current,
.pagination-ajax a:not(.disabled):hover {
	color: #ffffff;
	color: var(--clr-hover);
}

.pagination-ajax a:is(.first, .prev, .next, .last) {
	position: relative;
	text-indent: -9999px;
	font-size: 0;
	line-height: 0;
}

.pagination-ajax a:is(.first, .prev, .next, .last):before {
	position: absolute;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
	font-size: 16px;
	text-indent: 0;
}

.pagination-ajax a.first:before {
	content: '\f100';
}

.pagination-ajax a.prev:before {
	content: '\f104';
}

.pagination-ajax a.next:before {
	content: '\f105';
}

.pagination-ajax a.last:before {
	content: '\f101';
}

/* Popup */
#popup .modal-body {
	padding: 0px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
	display: none !important;
	width: 0px !important;
	height: 0px !important;
	visibility: hidden !important;
	overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
	display: none;
}

/* Scroll to top */
.progress-wrap {
	position: fixed;
	bottom: 30px;
	right: 17px;
	height: 56px;
	width: 56px;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	z-index: 1001010;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	transition: all 400ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	font-family: 'Font Awesome 6 Pro';
	content: '\f077';
	text-align: center;
	line-height: 50px;
	font-size: 16px;
	font-weight: 900;
	color: var(--clr-main);
	left: 0;
	top: 0;
	height: 56px;
	width: 56px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	-webkit-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	transition: all 400ms linear;
}

.progress-wrap svg path {
	fill: #fff;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--clr-main);
	stroke-width: 4;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	transition: all 400ms linear;
}

/* Button Frame */
.btn-frame {
	--size: 50px;
	--kenit-circle: 10px;
	--kenit-circle-fill: 20px;
	position: fixed;
	right: 20px;
	z-index: 999;
	display: block;
	aspect-ratio: 1;
	width: var(--size);
	height: var(--size);
}

.btn-frame .btn-frame-icon {
	position: relative;
	z-index: 1;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	aspect-ratio: 1;
	width: var(--size);
	height: var(--size);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: var(--clr-main);
}

.btn-frame .kenit-alo-circle {
	opacity: 0.5;
	position: absolute;
	top: calc(50% - calc(var(--size) + var(--kenit-circle)) / 2);
	right: calc(50% - calc(var(--size) + var(--kenit-circle)) / 2);
	aspect-ratio: 1;
	width: calc(var(--size) + var(--kenit-circle));
	height: calc(var(--size) + var(--kenit-circle));
	border: 2px solid var(--clr-main);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: transparent;
}

.btn-frame .kenit-alo-circle-fill {
	opacity: 0.4;
	position: absolute;
	top: calc(50% - calc(var(--size) + var(--kenit-circle-fill)) / 2);
	right: calc(50% - calc(var(--size) + var(--kenit-circle-fill)) / 2);
	aspect-ratio: 1;
	width: calc(var(--size) + var(--kenit-circle-fill));
	height: calc(var(--size) + var(--kenit-circle-fill));
	border: 2px solid transparent;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #00000059;
}

.btn-frame .btn-frame-icon-inner {
	max-width: 70%;
}

/* Chi duong */
.btn-chiduong {
	bottom: 390px;
}

/* Zalo */
.btn-zalo {
	bottom: 310px;
}

/* Phone */
.btn-phone {
	bottom: 230px;
}

/* Cart Fix */
.cart-fixed {
	position: fixed;
	right: 20px;
	bottom: 225px;
	z-index: 10;
	background: var(--clr-main);
	width: 50px;
	height: 50px;
	text-align: center;
	color: #fff !important;
	border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cart-fixed i {
	font-size: 22px;
}

.cart-fixed span {
	position: absolute;
	top: -5px;
	right: -10px;
	color: #ffffff;
	width: 25px;
	height: 25px;
	background: var(--clr-main);
	text-align: center;
	line-height: 25px;
	font-size: 11px;
	border-radius: 100%;
}

/* Messenger */
.js-facebook-messenger-container.closed {
	display: none !important;
}

.js-facebook-messenger-tooltip {
	bottom: 97px;
	right: 97px;
	color: #404040;
	background: #fff;
}

.js-facebook-messenger-tooltip.closed {
	display: none !important;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button {
	z-index: 999;
}

.js-facebook-messenger-tooltip {
	z-index: 999;
	display: none;
	position: fixed;
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	font-size: 12px;
	line-height: 1;
	padding: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
	box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
	z-index: 1000000000000000019884624838656;
}

.js-facebook-messenger-close-tooltip {
	width: 10px;
	height: 10px;
	display: inline-block;
	cursor: pointer;
	margin-left: 10px;
}

.js-facebook-messenger-box {
	z-index: 999;
}

.js-facebook-messenger-box.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
	z-index: 999;
}

.js-facebook-messenger-box {
	display: block;
	position: fixed;
	cursor: pointer;
	bottom: 150px;
	right: 17px;
	width: 56px;
	height: 56px;
	text-align: center;
	background: var(--clr-main);
	border-radius: 100%;
	overflow: hidden;
	z-index: 99;
	-webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
	width: 32px;
	height: 33px;
	position: absolute;
	top: 13px;
	left: 12px;
	opacity: 1;
	overflow: hidden;
	-webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
	-webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
	transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
	transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
	transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
	opacity: 0;
	width: 19px;
	height: 20px;
	position: absolute;
	top: 19px;
	left: 19px;
	-webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
	-webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
	transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
	transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
	transition: opacity 160ms ease-in-out, transform 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
	z-index: 1000;
}

.js-facebook-messenger-container {
	position: fixed;
	opacity: 0;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	bottom: 110px;
	right: 90px;
	border-radius: 10px;
	pointer-events: none;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
	-webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
	-webkit-transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
	transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
	transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
	transition: transform 160ms ease-in-out, opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-top-header {
	width: 220px;
	color: #ffffff;
	display: block;
	position: relative;
	width: 220px;
	background: var(--clr-main);
	color: #ffffff;
	text-align: center;
	line-height: 1;
	padding: 10px;
	font-size: 14px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
	z-index: 999;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
	z-index: 1000;
}

.js-facebook-messenger-top-header {
	color: #ffffff;
	background: var(--clr-main);
	width: 220px;
}

.js-facebook-messenger-tooltip {
	color: #404040;
	background: #fff;
}

.js-facebook-messenger-container.open {
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
	pointer-events: all;
}

.js-facebook-messenger-tooltip {
	bottom: 97px;
	right: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
	opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
	opacity: 1;
}

/* Toolbar */
.toolbar {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	background: var(--clr-main);
	padding: 0.5rem 0.9375rem;
}

.toolbar ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 0;
}

.toolbar ul li {
	flex: 1;
	text-align: center;
}

.toolbar ul li a {
	display: block;
	cursor: pointer;
}

.toolbar ul li a img {
	height: 25px;
}

.toolbar ul li a figcaption {
	font-size: 14px;
	color: #fff;
	margin-top: 0.125rem;
}

/* tieuchi */
.tieuchi-item:nth-child(2n + 1) {
	display: flex;
	flex-direction: row-reverse;
	text-align: right;
}

.section-tieuchi {
	background: #fafafa;
}

figure.tieuchi-img-inner {
	width: 92px;
	background: url('../images/bg-tc.png');
	background-size: 100% 100%;
	height: 92px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.tieuchi-item:hover figure.tieuchi-img-inner {
	background: var(--clr-hover);
}

.tieuchi-info {
	width: calc(100% - 125px);
}

.tieuchi-info h3 {
	font-size: 18px;
	font-family: var(--font3);
	text-transform: capitalize;
}

.tieuchi-info .tieuchi-desc {
	font-size: 14px;
	font-style: italic;
}

/* du an */
.duan-info {
	padding: 20px;
	text-align: center;
	background: #262828;
}

.duan-info-inner h3 {
	font-size: 20px;
	font-family: var(--font2);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.duan-item:hover .duan-info-inner h3 {
}

.duan-item {
	border: 1px solid #3d3d3d;
}

.viewall {
	width: 124px;
	height: 34px;
	font-size: 14px;
	line-height: 34px;
	margin: 0 auto;
	margin-top: 15px;
	font-family: var(--font-main);
	position: relative;
}

.viewall::after {
	position: absolute;
	background: url('../images/border.png');
	background-size: 100% 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
}

/* feedback */
.feedback-img {
	max-width: 88px;
	position: relative;
}

.feedback-img::after {
	content: url('../images/trangtri3.png');
	position: absolute;
	right: -69px;
	top: 50%;
	transform: translateY(-50%);
}

figure.feedback-img-inner.scale-img {
	border-radius: 50%;
}

.feedback-content-inner .content {
	font-size: 14px;
	line-height: 2;
}

.feedback-content-inner {
	margin: 10px 0 38px;
}

.feedback-item {
	position: relative;
	padding: 20px;
	margin-left: 10px;
	margin-bottom: 22px;
}

.feedback-item::after {
	background: url('../images/border-fb.png');
	position: absolute;
	background-size: 100% 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	pointer-events: none;
}

.feedback-info {
	position: absolute;
	bottom: -22px;
	left: -10px;
	background: url('../images/trangtri2.png');
	background-size: 100% 100%;
	padding: 10px 35px 10px 15px;
	z-index: 1;
}

.feedback-info-inner h3 {
	font-size: 20px;
	color: #000;
	font-family: var(--font3);
}

.feedback-info-inner .desc {
	font-style: italic;
}

@-webkit-keyframes sliderZoom {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transition: -webkit-transform 20000ms linear 0s;
		transition: -webkit-transform 20000ms linear 0s;
		transition: transform 20000ms linear 0s;
		transition: transform 20000ms linear 0s, -webkit-transform 20000ms linear 0s;
	}

	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		-webkit-transition: -webkit-transform 20000ms linear 0s;
		transition: -webkit-transform 20000ms linear 0s;
		transition: transform 20000ms linear 0s;
		transition: transform 20000ms linear 0s, -webkit-transform 20000ms linear 0s;
	}
}

@keyframes sliderZoom {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transition: -webkit-transform 20000ms linear 0s;
		transition: -webkit-transform 20000ms linear 0s;
		transition: transform 20000ms linear 0s;
		transition: transform 20000ms linear 0s, -webkit-transform 20000ms linear 0s;
	}

	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		-webkit-transition: -webkit-transform 20000ms linear 0s;
		transition: -webkit-transform 20000ms linear 0s;
		transition: transform 20000ms linear 0s;
		transition: transform 20000ms linear 0s, -webkit-transform 20000ms linear 0s;
	}
}

.slideshow-image img {
	-webkit-animation: sliderZoom 20000ms linear 0s infinite alternate;
	animation: sliderZoom 20000ms linear 0s infinite alternate;
}

.slideshow-image img {
	-webkit-animation: sliderZoom 20000ms linear 0s infinite alternate;
	animation: sliderZoom 20000ms linear 0s infinite alternate;
}

.portfolio-filter a {
	display: inline-block;
	padding: 5px 0;
	color: #fff;
	cursor: pointer;
	padding: 15px 25px;
	text-decoration: none;
	float: left;
	background: #e3ab49;
	text-transform: uppercase;
	font-family: var(--font3);
}

.portfolio-filter a:hover {
	background: #f4f4f496;
}

.portfolio-filter {
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
}

.product_daxem {
	margin-bottom: 2rem;
}

.left-div {
	width: calc(100% - 23.3333333333%);
	padding-right: 25px;
}

.right-div {
	width: 23.3333333333%;
}

.box-left {
	padding: 10px;
	border: 1px solid #e3ab49;
	margin-bottom: 20px;
}

.left-fix {
	position: sticky;
	top: 45px;
}

.title-left {
	text-align: center;
	border-bottom: 1px solid #e3ab49;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.title-left h3 {
	font-family: var(--font3);
	text-transform: capitalize;
	font-size: 20px;
	color: #e3ab49;
}

.menuList-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.grid-dmsp {
	margin-bottom: 5px;
	display: grid;
	grid-template-columns: 1fr 40px;
}

.menuList-links li a {
	color: #e3ab49;
	font-size: 16px;
	font-family: var(--font-main);
	font-weight: 500;
}

.menuList-links .icon-dmsp {
	color: #e3ab49;
}

/* dich vu */
.service-img {
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-img::after {
	background: url('../images/trangtri2.png');
	width: 82px;
	height: 82px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	display: none;
}

.service-img-inner {
	position: relative;
	z-index: 1;
}

.service-item {
	border: 1px solid #e5dfdf;
	border-radius: 15px;
	text-align: center;
}

.service-item:hover {
	box-shadow: #cfd3d6 0px 10px 15px -10px, #e8e9ec 0px 5px 40px -10px;
}

.service-item:hover .btn-style-one::before {
	opacity: 1;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.service-item:hover .btn-style-one .txt {
	color: #fff;
}
.service-info{
    margin-bottom: 25px;
}
.service-info-inner .name {
	font-size: 18px;
	font-weight: 600;
	font-family: var(--font3);
	margin: 25px 0 20px;
}

.title-main-box span {
	font-size: 37px;
	font-family: var(--font2);
}

.title-main-box span.tt-name {
	font-weight: 700;
	color: var(--clr-main);
}

.title-main-box span.tt-anec {
	font-weight: 300;
	color: #484848;
}

.about-view {
	text-align: center;
}

.scroll-maded-x {
	overflow-y: hidden;
	overflow-x: scroll;
}

.scroll-maded-x::-webkit-scrollbar {
	width: 2px;
	height: 2px;
	background: var(--clr-main);
}

.scroll-maded-x::-webkit-scrollbar-thumb {
	width: 2px;
	height: 3px;
}

/* thoi gian hoat dong */
.tghoatdong-left {
	width: 55.5%;
}

.tghoatdong-right {
	width: 38.33%;
}

.time-hd {
	padding: 23px 0;
	border-bottom: 1px dashed #e3e1e1;
}

.time-hd:last-child {
	border-bottom: unset;
	color: var(--clr-main);
}

.tghoatdong-box {
	padding: 30px 26px;
	border: 1px solid #e4dfdf;
	box-shadow: 0px 1px 6px 4px #f2f2f2;
}

/* thu vien anh */
.album-item:hover img {
	-webkit-animation: zoom 5s;
	animation: zoom 5s;
}

.album-img-inner.scale-img {
	border-radius: 10px;
}

.section-album {
	background: #f9f9f9;
}

@keyframes zoom {
	from {
		transform: scale(1, 1);
	}

	to {
		transform: scale(1.5, 1.5);
	}
}

.social-list {
	justify-content: right;
}

.nav-tabs {
	border-bottom: unset;
}

.grid-tieuchi {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 40px;
	margin-top: 2rem;
	border-top: 1px solid rgba(37, 36, 37, 0.1);
	padding-top: 30px;
}

.tieuchi-detail-img-inner {
	max-width: 53px;
}

.tieuchi-detail-info .tieuchi-detail-name {
	font-size: 15px;
	color: rgba(37, 36, 37, 0.5);
}

.stt {
	width: 32px;
	height: 32px;
	background: var(--clr-main);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
}

.news-other {
	padding: 15px 0;
	border-bottom: 1px solid #e5e5e5;
}

header.title-main3 h2 {
	background: linear-gradient(275deg, #17ffff 0%, #0049fd 100%);
	color: #fff;
	letter-spacing: 0.8px;
	padding: 6px;
	border-radius: 4px;
	margin-bottom: 15px;
	font-size: 16px;
	display: inline-block;
	text-transform: uppercase;
	font-family: var(--font3);
}

.danhmucct {
	margin: 0 0 20px;
	position: sticky;
	top: 70px;
}

.tieude {
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 10px;
	padding-bottom: 5px;
	text-align: left;
	position: relative;
	color: var(--clr-main);
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font3);
}

.tieude.tt_filter i {
	float: right;
	background: var(--color-main);
	width: 22px;
	text-align: center;
	line-height: 22px;
	border-radius: 50%;
	font-size: 11px;
	color: #fff;
}

.box_items_bt_search {
	margin-bottom: 20px;
}

.danhmuc ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.danhmuc ul li {
	position: relative;
}

.danhmuc ul li a {
	color: #686666;
	position: relative;
	font-size: 14px;
	display: block;
	padding: 8px 0 8px 0px;
}

.danhmuc ul li:last-child a {
	border-bottom: none;
}

.danhmuc ul li a:hover,
.danhmuc ul li:hover > a,
.danhmuc ul li.has-submenu.opened > a {
	color: var(--clr-main);
}

.danhmuc > ul > li.has-submenu > a {
	text-transform: capitalize;
}

.danhmuc ul > li.has-submenu > a.acap {
	padding-right: 30px;
}

.danhmuc ul > li.has-submenu > ul li {
	padding-left: 10px;
}

.danhmuc ul > li > a,
.danhmuc ul > li > a {
	padding: 7px 0 7px 0;
	font-size: 17px;
}

.danhmuc ul > li > ul li a {
	padding: 5px 0 5px 0;
}

.danhmuc ul li ul {
	display: none;
}

.danhmuc ul > li.has-submenu span.icon-plus-submenu {
	width: 25px;
	height: 25px;
	cursor: pointer;
	position: absolute;
	right: 5px;
	top: 5px;
	margin: auto;
	border: 1px solid transparent;
	z-index: 5;
}

.icon-plus-submenu:after,
.icon-plus-submenu:before {
	background: var(--clr-main);
	content: '';
	display: block;
	position: absolute;
	margin-right: 7px;
	top: 50%;
	right: 0;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	-webkit-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

.icon-plus-submenu:before {
	width: 9px;
	height: 1px;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.icon-plus-submenu:after {
	width: 1px;
	height: 9px;
	right: 4px;
	transform-origin: center;
	-moz-transform: translateY(-50%) scale(1, 1);
	-ms-transform: translateY(-50%) scale(1, 1);
	-webkit-transform: translateY(-50%) scale(1, 1);
	transform: translateY(-50%) scale(1, 1);
}

.danhmuc ul > li.has-submenu .icon-plus-submenu:hover {
	border: 1px solid #e7e7e7;
}

li.has-submenu.opened > .icon-plus-submenu:after {
	-moz-transform: translateY(-50%) scale(1, 0);
	-ms-transform: translateY(-50%) scale(1, 0);
	-webkit-transform: translateY(-50%) scale(1, 0);
	transform: translateY(-50%) scale(1, 0);
}

#contactLive {
	position: fixed;
	bottom: 0;
	background: var(--clr-main);
	left: 50%;
	transform: translateX(-50%);
	padding: 5px;
	z-index: 994;
}

#contactLive .icon {
	text-align: center;
	padding: 10px;
	border-radius: 5px;
	margin: 5px 5px;
	font-size: 13px;
	color: #fff;
	cursor: pointer;
	background: hsla(0, 0%, 100%, 0.2);
}

#contactLive .icon a {
	color: #fff;
}

#contactLive .icon img,
#contactLive .icon svg {
	width: 20px;
	height: 20px;
	-webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
	animation: tada 1s infinite ease-in-out;
	fill: #fff;
	filter: brightness(0) invert(1);
}

#contactLive .icon p {
	margin: 0;
	padding-left: 5px;
	text-transform: capitalize;
	white-space: nowrap;
}

@keyframes tada {
	0% {
		transform: scaleX(1);
	}

	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.3, 1.3, 1.3) rotate(3deg);
	}

	40%,
	60%,
	80% {
		transform: scale3d(1.3, 1.3, 1.3) rotate(-3deg);
	}

	100% {
		transform: scaleX(1);
	}
}

.partner-item {
	border: 1px solid #eee;
}

.toolbar-app {
	width: 100%;
	bottom: 0;
	position: fixed;
	z-index: 500;
	left: 0;
	-webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
	-moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
	-ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
	-o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
}

.toolbar-app.is-active .list-phone {
	display: block;
	-webkit-animation: quickShow 0.2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
	animation: quickShow 0.2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
}

.toolbar-app .list-phone {
	position: absolute;
	bottom: 100%;
	left: 30px;
	opacity: 0;
	transform: scale(0);
	transform-origin: 50% 100%;
	display: none;
	min-width: 185px;
}

.toolbar-app .list-phone a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	max-width: 240px;
	padding: 10px 20px;
	margin: 10px 0;
	border-radius: 50px;
	padding-right: 30px;
}

.toolbar-app .list-phone svg {
	max-width: 30px;
	max-height: 30px;
}

.toolbar-app .list-phone span {
	display: block;
	width: calc(100% - 40px);
	color: #333;
	font-weight: 700;
}

.toolbar-app .phone {
	position: relative;
	width: 50px;
	height: 50px;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	margin: 0 0 -25px 30px;
	transition: transform 0.2s ease-in-out;
}

.toolbar-app .phone a {
	color: #333;
	display: block;
	position: relative;
}

.toolbar-app .phone a:after,
.toolbar-app .phone a:before {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(135deg);
	width: 30px;
	height: 3px;
	border-radius: 2rem;
	background-color: var(--clr-main);
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.toolbar-app .phone a:after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.toolbar-app .phone svg {
	max-width: 27px;
	max-height: 27px;
	display: block;
	position: relative;
	fill: var(--clr-main);
}

.toolbar-app.is-active .phone {
	transform: rotate(-180deg);
}

.toolbar-app.is-active .phone svg {
	opacity: 0;
}

.toolbar-app.is-active .phone a:after,
.toolbar-app.is-active .phone a:before {
	opacity: 1;
}

.toolbar-app ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	--size: 33px;
	-webkit-mask: radial-gradient(var(--size) at 55px 0, #0000 99%, #fff 101%) 100%;
	background: #fff;
	padding: 10px 0;
	padding-left: 100px;
	border-radius: 10px 10px 0 0;
}

.toolbar-app ul li {
	text-align: center;
	width: 25%;
	line-height: 1;
}

.toolbar-app ul li a {
	display: block;
	width: 100%;
	font-size: 27px;
	color: #ffff;
}

.toolbar-app ul li .icon {
	position: relative;
	margin: 0 auto;
	text-align: center;
}

.toolbar-app ul li a span {
	display: none;
	font-weight: 400;
	font-size: 11px;
	margin-top: 5px;
	color: #333;
	text-transform: capitalize;
}

.toolbar-app ul li a img,
.toolbar-app ul li svg {
	max-height: 30px;
	fill: var(--clr-main);
	width: 100%;
}

.toolbar-app .phone svg {
	animation: tada 1.2s infinite;
	fill: var(--clr-main);
}

.tada {
	animation: tada 1.2s infinite;
}

.lang-toolbar-app {
	display: flex;
	justify-content: center;
	align-items: center;
}

.toolbar-app ul li.lang-toolbar-app a {
	display: inline-block;
	width: unset;
	margin: 0 2px;
	font-size: unset;
}

.toolbar-app ul li.lang-toolbar-app a img {
	height: 10% !important;
}

.ex6 path {
	fill: #fff;
	stroke: var(--clr-main);
	stroke-width: 0.5;
	stroke-dasharray: 1500;
	stroke-dashoffset: 1500;
	-webkit-animation: dash 5s ease forwards;
	animation: dash 5s ease forwards;
}

@-webkit-keyframes dash {
	to {
		fill: var(--clr-main);
		stroke-dashoffset: 0;
	}
}

@keyframes dash {
	to {
		fill: var(--clr-main);
		stroke-dashoffset: 0;
	}
}

@keyframes tada {
	0% {
		transform: scaleX(1);
	}

	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}

	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}

	to {
		transform: scaleX(1);
	}
}

@keyframes quickShow {
	0% {
		opacity: 0;
		transform: scale(0);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}


.logo_ct{display: block;margin-top: 20px;}
.logo_ct img{max-width: 200px;}

@charset "UTF-8";

/* Media Query */
@media (max-width: 1103px) {
	.qtr-box::after {
		display: none;
	}

	.banner_main {
		max-width: 323px;
	}
}

@media (max-width: 1023px) {
	.body-container {
		overflow: hidden;
	}

	/* Spacing */
	[class*='-30'] {
		--spacing: 30px;
	}

	[class*='-40'],
	[class*='-50'],
	[class*='-60'] {
		--spacing: 30px;
	}

	[class*='-70'],
	[class*='-80'] {
		--spacing: 30px;
	}

	/* General */
	.rps-xl--visible[class*='rps-xl'][class*='--visible'] {
		display: block !important;
	}

	.rps-xl--hidden[class*='rps-xl'][class*='--hidden'] {
		display: none !important;
	}

	.rps-xl--w-fit[class*='rps-xl'][class*='--w-fit'] {
		width: fit-content !important;
	}

	.rps-xl--w-100[class*='rps-xl'][class*='--w-100'] {
		width: 100% !important;
	}

	.ckeditor {
		overflow-x: auto;
	}

	.ckeditor:after {
		content: '';
		clear: both;
		display: block;
	}

	.ckeditor *:not(iframe) {
		max-width: 100% !important;
		height: auto !important;
	}

	.ckeditor iframe {
		max-width: 100% !important;
	}

	.scroll-to-top {
		right: 1rem;
	}

	.cart-fixed {
		bottom: 200px;
		right: 8px;
	}

	.btn-zalo {
		display: block;
		right: 8px;
		bottom: 178px;
		box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
		border-radius: 100%;
	}

	.js-facebook-messenger-box {
		right: 5px;
		bottom: 111px;
		scale: 0.9;
		box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
	}

	.progress-wrap {
		bottom: 55px;
		right: 8px;
		width: 50px;
		height: 50px;
	}

	.progress-wrap::after {
		width: 100%;
		height: 100%;
	}

	/* Mmenu */
	nav:where(#menu, #mm-menu) {
		font-weight: 700;
		--mm-color-background: #fff;
		--mm-color-text: #000;
		--mm-color-text-dimmed: #000;
		--mm-color-button: #000;
	}

	nav:where(#menu, #mm-menu) .mm-navbar__title {
		font-size: 18px;
	}

	.mm-listitem__btn span {
		display: none;
	}

	.has-scroll .menu-logo {
		zoom: 0.6;
	}
}

@media (max-width: 992px) {
	:root {
		--grid-items: 3;
		--grid-gap: 16px;
	}

	/* General */
	.rps-lg--visible[class*='rps-lg'][class*='--visible'] {
		display: block !important;
	}

	.rps-lg--hidden[class*='rps-lg'][class*='--hidden'] {
		display: none !important;
	}

	.rps-lg--w-fit[class*='rps-lg'][class*='--w-fit'] {
		width: fit-content !important;
	}

	.rps-lg--w-100[class*='rps-lg'][class*='--w-100'] {
		width: 100% !important;
	}

	.navigation {
		padding-top: 0;
	}

	.header-logo {
		display: none;
	}

	.section-slider {
		margin-top: 0 !important;
	}

	.menu-logo {
		zoom: 0.6;
	}

	.title-main h2, .title-main span {
		font-size: 22px;
	}

	.tieuchi-info h3 {
		font-size: 16px;
	}

	span.price-new,
	span.price-old {
		font-size: 14px;
	}

	.title-list h3 {
		font-size: 14px;
		padding-left: 0px;
		background-position: 19px 15px;
		line-height: 40px;
	}

	.title-product-list a {
		width: unset;
		height: 35px;
		font-size: 14px;
		line-height: 35px;
		padding: 0 10px;
	}

	.title-list {
		height: 40px;
	}

	.duan-info-inner h3 {
		font-size: 16px;
	}

	.viewall {
		height: 28px;
		line-height: 28px;
	}

	.quytrinh-info-inner .name {
		margin-bottom: 10px;
	}

	.banner_main,
	#contactLive {
		display: none;
	}

	.quytrinh-item {
		width: 48%;
	}

	.qtr-box {
		gap: 16px 0;
	}

	.footer-news:nth-child(1) {
		width: 33%;
		margin-bottom: 1rem;
	}

	.footer-news:nth-child(2) {
		width: 33%;
		margin-bottom: 1rem;
	}

	.footer-news:nth-child(3) {
		width: 33%;
		margin-bottom: 1rem;
	}

	.footer-news:nth-child(4) {
		width: 100%;
		margin-bottom: 1rem;
		text-align: center;
	}

	.footer-name h3 {
		font-size: 22px;
	}

	.footer-copyright,
	.footer-statistic {
		text-align: center;
	}

	.portfolio-filter a {
		padding: 10px;
	}

	.btn-phone {
		bottom: 249px;
	}

	.btn-frame {
		right: 10px;
	}

	.btn-chiduong {
		bottom: 322px;
	}

	span.title-na,
	span.name-tt {
		font-size: 22px;
	}

	.btn-style-one {
		line-height: 20px;
		padding: 9px 31px 9px;
	}

	.title-main-box span {
		font-size: 27px;
	}

	.service-item {
		padding: 20px;
	}

	.service-info-inner .name {
		margin: 10px 0;
	}

	.grid-taisao {
		gap: 30px;
	}

	.tghoatdong-left {
		display: none;
	}

	.tghoatdong-right {
		width: 100%;
	}

	.time-hd {
		padding: 15px 0;
		border-bottom: 1px dashed #e3e1e1;
	}

	.newsletter-left {
		width: 100%;
		margin-bottom: 1rem;
	}

	.newsletter-right {
		width: 100%;
	}

	.form-newsletter .newsletter-button {
		width: 170px;
		height: 40px;
		margin: 0 auto;
	}

	.footer-ul-list {
		list-style: none;
		margin: 0px;
		padding: 0;
	}

	.menu-tc {
		display: none !important;
	}

	.danhmucct {
		display: none;
	}
}

@media (max-width: 769px) {
	:root {
		--grid-items: 2;
		--grid-gap: 16px;
	}

	/* General */
	.rps-md--visible[class*='rps-md'][class*='--visible'] {
		display: block !important;
	}
	.images-detail {
		direction: ltr;
	}
	.left-pro-detail .d-flex {
		display: block !important;
	}
	.images-detail .left {
		width: 100%;
	}
	.images-detail .right {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
	.rps-md--hidden[class*='rps-md'][class*='--hidden'] {
		display: none !important;
	}

	.rps-md--w-fit[class*='rps-md'][class*='--w-fit'] {
		width: fit-content !important;
	}

	.rps-md--w-100[class*='rps-md'][class*='--w-100'] {
		width: 100% !important;
	}

	.footer-news:nth-child(1) {
		width: 100%;
		margin-bottom: 1rem;
		text-align: center;
	}

	.footer-news:nth-child(2) {
		width: 100%;
		margin-bottom: 1rem;
		text-align: center;
	}

	.footer-news:nth-child(3) {
		width: 100%;
		margin-bottom: 1rem;
		text-align: center;
	}

	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.social-list {
		justify-content: center;
	}

	.footer-title {
		text-align: center;
	}

	.right-div {
		display: none;
	}

	.left-div {
		width: 100%;
		padding-right: 0;
	}

	.grid-taisao {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 25px;
	}

	.tieuchi-item:nth-child(2n + 1) {
		display: flex;
		flex-direction: unset;
		text-align: left;
	}

	.tieuchi-info {
		width: calc(100% - 108px);
	}
}

@media (max-width: 576px) {
	:root {
		--grid-items: 2;
		--grid-gap: 8px;
	}

	/* General */
	.rps-sm--visible[class*='rps-sm'][class*='--visible'] {
		display: block !important;
	}

	.rps-sm--hidden[class*='rps-sm'][class*='--hidden'] {
		display: none !important;
	}

	.rps-sm--w-fit[class*='rps-sm'][class*='--w-fit'] {
		width: fit-content !important;
	}

	.rps-sm--w-100[class*='rps-sm'][class*='--w-100'] {
		width: 100% !important;
	}

	.quytrinh-item {
		width: 100%;
	}

	.grid-tieuchi {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 444px) {
	.right-div {
		width: 100%;
		display: block;
	}

	.cart-pro-detail a {
		font-size: 11px;
	}

	.cart-fixed {
		bottom: 177px;
		right: 8px;
	}
}
