/* header start */

section {
  overflow: hidden;
}
.main-logo {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 190px;
  max-width: 200px;
}

.social-icons-wrapper i {
  color: rgba(184, 184, 184, 1);
  font-size: 1.3rem;
  cursor: pointer;
}
.social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 36px;
}

.social-icon-alt {
  aspect-ratio: 1.19;
  object-fit: contain;
  object-position: center;
  width: 37px;
  align-self: start;
  margin-top: 4px;
}

.nav-links {
  align-self: start;
  display: flex;
  margin-top: 8px;
  gap: 28px;
  color: rgba(30, 30, 30, 1);
  font: 400 24px Inter, sans-serif;
}

.nav-item {
  display: flex;
  flex-direction: column;
}

.nav-underline {
  aspect-ratio: 71.43;
  object-fit: contain;
  object-position: center;
  width: 139px;
  margin-top: 8px;
}

.nav-link {
  align-self: start;
  flex-basis: auto;
}

.menu_a_level_1 {
  font-family: Montserrat-Light;
  color: var(--text-color);
  text-transform: uppercase;
  font-size: clamp(1.15rem, 0.691rem + 0.7164vw, 1.3rem);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  padding: 10px 15px;
  position: relative;
}
.menu_li_level_1.active .menu_a_level_1::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-color);
}
.menu_li_level_1:hover .menu_a_level_1 {
  color: var(--main-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
/* header end */

/* menu mobile start */
.hq-menu-mobile {
  position: sticky;
  width: 100%;
  top: 0;
  height: auto;
  z-index: 1000;
  background: var(--background-color);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.logo-header-img-mobile {
  width: 70px;
  height: auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.menu-mobile-language-box .dropdown-toggle::after {
  display: none;
}
.menu-mobile-language-box .dropdown-menu {
  min-width: 150px;
  /* background: var(--background-color); */
  box-shadow: none !important;
  border: none !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.menu-mobile-language-box .dropdown-item {
  color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--normal-font);
}
.menu-mobile-language-box .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.menu-mobile-language-box .dropdown-menu li:first-of-type .dropdown-item:hover {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.menu-mobile-language-box .dropdown-menu li:last-of-type .dropdown-item:hover {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
/* bar start */

.burger {
  position: relative;
  width: 35px;
  height: 23px;
  background: transparent;
  cursor: pointer;
  display: block;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--text-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 25px;
  left: 5px;
}

.burger input.toggle-open ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input.toggle-open ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input.toggle-open ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 25px;
  left: 5px;
}
/* bar end */

.hc-nav-trigger.hc-nav-1 {
  opacity: 0;
}
.hc-offcanvas-nav h2 {
  background-color: var(--main-color) !important;
}
.hq-menu-mobile {
  transition: all 0.6s ease-in-out;
}

.hq-menu-mobile.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.hq-menu-mobile.active {
  transform: translateY(0);
  opacity: 1;
}
.menu-mobile-language-box i {
  color: var(--background-color);
}
.hq-menu-mobile.active {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hq-menu-mobile.active .logo-header-img-mobile {
  width: 80px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hq-menu-mobile.active {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.mp-logo-header-mobile img {
  width: 80px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hq-menu-mobile-box {
  font-size: 1.5rem;
  color: var(--main-color);
}
.hq-menu-mobile-box a {
  color: var(--main-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hq-menu-mobile.active .mp-logo-header-mobile img {
  width: 40px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.mp-menu-mobile-offcanvas {
  background-color: var(--second-background-color);
}
.mp-menu-mobile-offcanvas .btn-close {
  font-size: 1.5rem;
}
.mp-menu-mobile-offcanvas-a {
  font-size: clamp(1.3rem, 1.1571rem + 0.7143vw, 1.5rem);
  text-transform: uppercase;
  font-family: Montserrat-Light;
  color: var(--text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.mp-menu-mobile-offcanvas-li.active .mp-menu-mobile-offcanvas-a {
  font-family: Montserrat-Black;
}
.form-search-mobile .form-control {
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  height: 40px;
}
.form-search-mobile .input-group-text {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--main-color);
}
.input-group {
  border-bottom: 1px solid var(--main-color);
}
/* menu mobile end */

/* giới thiệu start */

.product-image-wrapper {
  /* width: 100%; */
  z-index: 10;
  min-height: 100%;
  --bs-aspect-ratio: 130%;
}

.product-image-wrapper img,
.product-image-wrapper a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  background-color: rgb(246, 243, 238);
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  color: rgb(97, 97, 97);
  width: 100%;
  min-height: 100%;
  justify-content: center;
}

.product-subtitle {
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
  color: rgba(97, 97, 97, 1);
  font-family: Montserrat-Light;
}

.product-title {
  color: rgb(49, 115, 68);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 19px;
  width: 427px;
}

.product-feature-primary {
  font-family: Inter, sans-serif;
  align-self: center;
  margin: 35px 0 0 50px;
}

.product-feature-secondary {
  font-family: Inter, sans-serif;
  font-weight: 700;
  align-self: center;
  margin-left: 47px;
}

.cta-button {
  background-color: rgb(196, 187, 167);
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgb(30, 30, 30);
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.text-bold {
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* giới thiệu end */

/* danh mục nổi bật start */
.mp-danh-muc-item {
  overflow: hidden;
  clip-path: inset(100% 0% 0% 0%);

}
.mp-danh-muc-item-image {
  overflow: hidden;
  --bs-aspect-ratio: 130%;
  position: relative;
  z-index: 1;
}
.mp-danh-muc-item-image a,
.mp-danh-muc-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  -webkit-transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -ms-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
}
.mp-danh-muc-item:hover .mp-danh-muc-item-image img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.6s ease;
  -webkit-transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -ms-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
}
.mp-danh-muc-item-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--background-color);
  font-family: lato-black;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 0.7154rem + 0.9231vw, 1.5rem);
  pointer-events: none;
  text-align: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition-delay: 0.2s;
}
.mp-danh-muc-item:hover:hover .mp-danh-muc-item-content {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.mp-danh-muc-content-bottom {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  font-family: lato-black;
  font-size: clamp(0.9rem, 0.7769rem + 0.6154vw, 1.3rem);
  text-align: center;
  backdrop-filter: blur(20px);
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  pointer-events: none;
}
.mp-danh-muc-item:hover:hover .mp-danh-muc-content-bottom {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition-delay: 0.2s;
}
/* danh mục nổi bật end */

/* video start */
.mp-video-noi-bat-box-title {
  text-transform: uppercase;
  font-size: clamp(1.15rem, 1.1038rem + 0.2308vw, 1.3rem);
  font-family: Montserrat-Light;
}
.mp-video-noi-bat-box-des {
  font-family: Montserrat-Light;
}
.mp-video-noi-bat-content-video-box {
  max-width: 400px;
  margin: 0 auto;
}
.mp-video-noi-bat-content-video-box video {
  width: 100%;
  height: auto;
}
/* video end */

/* giới thiệu start */
.mp-title {
  text-transform: uppercase;
  font-size: clamp(1.15rem, 1.1038rem + 0.2308vw, 1.3rem);
  font-family: Montserrat-Light;
}
.mp-gioi-thieu-swiper-image {
  overflow: hidden;
  cursor: pointer;
}
.mp-gioi-thieu-swiper-image a,
.mp-gioi-thieu-swiper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-gioi-thieu-swiper .swiper-slide .mp-gioi-thieu-swiper-item {
  opacity: 0.4;
  filter: blur(5px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-filter: blur(5px);
  overflow: hidden;
  transform: scale(0.85);
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
}
.mp-gioi-thieu-swiper
  .swiper-slide.swiper-slide-active
  .mp-gioi-thieu-swiper-item {
  opacity: 1;
  filter: blur(0px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-filter: blur(0px);
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.mp-navigation-prev {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--main-color);
  color: var(--background-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.mp-navigation-next {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--main-color);
  color: var(--background-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.mp-navigation-prev:hover,
.mp-navigation-next:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.mp-navigation-prev.swiper-button-disabled {
  opacity: 0.4;
}
/* giới thiệu end */

/* câu chuyện start */
.mp-cau-chuong-thuong-hieu-wrapper {
  background: #c4bba7;
}
.mp-cau-chuong-thuong-hieu-item-image {
  overflow: hidden;
  min-height: 100%;
  --bs-aspect-ratio: 130%;
}
.mp-cau-chuong-thuong-hieu-item-image a,
.mp-cau-chuong-thuong-hieu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-cau-chuong-thuong-hieu-content-item {
  line-height: 1.8;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  opacity: 0.4;
  transition: opacity 0.3s ease-in-out; /* Hiệu ứng mượt */

}
.mp-cau-chuong-thuong-hieu-content-item.active {
  opacity: 1;
  transition: opacity 0.3s ease-in-out; /* Hiệu ứng mượt */

}
.mp-cau-chuong-thuong-hieu-title {
  font-size: clamp(1.15rem, 1.1038rem + 0.2308vw, 1.3rem);
  font-family: Montserrat-Bold;
}
/* câu chuyện end */

/* các chuyên gia start */
.mp-cac-chuyen-gia-content-image-main {
  max-width: 100%;
  height: auto;
}
.mp-cac-chuyen-gia-content-image {
  transform: scale(0.8) translateY(130px);
  -webkit-transform: scale(0.8) translateY(130px);
  -moz-transform: scale(0.8) translateY(130px);
  -ms-transform: scale(0.8) translateY(130px);
  -o-transform: scale(0.8) translateY(130px);
}
.mp-cac-chuyen-gia-content-box {
  max-width: 1000px;
  margin: 0 auto;
}
.mp-cac-chuyen-gia-title {
  font-family: Montserrat-Light;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
}
.mp-cac-chuyen-gia-item-avatar {
  overflow: hidden;
  max-width: 150px;
  margin: 0 auto;
  border: 2px solid #d4ddf4;
}
.mp-cac-chuyen-gia-item-avatar a,
.mp-cac-chuyen-gia-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-cac-chuyen-gia-item-content-name {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  font-family: Montserrat-Bold;
}
.mp-cac-chuyen-gia-item-content-des {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  text-align: justify;
}
.mp-cac-chuyen-gia-item-col:nth-child(1) .mp-cac-chuyen-gia-item{
    transform: translateX(-100px);
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
}
.mp-cac-chuyen-gia-item-col:nth-child(2) .mp-cac-chuyen-gia-item{
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}
.mp-cac-chuyen-gia-item-col:nth-child(3) .mp-cac-chuyen-gia-item{
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
}
.mp-cac-chuyen-gia-item-content {
  opacity: 0;
}
/* các chuyên gia end */

/* hình quảng cáo start */
.mp-hinh-quang-cao-box {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.mp-hinh-quang-cao-box a,
.mp-hinh-quang-cao-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-thuong-hieu-content-image {
  max-width: 800px;
  margin: 0 auto;
}
.mp-thuong-hieu-content-image img {
  max-width: 100%;
  height: auto;
}
.mp-thuong-hieu-content-title {
  font-family: Montserrat-Light;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 1.1038rem + 0.2308vw, 1.3rem);
}
.mp-thuong-hieu-content-des {
  max-width: 600px;
  line-height: 1.8;
  text-align: justify;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
/* hình quảng cáo end */

/* video start */
.mp-video-box-subitem-content-name {
  font-family: lato-b;
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
}
.mp-video-box-subitem-video video {
  max-width: 350px;
  width: 100%;
}
.mp-video-title {
  font-family: Montserrat-Regular;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 1.2385rem + 0.3077vw, 1.5rem);
}
/* video end */

/* câu chuyện của chúng tôi start */
.mp-cau-chuyen-cua-chung-toi-item-image {
  overflow: hidden;
  clip-path: inset(0% 0% 100% 0%);

}
.mp-cau-chuyen-cua-chung-toi-item-image a,
.mp-cau-chuyen-cua-chung-toi-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-cau-chuyen-cua-chung-toi-title {
  font-family: Montserrat-Light;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 1.2385rem + 0.3077vw, 1.5rem);
}
.mp-cau-chuyen-cua-chung-toi-item-content {
  background-color: var(--second-background-color);
  flex: auto;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}
.mp-cau-chuyen-cua-chung-toi-item-content-name {
  font-family: lato-b;
  color: var(--text-color);
  font-size: clamp(1.1rem, 1.0692rem + 0.1538vw, 1.2rem);
}
.mp-cau-chuyen-cua-chung-toi-item-content-des {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
/* câu chuyện của chúng tôi end */

/* lời cam kết start */
.mp-loi-cam-ket-title {
  font-family: Montserrat-Light;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 0.9038rem + 0.2308vw, 1.1rem);
}
.mp-loi-cam-ket-image {
  overflow: hidden;
}
.mp-loi-cam-ket-image img,
.mp-loi-cam-ket-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-ket-qua-khach-hang-item {
  background: var(--second-background-color);
}

.mp-ket-qua-khach-hang-item-name {
  font-family: lato-b;
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
}
.mp-ket-qua-khach-hang-item-des {
  text-align: justify;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
.mp-ket-qua-khach-hang-title {
  text-transform: uppercase;
  font-family: Montserrat-Light;
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
}

.mp-ket-qua-khach-hang-item-col:nth-child(1) .mp-ket-qua-khach-hang-item {
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform-origin: left top;
}
.mp-ket-qua-khach-hang-item-col:nth-child(2) .mp-ket-qua-khach-hang-item {
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform-origin: center top;
}
.mp-ket-qua-khach-hang-item-col:nth-child(3) .mp-ket-qua-khach-hang-item {
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform-origin: right top;
}
.mp-ket-qua-khach-hang-item-col:nth-child(4) .mp-ket-qua-khach-hang-item {
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform-origin: left bottom;
}
.mp-ket-qua-khach-hang-item-col:nth-child(5) .mp-ket-qua-khach-hang-item {
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform-origin: center bottom;
}
.mp-ket-qua-khach-hang-item-col:nth-child(6) .mp-ket-qua-khach-hang-item {
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform-origin: right bottom;
}
.mp-ket-qua-khach-hang-item-name, .mp-ket-qua-khach-hang-item-des {
  opacity: 0;
}
/* lời cam kết end */

/* phương thức liên lạc start */
.mp-phuong-thuc-lien-lac-box {
  background-color: var(--second-background-color);
}
.mp-phuong-thuc-lien-lac-des {
  max-width: 600px;
  margin: 0 auto;
}
.mp-phuong-thuc-lien-lac-name {
  font-family: Montserrat-Medium;
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  color: rgba(97, 97, 97, 1);
  text-transform: uppercase;
}
.btn-mp {
  background-color: var(--main-color);
  color: var(--text-color);
  min-width: 120px;
  text-align: center;
  transition: all 0.55s ease;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  -ms-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  justify-content: center;
  font-family: lato-b;
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
}
.btn-mp:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.mp-ket-noi-voi-chung-toi-content-li img {
  width: 50px;
  height: auto;
}
.mp-ket-noi-voi-chung-toi-title {
  font-family: Montserrat-Light;
  font-size: clamp(1.1rem, 1.0692rem + 0.1538vw, 1.2rem);
  text-transform: uppercase;
}

/* phương thức liên lạc end */
/* đăng ký mua start */
.mp-dang-ky-dat-mua-box {
  max-width: 600px;
  margin: 0 auto;
}
.mp-dang-ky-dat-mua-title {
  font-family: Montserrat-Black;
  color: var(--text-color);
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  text-transform: uppercase;
}
.mp-dang-ky-dat-mua-des {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
.mp-dang-ky-dat-mua-form .form-control {
  border: none;
  border-bottom: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.mp-dang-ky-dat-mua-form button {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
/* đăng ký mua end */

/* footer start */
.mp-footer-content-top-a {
  color: rgba(97, 97, 97, 1);
  text-transform: uppercase;
  font-family: Montserrat-Light;
  font-size: clamp(0.85rem, 0.8192rem + 0.1538vw, 0.95rem);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.mp-footer-content-top-a:hover {
  color: var(--text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.mp-footer-content-top-li {
  border-right: 1px solid rgba(176, 176, 176, 1);
}
.mp-footer-content-top-li:last-of-type {
  border: none;
}
.mp-footer-content-bottom {
  font-family: Montserrat-Black;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  text-transform: uppercase;
}
/* footer end */

/* trang sản phẩm start */
.mp-product-page-title {
  font-family: Montserrat-Bold;
  text-transform: uppercase;
  color: var(--text-color);
  font-size: clamp(1rem, 0.9077rem + 0.4615vw, 1.3rem);
}
.filter-sort {
  width: max-content;
}
.mp-product-item-image {
  overflow: hidden;
}
.mp-product-item-image a,
.mp-product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-product-item-quick-view-box {
  position: absolute;
  z-index: 3;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.mp-product-item-quick-view-btn {
  background-color: var(--background-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  color: rgba(97, 97, 97, 1);
  cursor: pointer;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-size: clamp(0.85rem, 0.8038rem + 0.2308vw, 1rem);
}
.mp-product-item-image-box:hover .mp-product-item-quick-view-box {
  bottom: 10px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.mp-product-item-quick-view-btn i {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.mp-product-item-image-box:hover .mp-product-item-quick-view-btn i {
  transform: rotate(720deg);
  -webkit-transform: rotate(720deg);
  -moz-transform: rotate(720deg);
  -ms-transform: rotate(720deg);
  -o-transform: rotate(720deg);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.mp-product-item-quick-view-btn:hover {
  background-color: var(--main-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.page-item.active .page-link {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}
.mp-product-item-name a {
  color: rgba(97, 97, 97, 1);
  font-size: clamp(0.85rem, 0.8038rem + 0.2308vw, 1rem);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.mp-product-item-name a:hover {
  color: var(--text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.mp-product-item-price-new {
  color: rgba(97, 97, 97, 1);
  font-family: lato-m;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
.mp-product-item-price-old {
  font-size: clamp(0.8rem, 0.7846rem + 0.0769vw, 0.85rem);
  text-decoration: line-through;
}
/* trang sản phẩm end */

/* trang sản phẩm chi tiết start */

.fbn-product-image-section {
  text-align: center;
}
.fbn-product-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.fbn-product-thumbnail-wrapper {
  align-items: center;
}
.fbn-product-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.fbn-product-thumbnails img:hover {
  transform: scale(1.1);
}
.fbn-thumbnail-prev,
.fbn-thumbnail-next {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #6c757d;
}
.fbn-product-details-section {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.fbn-product-title {
  /* font-family: var(--title-font); */
  /* font-weight: bold; */
  /* margin-bottom: 1rem; */
  border-bottom: 1px solid #e8e8e8;
  /* padding-bottom: 10px; */
  /* font-size: clamp(1.6rem, 1.3846rem + 1.0769vw, 2.3rem); */
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  font-family: Montserrat-Bold;
}
.fbn-product-rating i {
  background: linear-gradient(to bottom, #cc9f3c, #ffdb64, #cc9f3c);
  background-clip: text;
  color: transparent;
}
.fbn-product-price {
  color: var(--second-text-color);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: bold;
}
.fbn-product-sold {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  color: #6c757d;
}
.fbn-product-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}
.fbn-product-quantity-wrapper button {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
}
.fbn-quantity-input {
  width: 60px;
  text-align: center;
}
.fbn-add-to-cart {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}
.fbn-add-to-cart:hover {
  background-color: var(--main-color);
  transform: translateY(-3px);
}
.fbn-product-quantity-wrapper .input-group {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: max-content;
}
.fbn-quantity-input {
  border: none;
}
.btn-outline-secondary {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  background-color: #e9e9e9;
  border-color: #e9e9e9;
  color: var(--text-color);
}
.fbn-san-pham-detail-image {
  overflow: hidden;
}
.fbn-san-pham-detail-image a,
.fbn-san-pham-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-detail-thumb-image {
  overflow: hidden;
}
.sp-detail-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* nội dung chi tiết */
.fbn-san-pham-chi-tiet-title {
  border-bottom: 2px solid var(--main-color);
}
.fbn-san-pham-chi-tiet-title h3 {
  background-color: var(--main-color);
  color: var(--background-color);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  border-top-left-radius: 5px;
  border-top-right-radius: 25px;
  padding: 8px 20px;
  padding-right: 50px;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  font-family: UTM-Avo;

  text-transform: uppercase;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
}
.fbn-san-pham-chi-tiet-des {
  padding: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  border-bottom: 8px solid #eae9e9;
  background-color: #f8f8f8;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.fbn-san-pham-chi-tiet-des::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #f8f8f8, transparent);
  z-index: 2;
  pointer-events: none;
}
.fbn-san-pham-chi-tiet-des.collapsehaha::after {
  display: none;
}
.fbn-san-pham-chi-tiet-xem-them {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 3;
}
.fbn-xem-them-btn {
  min-width: 150px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: var(--main-color);
  border: none;
  color: var(--background-color);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.fbn-xem-them-btn:hover {
  background-color: #4a3001;
}
.sp-tt-text-right {
  text-align: right;
}
.coco-san-pham-detail-image {
  overflow: hidden;
}
.coco-san-pham-detail-image a,
.coco-san-pham-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-detail-thumb-image {
  overflow: hidden;
  cursor: pointer;
}
.sp-detail-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.fbn-add-to-cart:hover {
  background-color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.vh-hinh-image {
  display: block;
  text-align: center;
  margin: 15px auto;
}
.fbn-category-hot-content-title {
  text-transform: uppercase;
  color: var(--text-color);
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  font-family: UTM-Avo;
}
.dodo-tin-lien-quan-item-image {
  overflow: hidden;
}
.dodo-tin-lien-quan-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.dodo-tin-lien-quan-item:hover .dodo-tin-lien-quan-item-image img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.dodo-tin-lien-quan-item {
  border-top: 1px solid #e5e5e5;
}
.dodo-tin-lien-quan-item-name {
  color: var(--text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  font-size: clamp(0.9rem, 0.89rem + 0.05vw, 0.95rem);
}
.dodo-tin-lien-quan-item:hover .dodo-tin-lien-quan-item-name {
  color: var(--second-text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.dodo-cot-phai-title {
  color: var(--text-color);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  padding: 10px 20px;
  padding-top: 0;
  padding-right: 50px;
  font-family: UTM-Avo;
  text-transform: uppercase;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
}
.dodo-tin-lien-quan-view-more {
  border: 1px solid #e5e5e5;
  color: var(--text-color);
  background-color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--title-font);
}
.dodo-tin-lien-quan-view-more:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dodo-san-pham-nay-mua-ngay-image {
  overflow: hidden;
}
.dodo-san-pham-nay-mua-ngay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.dodo-san-pham-nay-mua-ngay-gia-tien {
  font-family: UTM-AvoBold;
  font-size: clamp(1.3rem, 1.26rem + 0.2vw, 1.5rem);
  color: var(--second-text-color);
}
.dodo-san-pham-nay-mua-ngay-item .dodo-san-pham-nay-mua-ngay-danh-gia {
  font-size: 0.8rem;
}
.dodo-san-pham-nay-mua-ngay-item .dodo-san-pham-nay-mua-ngay-danh-gia i {
  color: #ffc107;
}
.btn-mua-ngay {
  background: #666;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.btn-mua-ngay:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dodo-san-pham-nay-mua-ngay-box {
  border: 1px solid #e5e5e5;
  position: sticky;
  top: 80px;
}
.fbn-san-pham-chi-tiet-page {
  overflow: visible;
}
.sp-scroll {
  cursor: pointer;
}
.sp-scroll:hover {
  color: var(--second-text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.dodo-san-pham-nay-mua-ngay-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.btn-nhanxet,
.btn-guibl {
  background-color: var(--main-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.btn-nhanxet:hover,
.btn-guibl:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.content-nhanxet {
  background-color: transparent;
  width: 100%;
}
.khung-binh-luan-wrapper {
  border: 1px solid #eae9e9;
}
.title-medium-score {
  font-size: clamp(1.2rem, 1.14rem + 0.3vw, 1.5rem);
  font-family: UTM-Avo;
}
.san-pham-detail .accordion-button {
  padding: 0.5rem 1.25rem !important;
  background-color: var(--text-color) !important;
  color: var(--background-color) !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.san-pham-detail .accordion-button:not(.collapsed) {
  background-color: var(--main-color) !important;
  color: var(--background-color) !important;
}
.vh-notification {
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
}
.san-pham-detail .mp-product-item-price-new {
  /* color: var(--second-text-color); */
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
}
.fbn-product-description {
  font-size: clamp(0.9rem, 0.8846rem + 0.0769vw, 0.95rem);
}
.breadcrumb-item,
.breadcrumb-item a {
  color: rgba(97, 97, 97, 1);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
  color: var(--text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.fancybox__container {
  z-index: 9999 !important;
}
/* trang sản phẩm chi tiết end */

/* intro start */
.my-intro-wrapper {
  z-index: 5000;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  pointer-events: none;
}
.bg-intro-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: inset(0% 0% 50% 0%);
  z-index: 5000;
}
.bg-intro-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: inset(49.5% 0% 0% 0%);
  z-index: 5000;
}
.pin-spacer {
  position: fixed;
}
.index header {
  margin-top: 300px;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
}
.index {
  padding-top: 500px;
}
.index .mp-gioi-thieu-wrapper {
  transform: scale(0.8) translateY(100px);
  -webkit-transform: scale(0.8) translateY(100px);
  -moz-transform: scale(0.8) translateY(100px);
  -ms-transform: scale(0.8) translateY(100px);
  -o-transform: scale(0.8) translateY(100px);
  transform-origin: center bottom;
}
.index .pin-spacer {
  pointer-events: none !important;
}
.scrolldown {
  --color: rgba(196, 187, 167, 1);
  --sizeX: 30px;
  --sizeY: 50px;
  position: fixed;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid rgba(196, 187, 167, 1);
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
  z-index: 6000;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: rgba(196, 187, 167, 1);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid rgba(196, 187, 167, 1);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}
.no-intro {
  padding-top: 0px;
}
.no-intro .mp-header {
  transform: scale(1) translateY(0);
  -webkit-transform: scale(1) translateY(0);
  -moz-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  -o-transform: scale(1) translateY(0);
  margin-top: 0;
}
.no-intro  .mp-gioi-thieu-wrapper {
  transform: scale(1) translateY(0px);
  -webkit-transform: scale(1) translateY(0px);
  -moz-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  -o-transform: scale(1) translateY(0px);
  margin-top: 0;
}
.wp-fix {
  z-index: 10000;
  top: 0;
  left: 0;
}
/* intro end */
