/* Fonts */

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

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

@font-face {
  font-family: "Gr";
  src: url("../fonts/MJGrueso-Regular.woff2") format("woff2"),
    url("../fonts/MJGrueso-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: "SF-Heavy";
  src: url("../fonts/SFProDisplay-Heavy.woff2") format("woff2"),
    url("../fonts/SFProDisplay-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF";
  src: url("../fonts/SFProDisplay-Regular.woff2") format("woff2"),
    url("../fonts/SFProDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF-Med";
  src: url("../fonts/SFProDisplay-Medium.woff2") format("woff2"),
    url("../fonts/SFProDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* @keyframe */
@keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
  10% {
    -webkit-transform: scale(
        var(--fa-bounce-start-scale-x, 1.1),
        var(--fa-bounce-start-scale-y, 0.9)
      )
      translateY(0);
    transform: scale(
        var(--fa-bounce-start-scale-x, 1.1),
        var(--fa-bounce-start-scale-y, 0.9)
      )
      translateY(0);
  }
  30% {
    -webkit-transform: scale(
        var(--fa-bounce-jump-scale-x, 0.9),
        var(--fa-bounce-jump-scale-y, 1.1)
      )
      translateY(var(--fa-bounce-height, -0.5em));
    transform: scale(
        var(--fa-bounce-jump-scale-x, 0.9),
        var(--fa-bounce-jump-scale-y, 1.1)
      )
      translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    -webkit-transform: scale(
        var(--fa-bounce-land-scale-x, 1.05),
        var(--fa-bounce-land-scale-y, 0.95)
      )
      translateY(0);
    transform: scale(
        var(--fa-bounce-land-scale-x, 1.05),
        var(--fa-bounce-land-scale-y, 0.95)
      )
      translateY(0);
  }
  57% {
    -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em));
    transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
}
@keyframes slidechay {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateBackground {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@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;
  }
}
@keyframes moveBackground {
  0% {
    background-position: -100%;
  }

  100% {
    background-position: 100%;
  }
}

@keyframes laclu {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(100%); /* Bắt đầu từ bên phải */
  }
  100% {
    transform: translateX(-100%); /* Kết thúc ở bên trái */
  }
}

@-webkit-keyframes MaskPlay {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes MaskPlay {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@-webkit-keyframes anime {
  0% {
    color: grey;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #000;
    transform: translateY(0);
  }
  50% {
    color: #ffc107;
    letter-spacing: 5px;
    text-shadow: 5px 10px 1px #000;
    transform: translateY(-10px);
  }
  100% {
    color: grey;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #000;
    transform: translateY(0);
  }
}

@keyframes anime {
  0% {
    color: grey;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #000;
    transform: translateY(0);
  }
  50% {
    color: #ffc107;
    letter-spacing: 5px;
    text-shadow: 5px 10px 1px #000;
    transform: translateY(-10px);
  }
  100% {
    color: grey;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #000;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(270deg);
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.2);
  }
  24% {
    transform: scale(1);
  }
  36% {
    transform: scale(1.2);
  }
  48% {
    transform: scale(1);
  }
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes doimau {
  0% {
    color: var(--color-main);
  }
  50% {
    color: red;
  }
  100% {
    color: var(--color-main);
  }
}

@keyframes doimau2 {
  0% {
    color: #000000;
  }
  50% {
    color: var(--color-main);
  }
  100% {
    color: #000000;
  }
}

.text-shadow {
  text-shadow: 2px 0 #eee, -2px 0 #eee, 0 2px #eee, 0 -2px #eee, 1px 1px #eee,
    -1px -1px #eee, 1px -1px #eee, -1px 1px #eee;

  text-shadow: 2px 0 white, -2px 0 white, 0 2px white, 0 -2px white,
    1px 1px white, -1px -1px white, 1px -1px white, -1px 1px white;
  text-shadow: 3px 0 #1e762e, -3px 0 #1e762e, 0 3px #1e762e, 0 -3px #1e762e,
    2px 2px #1e762e, -2px -2px #1e762e, 2px -2px #1e762e, -2px 2px #1e762e;
}
.svg {
  animation: rotateText 10s linear infinite; /* Quay liên tục */
  transform-origin: center;
}

:root {
  --color-main: #006a29;
  --color-main2: #ffcd06;
  --color-social: #5abcbd;
  --color-hover: #ef0000;
  --color-text: #333333;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999990;
  pointer-events: none;
}
#loader-wrapper img {
  width: 150px;
  background-color: var(--color-main);
}
#loader-wrapper img {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 200;
  stroke-dashoffset: 100;
  transform-origin: center center;
  transform: rotate(-360deg);
  animation: heartbeat 5s infinite linear;
}
#loader-wrapper .spinner {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 200;
  stroke-dashoffset: 100;
  transform-origin: center center;
  transform: rotate(-90deg);
  animation: spin 500ms infinite linear;
}
#loader-wrapper #wrap {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 999999;
}
#loader-wrapper.show1 #wrap {
  background: transparent;
}
#loader-wrapper:after {
  -webkit-mask: url(../images/mask-01.png);
  mask: url(../images/mask-01.png);
  -webkit-mask-size: 2300% 100%;
  mask-size: 2300% 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  z-index: 99999;
}

#loader-wrapper.show1::after {
  -webkit-animation: MaskPlay 1s steps(22) forwards;
  animation: MaskPlay 1s steps(22) forwards;
}
#loader-wrapper.show1 #wrap {
  opacity: 0;
}
.loading-text ul {
  margin-top: 1.875rem;
}
.loading-text ul li {
  -webkit-animation: anime 1.5s infinite linear;
  animation: anime 1.5s infinite linear;
  display: inline-block;
  font-family: var(--fontsg);
  font-size: 1.875rem;
  letter-spacing: 1px;
}
.loading-text ul li:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.loading-text ul li:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loading-text ul li:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loading-text ul li:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loading-text ul li:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loading-text ul li:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.loading-text ul li:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.loader {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  padding-bottom: 3.125rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100001;
  background: #fff;
}

body {
  font-size: 14px;
  line-height: 1.5;
  top: 0px !important;
  /* min-width: 1349px; */
}
.bodychung {
  overflow-x: hidden;
}
.notpage {
  padding: 20px 15px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  text-align: left;
  width: 100%;
  height: fit-content;
}

.max-width,
.wrap-content {
  width: 95%;
  max-width: 1200px;
  margin: 0px auto;
}
.mw-700 {
  max-width: 700px;
}
img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

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

.chopnhay {
  animation-name: doimau;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
.chopnhay2 {
  animation-name: doimau2;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

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

.text-split {
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2; */
}
.p-relative {
  position: relative;
}
/* Transition All */
.transition,
.btn-frame .kenit-alo-circle-fill,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover > ul,
.scale-img img,
.scale-img:hover > img,
.support-online .kenit-alo-circle-fill {
  transition: 0.3s all;
}
.gutter-x-20 {
  --bs-gutter-x: 20px;
}
.gutter-x-5 {
  --bs-gutter-x: 5px;
}
/*   Header   */
.menu-fix {
  position: fixed !important;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 999 !important;
  -webkit-animation: fadeInDown 1.3s ease backwards;
  -moz-animation: fadeInDown 1.3s ease backwards;
  -o-animation: fadeInDown 1.3s ease backwards;
  -ms-animation: fadeInDown 1.3s ease backwards;
  width: 100% !important;
  margin-top: 0 !important;
  background-color: white;
}

/* header */
.marquee {
  overflow: hidden; /* Ẩn phần chữ thừa */
  white-space: nowrap; /* Ngăn chữ xuống dòng */
  position: relative;
  width: 70%;
}

.marquee-text {
  display: inline-block;
  animation: marquee 20s linear infinite; /* Thời gian và kiểu hoạt ảnh */
  width: 100%;
}

.header {
  position: relative;
  z-index: 30;
  background: url(../images/vienheadermoi.png) center/cover no-repeat;
  padding: 20px 0px;
  /* background: linear-gradient(to bottom, #ffffff, #ffffff00);
  box-shadow: 0px 0px 7px rgb(0 0 0 / 29%); */
}
.header2 {
  height: auto;
}
.header .wrap-content {
  overflow: visible;
}

.diachi {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 42%;
}
.headerright {
  width: 78%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -20px;
}
.hotline {
  display: flex;
  justify-content: end;
  align-items: start;
  gap: 5px;
  padding-right: 15px;
  position: relative;
}
.hotline:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 13px;
  width: 85%;
  height: 34px;
  background-color: var(--color-main2);
  border-radius: 30px;
  z-index: -1;
}
.hotlinetrong {
  text-align: left;
}
.hotline p {
  font-family: "SF-Med";
  font-size: 14px;
  color: #222222;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.hotline span {
  font-family: "SF-Bold";
  font-size: 20px;
  color: var(--color-hover);
  /* text-shadow:
  -2px -2px 0 white, 2px -2px 0 white,
    -2px 2px 0 white, 2px 2px 0 white, 0 -2px 0 white, 0 2px 0 white,
    -2px 0 0 white, 2px 0 0 white,
   0 4px 8px rgba(0, 0, 0, 0.7); */
}

.headertop img {
  animation: laclu 1s ease-in-out infinite;
  /* animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(
    --fa-animation-iteration-count,
    infinite
  );
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(
    --fa-animation-timing,
    cubic-bezier(0.28, 0.84, 0.42, 1)
  );
  animation-timing-function: var(
    --fa-animation-timing,
    cubic-bezier(0.28, 0.84, 0.42, 1)
  ); */
}
.headertop p {
  font-family: "SN-Med";
  font-size: 14px;
  color: white;
  margin-bottom: 0px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.slogantop {
  width: 25%;
}
.slogantop p {
  margin-bottom: 0;
  font-family: "Inter-Bold";
  font-size: 14px;
  text-transform: uppercase;
  color: #111111;
}
.congty {
  text-align: center;
}
.congty h2 {
  font-family: "Gr";
  font-size: 55px;
  color: var(--color-hover);
  text-transform: uppercase;
  text-shadow:
    /* Viền trắng xung quanh */ -2px -2px 0 white,
    2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white, 0px -2px 0 white,
    0px 2px 0 white, -2px 0px 0 white, 2px 0px 0 white,
    /* Viền đỏ đậm lệch trái và xuống dưới */ 0px 3px 0 rgba(0, 0, 0, 0.2),
    0px 4px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: -5px;
}
.congty span {
  font-family: "Sa";
  font-size: 26px;
  color: var(--color-main);
}
.socialheader {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
  margin-right: -60px;
}

.catalogue {
  background-color: var(--color-main);
  padding: 10px 15px;
  border-radius: 5px;
  margin-left: -10px;
}
.catalogue a {
  font-family: "Roboto" !important;
  font-size: 14px !important;
  color: white;
}
.header-translate {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.header-translate .dropdown-lang {
  cursor: pointer;
}
.skiptranslate iframe {
  display: none;
}

.header .logo-header {
  position: relative;
  z-index: 30;
}
.header .logo-header img {
  max-width: 131px;
}
.header .header-translate {
  display: none;
}
.header .search {
  display: none;
}
/* .menu-fix .logo-header a {
  width: 100px !important;
  height: 100px !important;
}
.menu-fix .logo-header canvas {
  width: 104px;
}
.menu-fix .logo-header img {
  width: 100px;
}
.menu-fix .menu ul li {
  margin-top: 0;
} */

.modal-content {
  background-color: white !important;
}
.modal-body {
  margin-bottom: 20px;
}
.modal .btn-primary {
  background-color: var(--color-main);
  border: none;
  box-shadow: none;
}
.modal-content iframe {
  width: 100%;
}
.qty-pro {
  display: none;
}
/* .cart {
  margin-top: 8px;
} */
.cart-head {
  /* border: 1px solid #fff;
  padding: 10px;
  border-radius: 5px;
  color: #fff; */
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
}
.cart-head:hover {
  color: #fed402;
}
.cart-head i {
  font-size: 20px;
}
.cart-head .count-cart {
  position: absolute;
  z-index: 999;
  color: #fff;
  background: var(--color-main);
  border-radius: 50%;
  top: -6px;
  right: -7px;
  width: 15px;
  height: 16px;
  text-align: center;
  font-size: 11px;
}

.cart-head p {
  font-family: "Mont-Med";
  font-size: 14px;
  color: white;
  margin-bottom: 0;
}
.menu-head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.menu-head a {
  color: #fff;
}
.menu-head a:hover {
  color: #fed402;
}
.line-head {
  background-color: #72b2fd;
  height: 32px;
  width: 1px;
}

/* slideshow */
.slideshow .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 20px;
}
.slideshow .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 20px;
}

.slideshow .swiper-button-next,
.swiper-button-prev {
  width: calc(var(--swiper-navigation-size) / 32 * 27) !important;
  height: 35px !important;
}
/* .slideshow .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 30px;
}
.slideshow .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 30px;
} */
.slideshow {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: -30px;
}
.slideshow2 {
  display: none;
}
.slideshow .flex {
  gap: 10px;
}
.dmsp {
  min-width: 255px;
  background-color: #f6f1ec;
  border: 1px solid #5d4f44;
  border-radius: 0px 0px 7px 7px;
}
/* .dmsptrong {
  position: sticky;
  top: 40px;
  min-width: 255px;
  background-color: white;
  border: 1px solid #5d4f44;
  border-radius: 10px 10px 0px 0px;
} */
.dmsptrong h5 {
  /* background-color: var(--color-main); */
  /* text-align: center; */
  font-family: "Mont-SemiBold";
  font-size: 16px;
  color: #000000;
  margin-bottom: 0;
  text-transform: uppercase;
  /* padding: 10px 0px;
  border-radius: 10px 10px 0px 0px; */
}
.dmsptrong ul {
  padding: 0px 20px;
}
.dmsp ul::-webkit-scrollbar {
  width: 2px; /* chiều ngang thanh cuộn dọc */
}

.dmsp ul::-webkit-scrollbar-thumb {
  background-color: #919191; /* màu đen cho thanh cuộn */
  border-radius: 3px; /* bo tròn nhẹ */
}

.dmsp ul::-webkit-scrollbar-track {
  background: transparent; /* xóa nền trắng phía sau */
}
.dmsptrong ul::-webkit-scrollbar {
  width: 2px; /* chiều ngang thanh cuộn dọc */
}

.dmsptrong ul::-webkit-scrollbar-thumb {
  background-color: #919191; /* màu đen cho thanh cuộn */
  border-radius: 3px; /* bo tròn nhẹ */
}

.dmsptrong ul::-webkit-scrollbar-track {
  background: transparent; /* xóa nền trắng phía sau */
}
.dmsptrong ul {
  padding: 0px 0px;
}

.dmsptrong li {
  position: relative;
}

.dmsptrong ul li > span i {
  transition: transform 0.3s ease; /* Adjust duration and easing as needed */
}

/* .dmsptrong  ul li:last-child a{
	border-bottom: none;
} */
.dmsptrong ul li a {
  display: block;
  font-family: "Mont-SemiBold";
  font-size: 14px;
  color: #000000;
  padding: 15px 0px 10px 0px;
  /* border-bottom: 1px solid #f1f1f1; */
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dmsptrong ul li a.active {
  color: var(--color-main);
}
.dmsptrong ul li a i {
  margin-right: 10px;
}
.dmsptrong ul li ul li a {
  font-family: "Mont";
  font-size: 12px;
  color: #282828;
  text-transform: capitalize;
}
.dmsptrong ul li a:hover {
  color: var(--color-main);
  /* background: linear-gradient(
    to right,
    #a97514,
    #fde386,
    #a97514,
    #fde386,
    #a97514
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content; */
}
.dmsptrong ul li .scroll {
  position: absolute;
  right: 0px;
  top: 12px;
  background: var(--color-main);
  /* background: #0253a4; */
  font-size: 17px;
  line-height: 18px;
  height: 25px;
  color: #fff;
  width: 35px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.dmsptrong ul li:hover {
  color: #f00;
}
.dmsptrong ul ul li .scroll {
  background: none;
  color: #0253a4;
}
/* .dmsptrong ul li ul {
  padding-left: 10px;
} */

/* Search */
.search {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 30px; */
  position: relative;
  background-color: var(--color-hover);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.searchab {
  display: none;
}
.search input {
  /* position: absolute;
  top: 40px;
  right: 0px; */
  background-color: transparent;
  width: 255px;
  border: none;
  padding: 0px;
}
/* .search input {
  display: none;
  transition: all 0.3s ease;
} */
/* .search:hover input {
  display: inline-block;
} */
/* .search.show-input input {
  display: inline-block;
} */
.search input::placeholder {
  font-family: "SF-Med";
  font-size: 16px;
  color: #1a1a1a;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.search input:focus {
  box-shadow: none;
  font-family: "SF-Med";
  font-size: 16px;
  color: #1a1a1a;
  border: none;
}
.search label {
  cursor: pointer;
  text-align: center;
}

.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;
  color: #333;
}
.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);
}
.box-search .price-product {
  width: 100%;
  margin: 0px;
  text-align: left;
}
.box-search .price-product .price-new {
  color: #f00;
  font-size: 14px;
  font-weight: bold;
}
.box-search .price-product .price-old {
  color: #999;
  text-decoration-line: line-through;
}

/* Mmenu */
.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow: scroll;
}
.offcanvas-body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  transition: all 1s;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #0d6efd;
  border-radius: 5px;
  transition: all 1s;
}

.offcanvas-body::-webkit-scrollbar-track {
  background: #fff;
  width: 4px;
  height: 4px;
  transition: all 1s;
}

.btn-close-menu {
  position: absolute;
  right: 20px;
  top: 20px;
}

.menu-mobile ul {
  padding: 0;
}

.menu-mobile li {
  position: relative;
}

.menu-mobile ul li > span i {
  transition: transform 0.3s ease; /* Adjust duration and easing as needed */
}

/* .menu-mobile ul li:last-child a{
	border-bottom: none;
} */
.menu-mobile ul li a {
  display: block;
  font-family: "SF-Heavy";
  font-size: 17px;
  color: #202020;
  padding: 10px 0px;
  border-bottom: 1px solid #f1f1f1;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 5px;
}
.menu-mobile ul li a i {
  margin-right: 10px;
}
.menu-mobile ul li li a {
  font-weight: normal;
}
.menu-mobile ul li a:hover {
  color: var(--color-main);
  /* background: linear-gradient(
    to right,
    #a97514,
    #fde386,
    #a97514,
    #fde386,
    #a97514
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content; */
}
.menu-mobile ul li .scroll {
  position: absolute;
  right: 0px;
  top: 9px;
  background: #0253a4;
  font-size: 17px;
  line-height: 18px;
  height: 25px;
  color: #fff;
  width: 35px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.menu-mobile ul li:hover {
  color: #f00;
}
.menu-mobile ul ul li .scroll {
  background: none;
  color: #0253a4;
}
.menu-mobile ul li ul {
  padding-left: 10px;
}
.company {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 10px;
}
.company p {
  margin-bottom: 5px;
  font-size: 15px;
  font-family: "SF-Med";
}
.company p span {
  color: #007bff;
  font-family: "SF-Med";
}
.head-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.menu-mobile .head-menu img {
  max-width: 70px;
  width: 70px;
}

/* tiemkiem mmenu */
.header .none .flex-header .dangkytuvan {
  width: 45%;
  text-align: right;
  margin: auto;
}
.header .none .flex-header .dangkytuvan span {
  font-family: "Mont-Bold";
  font-size: 14px;
  color: white;
  padding: 10px 20px;
  background: var(
    --GOLD,
    linear-gradient(
      270deg,
      #bc9e54 0%,
      #efd188 24%,
      #bc9e54 50%,
      #efd188 74.5%,
      #bc9e54 100%
    )
  );
  border-radius: 10px;
  text-transform: uppercase;
  text-align: center;
}

.logo-headernone {
  display: none;
}
.item-timkiem {
  display: block;
  margin-right: 10px;
}
.timkiem {
  margin-bottom: 0;
}
.timkiem i {
  margin: 0;
  color: black;
  font-size: 20px;
}
.item-timkiem:hover input {
  width: 250px;
  visibility: visible;
  border: 1px solid #ddd;
  /* transform: translateX(0); */
}
/* ************ */
.search-menu {
  width: 80%;
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  background-color: white;
  border: 1px solid var(--color-main);
  border-radius: 30px;
  padding: 8px 12px;
}
.search-menu input {
  background-color: transparent;
  width: 280px;
  border-radius: 10px;
  border: none;
  padding: 0;
}
.search-menu input:focus {
  border: none;
  box-shadow: none;
  font-family: "Mulish-Med";
  font-size: 16px;
  color: #1a1a1a;
}
.search-menu input::placeholder {
  font-family: "Mulish-Med";
  font-size: 14px;
  color: #222222;
}
.search-menu label {
  cursor: pointer;
  text-align: center;
}
.search-menu p {
  position: absolute;
  right: 0px;
  bottom: 0px;
  font-family: "Mulish";
  font-size: 18px;
  color: white;
  height: 100%;
  padding: 12px 20px 10px 30px;
  background-color: var(--color-main);
  border-radius: 0px 10px 10px 0px;
}
.search-menu p i {
  color: white;
  font-size: 20px;
  font-weight: 500;
  margin-left: 7px;
}

.dropdown-item {
  font-family: "Roboto";
  font-size: 17px;
  color: #151515;
  padding: 0px 10px;
}
.dropdown-item:hover {
  /* color: #781600; */
  border-radius: 30px;
  background: linear-gradient(to bottom, #fffaeb, #fee9be);
}
.itemvn {
  color: #781600;
}
.menu ul .header-translate span {
  font-weight: bold;
}

/* Menu */

#menu {
  display: none;
}

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

#hamburger:before,
#hamburger:after,
#hamburger span {
  background: var(--color-main);
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
}

#hamburger:before {
  top: 0px;
}

#hamburger span {
  top: 10px;
}

#hamburger:after {
  top: 20px;
}

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

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

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

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

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

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

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

.menu-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;
}
.btn-menu {
  cursor: pointer;
}
.btn-menu img {
  width: 68px;
  height: 36px;
}

/* .wrap-menu.active {
  right: 0px;
  opacity: 1;
  visibility: visible;
  transition: 0.7s;
}
.wrap-menu {
  position: relative;
  z-index: 30;
  width: 100%;
  opacity: 0;
  right: 200%;
  visibility: visible;
  transition: 0.7s;
} */
.wrap-menu {
  position: relative;
  z-index: 100;
  margin-top: -35px;
}

.wrap-menu2 {
  position: relative;
  z-index: 300;
  background-color: #000000;
}
.wrap-menu .wrap-content {
  overflow: visible;
}
.wrap-menu .flex {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.menu-fix .menu {
  width: 100%;
}
.menu {
  background: url(../images/vienmenu.png) center/100% 100% no-repeat;
  padding: 20px 50px;
  z-index: 99;
  overflow: visible;
  width: 86%;
  margin-left: auto;
}
.menu .wrap-content {
  position: relative;
}
.fix_menu {
  position: fixed !important;
  box-shadow: 0 0 1px #999;
  background: #fff;
}
.menu ul {
  padding-left: 0px;
  margin: auto;
  list-style: none;
  width: 100%;
  gap: 0 !important;
}

.menu ul li {
  z-index: 99;
  position: relative;
}
.wrap-menu2 .menu ul li {
  margin-top: 0;
}
.dmsp ul {
  margin: auto;
  list-style: none;
  width: 100%;
  padding: 0px 5px 0px 15px;
  max-height: 395px;
  overflow-y: scroll;
}
.dmsp ul li a {
  font-family: "Aptima-Bold";
  font-size: 15px;
  color: #222222;
  margin: 0px;
  position: relative;
  z-index: 1;
  text-align: center;
  text-decoration: none !important;
  display: block;
  /* line-height: 35px; */
  text-transform: uppercase;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  padding: 15px 0px 17px;
  border-bottom: 1px solid #e8e2db;
}
.dmsp ul li a:hover {
  color: red;
}

.menu ul.ulmn > li {
  /* flex: auto; */
  /* border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2); */
}
.menu ul li a {
  font-family: "SF-Heavy";
  font-size: 17px;
  color: white;
  margin: 0px;
  position: relative;
  z-index: 1;
  text-align: center;
  text-decoration: none !important;
  display: block;
  /* line-height: 35px; */
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

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

.menu ul li:hover > a {
  color: var(--color-main2);
}
.menu ul li a.active {
  color: var(--color-main2);
}
/* .menu ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-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: var(--color-hover);
  padding-left: 0;
}
.menu ul li:hover > ul {
  -webkit-transform: perspective(600px) rotateX(0);
  transform: perspective(600px) rotateX(0);
  -webkit-transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
}
.menu ul li ul li {
  text-align: left;
  border-bottom: 1px solid rgb(173 173 173 / 32%);
  padding: 5px;
  margin-top: 0;
  position: relative;
}
.menu ul li ul li a {
  font-family: "SF-Heavy";
  font-size: 17px;
  color: white;
  padding: 5px;
  display: block;
  text-decoration: none !important;
  line-height: 30px;
  text-align: left;
  text-transform: uppercase;
  background: none;
  width: 100%;
  /* color: var(--color-text); */
}
.menu ul li ul li ul {
  /* position: absolute; */
  top: 0px;
  left: 100%;
  /* min-width: 280px;
  padding: 5px 10px;
  background: #fff;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
  -webkit-transform: perspective(600px) rotateX(-90deg);
  transform: perspective(600px) rotateX(-90deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s; */
}
.menu ul li ul li a:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-main2);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  visibility: hidden;
  opacity: 0;
  animation: none;
}
.menu ul li ul li a:hover:before,
.menu ul li ul li > a.active:before {
  left: 0;
  visibility: visible;
  opacity: 1;
  width: 30px;
}
.menu ul li ul li a:hover:after,
.menu ul li ul li > a.active:after {
  border: none;
  border-radius: 0;
}
.menu ul li ul li:hover a {
  padding-left: 40px;
  color: var(--color-main2);
}

a.cart-header {
  position: relative;
}
a.cart-header span {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  font-size: 11px;
  width: 7px;
  height: 17px;
  text-align: center;
  border-radius: 50%;
}

/*   SLider */
.control-owl {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0px;
  top: calc(50% - 22.5px);
}
.control-owl button {
  opacity: 0.5;
  top: 0px;
  position: absolute;
  outline: none;
  border: 2px solid #fff;
  padding: 0px;
  margin: 0px;
  display: block;
  cursor: pointer;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  font-size: 25px;
  margin: 0px;
  background-color: #00a3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.control-owl button:hover {
  opacity: 1;
}
.control-owl button.owl-prev {
  left: 20px;
}
.control-owl button.owl-next {
  right: 20px;
}
/* DT */

.item-partner {
  border: 1px solid #f1f1f1;
  display: block;
}
.box-photo-ct {
  border-radius: 20px;
  overflow: hidden;
}
.title-detail {
  position: relative;
  /* margin: 20px 0px 20px 0px; */
}
.title-detail h1 {
  font-size: 40px;
  color: var(--color-main);
  /* background: linear-gradient(
    to right,
    #a97514,
    #fde386,
    #a97514,
    #fde386,
    #a97514
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content; */
  text-transform: uppercase;
  font-family: "League";
  text-align: center;
  padding: 20px 0px;
  margin: auto;
}
.title-main {
  position: relative;
  text-align: center;
}

.title-main span {
  font-family: "League";
  font-size: 25px;
  color: var(--color-main);
  text-transform: uppercase;
}
.title-main p {
  font-family: "SF";
  font-size: 15px;
  color: white;
}
.tt-week {
  font-size: 25px;
  text-align: center;
  margin: 20px 0px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.title-sp-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.title-sp-main span {
  font-family: "Mulish-Bold";
  font-size: 16px;
  color: #1a1a1a;
  /* background: linear-gradient(64.85deg, #fca600 23.67%, #ffd41d 106.12%); */
  cursor: pointer;
  padding: 8px 30px;
  position: relative;
  background: url(../images/vienbth.png) center/100% 100% no-repeat;
}

.title-sp-main span:hover,
.title-sp-main span.active {
  /* background: linear-gradient(64.85deg, #ffd41d 23.67%, #fca600 106.12%); */
  color: white;
  background: url(../images/vienactive.png) center/100% 100% no-repeat;
}

.title-dv-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}
.title-dv-main span {
  display: block;
  font-family: "Mulish-Med";
  font-size: 15px;
  color: #081f26;
  background: url(../images/vienspcap1kmau.png) center/100% 100% no-repeat;
  /* background: linear-gradient(64.85deg, #fca600 23.67%, #ffd41d 106.12%); */
  padding: 20px 0px;
  cursor: pointer;
  text-transform: capitalize;
  width: 140px;
}
.title-dv-main span:hover,
.title-dv-main span.active {
  /* background: linear-gradient(64.85deg, #ffd41d 23.67%, #fca600 106.12%); */
  font-family: "Mulish-Med";
  font-size: 15px;
  color: white;
  background: url(../images/vienspcap1.png) center/cover no-repeat;
}

/* News */
.grid-tintuc {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
}
.news {
  display: block;
  margin-bottom: 20px;
  display: block;
}
.pic-news {
  border-radius: 10px;
  display: block;
  overflow: hidden;
  position: relative;
}
.pic-news img {
  width: 100%;
}
a.views {
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
  border: solid 1px #ccc;
  padding: 7px 20px;
  border-radius: 20px;
  color: #000;
  font-size: 16px;
}
a.views:hover {
  border: solid 1px #fed402;
  color: #fed402;
}

.name-news {
  color: #1b1b1b;
  font-size: 18px;
  line-height: 22px;
  max-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  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: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}
.share {
  padding: 17px 10px 10px 10px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  margin-top: 15px;
  border-radius: 5px;
}
.share b {
  font-family: "SF";
  display: block;
  margin-bottom: 5px;
}
.othernews b {
  margin-bottom: 10px;
}
.list-news-other {
  padding-left: 17px;
  list-style: square;
}
.list-news-other li {
  margin-bottom: 2px;
}
.list-news-other li a {
  text-transform: none;
  color: #333333;
}
.list-news-other li a:hover {
  color: #fed402;
}
/* Toc */
.box-readmore {
  padding: 8px 15px;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}

.tt-toc {
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  font-family: Roboto-Bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.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;
  display: none;
}
.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}
.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}
.box-readmore ul li a {
  color: #333333;
  cursor: pointer;
  font-weight: 600;
}
.box-readmore ul li a:hover {
  color: #767676;
}

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

/* Footer */
footer {
  position: relative;
  z-index: 1;
  /* background: url(../images/vienfooter1.png) center/cover no-repeat; */
  background: url(../images/vienfooter.png) center/cover no-repeat;
  padding: 70px 0px 0px;
}
.footertong {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 60px;
  position: relative;
  margin-bottom: 60px;
}
.footer1 {
  width: 25%;
  text-align: center;
}
.footer2 {
  width: 26%;
}
.footer3 {
  width: 28%;
}
.footer4 {
  width: 33%;
}
footer h5 {
  font-family: "League";
  font-size: 20px;
  color: var(--color-main2);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0;
}
.footer1 p img {
  width: fit-content;
  margin: auto;
}
.footer1 p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "SF";
  font-size: 15px;
  margin-bottom: 0px;
  line-height: 2;
}
.footer1 p:nth-child(2) {
  font-family: "League";
  font-size: 20px;
  color: var(--color-main2);
  text-transform: uppercase;
}
.thongtinfooterchung {
  margin-top: 10px;
}
.thongtinfooterchung .flex {
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.thongtinfooterchung .flex p {
  margin-bottom: 0;
  font-family: "SF";
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}
.footer3 p {
  font-family: "Phi-Italic";
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer3 .col-12 {
  border: 1px solid white;
  position: relative;
  padding: 8px 10px 12px;
}
.footer3 input {
  background-color: #000000;
  border: none;
  width: 100%;
  padding: 7px;
  box-shadow: none;
}
.footer3 input::placeholder {
  font-family: "Phi";
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.footer3 input:focus {
  font-family: "Phi";
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  border: none;
}
.btn_newsletter {
  background-color: transparent;
  background-image: url(../images/guidangky.png);
  background-repeat: no-repeat;
  background-position: right center;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.footer2 ul {
  /* list-style: disc; */
  color: white;
  padding-left: 0px;
  margin: 0;
}
.footer2 ul li {
  margin-bottom: 25px;
}
.footer2 ul li a {
  font-family: "SN-Bold";
  font-size: 13px;
  color: white;
  text-transform: capitalize;
}
.footer2 ul li a:hover {
  background: linear-gradient(to right, #da9a38, #d9b559, #f1e07a, #da9a38);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.footer-tags {
  border-top: 1px solid #d9d9d9;
  padding: 20px 0px;
}
.flextag {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 68%;
}
.flextag p {
  margin-bottom: 0;
  font-family: "Roboto-SemiBold";
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
}
.flex-tags {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.flextag a {
  text-transform: capitalize;
  font-family: "Roboto";
  font-size: 13px;
  color: #000000;
  border-radius: 20px;
  border: 1px solid #606060;
  padding: 7px 30px;
}
.flextag a:hover {
  background-color: var(--color-main);
}

/* .footer3 button {
  background: linear-gradient(to right, #b48d64, #6c584c);
  padding: 5px 25px;
  font-family: "Fz-SemiBold";
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  box-shadow: none;
  border-radius: 7px;
}
.footer3 button:focus {
  box-shadow: none;
} */

.socialfooter {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}
.socialfooter a:hover img {
  animation: laclu 0.85s ease-in-out infinite;
}

.fb-page iframe {
  border-radius: 12px;
}

/* .info-footer .flex-footer .box-footer2 .chinhsanh a p {
  font-family: "Fz";
  font-size: 14px;
  color: #222222;
  margin-bottom: 10px;
}

.info-footer .flex-footer .box-footer2 .chinhsanh a p:hover {
  color: red;
} */

.map-contact {
  width: 100%;
  height: 400px;
  margin: auto;
}

.map-contact iframe {
  width: 100%;
  height: 100%;
}
.map-footer {
  width: 100%;
  height: 513px;
  margin: auto;
}

.map-footer iframe {
  width: 100%;
  height: 100%;
}
.copyright {
  position: relative;
  background-color: #9f1818;
  padding: 20px 0px;
  /* background: linear-gradient(to right, #fbf28f, #bf9c52, #fbf28f); */
  /* background: url(../images/viencopyright.png) left/cover no-repeat; */
}

.copyright .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright p {
  font-family: "SF";
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0px;
}
.copyright p span {
  text-transform: uppercase;
}
.itemmap {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  font-family: "Roboto-SemiBold";
  font-size: 14px;
  color: white;
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

.statistic span {
  font-family: "SF";
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}
.map-footer p {
  margin-bottom: 0px;
}
.map-footer .tab-content .tab-pane iframe {
  width: 100%;
  height: 400px;
  border: 5px solid white !important;
}
.map-footer .tab-content {
  position: relative;
}
.map-footer .tab-content .nutcoso {
  position: absolute;
  top: 20px;
  right: 20px;
  border-bottom: 0;
  gap: 10px;
  max-height: 340px;
  overflow-y: scroll;
  padding-right: 5px;
}
.nutcoso::-webkit-scrollbar {
  width: 5px; /* chiều ngang thanh cuộn dọc */
}

.nutcoso::-webkit-scrollbar-thumb {
  background-color: #919191; /* màu đen cho thanh cuộn */
  border-radius: 3px; /* bo tròn nhẹ */
}

.nutcoso::-webkit-scrollbar-track {
  background: transparent; /* xóa nền trắng phía sau */
}
.map-footer .tab-content .nutcoso li {
  width: 100%;
  display: flex;
  justify-content: end;
}
.map-footer .tab-content .nutcoso li .nav-link {
  background: url(../images/vienbth.png) center/100% 100% no-repeat;
  padding: 8px 15px;
  font-size: 16px;
  font-family: "Mulish-Bold";
  color: #1a1a1a;
  border: none;
}
.map-footer .tab-content .nutcoso li .nav-link:hover {
  color: white;
  background: url(../images/vienactive.png) center/100% 100% no-repeat;
  padding: 8px 15px;
}
.map-footer .tab-content .nutcoso li .active {
  color: white;
  background: url(../images/vienactive.png) center/100% 100% no-repeat;
  padding: 8px 15px;
}

.form-floating > label {
  font-family: "SF";
  font-size: 15px;
  color: var(--color-text);
}

.btn-dangky {
  background-color: #0e0f0f;
  font-family: "SF-Bold";
  font-size: 15px;
  color: white;
  text-transform: uppercase;
}
.btn-dangky:hover {
  color: var(--color-main);
}

.content-main p {
  font-family: "SF";
  font-size: 16px;
}
.content-main .contact-text p {
  font-family: "SF";
  font-size: 16px;
}

/* Tags */
.title-tags {
  position: relative;
  font-size: 1em;
  /* padding-bottom: 15px; */
  font-family: "SVN-SemiBold";
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 15px;
}
/* .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;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}
.flex-tags a {
  font-family: "Forma";
  font-size: 16px;
  color: rgb(231, 231, 231);
  border: 1px solid #c3c3c3;
  border-radius: 3px;
  display: inline-block;
  padding: 8px 16px;
}
.flex-tags a:hover {
  background-color: #f00;
  border-color: #f00;
  color: #fff;
  opacity: 1;
} */

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

/* About */
.article {
  position: relative;
  padding: 70px 0px;
  background-color: #fff4cc;
  margin-top: 50px;
}
.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  /* height: 550px; */
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.about {
  position: relative;
  overflow: visible !important;
}
.flex-about {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}
.content-about {
  width: 50%;
  position: relative;
  text-align: center;
  padding: 30px 40px 35px 40px;
  background: url(../images/viencontentabout.png) center/100% 100% no-repeat;
}

.title-about {
  margin-bottom: 20px;
}

.title-about h5 {
  font-family: "Sa";
  font-size: 33px;
  color: white;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.title-about h2 {
  color: var(--color-main2);
  margin-bottom: 15px;
  font-family: "League";
  font-size: 45px;
  text-transform: uppercase;
}

.title-about p {
  font-family: "SF";
  font-size: 15px;
  color: white;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-height: 2;
}
.xemthemgioithieu {
  padding: 10px 30px 12px;
  position: relative;
  width: fit-content;
  margin: auto;
  background-color: var(--color-main2);
  border-radius: 30px;
}
.xemthemgioithieu a {
  font-family: "SVN-XBold";
  font-size: 16px;
  color: var(--color-hover);
  position: relative;
  z-index: 1;
}
.xemthemgioithieu:hover a {
  color: white;
}

.xoaytron {
  animation: rotate 17s linear infinite;
  position: absolute;
  top: 100px;
  right: -80px;
  z-index: 2;
  pointer-events: none;
}
.logo-name .letter {
  display: inline-block;
  line-height: 1em;
}

.photo-about {
  width: 50%;
  position: relative;
}
.photo-about:after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 85%;
  height: 100%;
  border: 2px solid var(--color-hover);
  border-radius: 10px;
  z-index: 0;
}
.photo-about h2 {
  text-transform: uppercase;
  font-family: "Gr";
  font-size: 50px;
  color: var(--color-hover);
  margin-bottom: 0;
  transform: rotate(90deg);
}
.photoh2 {
  position: absolute;
  right: -95px;
  top: 52%;
  transform: translateY(-50%);
}
.photo1 {
  width: fit-content;
  position: relative;
  z-index: 2;
}
.photo1 a {
  border-radius: 12px;
}
.photo1 a img {
  border-radius: 12px;
}

.photo3 {
  z-index: 1;
  -webkit-mask-image: url(../images/mask.png);
  mask-image: url(../images/mask.png);
  mask-size: 100%;
  mask-repeat: no-repeat;
  width: fit-content;
  margin-left: auto;
  margin-right: 35px;
}

/* danhgia */
.danhgia {
  padding: 60px 0px;
  background: url(../images/viendanhgia.png) center/cover no-repeat;
}
.danhgia h5 {
  font-family: "Sa";
  font-size: 33px;
  color: white;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 10px;
  padding: 5px 0px;
}
.danhgia h2 {
  font-family: "League";
  font-size: 45px;
  color: var(--color-main2);
  text-transform: uppercase;
  text-align: center;
}
.danhgia .swiper {
  margin-top: 45px;
}
.danhgiatong {
  padding: 30px 30px 120px 0px;
  position: relative;
}
.trendanhgia {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.duoidanhgia {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}
.decodg1 {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 0;
  pointer-events: none;
}
.decodg2 {
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 0;
  pointer-events: none;
}
.danhgia .flex {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.danhgia-img {
  min-width: 93px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
}
.danhgia-img img {
  border-radius: 50%;
}
.danhgia-info {
  padding-right: 50px;
  position: relative;
  z-index: 3;
}
.danhgia-info p {
  font-family: "SF-Bold";
  font-size: 16px;
  color: white;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.danhgia-info span {
  font-family: "SF";
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-height: 1.75;
}

/* spnb */
.spnb {
  padding: 80px 0px;
}
.spnbtong {
  padding: 65px 30px 30px;
  background: url(../images/vienspnb.png) center/cover no-repeat;
}
.spnb h2 {
  font-family: "Akira";
  font-size: 35px;
  color: white;
  text-transform: uppercase;
  background: url(../images/vientenspnb.png) center/100% 100%;
  width: fit-content;
  margin: auto;
  padding: 15px 80px 30px;
  margin-bottom: -35px;
  position: relative;
  z-index: 10;
}

/* menusp */
.menusp h2 {
  color: var(--color-main);
  margin-bottom: 10px;
  font-family: "Akira";
  font-size: 40px;
  text-transform: uppercase;
  text-shadow:
    /* Viền trắng xung quanh */ -2px -2px 0 #efe3cd,
    2px -2px 0 #efe3cd, -2px 2px 0 #efe3cd, 2px 2px 0 #efe3cd,
    0px -2px 0 #efe3cd, 0px 2px 0 #efe3cd, -2px 0px 0 #efe3cd, 2px 0px 0 #efe3cd,
    /* Viền đỏ đậm lệch trái và xuống dưới */ -4px 4px 0 var(--color-main),
    -3px 5px 0 var(--color-main);
  text-align: center;
}

/* dichvu */
.dichvu {
  background: url(../images/viendichvu.png) center/cover no-repeat;
  padding: 50px 0px;
}
.linetren {
  height: 61px;
  width: 1px;
  background-color: white;
  margin: auto;
}
.dichvu h2 {
  color: white;
}
.dichvu .swiper {
  margin-top: 30px;
}
.dichvu .swiper-slide-active {
  margin-top: 55px !important;
}
.dichvu .swiper-slide-next + .swiper-slide {
  margin-top: 55px !important;
}
.dichvutong:hover h5 {
  color: var(--color-hover);
}
.dichvu-img {
  border-radius: 12px;
  position: relative;
}
.nutdichvu {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
}
.dichvutong h5 {
  font-family: "Phi-Bold";
  font-size: 22px;
  color: #000000;
  text-transform: uppercase;
  margin-top: 20px;
}
.dichvu h5 {
  font-family: "Phi-Bold";
  font-size: 22px;
  color: white;
  text-transform: uppercase;
  margin-top: 20px;
}

/* banggia */
.banggia {
  padding: 80px 0px;
  background: url(../images/vienbanggiamoi.png) center/cover no-repeat;
}
.banggia h2 {
  color: #222222;
}
.banggia .slogan {
  color: #222222ea;
}

.f-flipbook {
  position: relative;
  padding: 10px 132px 10px 63px;
  margin-top: 30px;
}
.decobanggia {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.flipbook {
  width: 100% !important;
  overflow: hidden;
  margin-left: 35px !important;
}

.f-flipbook button {
  position: absolute;
  top: 47%;
  border: none;
  background: transparent;
  width: 55px;
  height: 35px;
  /* filter: invert(1); */
  z-index: 1;
}

.f-flipbook .turn-next {
  left: calc(100%);
  left: -moz-calc(100%);
  left: -webkit-calc(93%);
}

.f-flipbook .turn-prev {
  right: calc(100%);
  right: -moz-calc(100%);
  right: -webkit-calc(93%);
}

.f-flipbook:before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  /* background: url("../images/cuontap.png") no-repeat center; */
  background-color: white;
  /* background-size: 89% 97%; */
  /* margin: 0px 70px; */
  width: 55%;
  margin: auto;
}

.flipbook-viewport .page {
  /* width: 494px;
  height: 710px; */
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 95% auto;
}
.flipbook .page-wrapper {
  margin: auto;
  /* margin-right: -20px; */
  width: 494px !important;
}
.flipbook .page {
  width: 494px !important;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.flipbook .page img {
  height: 100%;
  border: 10px solid #f2cb0d;
}
.banggia-img2 {
  border: 10px solid #f8eec0;
}
.flipbook-viewport .page img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
}

.flipbook-viewport .shadow {
  -webkit-transition: -webkit-box-shadow 0.5s;
  -moz-transition: -moz-box-shadow 0.5s;
  -o-transition: -webkit-box-shadow 0.5s;
  -ms-transition: -ms-box-shadow 0.5s;
  -webkit-box-shadow: 0 0 20px #ccc;
  -moz-box-shadow: 0 0 20px #ccc;
  -o-box-shadow: 0 0 20px #ccc;
  -ms-box-shadow: 0 0 20px #ccc;
  box-shadow: 0 0 20px #ccc;
}
.shadow {
  box-shadow: none !important;
}
.banggia .swiper {
  margin-top: 45px;
}
.banggia-img {
  border-radius: 30px;
}
.banggia-img img {
  border-radius: 30px;
}
.linegiuabanggia {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* feedback */
.feedbackvideo {
  padding: 45px 0px 70px;
}
.feedback {
  width: 48%;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.feedback h2 {
  font-family: "Sei";
  font-size: 80px;
  color: #2b661f;
  text-shadow: 2px 0 white, -2px 0 white, 0 2px white, 0 -2px white,
    1px 1px white, -1px -1px #eee, 1px -1px #eee, -1px 1px #eee,
    /* Viền đỏ đậm lệch trái và xuống dưới */ -4px 4px 0 #2b661f,
    -3px 5px 0 #2b661f;
  position: absolute;
  top: -20px;
  right: 15px;
  z-index: 4;
  margin-bottom: 20px;
}
.traifb {
  position: absolute;
  bottom: 0;
  left: 58%;
  transform: translateX(-50%);
  z-index: 4;
}
.phaifb {
  position: absolute;
  bottom: 0;
  left: 67%;
  transform: translateX(-50%);
  z-index: 4;
}
.feedback .flex {
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
.feedback-img {
  min-width: 280px;
  border-radius: 140px 140px 0px 0px;
}
.feedback-img img {
  border-radius: 140px 140px 0px 0px;
}
.feedback-info {
  margin-top: 20px;
}
.feedback-info h5 {
  font-family: "Akira";
  font-size: 18px;
  color: var(--color-main);
  margin-bottom: 10px;
  text-transform: uppercase;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.feedback-info p {
  font-family: "Mulish-Med";
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-height: 2;
}

/* video */
.video {
  width: 47.5%;
  position: relative;
  padding: 20px 0px;
}
.video h2 {
  color: var(--color-main);
  font-family: "Akira";
  font-size: 30px;
  text-transform: uppercase;
  text-shadow:
    /* Viền trắng xung quanh */ -2px -2px 0 #efe3cd,
    2px -2px 0 #efe3cd, -2px 2px 0 #efe3cd, 2px 2px 0 #efe3cd,
    0px -2px 0 #efe3cd, 0px 2px 0 #efe3cd, -2px 0px 0 #efe3cd, 2px 0px 0 #efe3cd,
    /* Viền đỏ đậm lệch trái và xuống dưới */ -4px 4px 0 var(--color-main),
    -3px 5px 0 var(--color-main);
  text-align: center;
  width: fit-content;
  padding: 10px 100px;
  margin: auto;
  margin-bottom: 30px;
  display: none;
  border: 3px solid #2b661f;
}
.decovideo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.caybut {
  position: absolute;
  bottom: -10px;
  right: -54px;
  pointer-events: none;
}
.video-img {
  position: relative;
  z-index: 3;
  width: fit-content;
}
.itemvideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.itemgocvideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* tintuc */
.tintuc {
  padding: 70px 0px;
}
.tintuc h2 {
  text-transform: uppercase;
  font-family: "League";
  font-size: 34px;
  color: var(--color-main2);
  background: url(../images/vienspcap1.png) center/100% 100% no-repeat;
  padding: 20px 145px 10px;
  width: fit-content;
  margin: auto;
  margin-bottom: 10px;
  position: relative;
}

.tintuc .swiper {
  margin-top: 35px;
}
.tintuctong {
  position: relative;
  padding-right: 30px;
}
.tintuctong:after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 10px;
  width: 92%;
  height: 95%;
  border-radius: 12px;
  border: 1px solid var(--color-hover);
  z-index: -1;
}
.tintuctong:hover h4 a {
  color: var(--color-main2);
}
.thoigian {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: white;
  position: absolute;
  top: 115px;
  right: -40px;
  transform: rotate(90deg);
  width: fit-content;
}
.thoigian img {
  transform: rotate(-90deg);
}
.thoigian span {
  font-family: "SF-Med";
  font-size: 14px;
  color: var(--color-hover);
}
.tintuc-img {
  position: relative;
  border-radius: 12px;
}
.tintuc-img a img {
  object-fit: cover;
}
.tintuc-img span {
  width: 82%;
  position: absolute;
  left: 20px;
  right: 0;
  top: 63%;
  transform: translateY(-50%);
  font-family: "SF";
  font-size: 15px;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-height: 2;
}
.tintucab {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #2222224b;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}
.tintucab1 {
  position: relative;
  height: 100%;
  z-index: 3;
}
.tintuc-img:hover .tintucab {
  opacity: 1;
}
.tintuc-info {
  padding: 20px 30px 30px 50px;
}
.tintuc-info h4 {
  margin-bottom: 0;
}
.tintuc-info h4 a {
  font-family: "SF-Med";
  font-size: 18px;
  color: #222222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-height: 1.5;
}

/* album */
.album {
  padding: 60px 0px 80px;
  background: url(../images/vienalbummoi.png) center/cover no-repeat;
  position: relative;
}
.decoalbum1 {
  position: absolute;
  top: 0;
  left: 20px;
}
.decoalbum2 {
  position: absolute;
  top: 65px;
  right: 0px;
}
.decoalbum3 {
  position: absolute;
  bottom: 0;
  left: 110px;
}
.album .wrap-content {
  overflow: visible;
}

.albumtong {
  height: 620px;
  position: relative;
  margin-top: 35px;
}
.album-info {
  width: fit-content;
}
.album-info img {
  object-fit: cover;
}
.album-info-img {
  background-color: #efe3cd;
  padding: 20px;
}
.album-info:nth-child(1) {
  position: absolute;
  top: 75px;
  left: 0px;
  z-index: 2;
  width: 400px;
  height: 300px;
}
.album-info:nth-child(2) {
  position: absolute;
  bottom: 0px;
  left: 240px;
  z-index: 3;
  width: 400px;
  height: 300px;
}
.album-info:nth-child(3) {
  position: absolute;
  top: 0px;
  left: 280px;
  z-index: 1;
  width: 500px;
  height: 375px;
}
.album-info:nth-child(4) {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 500px;
  height: 375px;
}
.album-info:nth-child(4) .album-info-img {
  padding: 0;
}

.tenalbum {
  text-align: center;
  position: absolute;
  right: 0px;
  top: 70px;
}
.tenalbum h2 {
  color: var(--color-main);
  margin-bottom: 30px;
  font-family: "Akira";
  font-size: 40px;
  text-transform: uppercase;
  text-shadow:
    /* Viền trắng xung quanh */ -2px -2px 0 #efe3cd,
    2px -2px 0 #efe3cd, -2px 2px 0 #efe3cd, 2px 2px 0 #efe3cd,
    0px -2px 0 #efe3cd, 0px 2px 0 #efe3cd, -2px 0px 0 #efe3cd, 2px 0px 0 #efe3cd,
    /* Viền đỏ đậm lệch trái và xuống dưới */ -4px 4px 0 var(--color-main),
    -3px 5px 0 var(--color-main);
  text-align: center;
}
.tenalbum a {
  font-family: "Mulish-Bold";
  font-size: 16px;
  color: #1a1a1a;
  background: url(../images/vienbth.png) center/100% 100%;
  padding: 11px 20px;
}
.tenalbum a:hover {
  color: white;
  background: url(../images/vienactive.png) center/100% 100% no-repeat;
}
.albumgrid {
  display: none;
}
.album .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.albumcon img {
  object-fit: cover;
}

/* spbc */
.spbc {
  padding: 75px 0px;
  background: url(../images/vienspbc.png) center/cover no-repeat;
}
.spbc .swiper {
  margin-top: 20px;
}
.spbctong {
  padding: 10px 10px 30px 10px;
  border-radius: 240px 240px 20px 20px;
  background-color: #eeffea;
}
.spbctong:hover h5 {
  color: var(--color-main);
}
.spbc-img {
  border-radius: 240px;
}
.spbc-img img {
  border-radius: 240px;
  object-fit: cover;
}
.spbctong h5 {
  font-family: "SN-Bold";
  font-size: 18px;
  color: #000000;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 20px;
}

/* tuvan */
.tuvan {
  padding: 80px 0px;
}
.tuvan .flex {
  padding: 2px;
}
.facebook {
  width: 45%;
  background-color: white;
  box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
  border-radius: 20px;
  padding: 20px 20px 0px 20px;
}
.facebook h2 {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  font-family: "SVN-Med";
  font-size: 20px;
  color: #000000;
  margin-bottom: 20px;
}
/* form */
.form {
  width: 52%;
  background-color: white;
  box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
  border-radius: 20px;
  padding: 35px 15px;
}
.form h2 {
  font-family: "SN-Bold";
  font-size: 30px;
  color: var(--color-main);
  margin-bottom: 20px;
}
.form p {
  width: 95%;
  margin: auto;
  font-family: "SN-Med";
  font-size: 12px;
  color: #222222;
  line-height: 2;
}
.form form {
  margin-top: 15px;
}
.form .form-control {
  height: 50px;
  border: 1px solid #cccccc;
  box-shadow: none;
  padding: 18px;
  /* box-shadow: 0px 0px 5px rgb(0 0 0 / 19%); */
  margin-bottom: 30px;
  background-color: transparent;
  border-radius: 4px;
}
.form .chondichvu {
  margin-bottom: 10px;
}
.form option {
  font-family: "SVN-Med";
  font-size: 15px;
  color: #1a1a1a;
}
.form .form-floating > label {
  font-family: "SN-Med";
  font-size: 12px;
  color: #5e5e5e;
  padding: 15px;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  transform: scale(1) translateY(-0.5rem) translateX(0rem);
}

.form .btn-primary {
  font-family: "SN-Bold";
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  box-shadow: none;
  background: linear-gradient(to right, #da9a38, #d9b559, #f1e07a, #da9a38);
  padding: 12px 0px;
  text-transform: uppercase;
  width: 100%;
  border: none;
  border-radius: 0;
  /* background-color: transparent;
  background-image: url(../images/guidangky.png);
  background-repeat: no-repeat;
  background-position: right center;
  margin-right: 25px;
  padding-right: 45px; */
}
.form .btn-primary:hover {
  color: var(--color-main);
}
.form .guiform {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: auto;
  margin-top: 25px;
  padding: 10px 30px 10px 20px;
  background: url(../images/vienxemthem.png) center/100% 100% no-repeat;
}
.form .guiform p {
  margin-bottom: 0;
  font-family: "SVN-SemiBold";
  font-size: 18px;
  color: white;
}
.form textarea.form-control {
  height: 100px;
}

/* lydo */
.lydo {
  padding: 40px 0px;
  background: url(../images/vienlydomoi.png) center/cover no-repeat;
}
.lydo .wrap-content {
  max-width: 1325px;
  overflow: visible;
}
.lydo h5 {
  font-family: "Miss";
  font-size: 60px;
  color: white;
  margin-bottom: -10px;
  text-align: center;
}
.lydo h2 {
  text-align: center;
}
.lydotong {
  position: relative;
}
.lydochinh {
  width: fit-content;
  margin: auto;
}
.lydo-info {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  width: 33%;
  position: relative;
}
.lydo-info:after {
  content: "";
  width: 247px;
  height: 40px;
  position: absolute;
  top: -7px;
  right: 75px;
  background: linear-gradient(to right, #ffec8e85, #ffec8e00);
  border-radius: 50px;
}
.lydo-info1 {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  width: 33%;
}
.lydo-info1:after {
  content: "";
  width: 247px;
  height: 40px;
  position: absolute;
  top: -7px;
  left: 75px;
  background: linear-gradient(to left, #ffec8e85, #ffec8e00);
  border-radius: 50px;
}
.lydo-info-img img {
  animation: laclu 1s ease-in-out infinite;
}
.lydo-info-img2 img {
  animation: laclu 1s ease-in-out infinite;
}
.lydo-info-img {
  background: url(../images/vienduoilydotrai.png) center/100% 100% no-repeat;
  min-width: 100px;
  padding: 25px;
}
.lydo-info-img1 {
  min-width: 50px;
}
.lydo-info-img2 {
  background: url(../images/vienduoilydophai.png) center/100% 100% no-repeat;
  min-width: 100px;
  padding: 25px;
}
.lydo-info-img3 {
  min-width: 50px;
}
.lydo-info-chitiet2 {
  text-align: left;
}
.lydo-info-chitiet {
  text-align: right;
}
.lydo p {
  font-family: "SN-Bold";
  font-size: 18px;
  color: white;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.lydo span {
  font-family: "SN-Med";
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-height: 2.5;
}
.lydo-info:nth-child(2) {
  position: absolute;
  top: 40px;
  left: 0;
}
.lydo-info:nth-child(3) {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}
.lydo-info:nth-child(4) {
  position: absolute;
  bottom: 40px;
  left: 0;
}
.lydo-info1:nth-child(5) {
  position: absolute;
  top: 40px;
  right: 0;
}
.lydo-info1:nth-child(6) {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}
.lydo-info1:nth-child(7) {
  position: absolute;
  bottom: 40px;
  right: 0;
}
.lydo .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: none;
}

/* sanpham */
.sanpham {
  padding: 45px 0px 0px;
}
.sanpham h2 {
  text-transform: uppercase;
  font-family: "League";
  font-size: 34px;
  color: var(--color-main2);
  background: url(../images/vienspcap1.png) center/100% 100% no-repeat;
  padding: 20px 145px 10px;
  width: fit-content;
  margin: auto;
  margin-bottom: 10px;
  position: relative;
}
.decospcap1trai {
  position: absolute;
  left: -110px;
  top: 50%;
  transform: translateY(-50%);
}
.decospcap1phai {
  position: absolute;
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
}
.slogan {
  font-family: "SF-Med";
  font-size: 18px;
  color: var(--color-main);
  display: flex;
  justify-content: center;
}
.sanpham .swiper {
  margin-top: 25px;
}

/* dangky */
.dangky {
  padding: 40px 0px;
  background: url(../images/viendangky.png) center/cover no-repeat;
}
.dangky .flex {
  justify-content: space-between;
  align-items: center;
}
.dangky .dangkyten {
  width: 41%;
}
.dangky .formdangky {
  width: 56%;
}
.dangky h2 {
  font-family: "Beautique";
  font-size: 42px;
  color: #000000;
  text-transform: capitalize;
  margin-bottom: 0px;
  text-shadow: 2px 1px 3px white;
}
.dangky p {
  font-family: "Mont";
  font-size: 15px;
  color: #222222;
  margin-bottom: 0;
}
.dangky input {
  width: 100%;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 10px;
}
.dangky input::placeholder {
  font-family: "Mont-Light";
  font-size: 14px;
  color: #d1d1d1;
}
.dangky input:focus {
  font-family: "Mont-Light";
  font-size: 14px;
  color: #000000;
  border: none;
  box-shadow: none;
}
.dangky button {
  background-color: #ae2d28;
  font-family: "Mont-Bold";
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 5px;
}
.dangky button:hover {
  color: var(--color-main);
}
.dangky form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.dangky form .row {
  width: 77%;
}
.dangky form .row .col-12 {
  padding: 0;
}

/* hethong */
.hethongtong {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.hethong-img {
  width: 65%;
  height: 545px;
}
.hethong-img p {
  width: 100%;
  height: 100%;
}
.hethong-img iframe {
  width: 100%;
  height: 100%;
}
.hethong-info {
  width: 35%;
  padding-left: 0;
  max-height: 545px;
  overflow-y: scroll;
}
.hethong-info li {
  padding: 15px;
  border-radius: 10px;
  background-color: #5a5a5a;
  margin-bottom: 15px;
}
.hethong-info li:hover {
  background-color: var(--color-main);
}
.hethong-info li:hover h5 {
  color: var(--color-hover);
}
.hethong-info li h5 {
  color: var(--color-main);
  font-family: "SVN-Bold";
  font-size: 18px;
}
.hethong-info li p {
  color: white;
  font-family: "SVN";
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.hethong-info li .hethonghotline {
  color: white;
  font-family: "SVN";
  font-size: 15px;
}
.hethong-info li .hethongchatzalo {
  color: rgba(255, 255, 255, 0.795);
  font-family: "SVN";
  font-size: 15px;
  margin-top: 7px;
}
.hethong-info li .hethongchatzalo a {
  color: rgba(255, 255, 255, 0.795);
  font-family: "SVN";
  font-size: 15px;
}
.hethong-info li .hethongchatzalo a:hover {
  color: var(--color-hover);
}

.vienchudao {
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}
.vienchudao2 {
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white,
    2px 2px 0 white;
}
.mauchudao {
  background: linear-gradient(
    to right,
    #9e7328,
    #fbf28f,
    #ab8430,
    #fbf28f,
    #ab8430
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
.sloganchudao {
  margin: auto;
  font-family: "Fz";
  font-size: 14px;
  color: #4d4d4d;
}
.tenchudao {
  font-family: "Akira";
  font-size: 51px;
  text-transform: capitalize;
}
.motachudao {
  font-family: "Roboto";
  font-size: 15px;
  color: var(--color-text);
}
.imgchudao {
  margin: auto;
}

/* tudongchay */
.tudongchay {
  width: 100%;
  height: 60px;
  background: url(../images/tudongchay.png) left no-repeat;
  animation: moveBackground 12s linear infinite;
  padding: 10px 0px;
}

/* datlich */
.datlich {
  background: url(../images/viendatlichmoi.png) center/cover no-repeat;
  padding: 60px 0px;
}
.datlich h5 {
  font-family: "VIP";
  font-size: 100px;
  background: linear-gradient(to bottom, #ffffff85, #ffffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  width: fit-content;
  margin: auto;
}
.datlich h2 {
  margin-top: -75px;
  color: white;
  font-size: 57px;
}
.datlich p {
  font-family: "SVN";
  font-size: 16px;
  color: white;
}
.datlich .row {
  padding: 0px 10px;
  gap: 10px;
  justify-content: space-between;
}
.datlich form {
  margin-top: 30px;
}
.datlich .row .contact-input {
  padding: 0;
  width: 49% !important;
}
.datlich .contact-input {
  margin-bottom: 30px;
}
.datlich .form-floating > .form-control {
  border: none;
  box-shadow: none;
  height: 54px;
  border-radius: 10px;
  padding: 10px 15px;
  font-family: "SVN";
  font-size: 14px;
  color: #313131;
  display: flex;
  justify-content: end;
  border: 1px solid #222222;
}
.datlich .chondichvu select {
  border: none;
  box-shadow: none;
  height: 54px;
  border-radius: 10px;
  font-family: "SVN-Med";
  font-size: 15px;
  color: #222222;
}
.datlich .form-floating > label {
  font-family: "SVN-Med";
  font-size: 15px;
  color: #222222;
  padding: 10px 15px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.datlich .form-floating > .time {
  transform: none !important;
  opacity: 1 !important;
}
.datlich .form-floating > .date {
  transform: none !important;
  opacity: 1 !important;
}
.datlich .guidathen {
  background: url(../images/vienguidathen.png) center/100% 100% no-repeat;
  padding: 10px 130px 10px 120px;
  border-radius: 10px;
  width: fit-content;
  margin: auto;
}
.datlich .btn-primary {
  background: none;
  font-family: "SVN-Bold";
  font-size: 17px;
  color: #1a242b;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
  background-image: url(../images/itemdathen.png);
  background-repeat: no-repeat;
  background-position: right 0px center;
  padding: 5px 30px;
}
.datlich .btn-primary:hover {
  color: #f1ecd6;
}

/* banner */
.banner-fixed {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 800px;
  background-size: 100% 100%;
}

.vongtron {
  animation: rotate 20s linear infinite;
  position: absolute;
  top: 0;
  right: -50px;
  pointer-events: none;
}

/* coso */
.coso {
  padding: 65px 0px 60px;
}
.coso .flex {
  margin-top: 30px;
}
.coso-info {
  width: 38%;
  padding: 5px;
}
.cosotong {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
  border-radius: 5px;
}
.cosotong.active {
  background-color: #95f1bf;
}
.coso-ten {
  width: 55%;
}
.coso-img {
  border-radius: 5px;
}
.coso-img img {
  border-radius: 5px;
}
.coso-ten h5 {
  color: var(--color-main);
  font-family: "Inter-Bold";
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.coso-ten p {
  color: var(--color-text);
  font-family: "Inter";
  font-size: 14px;
  margin-bottom: 10px;
}
.coso-map {
  width: 59%;
  margin-top: 5px;
}
.coso-map iframe {
  width: 100%;
}

.wrap-content {
  overflow: hidden;
}

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

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

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

.hover_xam2 {
  position: relative;
  overflow: hidden;
}
.hover_xam2:before {
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 10;
  display: block;
  content: "";
  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);
}
.hover_xam2:hover:before {
  transition: 1s;
  left: 100%;
}

.scale-img {
  overflow: hidden;
  display: block;
  border-radius: 10px;
}

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

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

.scale-img2 {
  overflow: hidden;
  display: block;
}

.scale-img2 img {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: 0.5s all;
}

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

/* .album-img {
  overflow: hidden;
} */

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

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

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

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

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

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

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

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

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

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

/* Product */
.filter {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  display: none;
}
.flex-product-main {
  display: flex;
  gap: 20px;
}
.flex-product-main .left-product {
  min-width: 220px;
  /* border: 1px solid #f1f1f1;
  padding: 20px;
  border-radius: 5px; */
}
.flex-product-main .right-product {
  /* width: calc(100% - 250px); */
  width: 100%;
}
.wrap-product-sale {
  background-color: #ffa09e;
  border-radius: 10px;
  overflow: hidden;
}
.wr-search p {
  font-weight: bold;
  text-transform: uppercase;
}

/* .product {
  display: block;
  background-color: #f9f6f0;
  padding: 20px 40px;
  transition: 0.3s -webkit-transform-style:preserve-3d; transform-style: preserve-3d; -webkit-transition: all .7s cubic-bezier(.5, .12, .46, .88); -o-transition: all .7s cubic-bezier(.5, .12, .46, .88); transition: all .7s cubic-bezier(.5, .12, .46, .88); -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: rotateY(0deg);
}

.productlat { width: 100%; height: 100%; position: absolute; top: 0; background: var(--color-main); display: flex; justify-content: center; align-items: center; flex-wrap: wrap; flex-direction: column; gap: 15px; text-align: center; transition: 0.3s -webkit-transform-style:preserve-3d; transform-style: preserve-3d; -webkit-transition: all .7s cubic-bezier(.5, .12, .46, .88); -o-transition: all .7s cubic-bezier(.5, .12, .46, .88); transition: all .7s cubic-bezier(.5, .12, .46, .88); -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: rotateY(-180deg); }

.productlat .name-product {
  width: 100%;
}
.productlat .name-product a {
  font-family: 'Fz-SemiBold';
  font-size: 18px;
  color: var(--color-text);
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.productlat .mota-product p {
  margin-bottom: 0;
  width: 100%;
  font-family: 'Fz';
  font-size: 17px;
  color: #555555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}
.productlat .price-product {
  width: 100%;
}
.productlat .price-product p {
  font-family: "Fz";
  font-size: 17px;
  color: var(--color-text);
  margin-bottom: 0px;
}

.item-product:hover .productlat { z-index: 2; -webkit-transform: rotateY(0deg); transform: rotateY(0deg); -webkit-transition: all .7s cubic-bezier(.5, .12, .46, .88); -o-transition: all .7s cubic-bezier(.5, .12, .46, .88); transition: all .7s cubic-bezier(.5, .12, .46, .88); }

.item-product:hover .product { -webkit-transform: rotateY(-180deg); -webkit-transition: all .7s cubic-bezier(.5, .12, .46, .88); -o-transition: all .7s cubic-bezier(.5, .12, .46, .88); transition: all .7s cubic-bezier(.5, .12, .46, .88); }

.product .sloganproduct {
  font-family: "Chronicle Text G1";
  font-size: 17px;
  color: #555555;
  margin-bottom: 10px;
  text-transform: capitalize;
} */
.product {
  position: relative;
  border-radius: 10px;
  padding: 6px 6px 20px 6px;
  background: linear-gradient(to bottom, #ffc90694, #ffffff);
}
.product .pic-product {
  /* display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: solid 1px transparent; */
  /* width: fit-content; */
  position: relative;
}

.product .pic-product > a {
  /* display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center; */
  border-radius: 8px;
}

.product .pic-product img {
  /* -webkit-transform-style: preserve-3d; */
  border-radius: 8px;
}

.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:hover .name-product a {
  color: var(--color-main2);
}
.product .name-product .text-split {
  font-family: "SF-Med";
  font-size: 16px;
  color: #000000;
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  margin-top: 5px;
}
/* .product .name-product a:hover {
  color: #ff2e00;
} */

.product .price-product {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 5px;
}
.product .price-product p {
  font-family: "SVN";
  font-size: 15px;
  color: #1a242b;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
.product .price-new {
  font-family: "SF-Heavy";
  font-size: 20px;
  color: var(--color-hover);
  position: relative;
  z-index: 2;
  /* font-family: "SVN-Bold";
  font-size: 18px;
  background: linear-gradient(
    to right,
    #a97514,
    #fde386,
    #a97514,
    #fde386,
    #a97514
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  color: var(--color-hover); */
}

.product .price-old {
  font-family: "SVN-Light";
  font-size: 14px;
  text-decoration: line-through;
  display: block;
  color: #666666;
  /* text-transform: uppercase; */
}
.product .price-old {
  font-family: "SVN-Light";
  font-size: 14px;
  text-decoration: line-through;
  display: block;
  color: #666666;
  /* text-transform: uppercase; */
}

.right-pro-detail .lienheproduct {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.right-pro-detail .lienheproduct a {
  width: 50%;
}
.right-pro-detail .lienheproduct a p {
  font-family: "Inter";
  font-size: 15px;
  color: rgb(250, 250, 250);
  margin-bottom: 0;
  background-color: var(--color-main);
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
}
.right-pro-detail .lienheproduct a p:hover {
  color: red;
}

.product .price-per {
  color: white;
  font-family: "SVN-SemiBold";
  font-size: 14px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background-color: var(--color-hover);
  padding: 0px 5px 3px 13px;
  width: fit-content;
  border-radius: 0px 15px 0px 33px;
}
.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: repeat(4, 1fr);
  gap: 25px;
}
.grid-product2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-productdv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  /* column-count: 4; 
  column-gap: 10px; */
}
.grid-duan .item-newsdv {
  break-inside: avoid; /* Tránh vỡ layout */
  margin-bottom: 20px;
}

.grid-product > * {
  max-width: 100%; /* Giới hạn kích thước */
  min-width: 0; /* Ngăn phần tử mở rộng quá mức */
  /* padding: 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;
}

/* product detail */
.lefttong {
  width: 79%;
}
.righttongblock {
  display: none;
}
.righttong {
  width: 20%;
  margin-top: -80px;
}
.righttong .swiper-slide {
  width: 100%;
}
.danhmuctrong {
  min-width: 255px;
}
.producttrong {
  overflow: visible !important;
}
.producttrong .flex2 {
  gap: 40px;
  position: relative;
}
.producttrongright {
  width: 100%;
}
.grid-pro-detail {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

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

.left-pro-detail .overflow-hidden {
  width: fit-content;
  margin: auto;
  border: 1px solid rgb(207, 207, 207);
}

.grid-pro-detail .right-pro-detail {
  width: 60%;
  padding-top: 10px;
}
.news-left .title-detail h1 {
  font-size: 25px;
  color: var(--color-main);
  /* background: linear-gradient(
    to right,
    #a97514,
    #fde386,
    #a97514,
    #fde386,
    #a97514
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content; */
  text-align: center;
  text-transform: uppercase;
  font-family: "League";
  padding: 0px;
  margin: auto;
}
.right-pro-detail .title-detail h1 {
  font-size: 25px;
  color: var(--color-main);
  /* background: linear-gradient(
    to right,
    #a97514,
    #fde386,
    #a97514,
    #fde386,
    #a97514
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content; */
  text-transform: uppercase;
  font-family: "League";
  text-align: left;
  padding: 0px;
  margin: auto;
}

.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;
}
.right-pro-detail .prodetail-desc {
  margin-top: 15px;
}
.attr-content-pro-detail p {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}
.price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: red;
}
.price-old-pro-detail {
  font-weight: 500;
  text-decoration: line-through;
  font-size: 18px;
  color: #666666;
}

.tabs-pro-detail .tab-content {
  border: 1px solid #ddd;
  border-top: none;
  padding: 20px;
}
.nav-tabs li a {
  text-transform: uppercase;
  font-weight: 500;
  color: #000000;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  color: var(--color-main);
}
.prodetail-desc p {
  font-family: "SVN";
}
.content-text p {
  font-family: "SVN";
}
/* css block actions  */
.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 */
.modal-detail::-webkit-scrollbar {
  width: 10px;
}
.modal-detail::-webkit-scrollbar-thumb {
  width: 10px;
  background: #4d90e0;
  border-radius: 10px;
  height: 50px;
}
.modal-detail {
  position: fixed;
  z-index: 999;
  background: #000000c4;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.content-modal-detail {
  background: #fff;
  max-width: 1200px;
  margin: 0px auto;
  min-height: 100vh;
}
.content-modal-detail .tabs {
  display: flex;
  cursor: pointer;
  padding: 0;
  list-style: none;
  justify-content: center;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0px;
  background: #fff;
  z-index: 99;
}
.content-modal-detail .tabs li {
  padding: 20px 20px;
  margin-right: 5px;
  font-weight: bold;
  position: relative;
  border-bottom: 4px solid #fff;
}
.content-modal-detail .tabs li.active {
  color: #2d9cdb;
  border-bottom: 4px solid #2d9cdb;
}
.content-modal-detail .tab-content {
  padding: 20px;
  max-width: 900px;
  margin: 0px auto;
}
.content-modal-detail .tab-content.active {
  display: block;
}

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

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

.btn-closemenu::before {
  transform: rotate(45deg);
}
.btn-closemenu::after {
  transform: rotate(-45deg);
}
.btn-closemenu::before,
.btn-closemenu::after {
  background-color: #333;
  content: "";
  left: 13px;
  height: 14px;
  position: absolute;
  top: 10px;
  width: 1px;
}
.cursor-pointer {
  cursor: pointer;
}

/* Contact */
.contact-map {
  position: relative;
  height: 500px;
  margin-top: 30px;
}
.contact-map iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.frm_contact {
  border: 1px solid #ddd;
  padding: 30px;
}
/*  breadCrumbs */
.breadCrumbs {
  padding: 10px 0px;
  background: #ddd;
}
.breadCrumbschinhsach .breadcrumb-item + .breadcrumb-item {
  display: none;
}
.breadCrumbschinhsach .breadcrumb-item + .breadcrumb-item.active {
  display: block;
}
.breadCrumbs ol {
  margin: 0px;
}
.breadCrumbs ol li a {
  font-family: "SF";
  color: #333;
}
.breadCrumbs ol li a:hover {
  color: var(--color-main);
}

/* paging */
.paging-product {
  position: relative;
}
.pagination {
  margin: 20px 0px;
}
.pagination li span {
  cursor: pointer;
}

.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1182fc;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-frame i img {
  vertical-align: middle;
  width: 100%;
}
.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: #1182fc;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  animation-name: pulse;
}

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

/* scrollToTop */
.scrollToTop {
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: bold;
  color: #444;
  text-decoration: none;
  position: fixed;
  bottom: 65px;
  right: 25px;
  display: none;
  z-index: 10;
  cursor: pointer;
}

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

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

/* CSSS T */

a.views_dm {
  width: 140px;
  height: 38px;
}
.effect_button {
  transform-style: preserve-3d;
  transform: translateZ(-25px);
  transition: transform 0.25s;
  position: relative;
  display: inline-flex;
  z-index: 1;
}
.effect_button:after,
.effect_button:before {
  position: absolute;
  content: "xem thêm";
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f00;
  box-sizing: border-box;
  border-radius: 5px;
  z-index: -1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
}
.effect_button:before {
  color: #fff;
  background: #f00;
  transform: rotateY(0deg) translateZ(25px);
}
.effect_button:after {
  color: #f00;
  transform: rotateX(90deg) translateZ(25px);
}
.effect_button:hover {
  transform: translateZ(-25px) rotateX(-90deg);
}

/* News */
.grid-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-newschungtoi {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.grid-newsduan {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.grid-newsalbum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-newstt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 1px;
}

.grid-newssp {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.news-left .grid-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.item-news a img {
  transition: transform 0.5s ease;
}
.item-news {
  --tw-bg-opacity: 1;
  background-color: white;
  padding: 0;
  /* box-shadow: 0px 0px 5px rgb(0 0 0 / 19%); */
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  /* border-radius: 10px; */
}
.item-newsdv {
  /* box-shadow: 0px 0px 5px rgb(0 0 0 / 19%); */
  position: relative;
  cursor: pointer;
  height: fit-content;
}
.item-newsdv .item-imgdv img {
  height: 100%;
}
.grid-duan .item-newsdv:nth-child(2) .item-imgdv,
.grid-duan .item-newsdv:nth-child(3) .item-imgdv,
.grid-duan .item-newsdv:nth-child(6) .item-imgdv,
.grid-duan .item-newsdv:nth-child(7) .item-imgdv {
  height: 217px;
}
.grid-duan .item-newsdv:nth-child(2) .item-imgdv img,
.grid-duan .item-newsdv:nth-child(3) .item-imgdv img,
.grid-duan .item-newsdv:nth-child(6) .item-imgdv img,
.grid-duan .item-newsdv:nth-child(7) .item-imgdv img {
  height: 217px;
}

.item-imgdv {
  position: relative;
  height: 380px;
}

.photo-default {
  opacity: 1;
}

.photo-hover {
  opacity: 0;
}

.item-imgdv:hover .photo-default {
  opacity: 0;
}

.item-imgdv:hover .photo-hover {
  opacity: 1;
}

/* .item-news:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0px 0px 10px rgb(0 0 0 / 19%);
} */

.item-news .ds-news {
  width: 100%;
  padding: 10px;
}

.ds-news span {
  display: block;
  line-height: 25px;
  color: #999;
  font-size: 12px;
  margin: 10px 0px 0px;
  /* font-style: italic; */
  font-family: "SF";
  color: #1e2229;
  padding: 5px 0px;
  font-style: normal;
  margin: 0;
  display: flex;
  gap: 7px;
  align-items: center;
}

.ds-news h3 {
  font-family: "SF-Bold";
  font-size: 15px;
  margin: 0;
  color: #222222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.item-news-all:hover h3 {
  color: var(--color-main);
}
.ds-news .desc_cke {
  font-family: "SF";
  font-size: 15px;
  color: #333333;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}
.ds-news .desc {
  font-family: "SF";
  font-size: 15px;
  color: #333333;
  line-height: 2;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}

.item-news:hover h3 {
  color: #f00;
}

.item-news-all a {
  display: flex;
  justify-content: space-between;
}
.item-news-all a .ds-news {
  width: calc(100% - 110px);
}

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

.news-left {
  width: 68%;
}
.news-right {
  position: sticky;
  top: 20px;
  width: 30%;
  background: #f1f1f1cc;
  padding: 20px;
  box-shadow: 0px 0px 5px #99999978;
}

a.btn_link {
  position: relative;
  margin: 5px;
  height: 36px;
  width: 140px;
}

.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before {
  content: "facebook";
}
.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before,
.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(0 165 217 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 165 217 / var(--tw-bg-opacity));
}
.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
  content: "google map";
}
div.slick.in-page:not(.slick-initialized) {
  display: flex;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}
.attr-pro-detail {
  margin: auto;
  padding: 0;
}
.baonoidung iframe {
  max-width: 100% !important;
}
.baonoidung img {
  height: auto !important;
}
.baonoidung * {
  max-width: 100% !important;
}
.baonoidung table {
  display: block;
  overflow-y: auto;
}
div.desc-pro-detail ul li {
  margin-bottom: 0.75rem;
  list-style-type: circle;
}
div.desc-pro-detail ul li:last-child {
  margin-bottom: 0 !important;
}
div.baonoidung ul li {
  margin-bottom: 0.75rem;
  list-style-type: disc;
}
div.baonoidung ol li {
  margin-bottom: 0.75rem;
  list-style-type: decimal;
}

.color-pro-detail.active,
.size-pro-detail.active,
.size-pro-detail:hover {
  color: #fff !important;
  background: #232323;
}
.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-right: 20px;
  font-weight: 500;
}
.quantity-pro-detail span {
  line-height: 40px;
  padding: 0;
  width: 30px;
  height: 40px;
  color: #000;
  cursor: pointer;
  font-size: 22px;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0;
}
.quantity-pro-detail input {
  height: 40px;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 20px;
  padding: 5px;
  font-weight: 700;
}
.cart-pro-detail {
  /* margin-bottom: 1rem; */
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
}
.cart-pro-detail a {
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px !important;
  font-weight: bold;
  margin-right: 0 !important;
}
/* .cart-pro-detail a.addnow {
  margin-right: 0px;
  color: #fff;
  border-radius: 5px;
  padding: 0;
  background-color: transparent !important;
  border: none;
} */
.cart-pro-detail a.addnow:hover {
  background-color: #f00;
  color: var(--color-hover);
}
.cart-pro-detail a.buynow {
  background-color: #000;
}
.cart-pro-detail a.buynow:hover {
  background-color: #f00;
  color: var(--color-hover);
}
.cart-pro-detail a i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}

/* Swipper */

.swiper .swiper-wrapper {
  width: inherit;
  height: inherit;
}
.swiper.swiper-initialized .swiper-wrapper {
  margin: 0;
  width: 100%;
  height: 100%;
}
.swiper.swiper-initialized .swiper-slide {
  padding: 0;
  margin: 0px;
  overflow: hidden;
}

/* Popup */
.modal-title {
  font-family: "SVN-SemiBold";
  font-size: 20px;
}
/* CSS cho loading */
.loading-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loading {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 5px solid #3498db;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes quickShow {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.nav-click {
  position: relative;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
  /* margin: auto; */
  border: 2px solid white;
  border-radius: 20px;
  padding: 10px 20px 10px 10px;
}

.nav-click .line {
  top: 50%;
  width: 100%;
}

.nav-click .block {
  width: 140%;
  height: 120%;
  position: absolute;
  left: -20%;
  top: -10%;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  z-index: 1;
}

.open-click.nav-click:before {
  transform: rotate(45deg) scale(0.7);
  width: 35px;
}

.open-click .block,
.open-click .line {
  opacity: 0;
}

.open-click.nav-click:after {
  transform: rotate(-45deg) scale(0.7);
  width: 35px;
}

.open-click:hover::after {
  transform: rotate(-45deg) scale(1);
  transition: 0.3s linear;
}

.open-click:hover::before {
  transform: rotate(45deg) scale(1);
  transition: 0.3s linear;
}

.nav-click .line,
.nav-click:after,
.nav-click:before {
  position: absolute;
  left: 12%;
  height: 1px;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.nav-click:after {
  transform: translate(0, 10px);
}

.nav-click:before {
  transform: translate(0, -10px);
}

.nav-click:after,
.nav-click:before {
  content: "";
  top: 50%;
  /* left: 12%; */
  width: 100%;
  pointer-events: none;
  transform-origin: 50% 50%;
  transition: all 0.5s;
}

.nav-click .line,
.nav-click:after,
.nav-click:before {
  background-color: #ffffff;
  box-shadow: 1px 2px 0 rgb(0 0 0 / 50%);
}
.nav-click:before {
  width: 28px;
}
.nav-click .line {
  width: 25px;
}
.nav-click:after {
  width: 23px;
}
.nav-click p {
  width: fit-content;
  margin-left: 37px;
  margin-bottom: 5px;
  font-family: "Fz-SemiBold";
  color: white;
  font-size: 14px;
}

.nav-click:not(.open-click):hover .line {
  animation: changewidth 0.4s linear 4 alternate;
  animation-delay: 0.3s;
}

.nav-click:not(.open-click):hover:after,
.nav-click:not(.open-click):hover:before {
  animation: changewidth 0.4s linear 4 alternate;
}

.nav-click:not(.open-click):hover:after {
  animation-delay: 0.6s;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.open-nav {
  pointer-events: auto;
  opacity: 1;
  z-index: 99;
}

.nav-click-close {
  position: absolute;
  top: 67px;
  right: 131px;
  z-index: 1101;
  cursor: pointer;
  color: #fff !important;
  font-size: 2rem;
  text-shadow: 1px 1px 1px #000;
}

.menu-show {
  max-width: 1200px;
  width: calc(100% - 20px);
  margin: auto;
  z-index: 100;
  text-align: right;
  position: relative;
  margin-top: 70px;
  height: 100%;
  max-height: 500px;
}

.menu-main {
  height: 100%;
}

.menu-show ul {
  display: inline-flex;
  min-width: 200px;
  padding: 40px 0px 0px 0px;
  flex-direction: column;
  justify-content: space-around;
}

.menu-show ul li {
  width: 100%;
  height: auto;
  padding: 20px 30px 0px 0px;
  text-align: right;
  list-style: none;
  position: relative;
  display: block;
}

.menu-show ul li a {
  color: #fff;
  font-size: 18px;
  text-shadow: 1px 1px 1px #000;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-family: "Fz-SemiBold";
  color: white;
}
.menu-show ul li a:hover {
  color: var(--color-main);
}

.menu-show ul li span.btn_menu-show {
  display: inline-block;
  color: #fff;
  width: 20px;
  height: 25px;
  cursor: pointer;
  position: relative;
  top: 0px;
  text-shadow: 1px 1px 1px #000;
  font-size: 13px;
  text-align: center;
  right: 5px;
}

.menu-show ul li ul {
  display: block;
  min-width: 200px;
  margin: 0;
  top: 0 !important;
  padding: 0;
  position: absolute;
  min-width: 100%;
  right: 100%;
  transform: rotateY(-90deg);
  transform-origin: right;
}

.menu-show ul li ul li {
  margin: 0;
}

.menu-show ul li ul li a {
  font-size: 1.25rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  display: block;
  text-shadow: 1px 1px 1px #000;
  color: white;
  /* padding: 10px 10px; */
}

.menu-show ul li:hover > ul {
  opacity: 1;
  height: auto !important;
  transform: rotateY(0deg);
}

.svg-menu {
  height: 100%;
  pointer-events: none;
  z-index: -1;
  position: fixed;
}

#scene,
.svg-menu {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.style-1 {
  --color-stop: var(--background-static);
}

.gradient {
  transform-origin: center center;
}

.gradient path {
  fill: url(#ColorGradient);
}

.gradient path:first-of-type {
  fill-opacity: 0.7;
  transform-origin: top right;
  transform: translate(50%, -180%);
}

.gradient path:nth-of-type(2) {
  fill-opacity: 0.3;
  transform-origin: center left;
  transform: translate(50%, -100%);
}

.gradient path:nth-of-type(3) {
  fill-opacity: 0.4;
  transform-origin: center left;
  transform: translate(50%, -50%);
}

.gradient path:nth-of-type(4) {
  fill-opacity: 0.5;
  transform-origin: top right;
  transform: translate(50%, -50%);
}

.gradient path:nth-of-type(5) {
  fill-opacity: 0.6;
  transform-origin: top right;
  transform: translate(100%, -50%);
}

.box-product {
  /* position: relative;
  margin-bottom: 20px; */
  overflow: hidden;
  border-radius: 10px;
}
.box-product:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  /* background: linear-gradient(180deg, rgba(34, 34, 34, 0) 56.64%, #222 100%),
    transparent; */
  pointer-events: none;
}
.hover {
  position: relative;
  perspective: 400px;
}
.info_pro {
  display: flex;
  position: absolute;
  top: -1px;
  height: 100%;
  width: 100%;
  text-align: left;
  border-radius: 10px;
  background: linear-gradient(180deg, rgb(0 0 0 / 59%) 0%, #000000 100%);
  color: #fff;
  padding: 20px;
  flex-flow: column;
  justify-content: center;
  pointer-events: none; /* display: none; */
}
.info_pro h3 a {
  font-family: "SVN-Bold";
  font-size: 16px;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.hover .info_pro {
  transform: translate3d(0, -100%, 0);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hover.mouseenter.top {
  perspective-origin: center top;
}
.hover.mouseenter.top .info_pro {
  animation-name: swing--enter-top;
  transform-origin: center top;
}
.hover.mouseenter.right {
  perspective-origin: right center;
}
.hover.mouseenter.right .info_pro {
  animation-name: swing--enter-right;
  transform-origin: right center;
}
.hover.mouseenter.bottom {
  perspective-origin: center bottom;
}
.hover.mouseenter.bottom .info_pro {
  animation-name: swing--enter-bottom;
  transform-origin: center bottom;
}
.hover.mouseenter.left {
  perspective-origin: left center;
}
.hover.mouseenter.left .info_pro {
  animation-name: swing--enter-left;
  transform-origin: left center;
}
.hover.mouseleave.top {
  perspective-origin: center top;
}
.hover.mouseleave.top .info_pro {
  animation-name: swing--leave-top;
  transform-origin: center top;
}
.hover.mouseleave.right {
  perspective-origin: right center;
}
.hover.mouseleave.right .info_pro {
  animation-name: swing--leave-right;
  transform-origin: right center;
}
.hover.mouseleave.bottom {
  perspective-origin: center bottom;
}
.hover.mouseleave.bottom .info_pro {
  animation-name: swing--leave-bottom;
  transform-origin: center bottom;
}
.hover.mouseleave.left {
  perspective-origin: left center;
}
.hover.mouseleave.left .info_pro {
  animation-name: swing--leave-left;
  transform-origin: left center;
}
@keyframes swing--enter-top {
  0% {
    transform: rotate3d(-1, 0, 0, 90deg);
  }
  100% {
    transform: none;
  }
}
@keyframes swing--enter-right {
  0% {
    transform: rotate3d(0, -1, 0, 90deg);
  }
  100% {
    transform: none;
  }
}
@keyframes swing--enter-bottom {
  0% {
    transform: rotate3d(1, 0, 0, 90deg);
  }
  100% {
    transform: none;
  }
}
@keyframes swing--enter-left {
  0% {
    transform: rotate3d(0, 1, 0, 90deg);
  }
  100% {
    transform: none;
  }
}
@keyframes swing--leave-top {
  0% {
    transform: none;
  }
  100% {
    transform: rotate3d(-1, 0, 0, 90deg);
  }
}
@keyframes swing--leave-right {
  0% {
    transform: none;
  }
  100% {
    transform: rotate3d(0, -1, 0, 90deg);
  }
}
@keyframes swing--leave-bottom {
  0% {
    transform: none;
  }
  100% {
    transform: rotate3d(1, 0, 0, 90deg);
  }
}
@keyframes swing--leave-left {
  0% {
    transform: none;
  }
  100% {
    transform: rotate3d(0, 1, 0, 90deg);
  }
}

.albumcontainer {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  perspective: 2000px;
  height: 400px;
}

.album-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 1;
}
.albumcontainer img {
  user-drag: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  pointer-events: none;
}
/* Trung tâm */
.album-item.active {
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
  z-index: 5;
  opacity: 1;
  width: 700px;
  border-radius: 30px;
}
.album-item.active img {
  border-radius: 30px;
}
.album-item {
  border-radius: 20px;
}
.album-item img {
  border-radius: 20px;
}

/* Bên trái gần */
.album-item.left1 {
  transform: translate(calc(-86% - 20px), -50%) scale(0.85) rotateY(40deg);
  z-index: 4;
  opacity: 1;
}

/* Bên phải gần */
.album-item.right1 {
  transform: translate(calc(-15% + 25px), -50%) scale(0.85) rotateY(-40deg);
  z-index: 4;
  opacity: 1;
}

/* Bên trái xa */
.album-item.left2 {
  transform: translate(calc(-113% - 40px), -50%) scale(0.65) rotateY(40deg);
  z-index: 3;
  opacity: 1;
}

/* Bên phải xa */
.album-item.right2 {
  transform: translate(calc(7% + 40px), -50%) scale(0.65) rotateY(-40deg);
  z-index: 3;
  opacity: 1;
}
