@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-animation {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  10% {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.6, 1.6, 1.6);
    opacity: 0;
  }
}
@keyframes border-animation {
  0% {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0;
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.4, 1.4, 1.4);
    opacity: 0;
  }
}
@font-face {
  font-family: "SVN-Poppins";
  src: url(../fonts/SVN-Poppins-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "SVN-Poppins";
  src: url(../fonts/SVN-Poppins-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "SVN-Poppins";
  src: url(../fonts/SVN-Poppins-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "SVN-Poppins";
  src: url(../fonts/SVN-Poppins\ Regular.ttf);
  font-weight: 400;
}
.padding-main {
  padding: 80px 0;
}

.padding-top-main {
  padding: 80px 0 0 0;
}

.padding-bottom-main {
  padding: 0px 0 80px 0;
}

@media (width < 1001px) {
  .padding-bottom-main {
    padding: 0px 0 20px 0;
  }
  .padding-main {
    padding: 20px 0;
  }
  .padding-top-main {
    padding: 20px 0 0 0;
  }
}
.noIndex {
  position: unset;
  background-color: rgba(0, 0, 0, 0.474);
}

.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999 !important;
}
/* .fixed.wrap-header {
  background: unset;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.166);
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  min-height: unset;
} */
.fixed.wrap-header {
  background: unset;
  background-color: #1213187d !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.166);
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  min-height: unset;
}
.fixed .logo-header {
  zoom: 0.5;
}
/* .fixed.wrap-header * {
  color: black;
}
.fixed.wrap-header svg {
  color: black !important;
}
.fixed.wrap-header img {
  filter: invert(1);
}

.fixed .logo-header img {
  filter: invert(0);
}
.fixed .header-translate img {
  filter: invert(0);
} */

.ringring {
  animation: coccoc-alo-circle-img-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
}

@keyframes coccoc-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes coccoc-alo-circle-anim {
  0% {
    transform: rotate(0) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
.hover-img {
  position: relative;
  overflow: hidden;
  display: block;
}
.hover-img:before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  transform: rotate(90deg);
  -khtml-opacity: 1;
  -o-opacity: 1;
  -ms-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 3;
}
.hover-img:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  position: absolute;
  transform: rotate(90deg);
  -khtml-opacity: 1;
  -o-opacity: 1;
  -ms-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 2;
}

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

.hover-box:hover {
  transition: 0.4s;
}
.hover-box:hover .hover-name {
  transition: 0.4s;
  color: var(--color-hover);
}
.hover-box:hover .hover-name * {
  transition: 0.4s;
  color: var(--color-hover);
}
.hover-box:hover > .hover-info .hover-name {
  transition: 0.4s;
  color: var(--color-hover);
}
.hover-box:hover > .hover-info .hover-name * {
  transition: 0.4s;
  color: var(--color-hover);
}

:root {
  --color-main: #a60000;
  --color-social: #bfab87;
  --color-hover: #bfab87;
  --color-text: #bfab87;
  --data-speed: 6000ms;
  --color-white: #fff;
  --color-highlight: #a60000;
  --color-black: #000;
  --color-main-dark: #292929;
  --color-normal: #858585;
  --color-normal-light: #adadad;
  --color-normal-dark: #58595b;
  --color-highlight: #950000;
  --color-highlight-light: #a70505;
  --color-white: #fff;
  --color-red: #c25757;
  --color-black: #333;
  --color-grey: #7c7c7c;
  --color-grey-light: #e3e3e3;
  --color-light: #c0c0c0;
  --color-white-grey: #f7f7f7;
  --color-bg: #ebebeb;
  --color-bg-grey: #f1f0e8;
  --color-bg-black: #000;
  --color-bg-blue: #1a3789;
  --color-bg-white: #fff;
  --color-bg-red: #c25757;
  --color-white-alpha: rgba(255, 255, 255, 0.5);
  --color-black-alpha: rgba(0, 0, 0, 0.5);
  --color-white-zero: rgba(255, 255, 255, 0);
  --color-white-alpha-01: rgba(255, 255, 255, 0.1);
  --color-white-alpha-02: rgba(255, 255, 255, 0.2);
  --color-white-alpha-03: rgba(255, 255, 255, 0.3);
  --color-white-alpha-04: rgba(255, 255, 255, 0.4);
  --color-white-alpha-05: rgba(255, 255, 255, 0.5);
  --color-white-alpha-06: rgba(255, 255, 255, 0.6);
  --color-white-alpha-07: rgba(255, 255, 255, 0.7);
  --color-white-alpha-08: rgba(255, 255, 255, 0.8);
  --color-white-alpha-09: rgba(255, 255, 255, 0.9);
  --color-black-zero: rgba(0, 0, 0, 0);
  --color-black-alpha-005: rgba(0, 0, 0, 0.05);
  --color-black-alpha-01: rgba(0, 0, 0, 0.1);
  --color-black-alpha-02: rgba(0, 0, 0, 0.2);
  --color-black-alpha-03: rgba(0, 0, 0, 0.3);
  --color-black-alpha-04: rgba(0, 0, 0, 0.4);
  --color-black-alpha-05: rgba(0, 0, 0, 0.5);
  --color-black-alpha-06: rgba(0, 0, 0, 0.6);
  --color-black-alpha-07: rgba(0, 0, 0, 0.7);
  --color-black-alpha-08: rgba(0, 0, 0, 0.8);
  --color-black-alpha-09: rgba(0, 0, 0, 0.9);
}
html {
  scroll-behavior: smooth;
}

body {
  top: 0 !important;
  overflow-x: hidden;
  font-size: 14px;
  font-family: "SVN-Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  background: var(--nhan-1, #f5f5dc);
}

.max-width,
.wrap-content {
  width: 100%;
  padding: 0 15px;
  max-width: 1530px;
  margin: 0px auto;
}

.wrap-content-2 {
  width: 100%;
  padding: 0 15px;
  max-width: 1920px;
  margin: 0px auto;
}

img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

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

.scale-img {
  overflow: hidden;
}
.scale-img img,
.scale-img picture {
  transition: all 0.5s;
}
.scale-img:hover > img,
.scale-img:hover > picture {
  transform: scale(1.2, 1.2);
}

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

/* Transition All */
.transition,
.btn-frame .kenit-alo-circle-fill,
.control-owl button,
.carousel-comment-media .carousel-control a span {
  transition: 0.3s all;
}

.scale-img img,
.scale-img:hover > img {
  transition: 0.3s all;
}

/*   Header  */
.wrap-header {
  z-index: 99999999999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  min-height: 320px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.wrap-header.noIndex {
  min-height: unset;
  background-color: #f5f5dc;
}

.header {
  padding: 0 30px;
}
.header svg {
  color: #f5f5dc;
}
.header .header-left,
.header .header-right {
  position: relative;
  z-index: 123;
  width: 15%;
}
.header .header-left .header-menu {
  color: var(--nhan-1, #f5f5dc);
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header .header-left .header-menu .menu-header {
  cursor: pointer;
}
.header .header-left .header-menu .menu-header svg * {
  transition: all 0.3s ease;
}
.header .header-left .header-menu .menu-header.active path {
  transform-box: fill-box;
  transform-origin: center;
}
.header .header-left .header-menu .menu-header.active.active .top {
  transform: translateY(6px) rotate(45deg);
}
.header .header-left .header-menu .menu-header.active.active .bottom {
  transform: translateY(-6px) rotate(-45deg);
}
.header .header-left .header-menu .menu-header.active.active .middle {
  opacity: 0;
}
.header .flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-header {
  cursor: pointer;
}
.menu-header svg * {
  transition: all 0.3s ease;
}
.menu-header.active path {
  transform-box: fill-box;
  transform-origin: center;
}
.menu-header.active.active .top {
  transform: translateY(6px) rotate(45deg);
}
.menu-header.active.active .bottom {
  transform: translateY(-6px) rotate(-45deg);
}
.menu-header.active.active .middle {
  opacity: 0;
}

/* Menu loader */
.menu-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 0 100% 100% 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999999999999;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.menu-loader .menu-loader-detail {
  background-color: black;
  height: 100%;
  background: url(../images/TempImages/img-menu-left.jpg) no-repeat center/cover;
  position: relative;
}
.menu-loader .menu-loader-detail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
}
.menu-loader-detail-2 {
  position: relative;
  z-index: 2;
}
.menu-loader .menu-loader-detail .menu-loader-detail-list {
  opacity: 0;
}
.menu-loader .menu-loader-detail a {
  display: block;
  padding: 10px 0;
  font-size: clamp(14px, 2.0325203252vw, 25px);
  color: white;
  text-transform: capitalize;
}

.menu-loader .menu-loader-detail .chuppy a {
  display: block;
  padding: 10px 0;
  font-size: clamp(24px, 2.0325203252vw, 3vw);
  color: white;
  font-weight: 700;
  text-transform: capitalize;
}
.menu-loader .menu-loader-detail .group:hover a {
  color: var(--color-hover);
}
.menu-loader.active {
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 1;
}
.menu-loader.active .menu-loader-detail .menu-loader-detail-list {
  opacity: 1;
  transition: all 0.3s ease;
  transition-delay: 0.5s;
}

.menu-loader-detail-cat {
  background: url(../images/TempImages/thom4.svg) no-repeat center/cover;
  padding: 40px;
}

.sub-menu {
  left: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  list-style-type: circle;
  padding: 0;
  margin: 0;
}
.sub-menu li {
  margin-bottom: 10px;
}
.sub-menu li a {
  display: block;
  padding: 10px 0;
  font-size: clamp(14px, 2.0325203252vw, 25px);
  color: black;
  text-transform: capitalize;
}
.sub-menu li:hover a {
  color: var(--color-hover);
}

/* slideshow */
.slideshow {
  position: relative;
}
.slideshow .title-slide-inner {
  z-index: 2;
  position: absolute;
  bottom: 0;
  padding: 10% 0 3% 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slideshow .title-slide-inner h1 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: clamp(30px, 4.0650406504vw, 50px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/* Search */
.search {
  border-radius: 30px;
  background: #f2f2f2;
  padding: 5px 15px;
  width: 205px;
}
.search button {
  border-radius: 0px 5px 5px 0px !important;
}
.search i {
  font-size: 22px;
  font-weight: 400;
  color: black;
}
.search input {
  border-radius: 5px 0px 0px 5px !important;
  border: unset !important;
  background-color: unset;
}
.search input::-moz-placeholder {
  color: #313131;
}
.search input::placeholder {
  color: #313131;
}

.li-tim {
  position: relative;
}

.search-btn {
  width: 0px;
  background: #ffffff;
  position: absolute;
  top: 100%;
  opacity: 0;
  box-shadow: 0px 0px 4px #ccc;
  border-radius: 200px !important;
  overflow: hidden;
  right: 0;
  background: #ffffff;
}
.search-btn button {
  border-radius: 0px 5px 5px 0px !important;
}
.search-btn input {
  border-radius: 5px 0px 0px 5px !important;
  border: unset !important;
  background-color: unset;
}
.search-btn input::-moz-placeholder {
  color: #313131;
}
.search-btn input::placeholder {
  color: #313131;
}

.box-search {
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.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;
}

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

/* Mmenu */
.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow: scroll;
}
.offcanvas-body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #0d6efd;
  border-radius: 5px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.offcanvas-body::-webkit-scrollbar-track {
  background: #fff;
  width: 4px;
  height: 4px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

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

.menu-mobile ul {
  padding: 0px;
}
.menu-mobile ul li {
  position: relative;
}
.menu-mobile ul li > span i {
  transition: transform 0.3s ease;
  /* Adjust duration and easing as needed */
}
.menu-mobile ul li a {
  display: block;
  padding-right: 30px;
  color: #333;
  font-size: 15px;
  padding: 10px 0px;
  border-bottom: 1px solid #f1f1f1;
}
.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-hover);
}
.menu-mobile ul li .scroll {
  position: absolute;
  right: 0px;
  top: 9px;
  background: var(--color-main);
  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: var(--color-main);
}
.menu-mobile ul li ul {
  padding-left: 10px;
}

/* .menu-mobile ul li:last-child a{
	  border-bottom: none;
  } */
.company {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 10px;
}
.company p {
  margin-bottom: 5px;
  font-size: 13px;
}
.company p span {
  color: var(--color-main);
}

.head-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.head-menu img {
  max-width: 80px;
}

.search-menu {
  width: 100%;
  position: relative;
  margin: 10px 0px;
}
.search-menu input {
  width: 100%;
  background: #f5f5fa;
  border: 1px solid #f1f1f1;
  height: 40px !important;
  font-size: 13px;
}
.search-menu p {
  position: absolute;
  right: 10px;
  bottom: 8px;
}

/* Menu */
#menu {
  display: none;
}

#hamburger {
  display: none;
  width: 35px;
  height: 23px;
  position: relative;
  cursor: pointer;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
  background: #ffffff;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
}
#hamburger:before {
  top: 0px;
}
#hamburger span {
  top: 10px;
}
#hamburger:after {
  top: 20px;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
  transition: none 0.5s ease 0.5s;
  transition-property: transform, top, bottom, left, opacity;
}

.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
  top: 10px;
}
.mm-wrapper_opening #hamburger span {
  left: -50px;
  opacity: 0;
}
.mm-wrapper_opening #hamburger:before {
  transform: rotate(45deg);
}
.mm-wrapper_opening #hamburger:after {
  transform: rotate(-45deg);
}

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

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

.wrap-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1215686275);
}

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

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

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

/* Config */
.title-main,
.title-detail {
  margin-bottom: 1.5rem;
  position: relative;
}
.title-main *,
.title-detail * {
  color: var(--chudao, #bfab87);
  font-family: Montserrat;
  font-size: clamp(20px, 4.4715447154vw, 55px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.title-detail {
  text-align: center;
  display: block;
}

.title-news {
  margin-bottom: 1.5rem;
  position: relative;
}
.title-news * {
  color: var(--chudao, #bfab87);
  font-family: Montserrat;
  font-size: clamp(20px, 2.4390243902vw, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.slogan-main {
  color: var(--bg, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.box-title-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.box-title-main * {
  margin-bottom: 0;
}
.box-title-main.title-white * {
  color: #f5f5dc !important;
}
.box-title-main.title-white-true * {
  color: white !important;
}

.title-cat-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.title-cat-main span {
  display: block;
  color: #999;
  background: linear-gradient(64.85deg, #fca600 23.67%, #ffd41d 106.12%);
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.title-cat-main span:hover,
.title-cat-main span.active {
  background: linear-gradient(64.85deg, #ffd41d 23.67%, #fca600 106.12%);
  color: #000;
}

.content-main a {
  display: inline-block;
}
.content-main ul {
  list-style: disc;
  padding-left: 20px;
}

.header-mobile {
  display: none;
}

/* Color paging */
.pagination .page-item .page-link {
  color: var(--color-main);
}
.pagination .page-item.active .page-link {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
  color: white;
}
.pagination .page-item:hover .page-link {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
  color: white;
}

/* News */
.grid-tintuc {
  display: flex;
  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 var(--color-hover);
  color: var(--color-hover);
}

.name-news {
  color: #1b1b1b;
  font-size: 18px;
  line-height: 22px;
  max-height: 40px;
  -webkit-line-clamp: 2 !important;
  font-weight: 400;
}

a.name-news.name1 {
  font-size: 25px;
  line-height: 32px;
  max-height: 64px;
}

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

.time-news {
  color: var(--color-hover);
  margin-bottom: 0px;
  font-size: 12px;
  margin: 7px 0;
  font-style: italic;
  font-weight: 500;
}

.desc-news {
  color: #333333;
  margin: 0px;
}

.share {
  padding: 17px 10px 10px 10px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  margin-top: 15px;
  border-radius: 5px;
}
.share b {
  display: block;
  margin-bottom: 5px;
}

.othernews b {
  margin-bottom: 10px;
}

.list-news-other {
  padding-left: 17px;
  list-style: square;
}
.list-news-other li {
  margin-bottom: 2px;
}
.list-news-other li a {
  text-transform: none;
  color: #333333;
}
.list-news-other li a:hover {
  color: var(--color-hover);
}

/* News mix */
.wrap-news-mix {
  background: linear-gradient(to right, #ffffff 50%, #f5f5dc 50%);
}
.wrap-news-mix .left,
.wrap-news-mix .right {
  padding: 40px;
}
.wrap-news-mix .item .pic {
  border-radius: 10px;
  overflow: hidden;
}
.wrap-news-mix .item .info .date {
  color: #939393;
  font-family: SVN-Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.wrap-news-mix .item .info .name {
  color: #282828;
  font-family: SVN-Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.wrap-news-mix .item .info .desc {
  color: #4d4d4d;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 185.714% */
}

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

/* News home */
.wrap-mix-news-form .title-home {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.wrap-mix-news-form .title-home a {
  color: var(--Text, #222);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.wrap-mix-news-form .news-home .img {
  border-radius: 10px;
  overflow: hidden;
}
.wrap-mix-news-form .news-home .info .name {
  margin: 5px 0;
  color: var(--Text, #222);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}
.wrap-mix-news-form .news-home .info .desc {
  color: var(--Text, #222);
  text-align: justify;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}
.wrap-mix-news-form .news-home-right .item .img {
  border-radius: 10px;
  overflow: hidden;
}
.wrap-mix-news-form .news-home-right .item .info .date {
  color: var(--Ph, #9470dc);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 175% */
  text-transform: lowercase;
}
.wrap-mix-news-form .news-home-right .item .info .name {
  color: var(--Text, #222);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 166.667% */
  text-transform: capitalize;
}

/* Criteria */
.wrap-criteria {
  background: url(../images/TempImages/bg-criteria.png) no-repeat center/cover;
}
.wrap-criteria .item {
  display: flex;
  gap: 15px;
  justify-content: start;
  align-items: center;
}
.wrap-criteria .pic {
  width: 175px;
  height: 175px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: SVN-Poppins;
  font-size: 85px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.wrap-criteria .pic span {
  margin-bottom: -15px;
}
.wrap-criteria .info .name {
  color: #fff;
  font-family: SVN-Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wrap-criteria .info .desc {
  color: #fff;
  font-family: SVN-Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/* News demo 1 */
.wrap-blogs {
  background: var(--color-main);
}
.wrap-blogs .item {
  border-radius: 10px;
  border: 1px solid rgba(218, 248, 255, 0.5);
  background: rgba(217, 217, 217, 0);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  overflow: hidden;
}
.wrap-blogs .item .pic {
  border-radius: 10px;
  overflow: hidden;
}
.wrap-blogs .item .info {
  padding: 20px;
}
.wrap-blogs .item .info .name {
  color: var(--bg, #fff);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.wrap-blogs .swiper-pagination {
  top: 100% !important;
}
.wrap-blogs .swiper-pagination-bullet {
  width: 40px !important;
  border-radius: 200px;
}
.wrap-blogs .swiper-pagination-bullet-active {
  background-color: #fff;
}

/* Form  */
.frm_newsletter {
  z-index: 10;
  position: relative;
  margin-left: 110px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid #c0c0c0;
  background: #f5f5dc;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.frm_newsletter .title-news {
  margin-bottom: 0 !important;
}
.frm_newsletter #form-newsletter {
  border-radius: 200px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 40px;
  flex-shrink: 0;
}
.frm_newsletter .newsletter-input {
  background: #fff;
  width: 100%;
  border-radius: 0;
  align-items: center;
}
.frm_newsletter .newsletter-input img {
  flex-shrink: 0;
}
.frm_newsletter .newsletter-input input {
  border: none;
  padding-right: 10px;
  background: #fff;
  border-radius: 0;
  width: 100%;
}
.frm_newsletter .newsletter-input input::-moz-placeholder {
  color: #9e9e9e;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.frm_newsletter .newsletter-input input::placeholder {
  color: #9e9e9e;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.frm_newsletter .newsletter-input input:focus {
  box-shadow: none;
}
.frm_newsletter .newsletter-input textarea {
  min-height: 120px;
}
.frm_newsletter .slogan-form {
  color: #4d4d4d;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  flex-shrink: 0;
}
.frm_newsletter .btn-submit {
  padding: 10px 20px;
  border-radius: 20px;
  background: var(--nhan2, #a60000);
  color: #fff;
  text-align: center;
  font-family: SVN-Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border: none;
  outline: none;
  line-height: normal;
  text-transform: uppercase;
}

/* ABout us */
.wrap-about-us {
  background: var(--nhan-1, #f5f5dc);
}
.wrap-about-us .about-us .left {
  padding: 85px 265px 80px 30px;
  border-radius: 40px;
  background: #fff;
  margin-right: -235px;
  background-color: white;
}
.wrap-about-us .about-us .left .info .sub-title {
  margin-bottom: 40px;
  padding-left: 25px;
  border-left: 1px solid #bfab87;
}
.wrap-about-us .about-us .left .info .sub-title p {
  text-shadow:
    1px 1px 0 #a6a6a6,
    -1px -1px 0 #a6a6a6,
    1px -1px 0 #a6a6a6,
    -1px 1px 0 #a6a6a6;
  font-family: Montserrat;
  font-size: clamp(30px, 4.4715447154vw, 55px);
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  color: white;
  text-transform: uppercase;
}
.wrap-about-us .about-us .left .info .sub-title .name {
  color: var(--chudao, #bfab87);
  font-family: Montserrat;
  font-size: clamp(20px, 2.8455284553vw, 35px);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
}
.wrap-about-us .about-us .left .info .sub-title .name span {
  font-weight: 700;
}
.wrap-about-us .about-us .left .info .sub-title .desc {
  color: #282828;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.wrap-about-us .about-us .right {
  margin-top: 135px;
}
.wrap-about-us .about-us .right iframe {
  border-radius: 40px 0px 0px 40px;
  overflow: hidden;
  width: 945px;
  height: 555px;
}

.btn-wm a {
  display: inline-block;
  border-radius: 200px;
  background: var(--nhan2, #a60000);
  padding: 8px 30px 8px 30px;
  color: #fff;
  text-align: center;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.btn-wm a:hover {
  border: 1px solid #a60000;
  background: transparent;
  color: #a60000;
}

.wrap-view-more {
  position: relative;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  margin: 1rem 0;
  white-space: nowrap;
  color: #fff;
  z-index: 5;
}
.wrap-view-more span {
  position: relative;
  display: inline-block;
  font-size: 0.6rem;
  white-space: nowrap;
  margin-right: -0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 5;
}
.wrap-view-more.revert .before {
  opacity: 1;
}
.wrap-view-more:hover .after {
  animation-name: Show100;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  stroke: var(--color-main);
}
.wrap-view-more:hover svg {
  color: #fff;
}
.wrap-view-more:hover .before {
  stroke-width: 0;
}
.wrap-view-more:hover .arrow-click::before {
  background-color: var(--color-main);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.307);
}

.wrap-view-more:not(.prev):hover .arrow-click {
  right: -10px;
}

@keyframes Show100 {
  0% {
    stroke-dashoffset: 570;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.arrow-click {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50%;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.arrow-click,
.arrow-click svg,
.arrow-click::before,
.arrow-click + .wrap-view-more span {
  transition: all 0.3s ease-in-out;
}
.arrow-click,
.arrow-click svg,
.arrow-click.arrow-more svg {
  position: relative;
  display: block;
}
.arrow-click::before {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  left: 15%;
  top: 15%;
  border-radius: 50%;
}
.arrow-click svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.arrow-click .after,
.arrow-click .before {
  fill: none;
  stroke-dasharray: 570;
  stroke-dashoffset: 570;
  transform-origin: 50% 50%;
}
.arrow-click .before {
  stroke: #fff;
  opacity: 0.5;
  stroke-width: 1.5;
}
.arrow-click .after {
  stroke: var(--color-white-zero);
  stroke-width: 1;
}
.arrow-click.show .before {
  animation-name: Show100;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

/* Archive */
.wrap-archive .left,
.wrap-archive .right {
  position: relative;
}
.wrap-archive .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wrap-archive .info p {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: clamp(20px, 2.8455284553vw, 35px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/* Product list home */
.wrap-cover-product-list {
  background: var(--nhan-1, #f5f5dc);
}
.wrap-cover-product-list .box-title-main .slogan-main {
  color: #323232;
  font-family: SVN-Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.wrap-cover-product-list .product-list-0 .swiper-slide,
.wrap-cover-product-list .product-list-2 .swiper-slide {
  margin: 0px !important;
  opacity: 0.6;
  transform: scale(0.8);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.wrap-cover-product-list .product-list-0 .swiper,
.wrap-cover-product-list .product-list-2 .swiper {
  padding: 0 25%;
}
.wrap-cover-product-list .product-list-0 .item,
.wrap-cover-product-list .product-list-2 .item {
  position: relative;
}
.wrap-cover-product-list .product-list-0 .item .cover-info,
.wrap-cover-product-list .product-list-2 .item .cover-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 50%;
  display: flex;
  padding: 25px;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.wrap-cover-product-list .product-list-0 .item .info,
.wrap-cover-product-list .product-list-2 .item .info {
  transition: all 1s ease;
  position: absolute;
  bottom: -100%;
  left: 20px;
}
.wrap-cover-product-list .product-list-0 .item .info .name,
.wrap-cover-product-list .product-list-2 .item .info .name {
  color: #fff;
  font-family: SVN-Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.wrap-cover-product-list .product-list-0 .item .info .info-bottom,
.wrap-cover-product-list .product-list-2 .item .info .info-bottom {
  display: flex;
  color: #fff;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.wrap-cover-product-list .product-list-0 .item .info .info-bottom .price,
.wrap-cover-product-list .product-list-2 .item .info .info-bottom .price {
  color: #fff;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wrap-cover-product-list .product-list-0 .item .info .info-bottom .price span,
.wrap-cover-product-list .product-list-2 .item .info .info-bottom .price span {
  font-weight: 400;
}
.wrap-cover-product-list .product-list-0 .item .info .info-bottom .btn-wm-pro,
.wrap-cover-product-list .product-list-2 .item .info .info-bottom .btn-wm-pro {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wrap-cover-product-list .product-list-0 .swiper-slide-active,
.wrap-cover-product-list .product-list-2 .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  margin: 0 40px;
}
.wrap-cover-product-list .product-list-0 .swiper-slide-active .info,
.wrap-cover-product-list .product-list-2 .swiper-slide-active .info {
  bottom: 20px;
}
.wrap-cover-product-list .product-list-1 .swiper {
  padding: 0 10%;
}
.wrap-cover-product-list .product-list-1 .item {
  position: relative;
}
.wrap-cover-product-list .product-list-1 .item .cover-info {
  margin-top: 20px;
}
.wrap-cover-product-list .product-list-1 .item .pic {
  border-radius: 10px;
  overflow: hidden;
}
.wrap-cover-product-list .product-list-1 .item .info .name {
  color: #000;
  font-family: SVN-Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.wrap-cover-product-list .product-list-1 .item .info .info-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.wrap-cover-product-list .product-list-1 .item .info .info-bottom .price {
  color: #000;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wrap-cover-product-list .product-list-1 .item .info .info-bottom .price span {
  font-weight: 400;
}
.wrap-cover-product-list .product-list-1 .item .info .info-bottom .btn-wm-pro {
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wrap-cover-product-list .product-list-2 {
  background: url(../images/TempImages/bg-prolist.png) no-repeat center/cover;
}

.cover-title-pro-list {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: space-between;
}
.cover-title-pro-list .title-main,
.cover-title-pro-list .btn-wm {
  flex-shrink: 0;
}
.cover-title-pro-list .line {
  width: 100%;
  height: 1px;
  background: #cdcdcd;
}

/* About us inner */
.wrap-inner-about-us .wrap-inner-content .inner-content .content {
  color: #4d4d4d;
  font-family: SVN-Poppins;
  font-size: clamp(20px, 2.0325203252vw, 25px);
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 200% */
}
.wrap-inner-about-us .marquee-about {
  color: rgba(0, 0, 0, 0.05);
  font-family: Montserrat;
  font-size: clamp(30px, 7.5609756098vw, 93px);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.wrap-desc {
  color: #4d4d4d;
  font-family: SVN-Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 37px; /* 217.647% */
}

.wrap-vision {
  background-color: white;
}

.wrap-core-value .core-value .item {
  padding: 40px 20px;
  background-color: #fff;
  border-right: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  justify-content: center;
}
.wrap-core-value .core-value .item:last-child {
  border-right: none;
}
.wrap-core-value .core-value .item .pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 10px;
  background-color: white;
  border: 1px solid #bfab87;
}
.wrap-core-value .core-value .item .pic .cover-border {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #bfab87;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap-core-value .core-value .item .info .name {
  color: #282828;
  text-align: center;
  font-family: SVN-Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.wrap-core-value .core-value .item .info .desc {
  color: #4d4d4d;
  font-family: SVN-Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.wrap-development {
  background-color: white;
}
.wrap-development .development {
  position: relative;
}
.wrap-development .development::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  background-color: #bfab87;
  height: 100%;
  width: 1px;
}
.wrap-development .development .item {
  position: relative;
  z-index: 19;
  margin-bottom: 20px;
}
.wrap-development .development .item .dev-year {
  padding: 10px 15px;
  border-radius: 30px;
  background: var(--chudao, #bfab87);
  color: #fff;
  font-family: SVN-Poppins;
  font-size: clamp(18px, 1.8699186992vw, 23px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.wrap-development .development .item .desc {
  color: #bfab87;
  font-family: SVN-Poppins;
  font-size: clamp(18px, 1.8699186992vw, 23px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.wrap-development .development .item .content {
  color: #4d4d4d;
  margin-bottom: 20px;
  font-family: SVN-Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
}

.wrap-award .item .pic2 {
  border: 1px solid #b2b2b2;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}
.wrap-award .item .info {
  margin-top: 20px;
}
.wrap-award .item .info .name {
  color: #282828;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/* Breadcrumb 2 */
.breadcrumb-2 {
  position: sticky;
  top: 66px;
  z-index: 1000;
  padding: 10px 0;
  background-color: #e9e9e9;
}
.breadcrumb-2 .breadcrumb-list {
  display: flex;
  align-items: center;
  overflow: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  font-size: 17px;
  justify-content: center;
  gap: 10px;
}
.breadcrumb-2 .breadcrumb-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.breadcrumb-2 .breadcrumb-list * {
  flex-shrink: 0;
}
.breadcrumb-2 .breadcrumb-list .breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb-2 a {
  color: black !important;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.breadcrumb-2 a::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--color-highlight);
  transition: top 0.3s ease;
  width: 100%;
}
.breadcrumb-2 a:hover::before {
  top: 0;
}
.breadcrumb-2 a span {
  display: inline-block;
  transition: transform 0.3s ease;
}
.breadcrumb-2 a:hover span {
  transform: translateY(-100%);
}
.breadcrumb-2 a.active {
  color: var(--color-main) !important;
}

/* wrap-news-list-loader */
.wrap-news-list-loader .item .pic {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e4e4e4;
}
.wrap-news-list-loader .item .info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.wrap-news-list-loader .item .name {
  color: #282828;
  font-family: SVN-Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.wrap-news-list-loader .item .cover-tool {
  display: flex;
  gap: 10px;
}
.wrap-news-list-loader .item .cover-tool .tool {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wrap-news-list-loader .item .cover-tool .tool span {
  color: #282828;
  font-family: SVN-Poppins;
  font-size: 14px;
}

.gap-detail {
  margin: 30px 0;
}

.product-name {
  font-size: clamp(30px, 3.6585365854vw, 45px);
  font-weight: 600;
  text-transform: uppercase;
  color: #7c7c7c;
}
.product-name .special-title {
  color: black;
}

.bnt-ex {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #6d6d6d;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
}

.bnt-ex i {
  color: white;
}
.product-detail-content .info-detail:hover .bnt-ex {
  background-color: var(--color-main);
}
.product-detail-content .info-detail:hover .name-info {
  color: var(--color-main);
}
.product-detail-content .info-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 10px 20px;
  text-align: center;
  font-size: 17px;
  border-bottom: 1px solid #e4e4e4;
  color: #282828;
}
.product-detail-content .info-detail .name-info {
  color: #858585;
  font-family: SVN-Poppins;
}

/* Partner */
.wrap-partner {
  background-color: white;
}
.wrap-partner .item {
  border-radius: 10px;
  border: 1px solid #e4e4e4;
  background: #fff;
  overflow: hidden;
}

/* Footer */
.wrap-footer {
  background: #bfab87;
  padding-top: 60px;
}
.wrap-footer .footer-branch {
  margin: 20px 0;
}
.wrap-footer .footer-branch .item {
  margin: 20px 0;
}
.wrap-footer .footer-branch .item .name {
  color: var(--color-main);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.wrap-footer .footer-branch .item .info {
  color: #fff;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}
.wrap-footer .footer-info {
  padding: 9px 20px;
  background-color: #f5f5dc;
  display: inline-flex;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.wrap-footer .footer-info .item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #252525;
  font-family: SVN-Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}
.wrap-footer .footer-ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.wrap-footer .footer-ul li {
  color: #4d4d4d;
  list-style: disc;
  margin-bottom: 10px;
}
.wrap-footer .footer-ul li::marker {
  color: #4d4d4d;
  width: 4px;
}
.wrap-footer .footer-ul li a {
  color: #4d4d4d;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 250% */
}
.wrap-footer .footer-ul li:hover a {
  color: #6e7328 !important;
}
.wrap-footer .footer-powered {
  background: var(--chudao, #bfab87);
  padding: 15px 0;
  text-align: center;
  color: var(--nhan-1, #f5f5dc);
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.wrap-footer .footer-content {
  border-bottom: 1px solid #a9a9a9;
}
.wrap-footer .footer-logo {
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.wrap-footer .footer-right {
  margin-top: -60px;
  padding: 90px 30px;
  background-color: white;
  border-radius: 30px 0 0 0;
  position: relative;
}
.wrap-footer .footer-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 0 30px 0 0;
}
.wrap-footer .flex-powered {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrap-footer .statistic span {
  position: relative;
  padding: 0px 5px;
}

/* Tags */
.title-tags {
  position: relative;
  font-size: 1em;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: #777;
}
.title-tags:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.1);
  display: block;
  height: 3px;
  width: 30px;
}

.flex-tags {
  display: flex;
  gap: 5px;
}
.flex-tags a {
  color: #333;
  border: 1px solid;
  border-radius: 3px;
  display: inline-block;
  opacity: 0.8;
  padding: 2px 5px;
}
.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 {
  -webkit-line-clamp: 2;
  font-size: 16px;
  color: var(--color-main);
}
.item-criteria a .ds-criteria p {
  -webkit-line-clamp: 2;
  margin: 0px;
}

/* Video */
.flex-video {
  display: flex;
  justify-content: space-between;
}

.wr-video,
.wr-form {
  width: 49%;
}

.video-main {
  position: relative;
}

.list-video {
  margin-top: 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.img-video span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f00;
  background: rgba(255, 255, 255, 0.6588235294);
  font-size: 27px;
  cursor: pointer;
  transition: all 1s;
}

.item-video:hover span {
  transform: translateX(-50%) translateY(-50%) rotate(360deg);
}
.item-video h3 {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}

/* 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 rgba(0, 0, 0, 0.2);
  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 .left-product {
  border: 1px solid #f1f1f1;
  background-color: white;
  border-radius: 5px;
  font-family: SVN-Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.flex-product-main .left-product p {
  margin-bottom: 0 !important;
  cursor: pointer;
  padding: 8px 10px 5px 20px;
  font-size: 18px;
  border-bottom: 1px solid #968360;
  transition: all 0.3s ease;
}
.flex-product-main .left-product p:hover {
  background-color: black;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.flex-product-main .left-product p:last-child {
  border-bottom: none;
}
.flex-product-main .left-product ul {
  margin-bottom: 0 !important;
  padding: 10px !important;
}

.wrap-product-sale {
  background-color: #ffa09e;
  border-radius: 10px;
  overflow: hidden;
}

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

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

.product {
  display: block;
  position: relative;
  border-radius: 5px;
}
.product .pic-product {
  background: #fff;
  margin-bottom: 10px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.product .name-product {
  font-weight: normal;
  font-size: 13px;
  color: black;
  line-height: 1.5;
  font-weight: 700 !important;
}
.product .code-product {
  color: black;
  margin-bottom: 2px;
}

.product .price-product {
  margin-bottom: 10px;
  color: black;
  display: flex;
  gap: 5px;
}
.product .price-product .price-new {
  font-weight: 500;
}
.product .price-product .price-old {
  padding: 0 10px;
  font-size: 14px;
  text-decoration: line-through;
  display: block;
  color: #ff2e00;
  text-transform: uppercase;
}
.product .price-product .price-per {
  color: #ff2e00;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
}

.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: var(--color-hover);
}

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

/* product detail */
.grid-pro-detail {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.grid-pro-detail .left-pro-detail {
  width: 58%;
}
.grid-pro-detail .right-pro-detail {
  width: 40%;
}

.detail-product {
  display: flex;
  justify-content: space-between;
}
.detail-product .left-pro-detail {
  width: 40%;
  border: 1px solid #ddd;
}
.detail-product .right-pro-detail {
  width: 57%;
}
.detail-product .right-pro-detail ul {
  list-style: none;
  padding: 0px;
}
.detail-product .right-pro-detail ul li {
  margin-bottom: 20px;
}
.detail-product .right-pro-detail ul li .title-pro-detail {
  font-size: 18px;
}
.detail-product .right-pro-detail ul li .attr-content-pro-detail {
  display: inline-block;
  margin-bottom: 0px;
}
.detail-product .right-pro-detail ul li .attr-content-pro-detail .price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: #f00;
}

.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: #333;
}
.nav-tabs .nav-item.show .nav-link {
  color: #f00;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  color: #f00;
}

/* 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 {
  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;
}
.ul-actions .box__tabr:hover {
  border-color: #fd6e1d;
}

.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 {
  position: fixed;
  z-index: 999;
  background: rgba(0, 0, 0, 0.768627451);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.modal-detail::-webkit-scrollbar {
  width: 10px;
}
.modal-detail::-webkit-scrollbar-thumb {
  width: 10px;
  background: #4d90e0;
  border-radius: 10px;
  height: 50px;
}

.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;
}
.breadCrumbs ol {
  margin: 0px;
}
.breadCrumbs ol li a {
  color: #333;
}
.breadCrumbs ol li a:hover {
  color: #f00;
}

/* 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: 70%;
}
.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: #1182fc;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  animation-name: pulse;
}

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

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

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

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

/* 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 {
  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 {
  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;
  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(3, 1fr);
  gap: 20px;
}

.item-news-one .ds-news h3 {
  color: black;
  font-size: 18px;
}
.item-news-one p {
  color: black;
}

.item-news-all .ds-news h3 {
  font-size: 16px;
  color: black;
}
.item-news-all .ds-news p {
  font-size: 14px;
  color: black;
}

.item-news {
  --tw-bg-opacity: 1;
  background-color: #ffffff;
  padding: 1rem;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.19);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.item-news .info {
  width: 100%;
}
.item-news .info span {
  display: block;
  line-height: 25px;
  color: black;
  font-size: 13px;
  margin: 10px 0px 0px;
  font-style: italic;
}
.item-news .info h3 {
  font-size: 16px;
  margin: 0;
  color: #000;
  font-weight: 0;
  text-transform: uppercase;
  -webkit-line-clamp: 2 !important;
  transition: all 0.3s ease;
}
.item-news .info .desc {
  color: #333;
}
.item-news:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19);
}
.item-news:hover h3 {
  color: var(--color-hover);
}

.item-news .item-news-all a {
  display: flex;
  justify-content: space-between;
}
.item-news .item-news-all a .ds-news {
  width: calc(100% - 110px);
}
.item-news .item-news-all a .ds-news h3 {
  color: black;
  text-transform: capitalize;
  font-size: 15px;
}

.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: rgba(241, 241, 241, 0.8);
  padding: 20px;
  box-shadow: 0px 0px 5px rgba(153, 153, 153, 0.4705882353);
}

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 {
  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 {
  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";
}

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

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

.price-old-pro-detail {
  font-weight: 500;
  color: #666;
  text-decoration: line-through;
  padding-left: 10px;
}

.color-pro-detail.active {
  color: #fff !important;
  background: #232323;
}

.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: flex-start;
}
.cart-pro-detail a {
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}
.cart-pro-detail a.addnow {
  margin-right: 10px;
  color: #fff;
  border-radius: 5px;
}
.cart-pro-detail a.addnow:hover {
  background-color: #f00;
  color: #fff;
  border-color: #f00;
}
.cart-pro-detail a.buynow {
  background-color: #000;
}
.cart-pro-detail a.buynow:hover {
  background-color: #f00;
  color: #fff;
}
.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-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;
}

.trans-banner .slidebox-list img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}
.trans-banner .banner-home::after,
.trans-banner .banner-inner::after,
.trans-banner .bg-cover::after,
.trans-banner .bg-inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.trans-banner .banner-inner::after {
  background: var(--color-white);
}
.trans-banner .bg-inner {
  height: auto;
  display: block;
}
.trans-banner .banner-home::after,
.trans-banner .bg-inner::after {
  background: var(--black-gradient-dark);
  mix-blend-mode: multiply;
  opacity: 0;
}
.trans-banner .banner-full,
.trans-banner .bg-inner {
  overflow: hidden;
}
.trans-banner .slide-full {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
.trans-banner .relative-page {
  padding: 5vw 0;
  background: var(--color-white-grey);
  overflow: hidden;
}
.trans-banner .relative-page#project-page .trans-banner .relative-page,
.trans-banner .relative-page.no-bg {
  background: var(--color-white);
}
.trans-banner .relative-page .title-main {
  width: 90%;
  max-width: 65rem;
  text-align: center;
  margin: 0 auto 3rem;
  text-transform: uppercase;
}
.trans-banner .relative-slide {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.trans-banner #collection-page .relative-page {
  background: var(--color-white);
  padding: 10vw 0 5vw;
}
.trans-banner .slidefade {
  width: 100%;
  height: 100%;
  display: block;
}
.trans-banner .banner {
  height: 100vh;
  justify-content: center;
}
.trans-banner .banner,
.trans-banner .banner-home,
.trans-banner .banner-text {
  overflow: hidden;
  display: flex;
}
.trans-banner .banner-home {
  justify-content: center;
  position: relative;
  width: 100%;
}
.trans-banner .banner-home.is-active .pic-img > img {
  animation-name: scaleBlur;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.trans-banner .banner-home.is-active .category {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.trans-banner .banner-home.is-active .learn-more,
.trans-banner .banner-home.is-active .title-banner > span {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
.trans-banner .banner-home.is-active .learn-more {
  pointer-events: auto;
  animation-delay: 0.6s;
}
.trans-banner .banner-text {
  position: absolute;
  width: 70%;
  max-width: 50rem;
  height: auto;
  left: auto;
  bottom: 10%;
  align-items: flex-end;
  z-index: 10;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: clamp(20px, 2.0325203252vw, 50px);
  font-style: normal;
  margin-bottom: 25px;
  font-weight: 400;
  text-transform: uppercase;
  justify-content: center;
}
.trans-banner .banner-text .special {
  font-weight: 700;
}
.trans-banner .title-banner {
  position: relative;
  width: auto;
  height: auto;
  display: inline-flex;
}
.trans-banner .title-banner > span {
  position: relative;
  width: 100%;
  height: auto;
  font-size: var(--titleFont);
  text-shadow: 0 0.1rem 0.2rem var(--color-black-alpha-02);
  margin-bottom: 0.5rem;
  opacity: 0;
}
.trans-banner .pagination {
  position: absolute;
  width: 100%;
  margin: 0 !important;
  height: auto;
  left: 0;
  bottom: 20px;
  display: flex;
  align-items: flex-start;
  z-index: 10;
  justify-content: center;
}
.trans-banner .pagi-item {
  position: relative;
  display: block;
  width: calc(20% - 0.5rem);
  height: auto;
  margin-right: 0.5rem;
  opacity: 0.5;
  cursor: pointer;
  text-align: center;
}
.trans-banner .pagi-item p,
.trans-banner .pagi-item > span {
  position: relative;
  width: 100%;
  display: block;
}
.trans-banner .pagi-item > span {
  height: 0.2rem;
  background-color: rgb(161, 161, 161);
  border-radius: 0.2rem;
  overflow: hidden;
}
.trans-banner .pagi-item > span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--color-main);
  transform: scale3d(0, 1, 1);
  transform-origin: left top;
}
.trans-banner .pagi-item p {
  color: #fff;
  font-family: SVN-Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}
.trans-banner .pagi-item.active {
  opacity: 1;
  pointer-events: none;
}
.trans-banner .pagi-item.active > span::after {
  animation-name: aniWidth;
  animation-duration: var(--data-speed);
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.trans-banner .srcoll-down {
  position: fixed;
  width: 5rem;
  height: 5rem;
  left: 2rem;
  bottom: 3rem;
  pointer-events: none;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  z-index: 15;
}
.trans-banner .go-top span,
.trans-banner .srcoll-down span,
.trans-banner .srcoll-down svg {
  position: absolute;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  z-index: 2;
}
.trans-banner .srcoll-down svg {
  width: 60%;
  height: 60%;
  left: 20%;
  top: 20%;
  display: block;
  z-index: 3;
}
.trans-banner .srcoll-down::after,
.trans-banner .srcoll-down::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  transform-origin: center center;
}
.trans-banner .srcoll-down::before {
  transform: scale(0);
  width: 50%;
  height: 50%;
  left: 25%;
  top: 25%;
}
.trans-banner .srcoll-down::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid var(--color-white-alpha);
}
.trans-banner .go-top.show svg,
.trans-banner .srcoll-down.show svg {
  animation: trackBallSlide 3s alternate infinite;
}
.trans-banner .srcoll-down.show {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}
.trans-banner .go-top-foot.show span,
.trans-banner .go-top.show span,
.trans-banner .srcoll-down.show span {
  animation: Rotate 10s linear infinite;
}

#loader {
  position: fixed;
  inset: 0;
  background: #f1eee5;
  z-index: 9999;
}

/* Ẩn nội dung chính lúc đầu */
#main-content {
  display: none;
}

/* SVG Animation Styles */
.animated-svg {
  width: 100vw;
  height: auto;
  height: 100vh;
}

/* House parts - initially hidden */
.house-part {
  fill: transparent;
  stroke: #af4525;
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/* Text parts - initially hidden */
.text-part {
  fill: transparent;
  stroke: #af4525;
  stroke-width: 1.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.tagline-text {
  fill: transparent;
  stroke: #af4525;
  stroke-width: 1;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

/* Animation classes */
.draw-outline {
  animation: drawLine 1s ease-in-out forwards;
}

.fill-color {
  animation: fillColor 1.5s ease-in-out forwards;
  animation-delay: 1s;
  stroke: #af4525 !important;
  stroke-width: 2 !important;
}

.draw-text {
  animation: drawLine 1.5s ease-in-out forwards;
  animation-delay: 1s;
}

.fill-text {
  animation: fillColor 1s ease-in-out forwards;
  animation-delay: 3s;
  stroke: #af4525 !important;
  stroke-width: 1.5 !important;
}

.draw-tagline {
  animation: drawLine 1s ease-in-out forwards;
  animation-delay: 2.5s;
}

.fill-tagline {
  animation: fillColor 1s ease-in-out forwards;
  animation-delay: 4s;
  stroke: #af4525 !important;
  stroke-width: 1 !important;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fillColor {
  from {
    fill: transparent;
    stroke: #af4525;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
  to {
    fill: var(--fill-color);
    stroke: #af4525;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}
/* Background animation */
.background {
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Slide box */
.slidebox-arrows {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  color: var(--color-main-dark);
  z-index: 10;
}
.slidebox-arrows.btn-white * {
  color: white !important;
  stroke: white !important;
}
.slidebox-arrows.show .before {
  animation-name: Show100;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
.slidebox-arrows .line {
  left: calc(50% + 6rem);
}
.slidebox-arrows.slidebox-arrows-ttb {
  width: auto;
  height: 100%;
  top: 0;
  left: calc(100% + 1em);
}
.slidebox-arrows.slidebox-arrows-ttb .slidebox-arrow-prev {
  top: 1em;
  left: 0;
}
.slidebox-arrows.slidebox-arrows-ttb .slidebox-arrow-prev svg {
  transform: rotate(-90deg);
}
.slidebox-arrows.slidebox-arrows-ttb .slidebox-arrow-next {
  bottom: 1em;
  left: 0;
  top: auto;
  right: auto;
}
.slidebox-arrows.slidebox-arrows-ttb .slidebox-arrow-next svg {
  transform: rotate(90deg);
}
.slidebox-arrows.slidebox-arrows-rtl .slidebox-arrow-prev {
  left: auto;
  right: 1em;
}
.slidebox-arrows.slidebox-arrows-rtl .slidebox-arrow-prev svg {
  transform: scaleX(1);
}
.slidebox-arrows.slidebox-arrows-rtl .slidebox-arrow-next {
  left: 1em;
  right: auto;
}
.slidebox-arrows.slidebox-arrows-rtl .slidebox-arrow-next svg {
  transform: scaleX(-1);
}

.slidebox-arrow {
  position: relative;
  width: 4rem;
  height: 4rem;
  color: var(--color-main);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem;
  flex: none;
  z-index: 5;
}
.slidebox-arrow svg {
  position: absolute;
  width: 90%;
  height: 90%;
  display: block;
  left: 5%;
  top: 5%;
  transform-origin: center center;
  z-index: 2;
}
.slidebox-arrow.slidebox-arrow-prev svg {
  transform: scaleX(-1);
}
.slidebox-arrow:disabled {
  opacity: 0.2 !important;
  pointer-events: none;
}
.slidebox-arrow::before {
  content: "";
  width: 60%;
  height: 60%;
  position: absolute;
  left: 20%;
  top: 20%;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.slidebox-arrow .after {
  fill: none;
  stroke: var(--color-white-zero);
  stroke-width: 1.5;
  stroke-dasharray: 570;
  stroke-dashoffset: 570;
  transform-origin: 50% 50%;
}
.slidebox-arrow .before {
  fill: none;
  stroke: var(--color-main);
  stroke-width: 1.5;
  opacity: 0.5;
  stroke-dasharray: 570;
  stroke-dashoffset: 570;
  transform-origin: 50% 50%;
}

.arrow-normal .slidebox-arrow {
  background-color: var(--color-main);
  border: none;
}

@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine) {
  .slidebox-arrow,
  .slidebox-arrow svg,
  .slidebox-pagi-item,
  .slidebox-pagi-item::after,
  .slidebox-pagi-num,
  .slidebox-pagi-numsvg,
  .slidebox-toggle,
  .slidebox-toggle svg,
  .thumb-item {
    transition: all 0.3s ease-in-out;
  }
  .slidebox-pagination-page:hover {
    transform: scale(1.4);
    background: var(--color-main);
  }
  .slidebox-pagi-num:hover {
    background: var(--color-main);
    color: var(--color-white);
  }
  .thumb-item:hover {
    opacity: 0.3;
  }
  .slidebox-toggle:hover {
    background-color: var(--color-main);
  }
  .slidebox-toggle:hover svg {
    stroke-opacity: 0;
    fill: var(--color-white);
  }
  .slidebox-arrow:hover {
    box-shadow: 0 1rem 1rem 0 var(--color-black-alpha-01);
    border-color: transparent;
    opacity: 1;
    background-color: var(--color-highlight);
    color: var(--color-white);
  }
  .slidebox-arrow:hover .after {
    animation-name: Show100;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    stroke: var(--color-white);
  }
  .slidebox-arrow:hover .before {
    stroke-width: 0;
  }
  .slidebox-arrow-next:hover {
    background-color: var(--color-highlight);
  }
  .slidebox-arrow-prev:hover {
    background-color: var(--color-main);
  }
  .arrowcircle .slidebox-arrow:hover {
    background-color: transparent;
    box-shadow: none;
    color: var(--color-highlight);
  }
  .arrowcircle .slidebox-arrow:hover::before {
    transform: scale(1);
    background-color: var(--color-white);
    box-shadow: 0 1rem 1rem 0 var(--color-black-alpha-01);
  }
  .album-load.vertical .arrowcircle .slidebox-arrow:hover {
    background-color: transparent;
    box-shadow: none;
    color: var(--color-white);
  }
  .album-load.vertical .arrowcircle .slidebox-arrow:hover::before {
    transform: scale(1);
    background-color: var(--color-highlight);
    box-shadow: 0 1rem 1rem 0 var(--color-black-alpha-01);
  }
  .album-load.vertical .slidebox-arrow:hover .after {
    animation-name: Show100;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    stroke: var(--color-highlight);
  }
}
/* Bnt pdf */
.download-pdf,
.open-pdf {
  flex: none;
  z-index: 10;
}

.download-pdf span {
  color: var(--color-main);
  font-size: 0.6rem;
}

.download-but span,
.download-pdf span,
.open-pdf span,
.view-more span {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 5;
}

.open-pdf span {
  color: var(--color-main);
  font-size: 0.6rem;
}

.pdf-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--color-highlight);
}
.pdf-icon svg {
  position: relative;
  display: block;
  width: 40%;
  height: 40%;
  margin: 20%;
  color: var(--color-main);
  transform-origin: center center;
}
.pdf-icon::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid var(--color-main);
}

.tool a {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: end;
}
.tool:hover span {
  color: var(--color-highlight);
}
.tool:hover .pdf-icon svg {
  color: var(--color-white);
  transform: scale(0.8);
}
.tool:hover .pdf-icon::before {
  background-color: var(--color-highlight);
  box-shadow: 0 1rem 1rem 0 var(--color-black-alpha-01);
  border-color: transparent;
}
.tool:hover a span {
  color: var(--color-main) !important;
}

.pdf-icon::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid currentColor;
}

.arrow-click::before,
.pdf-icon::before {
  content: "";
  width: 70%;
  height: 70%;
  position: absolute;
  left: 15%;
  top: 15%;
  border-radius: 50%;
}

.download-pdf span,
.open-pdf span {
  transition: all 0.3s ease-in-out;
}

.pdf-icon svg,
.pdf-icon::before {
  transition: all 0.3s ease-in-out;
}

#pdf-viewer-modal {
  max-width: 100%;
  width: 95%;
  background: none;
  border-radius: 8px;
  position: relative;
  padding: 0px;
}

#ajax-pdf-container,
#flipbook-container-ajax {
  width: 100%;
  height: 600px;
}

._df_book .dflip,
._df_book .df_book_pages {
  width: 100vw !important;
  height: 80vh !important;
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

._df_book .df_book_wrapper {
  width: 100% !important;
  height: 100% !important;
}

._df_book .df_book {
  width: 100% !important;
  height: 100% !important;
}

._df_book .dflip,
._df_book .df_book_pages,
._df_book .df_book_wrapper,
._df_book .df_book {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.skiptranslate {
  display: none;
}

.df-container > .df-ui-next,
.df-container > .df-ui-prev {
  color: var(--chudao, #bfab87) !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1eee5;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader svg {
  width: 100vw;
  height: 100vh;
}

/* SVG Animation Classes */
.st0,
.st2,
.st3,
.st4,
.st5,
.st6 {
  opacity: 0;
  animation: fadeInFill 1.5s forwards;
}

.st0 {
  animation-delay: 0.2s;
  fill: #af4525;
}
.st2 {
  animation-delay: 0.4s;
  fill: #d06328;
}
.st3 {
  animation-delay: 0.6s;
  fill: #dd9749;
}
.st4 {
  animation-delay: 0.8s;
  fill: #e9c991;
}
.st5 {
  animation-delay: 1s;
  fill: #bfab87;
}
.st6 {
  animation-delay: 1.2s;
  fill: #ede0cd;
}

.st14 {
  fill: #f1eee5;
  animation: backgroundFade 2s ease-in-out;
}

@keyframes fadeInFill {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes backgroundFade {
  0% {
    fill: #f1eee5;
  }
  100% {
    fill: #f1eee5;
  }
}

/* Stroke animation for paths */
path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 3s ease-in-out forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

/* Text animation */
.st15 {
  opacity: 0;
  animation: textFadeIn 1s ease-in-out 2s forwards;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-path {
  fill: none;
  stroke: #af4525;
  stroke-width: 1;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 3s ease-in-out forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Catalogue */
.wrap-catelogue-detail {
  padding: 40px 0;
  background-color: #c0c0c0;
  margin: 30px 0;
}

.btn-wm-cata {
  padding: 2px 2px 2px 10px;
  display: inline-flex;
  align-items: center;
  background-color: white;
  gap: 10px;
  color: black;
  border-radius: 200px;
}

.btn-wm-cata .arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  background-color: #dddddd;
}
.btn-wm-cata .arr i {
  color: black;
}
.btn-wm-cata:hover .arr {
  background-color: var(--color-main);
}
.btn-wm-cata:hover .arr i {
  color: white;
}
.btn-wm-cata:hover {
  color: var(--color-main);
}

.wrap-catelogue-detail .right {
  background-color: #5f5f5f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.wrap-catelogue-detail .right .sub-title-cata {
  font-size: 14px;
  text-transform: uppercase;
  color: white;
}
.wrap-catelogue-detail .right .title-cata {
  font-size: 20px;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
}

.grid-catalo-detail {
  margin: 0 10%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  overflow: hidden;
}

.srcoll-down {
  position: fixed;
  width: 5rem;
  height: 5rem;
  left: 2rem;
  bottom: 3rem;
  pointer-events: none;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition:
    color 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  border: 1px solid white;
  border-radius: 50%;
  z-index: 15;
}

.go-top span,
.srcoll-down span,
.srcoll-down svg {
  position: absolute;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  z-index: 2;
}

.srcoll-down svg {
  width: 60%;
  height: 60%;
  left: 20%;
  top: 20%;
  display: block;
  z-index: 3;
}

.srcoll-down::after,
.srcoll-down::before {
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  border-radius: 50%;
  transform-origin: center center;
}

.srcoll-down::before {
  transform: scale(0);
  width: 50%;
  height: 50%;
  left: 25%;
  top: 25%;
}

.srcoll-down::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid var(--color-white-alpha);
}

.go-top.show svg,
.srcoll-down.show svg {
  animation: trackBallSlide 3s alternate infinite;
}

.srcoll-down.show {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}

.go-top-foot.show span,
.go-top.show span,
.srcoll-down.show span {
  animation: Rotate 10s linear infinite;
}

.fullscreen .srcoll-down,
.go-top {
  pointer-events: none;
  opacity: 0;
}

.go-top {
  position: fixed;
  width: 3rem;
  height: 3rem;
  left: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-grey);
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  z-index: 15;
}

.go-top svg,
.go-top::before {
  position: absolute;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
}

.go-top svg {
  display: block;
  z-index: 3;
}

.go-top::before {
  content: "";
  transform: scale(0);
  border-radius: 50%;
  transform-origin: center center;
  z-index: 1;
}

.go-top::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid var(--color-light);
}

.go-top.show {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}

.go-top-foot,
.go-top.hide {
  pointer-events: none;
  opacity: 0;
}

.go-top.hide {
  transform: scale(0);
}

.go-top.hide svg {
  animation: none;
}

.go-top-foot {
  position: absolute;
  width: 5rem;
  height: 5rem;
  right: 2rem;
  bottom: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  z-index: 15;
}

.go-top-foot span,
.go-top-foot svg {
  position: absolute;
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  z-index: 2;
}

.go-top-foot svg {
  width: 60%;
  height: 60%;
  left: 20%;
  top: 20%;
  display: block;
  z-index: 3;
}

.go-top-foot::after,
.go-top-foot::before,
.go-top::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transform-origin: center center;
}

.go-top-foot::before {
  transform: scale(0);
  width: 50%;
  height: 50%;
  left: 25%;
  top: 25%;
}

.go-top-foot::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid currentColor;
}

.go-top-foot.show {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}

.go-top-foot.show svg {
  animation: trackBallSlide 3s alternate infinite;
}

.fullscreen .go-top {
  pointer-events: none;
  opacity: 0;
}

/* .srcoll-down span {
  background: url(../images/scroll-down.svg) no-repeat 50%/100%
}

.go-top-foot span {
  background: url(../images/go-top.svg) no-repeat 50%/100%
} */
.go-top.show svg,
.srcoll-down.show svg {
  animation: trackBallSlide 3s alternate infinite;
}

@keyframes trackBallSlide {
  90% {
    transform: none;
  }
  95% {
    transform: translateY(0.8rem);
  }
  100% {
    transform: none;
  }
}
.go-top {
  transition: all 0.3s ease-in-out;
}
.srcoll-down {
  transition: all 0.3s ease-in-out;
}
.go-top svg span,
.srcoll-down svg span {
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine) {
  .go-top:hover::before,
  .srcoll-down:hover::before {
    transform: scale(1);
    background-color: #fff;
    box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.4);
  }
  .go-top:hover svg path,
  .srcoll-down:hover svg path {
    fill: var(--color-main);
  }
}
.slider-pic-detail {
  margin: 0 10%;
}
.slider-pic-detail .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}

.slider-pic-detail .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-pic-detail .swiper-slide {
  background-color: transparent !important ;
  width: 45%;
  height: 100%;
}
.slider-pic-detail .swiper-slide[data-detect="1"] {
  width: 25% !important;
}

.content-clip {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  z-index: 5;
}

.clip-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  overflow: visible;
}

.clip-svg text {
  font-size: 10vw;
  font-family: Montserrat, sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}

.image-clip {
  position: relative;
  width: 100%;
  height: 15vw;
  display: grid;
  place-items: center;
}

.image-clip:last-child {
  margin-top: -5vw;
}

.image-inner {
  position: relative;
  width: calc(100% + var(--offset-x) * 2);
  height: calc(100% + var(--offset-y) * 2);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.ani-item.on-show {
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}

.zoom-pic {
  position: absolute;
  width: 3rem;
  height: 3rem;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: var(--color-white);
  border-radius: 50%;
  z-index: 10;
}

.zoom-pic span,
.zoom-pic::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.zoom-pic span {
  border: 1px solid var(--color-black-alpha);
}

.zoom-pic svg {
  position: relative;
  width: 60%;
  height: 60%;
  margin: 20%;
  display: block;
}

.zoom-pic::before {
  content: "";
  background: var(--color-highlight);
  opacity: 0;
}

.pic-detail-product .zoom-pic {
  width: 2rem;
  height: 2rem;
  top: auto;
  bottom: 1rem;
}

.pic-detail-product .zoom-pic::before {
  background: var(--color-black-alpha);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.pic-detail-product:hover .zoom-pic {
  box-shadow: 0 1rem 1rem 0 var(--color-black-alpha-01);
}
.pic-detail-product:hover .zoom-pic::before {
  opacity: 1;
  transform: scale(0.8);
  background: var(--color-main);
}
