@charset "UTF-8";

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

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

@font-face {
  font-family: "UTM Americana EB";
  src: url("../fonts/UTMAmericanaEB.woff2") format("woff2"), url("../fonts/UTMAmericanaEB.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-CondensedBlack.woff2") format("woff2"), url("../fonts/HelveticaNeue-CondensedBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeue-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-main: #5A3300;
  --color-hover: #B37D34;
  --color-gradient: linear-gradient(271deg, #F7EEA1 0.58%, #B7802D 99.56%);
  --color-text: #333;
  --color-background: #fff;
}

body {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Helvetica Neue", serif;
}

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

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  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 {
  transition: all 0.3s;
}

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

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

.scale-img:hover>picture {
  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 */
.header-top {
  background: #FCF7EE;
  padding: 10.5px 0;
}

.header-top .header-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
  color: #151515;
}

.header-bottom {
  background: url(../images/bg-header-bottom.png) no-repeat center center/cover;
  padding: 12px 0;
}

.header-bottom .heaeder-info-company {
  text-align: center;
}

.header-bottom .heaeder-info-company .name {
  color: #5A3300;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}

.header-bottom .heaeder-info-company .desc {
  color: #B37D34;
  font-family: "SFU Futura";
  font-size: 47px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 0;
}

.header-bottom .heaeder-info-company .content {
  color: #000;
  font-family: "UTM Americana EB";
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
}

.header-bottom .social {
  margin-bottom: 0.75rem;
}

.header-bottom .social p {
  color: #363533;
  margin-bottom: 0;
  margin-right: 10px;
}

.header-bottom .social .social-item {
  overflow: hidden;
  border-radius: 50%;
}

.header-bottom .header-info-hotline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-end;
  gap: 10px;
}

.header-bottom .header-info-hotline .hotline {
  color: #101010;
  margin-bottom: 0;
}

.header-bottom .header-info-hotline .hotline span {
  color: #B00008;
  font-family: "SFU Futura";
  font-size: 20px;
  font-weight: 700;
}

.header-bottom .header-info-hotline .worktime {
  color: #101010;
  margin-bottom: 0;
}

.header-bottom .header-info-hotline .worktime span {
  color: #5A3300;
  font-weight: 700;
}

/* translate */
body {
  top: 0 !important;
}

.skiptranslate iframe {
  display: none !important;
}

/* Menu */
.section-menu {
  background: #5A3300;
  transition: all 0.3s ease;
}

.fixed__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 4px 0;
}

.fixed__menu .menu-logo {
  margin-top: 0 !important;
  margin-right: 10px;
}

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

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

.menu .menu-logo {
  display: block;
  margin-top: -150px;
}

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

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

.menu ul li:not(.menu-line, .menu-search) {
  flex: auto;
  text-align: center;
  margin: 0 -4px;
}

.menu ul li.menu-line::before {
  content: "";
  position: absolute;
  background: url(../images/ic-line-menu.png) no-repeat;
  width: 12px;
  height: 57px;
  top: -27px;
  left: -5px;
}

.menu ul li a {
  display: block;
  position: relative;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  padding: 16px 0;
}

.menu ul li a.active {
  background: var(--color-gradient);
  color: #151515;
  -webkit-clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 52%, 100% 100%, 10px 100%, 0% 52%);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 52%, 100% 100%, 10px 100%, 0% 52%);
}

.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: #fff;
  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: 400;
  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: 40px;
  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: 30px;
  height: 30px;
  margin: 0px;
  background: var(--color-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #fff;
}

.search-res .icon-search.active {
  color: #fff;
  background: var(--color-hover);
  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;
  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: 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 {
  display: none;
}

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

#hamburger:before {
  content: "";
  background: #fff;
  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: #fff;
  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: #fff;
  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;
  background: #ddd;
}

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

.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 {
  position: relative;
  margin-bottom: 1.5rem;
  text-align: center;
}

.title-detail h1 {
  color: #5A3300;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.title-main {
  text-align: center;
  background: url(../images/title-main.png) no-repeat center bottom;
  padding-bottom: 1.75rem;
  margin-bottom: 1.5rem;
}

.title-main h2 {
  color: #5A3300;
  font-size: 37px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.title-main p {
  color: #151515;
  font-size: 17px;
  margin-bottom: 0;
}

/* criteria */
.section-criteria {
  background: #F8F7F1;
}

.criteria-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
}

.criteria-item .criteria-photo img {
  transition: all 0.6s linear;
}

.criteria-item .criteria-photo:hover>img {
  transform: rotateY(360deg);
}

.criteria-item .criteria-info {
  background: #5A3300;
  padding: 10px 5px 10px 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

.criteria-item .criteria-name {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
}

/* about */
.section-about {
  background: #F8F7F1;
}

.about-title {
  position: relative;
  margin-bottom: 24px;
  margin-left: -50px;
}

.about-title::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #5A3300;
  top: -15px;
  left: 0;
}

.about-slogan {
  color: #151515;
  font-size: 22px;
  letter-spacing: 2.2px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.about-name {
  color: #5A3300;
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-desc {
  color: #444;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 2rem;
}

.about-view {
  background: linear-gradient(270deg, #C18E35 0%, #FAF1A5 50%, #C18E35 100%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 15px 12px 15px 23px;
  color: #151515;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.about-view:hover {
  box-shadow: 0px 0px 10px 0px var(--color-hover);
}

.about-photo {
  position: relative;
  display: grid;
  grid-template-columns: 90% minmax(0, 1fr);
  align-items: flex-start;
}

.about-photo::before {
  content: "";
  position: absolute;
  background: url(../images/about-decor.png) no-repeat;
  width: 152px;
  height: 158px;
  top: 98px;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.about-photo::after {
  content: "";
  position: absolute;
  background: url(../images/about-decor-2.png) no-repeat;
  width: 268px;
  height: 268px;
  bottom: 37px;
  right: 182px;
  z-index: 0;
  pointer-events: none;
}

.about-photo .about-photo-item:nth-child(1) {
  position: relative;
  margin-left: 80px;
  z-index: 1;
}

.about-photo .about-photo-item:nth-child(2) {
  position: relative;
  margin-top: 315px;
  margin-left: -255px;
  z-index: 2;
}

.about-photo .about-photo-item:nth-child(2) .scale-img {
  border: 5px solid #FFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

/* product */
.product-item {
  position: relative;
  text-align: center;
}

.product-photo {
  position: relative;
  margin-bottom: 1rem;
}

.product-photo .product-contact {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: block;
  width: -moz-max-content;
  width: max-content;
  border-radius: 15px 15px 0 0;
  background: linear-gradient(270deg, #C18E35 0%, #FAF1A5 50%, #C18E35 100%);
  padding: 10px 30px;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s;
}

.product-photo .product-contact:hover {
  text-decoration: underline;
}

.product-name {
  color: #000;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
  transition: all 0.3s;
}

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

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

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

.section-newsletter .wrap-content {
  max-width: 600px;
}

.section-newsletter .title-main {
  background: url(../images/title-main-white.png) no-repeat top center;
}

.section-newsletter .title-main h2,
.section-newsletter .title-main p {
  color: #fff;
}

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

.newsletter-form .newsletter-input span {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}

.newsletter-form .newsletter-input input.form-control {
  border-radius: 12px;
  border: 1px solid #FFF;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.18);
  height: 46px;
  padding-left: 40px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.53);
}

.newsletter-form .newsletter-input input.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.53);
}

.newsletter-form .newsletter-input input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.53);
}

.newsletter-form .newsletter-input textarea.form-control {
  border-radius: 12px;
  border: 1px solid #FFF;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.18);
  height: 110px;
  padding-left: 40px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.53);
}

.newsletter-form .newsletter-input textarea.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.53);
}

.newsletter-form .newsletter-input textarea.form-control::placeholder {
  color: rgba(255, 255, 255, 0.53);
}

.newsletter-form .newsletter-button {
  text-align: center;
}

.newsletter-form .newsletter-button button {
  position: relative;
  width: 136px;
  height: 49px;
  border-radius: 50px;
  border: 1px solid #FFF;
  background: #FF8C1A;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.newsletter-form .newsletter-button button:hover {
  color: var(--color-hover);
  box-shadow: 0 0 10px var(--color-hover);
}

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

.section-video::before {
  content: "";
  position: absolute;
  background: #F8F7F1;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.section-video .title-main {
  position: relative;
  background: transparent;
  padding: 0;
}

.section-video .title-main::before {
  content: "";
  position: absolute;
  background: url(../images/title-video.png) no-repeat;
  width: 100%;
  max-width: 757px;
  height: 89px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.section-video .swiper-wrapper {
  align-items: center;
  margin: 0 auto;
}

@media (min-width: 1200px) {

  .section-video .swiper-slide-prev,
  .section-video .swiper-slide-next {
    width: 100% !important;
    max-width: 370px;
  }

  .section-video .swiper-slide-active {
    width: 100% !important;
    max-width: 510px;
  }
}

.section-video .swiper-pagination {
  --swiper-pagination-bottom: 0;
  --swiper-pagination-color: var(--color-gradient);
  --swiper-pagination-bullet-size: 13px;
  --swiper-pagination-bullet-inactive-color: #111111;
}

.video-item {
  position: relative;
  text-align: center;
}

.video-item::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.85) 100%);
  width: 100%;
  height: 90px;
  left: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

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

/* procedure */
.procedure-item {
  text-align: center;
}

.procedure-item .procedure-photo {
  margin-bottom: 14px;
}

.procedure-item .procedure-number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 36px;
}

.procedure-item .procedure-number span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #B37D34;
  border-radius: 50%;
  color: #FFF;
  font-size: 17px;
  text-transform: uppercase;
}

.procedure-item .procedure-number::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 33px;
  background: #E2E2E2;
  top: -36px;
  left: calc(50% - 1px);
}

.procedure-item .procedure-number:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #E2E2E2;
  left: 0;
  bottom: -27px;
}

.procedure-item .procedure-name {
  color: #363533;
  font-size: 17px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.procedure-item .procedure-desc {
  color: #363533;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

/* news */
.section-news .swiper {
  padding: 20px;
  margin: -20px;
}

.section-news .swiper-slide {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.news-item {
  display: block;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.news-item .news-info {
  position: relative;
  padding: 20px 15px 25px 65px;
}

.news-item .news-date {
  position: absolute;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  left: 10px;
  top: 0;
  color: #141414;
  margin-bottom: 0;
  background: linear-gradient(180deg, #B7802D 0%, #F7EEA1 50%, #B7802D 100%);
  padding: 15px 10px;
  border-radius: 20px 20px 0 0;
}

.news-item .news-name {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
}

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

.news-item .news-desc {
  color: #333;
  line-height: 23px;
  margin-bottom: 1rem;
}

.news-item .news-view {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5A3300;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
}

.news-item .news-view:hover {
  text-decoration: underline;
}

/* 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 #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}

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

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

/* footer */
.footer-article {
  position: relative;
  color: #363533;
  font-size: 15px;
}

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

.footer-article .footer-name {
  color: #5A3300;
  font-family: "SFU Futura";
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-article .footer-title {
  color: #151515;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-article .footer-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-article .footer-ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-article .footer-ul li a {
  color: #363533;
  transition: all 0.3s ease;
}

.footer-article .footer-ul li a:hover {
  color: var(--color-main);
  text-decoration: underline;
}

.footer-article .footer-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-article .footer-tags li a {
  color: #363533;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-article .footer-tags li a:hover {
  text-decoration: underline;
  color: var(--color-main);
}

.footer-fanpage {
  border-radius: 20px;
  overflow: hidden;
}

.footer-iframe {
  position: relative;
  width: 100%;
  height: 355px;
}

.footer-iframe::before,
.footer-iframe:after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(225deg, #B7802D 0%, #F7EEA1 50%, #B7802D 100%);
}

.footer-iframe::before {
  width: 210px;
  height: 180px;
  left: -8px;
  bottom: -8px;
}

.footer-iframe::after {
  width: 180px;
  height: 48px;
  top: -8px;
  right: 55px;
}

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

.footer-powered {
  padding: 1rem 0px;
  background: #5A3300;
  color: #fff;
}

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

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

/* 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 #e0e0e0;
  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;
  border-radius: 5px;
}

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

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

.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;
  font-weight: 400;
  border: 1px solid #ababab;
  border-radius: 4px !important;
  color: #333;
  background: linear-gradient(180deg, #FFF 0%, #F0F0F0 100%);
  transition: all 0.3s ease;
}

.pagination-ajax .page-item .page-link:hover {
  color: #fff;
  background: var(--color-main);
  border-color: var(--color-main);
}

.pagination-ajax .page-item.active .page-link {
  color: #fff;
  background: var(--color-main);
  border-color: var(--color-main);
}

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

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

.duongcheosang3::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 1;
}

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

.duongcheosang3:hover::before,
.duongcheosang3:hover::after {
  transform: rotateY(180deg);
  transition-duration: 1.3s;
  opacity: 0;
  height: 100%;
  width: 100%;
}

[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: 20px;
  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 {
  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;
  }
}