@charset "UTF-8";

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

@font-face {
  font-family: "RobotoSlab";
  src: url("../fonts/RobotoSlab-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Roboto Serif";
  src: url("../fonts/RobotoSerif-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Serif";
  src: url("../fonts/RobotoSerif-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Serif";
  src: url("../fonts/RobotoSerif-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Serif";
  src: url("../fonts/RobotoSerif-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

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

@font-face {
  font-family: "TheBoldFont";
  src: url("../fonts/1FTVTheBoldFont.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hamstring';
  src: url('../fonts/SVN-Hamstring.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



:root {
  --color-main: #78402f;
  --color-hover: #eaa105;
  --color-red: #920303;
  --color-text: #151515;
  --color-background: #fff;
}

body {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Roboto Serif", serif;
  min-width: 1190px;
}

.draw-body {
  background: url(../images/bg-main.webp) #efe0ba;
}

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

.gutter-x-30 {
  --bs-gutter-x: 30px;
}

.gutter-x-20 {
  --bs-gutter-x: 20px;
}

.gutter-x-5 {
  --bs-gutter-x: 5px;
}

/* reset */
.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.content-text p {
  margin-bottom: 1em;
}

.content-text ul,
.content-text ol {
  margin: 1em 0;
  padding-left: 40px;
}

.content-text ul {
  list-style-type: disc;
}

.content-text ol {
  list-style-type: decimal;
}

.content-text li {
  margin: 0.5em 0;
}

.content-text a {
  color: #0066cc;
  text-decoration: underline;
}

.content-text table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

.content-text th,
.content-text td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.content-text blockquote {
  margin: 1em 0;
  padding: 10px 20px;
  border-left: 5px solid #eee;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: inline-block;
}

svg {
  display: inline-block;
}

img:not(.initial) {
  transition: opacity 1s;
}

img:not([src]) {
  visibility: hidden;
}

img:is(.loaded, .error) {
  opacity: 1;
}

picture {
  display: inline-block;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

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

/* hover img */
.scale-img {
  display: block;
  overflow: hidden;
}

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

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

/* text split */
.text-split {
  --line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 3);
}

/* transition */
.transition {
  transition: 0.3s all;
}

/* header */
.section-header.detail .wrap-content {
  align-items: center;
}

.section-header.detail .header-logo {
  margin-bottom: 0;
}

.header-logo {
  position: relative;
  display: block;
  z-index: 99;
}

.header-child:nth-child(1) {
}

.header-info {
  color: #333;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 0;
}

/* Menu */
.section-menu {
  background: transparent;
}

.fixed__menu {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.fixed__menu .wrap-content {
  align-items: center;
}

.fixed__menu .header-logo {
  margin-bottom: 0;
}

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

.fixed__menu .header-child:nth-child(1) {
  display: none;
}

.fixed__menu .menu {
  margin-top: 0;
}

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

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

.menu ul.menu-main {
  gap: 10px;
  padding: 5px 20px 5px 50px;
  position: relative;
}

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

.menu ul li:not(.menu-line, .menu-search) {
}

.menu ul li a {
  display: block;
  position: relative;
  font-family: "RobotoSlab";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 0;
  color: #fff;
}

.menu ul li a.active {
  color: var(--color-hover);
}

.menu ul li:hover > a {
  color: var(--color-hover);
}

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

.menu ul li ul {
  position: absolute;
  min-width: 250px;
  left: 0;
  background: #f2e2ba;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.menu ul li ul li {
  border-bottom: 1px solid rgba(173, 173, 173, 0.32);
  margin: 0 !important;
}

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

.menu ul li ul li a {
  text-align: left;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px;
}

.menu ul li ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-main);
  transition: all 0.3s linear;
  visibility: hidden;
  opacity: 0;
}

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

.menu ul li ul li:hover > a {
  padding-left: 20px;
  color: var(--color-main);
  background: transparent;
}

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

/* search */
.search {
  width: 270px;
  height: 37px;
  background: url(../images/bg-search.png) no-repeat center center/cover;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.search input {
  background: transparent;
  border-radius: 0;
  border: none;
  width: 100%;
  font-size: 15px;
  color: #6d6d6d;
}

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

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

.search input::placeholder {
  color: #6d6d6d;
}

.search button {
  cursor: pointer;
  color: #8d8d8d;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  padding-left: 14px;
}

/* Search res */
.search-res {
  position: relative;
}

.search-res .icon-search {
  cursor: pointer;
  width: 37px;
  height: 37px;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #047732;
}

.search-res .icon-search.active {
  color: var(--color-hover);
  background: var(--color-main);
  border-radius: 50%;
}

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

.search-res .search-grid button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  margin: 0px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--color-main);
}

.search-res .search-grid input {
  font-size: 13px;
  width: 100%;
  height: 38px;
  padding-left: 15px;
  outline: none;
  border: none;
  box-shadow: none;
}

/* box search */
.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 */
.menu-mobile {
  display: none;
}

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

.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: var(--color-main);
  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-logo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-mobile-logo img {
  max-width: 80px;
}

.menu-mobile-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-mobile-content ul li {
  position: relative;
}

.menu-mobile-content ul li a {
  position: relative;
  display: block;
  padding-right: 30px;
  color: #333;
  font-size: 15px;
  text-transform: capitalize;
  padding: 10px 0px;
  border-bottom: 1px solid #f1f1f1;
}

.menu-mobile-content ul li a i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #fff;
  background: var(--color-main);
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.menu-mobile-content ul li:hover > a {
  color: var(--color-main);
}

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

.menu-mobile-content ul li ul li a {
  font-size: 14px;
}

.menu-mobile-content ul li ul li a i {
  font-size: 17px;
  background: transparent;
  color: #333;
}

.menu-mobile-company {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

.menu-mobile-company p {
  color: #333;
  font-size: 13px;
  margin-bottom: 8px;
}

.search-menu {
  width: 245px;
  position: relative;
}

.search-menu input {
  width: 100%;
  background: transparent;
  border: 0;
  height: 32px !important;
  font-size: 13px;
  padding-left: 32px;
  color: #fff;
}

.search-menu input::placeholder {
  color: #f1d0c6;
}

.search-menu p {
  position: absolute;
  left: 13px;
  bottom: 8px;
}

#menu {
  display: none;
}

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

#hamburger:before {
  content: "";
  background: var(--color-main);
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: none 0.5s ease 0.5s;
  transition-property: transform, top, bottom, left, opacity;
}

#hamburger:after {
  background: var(--color-main);
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  top: 20px;
  transition: none 0.5s ease 0.5s;
  transition-property: transform, top, bottom, left, opacity;
}

#hamburger span {
  background: var(--color-main);
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  top: 10px;
  transition: none 0.5s ease 0.5s;
  transition-property: transform, top, bottom, left, opacity;
}

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

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

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

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

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

/* breadcrumbs */
.breadCrumbs {
  padding: 10px 0px;
  border: 1px solid #111;
  border-width: 1px 0;
}

.breadCrumbs ol {
  margin: 0px;
}

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

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

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

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 38px;
  --swiper-navigation-color: #fff;
  --swiper-background-color: var(--color-main);
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  background: var(--swiper-background-color);
  transition: 0.3s ease-out;
  border-radius: 50%;
  border: 0;
  outline: 0;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {
  box-shadow: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  --swiper-navigation-size: 18px;
  color: var(--swiper-navigation-color);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  --swiper-background-color: var(--color-hover);
}

/* general */
.title-detail,
.title-main {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
  z-index: 1;
}

.title-main.text-white p {
  color: #ffb822;
}

.title-main.text-white h2 {
  color: #fff;
}

.title-main p {
  color: var(--color-hover);
  font-family: "iCielBCRostrum";
  font-size: 40px;
  line-height: 1;
  margin-bottom: 0;
  text-shadow: 1.5px -1.5px 0px #78402f, 1.5px 1.5px #78402f, 1.5px 0px #78402f,
    0px 1.5px #78402f, 0px -1.5px #78402f, -1.5px 0px #78402f,
    -1.5px -1.5px #78402f, -1.5px 1.5px #78402f, 3px 2px 0px #78402f;
}

.title-main h2,
.title-main h1,
.title-detail h2,
.title-detail h1 {
  color: var(--color-main);
  font-family: "TheBoldFont";
  font-size: 50px;
  margin-bottom: 0;
  letter-spacing: 1px;
  line-height: 1.5;
  text-shadow: 2px -2px 0px #fff9e8, 2px 2px #fff9e8, 2px 0px #fff9e8,
    0px 2px #fff9e8, 0px -2px #fff9e8, -2px 0px #fff9e8, -2px -2px #fff9e8,
    -2px 2px #fff9e8, 5px 5px var(--color-hover);
}

.title-detail h2,
.title-detail h1 {
  font-size: 30px;
}

/* slider */
.section-slideshow,
.slider-image {
  aspect-ratio: calc(1920 / 707);
}

/* product */
.section-product-menu {
  position: relative;
}

.product-item {
  position: relative;
}

.product-photo {
  position: relative;
}

.product-photo .scale-img {
}

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

.product-name {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s;
  margin-bottom: 0.25rem;
}

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

.product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-price .price-new {
  color: var(--color-red);
  font-family: "iCielBCPortico";
  font-size: 22px;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-price .price-old {
  color: #9b9b9b;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

/* video */
.section-video {
  position: relative;
  background: url(../images/img14.webp) no-repeat 8% 95% / 7% auto,  url(../images/img20.png) no-repeat 18% 86% / 15% auto ,  
    url(../images/img19.png) no-repeat 44% 26%/ 37% auto  ,url(../images/bg-video.webp) no-repeat center top / cover;
}

.section-video .wrap-content {
  position: relative;
}

.video-content {
  position: relative;
  margin-top: 40px;
}

.video-main .video-home-item {
  position: relative;
}

.video-main .video-home-item .scale-img {
  border-radius: 20px;
}

.video-bottom {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 30px;
}

.video-bottom .swiper {
  max-width: 615px;
}

.video-bottom
  .swiper-slide:not(.swiper-slide-thumb-active)
  .video-home-item:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 20px;
}

.video-bottom .video-home-item {
  position: relative;
}

.video-bottom .video-home-item::before {
  content: "";
  position: absolute;
  background: url(../images/main/play-video-2.webp) no-repeat center center;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.video-bottom .video-home-item .scale-img {
  border-radius: 20px;
}

.video-home-item {
  position: relative;
}

/* Video */
.video-item {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.video-item::before {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.3);
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 10px;
}

.video-photo {
  position: relative;
}

.video-photo::before {
  content: "";
  position: absolute;
  background: url(../images/play.png) no-repeat center center;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.video-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0 10px 24px;
}

.video-info h3 {
  cursor: pointer;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
}

.video-info h3:hover {
  color: var(--color-hover);
}

/* news */
.section-news {
  position: relative;
}

.title__news::after {
    position: absolute;
    content: '';
    background: url(../images/img10.webp) no-repeat top right / 100% 100%;
    width: 14%;
    aspect-ratio: 167/183;
    bottom: 10%;
    left: 22%;
}

.title__news a {
    background: var(--color-main);
    text-align: center;
}

.title__news a::after {
    position: absolute;
    content: '';
    width: 72%;
    height: calc(100% + 10px);
    border: 1px solid var(--color-main);
    left: -5px;
    top: -5px;
    z-index: -1;
}

.news-item-left {
    mask: url(../images/img11.webp) no-repeat center center / 100% 100%;
}

.news-item-left::before {
    position: absolute;
    content: '';
    background: url(../images/img12.webp) no-repeat center center / 100% 100%;
    width: 97%;
    height: 96%;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    z-index: 2;
}

.news-item {
  overflow: hidden;
  background: url(../images/img13.webp) no-repeat center center / 100% 100%;
  margin-bottom: 0;
}

.news-item .news-photo {
  position: relative;
}

.news-item .news-date {
  position: absolute;
  right: 23px;
  bottom: -10px;
}

.news-item .news-date .news-date-box {
  position: relative;
  border-radius: 5px 5px 0px 0px;
  background: #047732;
  width: 60px;
  height: 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
  color: #ffb822;
}

.news-item .news-date .news-date-box span:nth-child(1) {
  font-family: "SVN-HC Read One";
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
}

.news-item .news-date .news-date-box span:nth-child(2) {
  font-size: 15px;
}

.news-item .news-date::before {
  content: "";
  position: absolute;
  background: url(../images/main/before-date.png) no-repeat;
  width: 81px;
  height: 10px;
  left: calc(50% - 40px);
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.news-item .news-info {
  padding: 20px;
  background: #fff;
}

.news-item .news-name {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  transition: all 0.3s;
  margin-bottom: 0.5rem;
}

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

.news-item .news-desc {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0;
}

/* partner */
.section-partner {
  background: #fffdf3;
}

.partner-item {
  display: block;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
}

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

.share b {
  display: block;
  margin-bottom: 5px;
}

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

.list-news-other {
  padding-left: 17px;
  list-style: square;
}

.list-news-other li {
  margin-bottom: 2px;
}

.list-news-other li a {
  text-transform: none;
  color: #333333;
}

.list-news-other li a:hover {
  color: #fed402;
}

/* toc */
.box-readmore {
  padding: 8px 15px;
  border: 1px solid #111;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.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: 700;
  transition: 0.4s;
}

.box-readmore ul li ul li a {
  font-weight: 400;
}

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

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

/* footer */
.section-footer {
  position: relative;
  background: url(../images/bg-footer.webp) top center / cover;
  padding: 60px 0 60px;
}

.section-footer::before {
    position: absolute;
    content: '';
    background: url(../images/img16.webp) no-repeat center center / 100% 100%;
    aspect-ratio: 1;
    left: 5%;
    top: -12%;
    width: calc((259/1920)*100%);
    z-index: 2;
}

.footer-article {
  position: relative;
  padding: 20px 0;
}

.footer-bottom {
  border-top: 1px solid #970a0a;
  padding-top: 30px;
  margin-top: 30px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
}

.newsletter-form .newsletter-input {
  position: relative;
}

.newsletter-form .newsletter-input span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.newsletter-form .newsletter-input input,
.newsletter-form .newsletter-input textarea {
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  height: 40px;
  border-bottom: 1px solid rgba(136, 136, 136, 0.5);
  color: #292929;
  font-size: 14px;
  font-weight: 400;
}

.newsletter-form .newsletter-input input::-moz-placeholder,
.newsletter-form .newsletter-input textarea::-moz-placeholder {
  color: #292929;
}

.newsletter-form .newsletter-input input::placeholder,
.newsletter-form .newsletter-input textarea::placeholder {
  color: #292929;
}

.newsletter-form .newsletter-input textarea {
  height: 60px;
}

.newsletter-form .newsletter-button {
  margin-top: 20px;
  text-align: center;
}

.newsletter-form .newsletter-button button {
  border: 0;
  border-radius: 0;
  width: 200px;
  height: 34px;
  background: #047732;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.newsletter-form .newsletter-button button:hover {
  background: var(--color-hover);
  color: #000;
}

.footer-fanpage {
  border: 1px solid #ffb822;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}

.footer-map {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.footer-powered {
  color: #fff;
  font-size: 13px;
}

.footer-powered .wrap-content {
  padding: 1.25rem 0px;
  border-top: 1px solid #2ab172;
}

.copyright span {
  text-transform: uppercase;
  font-weight: 500;
}

.statistic span {
  position: relative;
  padding: 0px 5px;
}

/* css old */

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

/* Catagory */
.category {
  position: sticky;
  top: 70px;
}

.category-title {
  background: var(--color-main);
  padding: 10px 15px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  display: grid;
  place-items: center;
}

.category-list {
  background: #fff;
  box-shadow: 0 0 10px 0 #e0e0e0;
  border: 1px solid #e0e0e0;
  border-top: 0;
}

.category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 10px;
}

.category-list ul.category-list-ul {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 500px;
}

.category-list ul.category-list-ul::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.category-list ul.category-list-ul::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 5px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

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

.category-list ul li {
  position: relative;
  padding: 10px 0;
}

.category-list ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

.category-list ul li a {
  position: relative;
  display: block;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-list ul li a i {
  position: absolute;
  background: var(--color-main);
  border-radius: 5px;
  width: 25px;
  height: 25px;
  top: calc(50% - 12px);
  right: 0;
  display: grid;
  place-items: center;
  color: #fff;
}

.category-list ul li a i:hover {
  color: var(--color-hover);
}

.category-list ul li a:hover,
.category-list ul li a.active {
  color: var(--color-main);
}

.category-list ul li ul {
  display: none;
  padding: 0;
  padding-left: 10px;
}

.category-list ul li ul li a {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

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

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

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

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

/* filter */
.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 {
  width: 250px;
  border: 1px solid #f1f1f1;
  padding: 20px;
  border-radius: 5px;
}

.flex-product-main .right-product {
  width: calc(100% - 250px);
}

/* product */
.product {
  display: block;
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  border: 1px solid #f1f1f1;
}

.product .pic-product {
  background: #fff;
  margin-bottom: 10px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: solid 1px transparent;
}

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

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

.product:hover .pic-product {
  border: solid 1px #ccc;
}

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

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

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

.product .name-product a {
  font-size: 15px;
  color: #232323;
  font-weight: 500;
}

.product .name-product a:hover {
  color: #ff2e00;
}

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

.product .price-product {
  margin-bottom: 10px;
  color: #555;
}

.product .price-new {
  font-size: 16px;
  font-weight: 500;
  color: #ff2e00;
  display: inline-block;
  text-transform: uppercase;
}

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

.product .price-per {
  color: #ff2e00;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
}

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

/* detail product */
.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 #111;
  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 {
  color: #f00;
}

.nav-tabs .nav-link:hover {
  color: #f00;
}

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

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

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

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

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

.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);
  background-color: #333;
  content: "";
  left: 13px;
  height: 14px;
  position: absolute;
  top: 10px;
  width: 1px;
}

.btn-closemenu::after {
  transform: rotate(-45deg);
  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;
}

/* im here */
/* css menu */
.slogan-header {
  background: url(../images/img2.webp) no-repeat center left;
}

.menu ul.menu-main::after {
  position: absolute;
  content: "";
  background: url(../images/img1.png) no-repeat center center / 100% 100%;
  aspect-ratio: calc(63 / 52);
  height: 100%;
  left: calc(100% - 2px);
  top: 0;
}

.menu ul.menu-main::before {
  position: absolute;
  content: "";
  background: var(--color-main);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 20px 50%, 0 0);
  pointer-events: none;
}

.shape-menu {
  width: calc(100% - 30px);
  border-top: 3px solid var(--color-main);
  padding-top: 4px;
}

.section-header {
  padding-bottom: 40px;
  margin-bottom: -30px;
  background: url(../images/bg-header.webp) no-repeat center bottom / cover;
}

.section-slideshow {
  margin-top: -27px;
}

/* css intro */
.item-intro-3 {
  padding: 25px 0 0 90px;
}

.text-intro-2 {
  text-align: center;
  text-shadow: 3px 0 #fff9e8, -3px 0 #fff9e8, 0 3px #fff9e8, 0 -3px #fff9e8,
    2px 2px #fff9e8, -2px -2px #fff9e8, 2px -2px #fff9e8, -2px 2px #fff9e8,
    0 5px 5px rgba(0, 0, 0, 0.8);
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 25px;
}

.text-intro-1 {
  color: var(--color-hover);
  text-shadow: 2px 0 #fff9e8, -2px 0 #fff9e8, 0 2px #fff9e8, 0 -2px #fff9e8,
    1px 1px #fff9e8, -1px -1px #fff9e8, 1px -1px #fff9e8, -1px 1px #fff9e8,
    5px 5px #78402f;
  margin-bottom: 0;
}

.text-intro-1::after {
  position: absolute;
  content: "";
  background: url(../images/img18.webp) no-repeat center center / 100% 100%;
  aspect-ratio: calc(119 / 35);
  left: 105%;
  bottom: 0;
  width: 119px;
}

.text-intro-2::before,
.text-intro-2::after {
  position: absolute;
  content: "";
  background: var(--color-main);
  height: 2px;
  bottom: 0;
}

.item-intro-3::after {
  z-index: 4;
  position: absolute;
  content: "";
  background: url(../images/img5.webp) no-repeat center center / 100% 100%;
  width: 38.5%;
  aspect-ratio: calc(217 / 179);
  top: -23%;
  left: -10%;
}

.text-intro-2::before {
  width: 36%;
  left: 0;
}

.text-intro-2::after {
  right: 0;
  width: 57%;
}

.desc-intro {
  margin-right: 35px;
}

.section-about {
  background: url(../images/bg-intro.webp) no-repeat center bottom / cover;
}

.bg-intro-content {
  background: url(../images/bg-intro-back.webp) no-repeat bottom right / 91% 80%;
}

.bg-intro-content::before {
  position: absolute;
  content: "";
  aspect-ratio: calc(250 / 376);
  width: 21%;
  left: 0;
  bottom: 8%;
  background: var(--color-main);
  mix-blend-mode: multiply;
}

.section-about::before {
  position: absolute;
  content: "";
  background: url(../images/img4.webp) no-repeat center center / 100% 100%;
  aspect-ratio: 227/215;
  width: 11%;
  max-width: 227px;
  left: 12%;
  top: -1%;
}

.item-intro-4 {
  right: 2%;
  bottom: 24%;
}

.item-intro-4 h2 {
  writing-mode: vertical-rl;
}

.item-intro-4::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 86px;
  bottom: 118%;
  background: var(--color-main);
  left: 28%;
  margin: 0 auto;
  z-index: 3;
}

/* css product */
.bg-pro-item {
  background: url(../images/img8.webp) no-repeat center center / cover;
}

.best-seller-title::before,
.best-seller-title::after {
  position: absolute;
  content: "";
}

.best-seller-title::before {
  background: url(../images/img6.webp) no-repeat center center / 100% 100%;
  aspect-ratio: 243/139;
  left: 9%;
  width: 20%;
  top: -26%;
}

.best-seller-title::after {
  background: url(../images/img7.webp) no-repeat center center / 100% 100%;
  aspect-ratio: 176/126;
  width: 15%;
  right: 12%;
  top: -13%;
}

/* css slide product */
.shape-slide-pro {
  background: url(../images/img9.webp) no-repeat center bottom / 100% 96.5%;
}

/* css video */
.title-video h2 {
    display: inline-block;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
}

.title-video {
    position: relative;
    padding-right: 15px;
}

.title-video::before {
    position: absolute;
    content: '';
    border: 1px solid var(--color-hover);
    width: 96px;
    height: 100%;
    top: 0;
    right: 0;
}

.icon-video::before {
  position: absolute;
  content: '';
  background: url(../images/img17.webp) no-repeat center center;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 102px;
  aspect-ratio: 1;
  pointer-events: none;
}

/* css album */
.section-album::before {
    position: absolute;
    content: '';
    aspect-ratio: 280/230;
    background: url(../images/img15.webp) no-repeat center center / 100% 100%;
    width: 14.5%;
    right: 14%;
    top: 12%;
    pointer-events: none;
}

.main-album {
    position: absolute;
    left: 3%;
    bottom: calc((60/952) * 100%);
    margin: 0;
}

.main-album h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 80px;
    letter-spacing: 1.6px;
    line-height: 1;
}

.albums-0 {
 width: calc((498/1137) * 100%);
 left: calc((22/1137) * 100%);
 top: calc((50/952) * 100%);
}

.albums-1 {
 width: calc((425/1137) * 100%);
 padding: 1%;
 border: 1px solid var(--color-main);
 right: calc((145/1137) * 100%);
 top: 0;
}

.albums-2 {
 width: calc((569/1137) * 100%);
 right: 0;
 bottom: calc((244/952) * 100%);
}

.albums-3 {
 width: calc((327/1137) * 100%);
 bottom: calc((48/925) * 100%);
 padding: 1%;
 border: 1px solid var(--color-main);
 left: calc((94/1137) * 100%);
}

.albums-4 {
  bottom: 0;
  width: calc((388/1137) * 100%);
  right: calc((288/1137) * 100%);
  border: 7px solid #EEDEC3;
}

/* custom */
/* css mix */
.img-fit {
  object-fit: cover;
}

.nav-tabs {
  border-color: #111;
}

.hover_color {
  transition: 0.3s;
}

.hover_color:hover {
  color: var(--color-main);
}

.widget-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-main);
  position: relative;
  padding-bottom: 8px;
}

.tags-pro-detail a:hover {
  background: var(--color-main);
  color: #fff;
}

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

.tabs-pro-detail .nav-tabs .nav-link {
  font-size: 13px;
  color: #333;
  text-transform: uppercase;
  font-weight: 500;
  border: 0;
  border-radius: 0;
  margin: 0 5px 5px 0;
  border: 1px solid #111;
}

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

.row-10 {
  margin: 0 -5px;
}

.pd-10 {
  padding: 0 5px;
}

.row-20 {
  margin: 0 -10px;
}

.col-20 {
  padding: 0 10px;
}

.row-30 {
  margin: 0 -15px;
}

.col-30 {
  padding: 0 15px;
}

.mg-b-30 {
  margin-bottom: 30px;
}

.mg-b-20 {
  margin-bottom: 20px;
}

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

.padding-top-bottom {
  padding: 3.5rem 0;
}

.contact-input .form-floating > .form-control {
  padding: 15px 10px 5px;
  height: unset;
  line-height: 1.5;
}

.contact-input .form-floating > label {
  padding: 0.5rem 0.75rem;
  line-height: 26px;
}

/* pagination */
.pagination {
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--color-main);
  border-color: var(--color-main);
}

.page-link {
  color: #333;
}

.pagination-ajax {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pagination-ajax .page-item .page-link {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 14px !important;
  line-height: 1;
  border-radius: 50px !important;
  color: #000;
  background: transparent;
  transition: all 0.3s ease;
  border: 0;
  background: #f5ead6;
}

.pagination-ajax .page-item.active .page-link,
.pagination-ajax .page-item .page-link:hover {
  color: #fff;
  background: var(--color-hover);
  mix-blend-mode: multiply;
}

.pagination-ajax .page-item.disabled .page-link {
  pointer-events: none;
}

.pagination-ajax .page-item:first-child .page-link,
.pagination-ajax .page-item:last-child .page-link {
  font-size: 0 !important;
}

.pagination-ajax .page-item:first-child .page-link::before,
.pagination-ajax .page-item:last-child .page-link::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 14px;
}

.pagination-ajax .page-item:first-child .page-link::before {
  content: "\f053";
}

.pagination-ajax .page-item:last-child .page-link::before {
  content: "\f054";
}

/* product */
.grid-properties {
  display: flex;
  gap: 10px;
}

.grid-properties span {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  cursor: pointer;
}

.grid-properties span:hover {
  border: 1px solid #f00;
  color: #f00;
}

.grid-properties span:hover: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.active {
  border: 1px solid #f00;
  color: #f00;
}

.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 {
  cursor: pointer;
  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: 100;
}

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

/* Hvr Float Shadow */
.hvr-float-shadow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 1px transparent;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-float-shadow:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 5%;
  z-index: -1;
  width: 90%;
  height: 10px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35) 0,
    transparent 80%
  );
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  pointer-events: none;
}

.hvr-float-shadow:active {
  transform: translateY(-5px);
}

.hvr-float-shadow:active:before {
  opacity: 1;
  transform: translateY(5px);
}

.hvr-float-shadow:focus {
  transform: translateY(-5px);
}

.hvr-float-shadow:focus:before {
  opacity: 1;
  transform: translateY(5px);
}

.hvr-float-shadow:hover {
  transform: translateY(-5px);
}

.hvr-float-shadow:hover:before {
  opacity: 1;
  transform: translateY(5px);
}

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

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;
  color: #f00;
  transform: rotateX(90deg) translateZ(25px);
}

.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:hover {
  transform: translateZ(-25px) rotateX(-90deg);
}

/* news detail */
.ds-news span {
  display: block;
  line-height: 25px;
  color: #999;
  font-size: 13px;
  margin: 10px 0px 0px;
  font-style: italic;
}

.ds-news h3 {
  -webkit-line-clamp: 2;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 0;
}

.ds-news h3:hover {
  color: var(--color-main);
}

.ds-news .desc {
  color: #333;
}

.item-news-all a {
  display: flex;
  justify-content: space-between;
}

.item-news-all a .ds-news {
  width: calc(100% - 110px);
}

.item-news-all a .ds-news h3 {
  text-transform: capitalize;
  font-size: 15px;
}

.news-right {
  position: sticky;
  top: 80px;
  padding: 20px;
  box-shadow: 0px 0px 5px #00000030;
  border: 1px solid #111;
  border-radius: 5px;
}

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

.btn_link.effect_button:first-child:after {
  content: "facebook";
  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:first-child:before {
  content: "facebook";
  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 {
  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));
  content: "google map";
}

.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));
  content: "google map";
}

div.slick.in-page:not(.slick-initialized) {
  display: flex;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}

/* product detail */
.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 {
  color: #fff !important;
  background: #232323;
}

.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 i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}

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

.modal-title {
  font-size: 20px;
}

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

/* support online */
.support-online .kenit-alo-circle-fill {
  transition: 0.3s all;
}

/* btn frame */
.btn-frame .kenit-alo-circle-fill {
  transition: 0.3s all;
  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 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 .pulse {
  animation-name: pulse;
}

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

.hover_twin_retangle {
  position: relative;
  overflow: hidden;
}
.hover_twin_retangle::before {
  pointer-events: none;
  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: 1;
}
.hover_twin_retangle::after {
  pointer-events: none;
  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_twin_retangle:hover::before,
.hover_twin_retangle:hover::after,
.product:hover .hover_twin_retangle::before,
.product:hover .hover_twin_retangle::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%;
}
