@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
  font-family: 'Malik Trial Bold';
  src: url('../fonts/MalikTrial-Bold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Malik Trial Medium';
  src: url('../fonts/MalikTrial-Medium.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amazone';
  src: url('../fonts/amazone.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blacksword';
  src: url('../fonts/1FTV-VIP-Blacksword.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-inter: 'Inter', sans-serif;
  --font-malik-bold: 'Malik Trial Bold', serif;
  --font-malik-medium: 'Malik Trial Medium', serif;
  --font-amazone: 'Amazone', cursive;
  --font-blacksword: 'Blacksword', cursive;

  --bs-primary: #C20116;
  --bg-stop-0: #f0b028;
  --bg-stop-31: #fdec9e;
  --bg-stop-51: #fbcc72;
  --bg-stop-75: #feeca0;
  --bg-stop-100: #f6c05f;
  --bg-gradient-main: linear-gradient(90deg,
      var(--bg-stop-0) 0%,
      var(--bg-stop-31) 31%,
      var(--bg-stop-51) 51%,
      var(--bg-stop-75) 75%,
      var(--bg-stop-100) 100%);
  --bg-red-stop-0: #c20116;
  --bg-red-stop-100: #80010e;
  --bg-gradient-red: linear-gradient(180deg,
      var(--bg-red-stop-0) 0%,
      var(--bg-red-stop-100) 100%);
  --bg-gradient-red2: linear-gradient(90deg,
      var(--bg-red-stop-0) 0%,
      var(--bg-red-stop-100) 100%);
  --text-red-stop-0: #ff0002;
  --text-red-stop-100: #6a0001;
  --text-gradient-red: linear-gradient(90deg,
      var(--text-red-stop-0) 0%,
      var(--text-red-stop-100) 100%);
  --card-hover-lift: translateY(-4px);
  --card-hover-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
  --card-hover-transition: transform .22s ease, box-shadow .22s ease;
  --card-image-zoom: scale(1.05);
}

.text-gradient-red {
  background: var(--text-gradient-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body {
  font-family: var(--font-inter);
  font-size: 14px;
  color: #1E1E1E;
  background-color: #f9f2e6;
}

a {
  text-decoration: none;
}

img,
svg,
frame {
  max-width: 100%;
}

/* Header */
header {}

.header-top {
  background: var(--bg-gradient-main);
}

.logotext {}

.logotext .sub {
  font-family: var(--font-malik-bold);
  font-size: 21px;
  color: var(--bs-primary);
}

.logotext h2 {
  font-family: var(--font-malik-bold);
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 0;
}

header .logo {}

header .logo img {
  height: 151px;
  margin-bottom: -53px;
  position: relative;
  z-index: 100;
  object-fit: contain;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-right {}

.header-right .slogan {
  font-family: var(--font-amazone);
  font-size: 28px;
  color: #1E1E1E;
  animation: headerSloganBlink 1.4s ease-in-out infinite;
}

@keyframes headerSloganBlink {
  0%,
  100% {
    color: #1E1E1E;
    text-shadow: 0 0 0 rgba(194, 1, 22, 0);
    opacity: 1;
  }
  25% {
    color: #C20116;
    text-shadow: 0 0 10px rgba(194, 1, 22, 0.32);
    opacity: 0.82;
  }
  50% {
    color: #1E1E1E;
    text-shadow: 0 0 10px rgba(30, 30, 30, 0.18);
    opacity: 1;
  }
  75% {
    color: #C20116;
    text-shadow: 0 0 12px rgba(194, 1, 22, 0.4);
    opacity: 0.86;
  }
}

.header-right .home {
  width: 35px;
  height: 35px;
  display: block;
  border: 1px solid var(--bs-primary);
  font-size: 0;
  border-radius: 5px;
  background: url(../images/icon-home.png) no-repeat center;
  background-size: auto;
}

.sp-mobile {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 0 12px;
  border: 1px solid var(--bs-primary);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  background: var(--bg-gradient-red);
  box-shadow: 0 8px 18px rgba(194, 1, 22, 0.24);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease;
  animation: spMobilePulse 1.9s ease-in-out infinite;
}

.sp-mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.18) 36%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0.18) 64%,
      rgba(255, 255, 255, 0) 100%);
  transform: translateX(-140%);
  animation: spMobileShine 2.6s ease-in-out infinite;
}

.sp-mobile:hover,
.sp-mobile:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(194, 1, 22, 0.32);
}

@keyframes spMobilePulse {
  0%, 100% {
    box-shadow: 0 8px 18px rgba(194, 1, 22, 0.24);
  }
  50% {
    box-shadow: 0 10px 22px rgba(194, 1, 22, 0.4);
  }
}

@keyframes spMobileShine {
  0% {
    transform: translateX(-140%);
  }
  55%,
  100% {
    transform: translateX(140%);
  }
}

.header-right .btn-cart {
  background: var(--bg-gradient-red);
  padding: 8px 18px;
  color: #fff;
  border-radius: 30px;
  border: none;
  font-size: 14px;
}

.header-right .btn-cart span {
  background: url(../images/icon-cart.png) no-repeat center left;
  padding-left: 25px;
  background-size: contain;
  line-height: 24px;
}

.header-right .link-zalo {
  font-size: 0;
  width: 35px;
  height: 36px;
  display: block;
  background: url(../images/icon-zalo.png) no-repeat center;
}

.header-right .hotro-head {
  font-size: 14px;
  color: #1E1E1E;
  position: relative;
  padding-left: 43px;
  display: block;
}

.header-right .hotro-head:before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  left: 0;
  border: 2px solid var(--bs-primary);
  border-radius: 50%;
  top: 12px;
  background: url(../images/phone.png) no-repeat center;
  background-size: auto;
}

.header-right .hotro-head strong {
  /* display: block; */
  color: #A20101;
  text-shadow: 0 4px 4px #00000066;
  font-size: 24px;
  font-weight: 800;
}

.navbar {
    padding: 0;
    border-bottom: 4px solid var(--bs-primary);
}

.navbar .nav-container {
  padding-left: 11%;
}

.navbar-expand-lg .navbar-nav .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  padding: 22px 10px;
  font-size: 13px;
  color: #666666;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: var(--bs-primary);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--bs-primary);
}

.page-hero-head {
  text-align: center;
  display: flex;
  flex-direction: column; 
  align-items: center;
}

.page-hero-title {
    margin-top: 30px !important;
    font-size: 32px;
}

.page-hero-breadcrumb {
  order: 2;
  margin-bottom: 8px;
  display: none;
}

.page-hero-subtitle {
  order: 3;
}

a.nav-link {}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  min-width: 200px;
  background-color: #faf2e7;
}

.dropdown-item {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 20px;
  border-bottom: 1px solid #e3d9ce;
  border-top: 1px solid #ffffff;
  background-color: transparent !important;
  color: #212529 !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
}

.link-shop {
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 15px;
  background-color: var(--bs-primary) !important;
}

.link-shop span {
}

.link-shop:hover {
  color: var(--bs-primary);
}

.link-sale {
  display: block;
  font-size: 14px;
  background: url(../images/icon-sale.png) no-repeat center left;
  padding-left: 35px;
  margin-left: 10px;
}

.link-sale:before {
  content: "";
}

.link-sale strong {
  font-weight: 800;
  font-size: 14px;
  color: var(--bs-primary);
}

.section1 {
  background-color: #f9f2e6;
  background-image: url(../images/bg-05.png);
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

.chinhsach {
  padding-top: 30px;
  padding-bottom: 30px;
}

.chinhsach-item {
  gap: 13px;
  justify-content: center;
  position: relative;
  color: var(--bs-primary);
}

.chinhsach-item .img {}

.chinhsach-item .img img {
  height: 40px;
}

.chinhsach-item .text {}

.chinhsach-item .text strong {
  display: block;
  font-size: 16px;
}

.chinhsach-item:after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  height: 100%;
  border-right: 1px solid var(--bs-primary);
}

.chinhsach .col-lg-3:last-child .chinhsach-item:after {
  display: none;
}

.best-seller {
  border: 1px solid #E8A409;
  padding: 10px 30px 30px;
  margin-top: 50px;
  border-radius: 0px 0px 10px 10px;
  margin-bottom: 50px;
}

.section_title_product {
  margin-bottom: 20px;
}

.section_title_product span {
  width: 328px;
  display: block;
  margin: 0px auto;
  background: url(../images/bg-title.svg) no-repeat center;
  padding: 12px;
  font-size: 25px;
  font-family: var(--font-malik-medium);
  color: #fff;
  text-transform: uppercase;
  margin-top: -26px;
}

.btn-primary {
  color: #fff;
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  padding: 9px 20px;
  font-size: 16px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #f2a246;
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
}

.product_item {
  background-color: #fff;
  border: 1px solid #FFB82F;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: var(--card-hover-transition);
}

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

.product_item .img img {
  width: 100%;
  transition: transform .3s ease;
}

.product_item:hover {
  transform: var(--card-hover-lift);
  box-shadow: var(--card-hover-shadow);
}

.product_item:hover .img img {
}

.product_item .content {
  padding-top: 10px;
}

.product_item .content .intfo {
}

.product_item .content .intfo h3 {
    font-size: 14px;
    height: 35px;
    display: flex;
    align-items: center;
}

.product_item .content .intfo h3 a {
  color: #1E1E1E;
  font-weight: 600;
}
.product_item .content .intfo h3 a:hover {
  color: var(--bs-primary);
}
.product_item .content .intfo .sao {
  color: #FFC300;
  margin-bottom: 7px;
  font-size: 13px;
}

.product_item .content .intfo .sao i {}

.product_item .content .thongso {}

.product_item .content .thongso span {
  color: #666666;
}

.product_item .price {
  margin-top: 7px;
}

.product_item .price .sale {
  color: var(--bs-primary);
  font-weight: 800;
  font-size: 19px;
  display: block;
}

.product_item .price .old {
  text-decoration: line-through;
  font-style: italic;
  color: #a7a6a6;
}

.btn-cart {
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: 100px 0 0 0;
  padding: 5px 15px 5px 25px;
  font-size: 14px;
}

.btn-cart:hover,
.btn-cart:focus {
  color: #fff;
  background-color: #eda333;
}

.gioithieu {
  position: relative;
  padding-bottom: 50px;
}

.gioithieu-content {
  margin-bottom: 30px;
}

.title_gioithieu {}

.title_gioithieu h2 {
  font-size: 45px;
}

.title_gioithieu .sub {
  font-size: 24px;
}

.gioithieu .title_sub {
  font-family: var(--font-amazone);
  font-size: 32px;
  margin-bottom: 10px;
  margin-top: -10px;
}

.gioithieu-content .dess {
  font-size: 22px;
  line-height: 34px;
  font-weight: 400;
}

.gioithieu-content .dess p {
  margin-bottom: 13px;
  text-align: justify;
}

.gioithieu_link {
  text-decoration: underline;
  color: #000;
  font-size: 22px;
}

.gioithieu_link:hover {
  color: var(--bs-primary);
}

.gioithieu_camket {
  background: url(../images/bg-00.png) no-repeat center left;
  background-size: cover;
  border-radius: 20px;
  padding: 26px 21px 35px;
  color: #fff;
  position: relative;
}
.gioithieu_camket:before{content:"";position: absolute;right: 0;height: 71px;width: 200px;background: url(../images/icon-no.png) no-repeat right top;top: -28px;}
.gioithieu_img img{width: 100%;}
.camket_item {
  justify-content: center;
}

.camket_item .img {
  width: 45px;
  height: 45px;
  line-height: 50px;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
}

.camket_item .img img {}

.camket_item .text {
  color: #ffb748;
  font-size: 14px;
  font-weight: 500;
  flex-grow: 1;
  width: 60px;
}

.gioithieu:after {
  content: "";
  width: 261px;
  height: 261px;
  position: absolute;
  left: 43%;
  right: 0;
  background: url(../images/icon-bat.png) no-repeat center;
  bottom: -85px;
  background-size: contain;
}

.quytrinh {
  background: url(../images/br-quytrinh.jpg) no-repeat bottom center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 50px;
}

.quytrinh_title {
  text-align: center;
  position: relative;
  z-index: 100;
  color: #D00001;
}

.quytrinh_title h2 {
  font-family: var(--font-malik-bold);
  text-transform: uppercase;
  font-size: 34px;
}

.quytrinh_title p {
  font-family: var(--font-blacksword);
  font-size: 32px;
  color: #8F5625;
}

.quytrinh_item {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.quytrinh_item .num {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0px auto;
  background-color: var(--bs-primary);
  font-size: 38px;
  line-height: 60px;
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  border: 2px solid #FFFDFA;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}

.quytrinh_item h3 {
  background-color: var(--bs-primary);
  padding: 35px 20px 30px 20px;
  border-radius: 30px 30px 0 0;
  font-size: 20px;
  color: #FBEFD9;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 33px;
  z-index: 1;
  position: relative;
}

.quytrinh_item .dess {
  background-color: #ffedcd;
  margin-top: -33px;
  position: relative;
  border-radius: 20px 20px 0 0;
  margin-left: 2px;
  margin-right: 2px;
  font-size: 17px;
  padding: 10px 25px;
  padding-top: 30px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.quytrinh_item .dess p {}

.quytrinh_item .img {
  margin-left: -20px;
  margin-right: -20px;
}

.quytrinh_item .img>img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid #eda333;
  border-radius: 50%;
  position: relative;
}

.quytrinh_item .icon {
  width: 90px;
  height: 90px;
  display: block;
  margin: 0px auto;
  background-color: var(--bs-primary);
  line-height: 86px;
  border-radius: 50%;
  border: 2px solid #ffff;
  margin-top: -53px;
  position: relative;
  z-index: 3;
}

.quytrinh_item .icon img {}

.quytrinh_item:before {
  content: "";
  position: absolute;
  height: 50%;
  border: 1px solid #E5C598;
  top: 85px;
  left: 20px;
  right: 20px;
  z-index: 0;
}

.box_product {
  border: 1px solid #E8A409;
  padding: 10px 30px 30px;
  margin-top: 40px;
  border-radius: 0px 0px 10px 10px;
  margin-bottom: 50px;
}

.section-product {
  background-color: #f9f2e6;
  padding-top: 35px;
  padding-bottom: 0px;
}

.section-product-title {
  color: var(--bs-primary);
  font-family: var(--font-malik-bold);
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 32px;
}

.section-product .section_title_product span {
  margin: 0px;
  margin-top: -27px;
  margin-left: -30px;
}

/* Product category page */
.section-product-page {
  background: #f9f2e6 url(../images/bg-05.png) no-repeat center top;
  background-size: cover;
}

.product-page-head {
  margin-bottom: 18px;
  display: block;
}

.product-page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ead9c4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  padding: 6px 14px;
}

.product-page-breadcrumb a {
  color: var(--bs-primary);
  font-weight: 600;
}

.product-page-title {
  font-family: var(--font-malik-bold);
  color: var(--bs-primary);
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.product-page-subtitle {
  max-width: 860px;
  font-size: 17px;
  line-height: 1.75;
}

@media (max-width: 1199.98px) {
  .product-page-title {
    font-size: 40px;
  }
}

@media (max-width: 991.98px) {
  .product-page-title {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .product-page-breadcrumb {
    display: none;
  }

  .product-page-title {
    font-size: 30px;
  }

  .product-page-subtitle {
    font-size: 16px;
  }
}

.section-image {
  background-color: #faf2e7;
  padding-bottom: 30px;
  background-image: url(../images/bg-02.png);
  background-position: bottom center;
  background-repeat: repeat-x;
}

.section-image-title {
  color: var(--bs-primary);
  font-family: var(--font-malik-bold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 32px;
}
.ImgSwiper{margin-bottom: 30px;}
.ImgSwiper img{width: 100%;aspect-ratio: 1 / 1;object-fit: cover;}
.swiper-button-next, .swiper-button-prev{width: 40px;height: 40px;background-color: var(--bs-primary);padding: 10px 8px;opacity: 0.8;border-radius: 50%;color: #fff;font-size: 13px;}

.photo-page .photo-album-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.photo-page .photo-album-tab {
  border: 1px solid #e7d4bc;
  background: rgba(255, 250, 242, 0.92);
  color: #6a5d4a;
  padding: 10px 30px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--card-hover-transition);
}

.photo-page .photo-album-tab:hover {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.photo-page .photo-album-tab.active {
  color: #fff;
  background: var(--bg-gradient-red);
  border-color: var(--bs-primary);
  box-shadow: 0 10px 22px rgba(194, 1, 22, 0.24);
}

.photo-page .photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.photo-page .photo-gallery-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #efd9bc;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: var(--card-hover-transition);
  background: #fff;
}

.photo-page .photo-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .28s ease;
}

.photo-page .photo-gallery-item:hover {
  transform: var(--card-hover-lift);
  box-shadow: var(--card-hover-shadow);
}

.photo-page .photo-gallery-item:hover img {
  transform: var(--card-image-zoom);
}

@media (max-width: 1199.98px) {
  .photo-page .photo-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .photo-page .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .photo-page .photo-album-tab {
    padding: 8px 14px;
    font-size: 14px;
  }
}
.section-lienhe{background: url(../images/bg-03.png) no-repeat center;background-size: cover;padding-top: 50px;padding-bottom: 50px;}
.lienhe_left {
      background: url(../images/bg-04.png) no-repeat center;
      background-size: cover;
      border-radius: 15px;
      padding: 59px;
      color: #fff;
      }
.lienhe_left .title_sub{text-transform: uppercase;font-size: 14px;}
.lienhe_left .title{font-size: 45px;text-transform: uppercase;margin-top: 10px;margin-bottom: 15px;font-weight: 500;}
.lienhe_left p{font-size: 18px;margin-bottom: 20px;}
.lienhe_left .btn-primary{background-color: #F8F2E5;color: var(--bs-primary);}
.lienhe_left .btn-primary:hover{
}
.lienhe_right{height: 100%;border: 1px solid var(--bs-primary);border-radius: 20px;padding: 48px;}
.lienhe_right h2{font-size: 35px;text-transform: uppercase;font-weight: 700;color: var(--bs-primary);position: relative;padding-bottom: 11px;margin-bottom: 20px;}
.lienhe_right h2:before{
  content:'';
  position: absolute;
  width: 50%;
  height: 5px;
  background: linear-gradient(
  90deg,
  rgba(194, 1, 22, 0.2) 0%,
  rgba(194, 1, 22, 1) 50%,
  rgba(194, 1, 22, 0.2) 100%
);
  left: 0;
  right: 0;
  margin: 0px auto;
  bottom: 0;
  }
.lienhe_right p{font-size: 18px;font-weight: 700;}
.lienhe_right .phone{font-size: 35px;font-weight: 800;color: var(--bs-primary);margin-bottom: 20px;}
.lienhe_right .phone i{
}
.lienhe_right .phone span{
}
.lienhe_right .webpage{font-size: 35px;font-weight: 800;color: var(--bs-primary);margin-bottom: 20px;display: flex;justify-content: center;gap: 11px;}
.lienhe_right .webpage i{
}
.lienhe_right .webpage span{font-size: 18px;color: #1E1E1E;}
.lienhe_right .mxh{display: flex;justify-content: center;align-items: center;gap: 19px;}
.lienhe_right .mxh i{width: 55px;height: 55px;display: block;background-position: center;background-size: contain;background-repeat: no-repeat;}
.lienhe_right .mxh .icon{
}
.lienhe_right .mxh .icon-zalo{background-image: url(../images/icon_of_zalo.png);}
.lienhe_right .mxh .icon-facebook{background-image: url(../images/icon-facebook.png);}
.lienhe_right .mxh .icon-hotline{background-image: url(../images/icon-hotline.png);}
.lienhe_right .mxh .icon-sms{background-image: url(../images/icon-sms.png);}
.facebook-fanpage{
}
.facebook-fanpage .fb_iframe_widget, .facebook-fanpage .fb_iframe_widget span{width: 100% !important;overflow: hidden;height: 220px !important;border-radius: 20px;overflow: hidden;}
footer{padding-top: 30px;background: url(../images/bg-f.png) no-repeat center;background-size: cover;}
.content_f{margin-top: 15px;}
.content_f .d-flex{align-items: center;gap: 10px;color: var(--bs-primary);font-size: 16px;}
.content_f .d-flex i{
}
.content_f .d-flex.hotline{font-weight: 800;margin-bottom: 10px;}
.content_f ul{padding: 0;list-style: none;}
.content_f ul li{margin-bottom: 12px;}
.content_f ul li a{display: block;color: var(--bs-primary);font-size: 15px;background: url(../images/icon-list.png) no-repeat center left;padding-left: 15px;}
.title_f{text-transform: uppercase;font-size: 18px;font-weight: 600;position: relative;padding-bottom: 8px;margin-top: 30px;}
.coppyright{padding-top: 10px;padding-bottom: 10px;background: var(--bg-gradient-red);color: #FCEED2;margin-top: 20px;}
.title_f:before{content:"";position: absolute;height: 3px;width: 60px;bottom: 0;background-color: var(--bs-primary);}
.facebook-fanpage iframe{width: 100% !important;height: 250px !IMPORTANT;}
.content_f ul li a:hover{
	text-decoration: underline;
    font-weight: 600;
}
/* News category */
.news-list-page .news-head h1 {
  font-family: var(--font-malik-bold);
  font-size: 38px;
  margin-bottom: 8px;
}

.news-list-page .news-head .h5 {
  font-size: 16px;
  line-height: 1.7;
}

.news-list-page .news-page-breadcrumb {
  display: none;
  align-items: center;
  gap: 6px;
  border: 1px solid #ead9c4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  padding: 6px 14px;
}

.news-list-page .news-page-breadcrumb a {
  color: var(--bs-primary);
  font-weight: 600;
}

.news-list-page .news-page-title {
  color: var(--bs-primary);
  font-family: var(--font-malik-bold);
  font-size: 52px;
  line-height: 1.2;
}

.news-list-page .news-page-subtitle {
  max-width: 860px;
  line-height: 1.75;
}

.news-card {
  border: 1px solid #ead9c4;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: var(--card-hover-transition);
}

.news-card:hover {
  transform: var(--card-hover-lift);
  box-shadow: var(--card-hover-shadow);
}

.news-card .img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.news-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.news-card:hover .img img {
  transform: var(--card-image-zoom);
}

.news-card .content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-height: 210px;
}

.news-card .info h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.same-news-title {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 8px;
  font-family: var(--font-malik-bold);
  text-align: center;
  color: var(--bs-primary);
}
.news-card .info h3 a {
  color: #161616;
  font-size: 18px;
  line-height: 1.3;
  font-family: var(--font-malik-medium);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card .meta {
  font-size: 13px;
}

.news-card .info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-card .readmore {
  display: inline-block;
  color: var(--bs-primary);
  font-weight: 700;
  padding-top: 12px;
}

.news-card .readmore:hover {
  color: #7c000d;
}

.news-pagination {
  display: flex;
  justify-content: center;
}

.news-pagination a,
.news-pagination span {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin: 0 4px;
  border-radius: 999px;
  border: 1px solid #e7d4bc;
  background: #fffaf2;
  color: #5d5d5d;
  font-weight: 600;
}

.news-pagination a:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.news-pagination .active,
.news-pagination span.current {
  border-color: var(--bs-primary);
  background: var(--bg-gradient-red);
  color: #fff;
}

@media (max-width: 991.98px) {
  .news-list-page .news-page-title {
    font-size: 40px;
  }

  .news-card .info h3 {
    font-size: 19px;
  }

  .news-card .info h3 a {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .news-list-page .news-page-breadcrumb {
    display: none;
  }

  .news-list-page .news-page-title {
    font-size: 32px;
  }

  .news-card .info h3 {
    font-size: 18px;
  }

  .news-card .info h3 a {
    font-size: 19px;
  }
}

/* Article detail */
.article-detail-page {
  background: #fffaf2;
  border: 1px solid #ead9c4;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.article-breadcrumb {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #ead9c4;
  border-radius: 999px;
  padding: 6px 14px;
  color: #6f6f6f !important;
}

.article-breadcrumb a {
  color: var(--bs-primary);
  font-weight: 600;
}

.article-breadcrumb a:hover {
  color: #8f1200;
}

.article-detail-page .article-title {
  font-family: var(--font-malik-bold);
  font-size: 40px;
  color: var(--bs-primary);
  line-height: 1.25;
  margin-bottom: 10px;
}

.article-detail-page .article-summary {
  font-size: 18px;
  line-height: 1.8;
}

.article-content {
  color: #2d2d2d;
  font-size: 17px;
  line-height: 1.85;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  color: #8f1200;
  line-height: 1.35;
  margin-top: 1.4em;
  margin-bottom: 0.7em;
  font-weight: 800;
}

.article-content h1 { font-size: 34px; }
.article-content h2 {font-size: 22px;font-weight: 700;}
.article-content h3 { font-size: 26px; }
.article-content h4 { font-size: 22px; }
.article-content h5 { font-size: 19px; }
.article-content h6 { font-size: 17px; }

.article-content p {
  margin-bottom: 10px;
}

.article-content a {
  color: var(--bs-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px auto;
  display: block;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1em;
  padding-left: 1.3em;
}

.article-content li {
  margin-bottom: 0.4em;
}

.article-content blockquote {
  margin: 1.2em 0;
  padding: 14px 18px;
  border-left: 4px solid var(--bs-primary);
  background: #fff3df;
  border-radius: 8px;
}

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

.article-content table th,
.article-content table td {
  border: 1px solid #e3d2bc;
  padding: 8px 10px;
}

.article-content table th {
  background: #fff1dd;
}

@media (max-width: 991.98px) {
  .article-detail-page .article-title {
    font-size: 32px;
  }

  .article-content h1 { font-size: 24px; }
  .article-content h2 { font-size: 20px; }
  .article-content h3 { font-size: 18px; }
}

@media (max-width: 767.98px) {
  .article-breadcrumb {
    display: none;
  }

  .article-detail-page {
    padding: 18px;
  }

  .article-detail-page .article-title {
    font-size: 27px;
  }

  .article-content {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* Contact page */
.section-contact-page {
  background: #f9f2e6 url(../images/bg-03.png) no-repeat center top;
  background-size: cover;
}

.section-contact-page .contact-info-card,
.section-contact-page .contact-form-card {
  background: #fffaf2;
  border: 1px solid #ead9c4 !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.section-contact-page .contact-info-card {
  padding: 24px 22px;
}

.section-contact-page .contact-info-card h1 {
  font-family: var(--font-malik-bold);
  font-size: 38px;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 14px;
}

.section-contact-page .contact-info-content {
  color: #3f3f3f;
  line-height: 1.7;
}

.section-contact-page .contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-contact-page .contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.section-contact-page .contact-info-list li:last-child {
  margin-bottom: 0;
}

.section-contact-page .contact-info-list i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(194, 1, 22, 0.1);
  color: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}

.section-contact-page .contact-info-list span {
  flex: 1;
}

.section-contact-page .contact-info-content p:last-child {
  margin-bottom: 0;
}

.section-contact-page .contact-info-card iframe {
  border-radius: 14px;
}

.section-contact-page .contact-form-card {
  padding: 24px !important;
}

.section-contact-page .contact-form-card h2 {
  font-family: var(--font-malik-medium);
  color: var(--bs-primary);
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 18px !important;
}

.section-contact-page .form-control {
  border: 1px solid #e8d9c5;
  border-radius: 12px;
  min-height: 48px;
  box-shadow: none;
}

.section-contact-page textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.section-contact-page .form-control:focus {
  border-color: #c20116;
  box-shadow: 0 0 0 0.18rem rgba(194, 1, 22, 0.15);
}

.section-contact-page .text-danger {
  font-size: 13px;
  margin-top: 4px;
  display: inline-block;
}

.section-contact-page #btnGui {
  min-width: 180px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .section-contact-page .contact-info-card h1 {
    font-size: 32px;
  }

  .section-contact-page .contact-form-card h2 {
    font-size: 26px;
  }
}

/* About page */
.about-page {
  background: #f9f2e6 url(../images/bg-05.png) no-repeat center top;
  background-size: cover;
}

.about-hero-title {
  font-family: var(--font-malik-bold);
  font-size: 52px;
  color: var(--bs-primary);
  text-transform: uppercase;
}

.about-hero-subtitle {
  max-width: 1020px;
  font-size: 27px;
  line-height: 1.7;
  color: #232323;
}

.about-highlight-list {
  margin-top: 12px;
}

.about-highlight-card {
  border: 1px solid #edd3af;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 229, 0.95));
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: var(--card-hover-transition);
}

.about-highlight-card:hover {
  transform: var(--card-hover-lift);
  box-shadow: var(--card-hover-shadow);
}

.about-highlight-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bs-primary);
  font-size: 25px;
  font-family: var(--font-malik-medium);
}

.about-highlight-card h3 i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--bg-gradient-red);
  font-size: 15px;
}

.about-highlight-card p {
  color: #4b4b4b;
  line-height: 1.7;
  font-size: 17px;
}

.about-content-wrap {
  margin-top: 10px;
}

.about-content-col {
  background: #fffaf2;
  border: 1px solid #edd3af;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.about-content-title {
  color: var(--bs-primary);
  font-family: var(--font-malik-bold);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 35px;
}

.about-content-body {
  color: #2d2d2d;
  font-size: 17px;
  line-height: 1.85;
}

.about-content-body h1,
.about-content-body h2,
.about-content-body h3 {
  color: #8f1200;
  line-height: 1.35;
}

.about-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.about-slider-card {
  border: 1px solid #edd3af;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.about-slider-card .swiper-slide img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .about-hero-title {
    font-size: 44px;
  }
}
@media (max-width: 991.98px) {
  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-subtitle {
    font-size: 22px;
  }

  .about-content-title {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .about-hero-title {
    font-size: 30px;
  }

  .about-hero-subtitle {
    font-size: 18px;
  }

  .about-highlight-card h3 {
    font-size: 21px;
  }

  .about-highlight-card p,
  .about-content-body {
    font-size: 16px;
  }
}


h2.article-summary{display: none;}
.btn-outline-primary{
    color: var(--bs-primary);
    background-color:transparent;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    padding: 10px 26px;
    font-size: 16px;
}
.btn-outline-primary:hover, .btn-outline-primary:focus{
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.product-page-breadcrumb{
  display: none !important;
}
.form-control, .form-select{font-size: 15px;padding: 10px 15px;}
.best-seller .swiper-wrapper .swiper-slide:nth-child(1) .product_item .content .intfo{position: relative;padding-right: 100px;}
.best-seller .swiper-wrapper .swiper-slide:nth-child(1) .product_item .content .intfo:after{content:'TOP 1';position: absolute;right: 0;top: 0;background: url(../images/icon-top.png) no-repeat center;width: 59px;height: 67px;background-size: contain;text-align: center;line-height: 23px;font-weight: 800;color: #fff;font-size: 18px;padding: 8px 10px;}
.best-seller .swiper-wrapper .swiper-slide:nth-child(2) .product_item .content .intfo{position: relative;padding-right: 100px;}
.best-seller .swiper-wrapper .swiper-slide:nth-child(2) .product_item .content .intfo:after{content:'TOP 2';position: absolute;right: 0;top: 0;background: url(../images/icon-top.png) no-repeat center;width: 59px;height: 67px;background-size: contain;text-align: center;line-height: 23px;font-weight: 800;color: #fff;font-size: 18px;padding: 8px 10px;}
.best-seller .swiper-wrapper .swiper-slide:nth-child(3) .product_item .content .intfo{position: relative;padding-right: 100px;}
.best-seller .swiper-wrapper .swiper-slide:nth-child(3) .product_item .content .intfo:after{content:'TOP 3';position: absolute;right: 0;top: 0;background: url(../images/icon-top.png) no-repeat center;width: 59px;height: 67px;background-size: contain;text-align: center;line-height: 23px;font-weight: 800;color: #fff;font-size: 18px;padding: 8px 10px;}
.dropdown-menu{
}
.offcanvas{
	max-width:90%;
}
.offcanvas-header img{height: 78px;}
.offcanvas {background-color: #c80021;}
.offcanvas .navbar-nav .nav-link{display: block;font-size: 16px;color: #fff;font-weight: 600;text-transform: uppercase;padding: 10px;}
.offcanvas .navbar-nav .dropdown-menu{display: block;position: initial;border: none;background-color: transparent;}
.offcanvas .dropdown-item{display: block;font-size: 14px;color: #fff!important;font-weight: 600;text-transform: uppercase;padding: 10px;border: none;padding-left: 22px;border-left: 1px solid;margin-left: 10px;padding-top: 10px;padding-bottom: 10px;}
.offcanvas .dropdown-toggle::after{display: none;}
.offcanvas-header{border-bottom: 1px dashed #ccc;}
.offcanvas .dropdown-item:hover, .offcanvas .dropdown-item:focus{
	color:#fff
}
header.fix{
		position: fixed;
		z-index: 1000;
		width: 100%;
		background-color: #f7eee0;
		left: 0;
		top: 0;
		box-shadow: 1px 1px 10px 1px #ccc;
	}
.btn-hieuung{
  position: relative;
    box-shadow: 0 8px 18px rgba(194, 1, 22, 0.24);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, color .22s ease;
    animation: spMobilePulse 1.9s ease-in-out infinite;
}
.btn-hieuung::before {
  
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 36%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.18) 64%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-140%);
    animation: spMobileShine 2.6s ease-in-out infinite;
}
@media (max-width: 575.98px) {
  .cart-page-head h1{
    font-size: 24px;
  }
  .section-product-title{
    font-size: 20px;
  }
  .section-product .section_title_product span{
        font-size: 16px;
        line-height: 30px;
  }
  .lienhe_right .webpage{
          font-size: 16px;
        align-items: center;
        font-weight: 600;
  }
  .lienhe_right .webpage span{
    font-size: 16px;
  }
  .lienhe_right .phone{
            font-size: 26px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
  }
  .lienhe_right .mxh i{
            width: 30px;
        height: 30px;
  }
  .article-detail-page .article-title{
    font-size: 22px;
  }
  .article-content h3{
    font-size: 16px;
  }
  .lienhe_right h2 {
        font-size: 24px;
    }
  .product-page-title{
      font-size: 18px;
      margin-top: 0 !important;
      text-transform: uppercase;
  }
	header.fix .header-top{
		display:none;
	}
    .header-right .slogan, .header-right .hotro-head{
        display: none;
    }
     .header-right .logotext{width: 100%;text-align: center;padding-top: 10px;}
    .header-right{
        display: block !important;
        padding-top: 18px;
    }
    header .logo img{
      height: auto;
        margin-bottom: 0;
    }
    .navbar-collapse.collapse{
  position: absolute;
  top: 100%;
  z-index: 1000;
  background-color: #fff;
  right: 0;
  text-align: right;
  width: 300px;
  max-width: 100%;
  padding-right: 38px;
  padding-top: 10px;
  }
  .gioithieu_camket{
  margin: 0px auto;
  width: 100%;
  border-radius: 20px;
  background-position: center center;
  margin-bottom: 0;
  padding-bottom: 15px;
  }
  .gioithieu-content{
  text-align: center;
  }
.gioithieu-content .dess p{font-size: 16px;}
  .gioithieu_img{
  padding-left: 20%;
  margin-top: 20px;
  }
  .gioithieu:after{
  left: 0;
  width: 200px;
  }
  .chinhsach-item{
  display: block !important;
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
  }
  .chinhsach-item .text{
	margin-top: 10px;
	font-size: 13px;
  }
  .container{
    max-width: 100%;
  }
  .navbar-toggler{
  padding: 2px 5px;
  background: var(--bg-gradient-main);
  color: #fff !important;
  }
  .navbar{
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  }
  .header-right .btn-cart span{
      font-size: 0;
      width: 20px;
      height: 20px;
      display: block;
      background-position: center;
  }
  .header-right .btn-cart{
    width: 35px;
    height: 35px;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
  }
  .lienhe_right h2{
  font-size: 25px;
  }
  .lienhe_right{
  padding: 20px;
  }
  .lienhe_left p{
  font-size: 16px;
  }
  .lienhe_left .title{
  font-size: 31px;
  }
  .lienhe_left{
  padding: 20px;
  margin-bottom: 20px;
  }
  .box_product{
  }
  .quytrinh_title h2{
  font-size: 28px;
  }
  .quytrinh_title p{
  font-size: 21px;
  }
  .header-right .hotro-head strong{
    font-size: 20px;
  }
  .quytrinh{
  padding-top: 45px;
  }
  .header-right .slogan{
    font-size: 20px;
    display: none;
  }
  .camket_item{
  margin-bottom: 13px;
  }
  .camket_item .text{
  }
  .chinhsach{
  padding-bottom: 0;
  }
  .header-right{
    gap: 10px !important;
    display: block !important;
    padding-top: 18px;
  }
  .header-right.header-right-mobile{
  display: flex !important;
  padding-top: 0;
  } 
  .logotext h2{
    font-size: 28px;
  }
  .logotext .sub{
  font-size: 18px;
  }
  .link-shop, .link-sale{
    display: none;
  }
  .navbar .nav-container{
  padding-left: 15px;
  }
  .navbar-expand-lg .navbar-nav .nav-link{
          font-size: 13px;
        padding: 12px 12px;
  }
  .quytrinh_item{
    padding-left: 10px;
    padding-right: 10px;
  }
  .quytrinh_item h3{
    font-size: 18px;
    min-height: 126px;
    line-height: 28px;
  }
  .quytrinh_item .dess{
    font-size: 18px;
    padding: 20px 20px;
    min-height: auto;
    display: flex;
    align-items: center;
  }
  .quytrinh_item:before{
    left: 10px;
    right: 10px;
  }
  .quytrinh_item .img{
    margin-left: -5px;
    margin-right: -5px;
  }
  .quytrinh_item .icon{
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
  .quytrinh_item .icon img{
    max-height: 50px;
  }
  .chinhsach-item:after {
      content: "";
      position: absolute;
      right: -13px;
      top: 0;
      height: 100%;
      border-right: 1px solid var(--bs-primary);
  }
  .chinhsach .col-lg-3:nth-child(2) .chinhsach-item:after{
  height: 1px;
  width: 100%;
  left: -100%;
  border-bottom: 1px solid var(--bs-primary);
  width: 200%;
  top: 100%;
  }
   .container{
		max-width: 100%;
	  }
  header.fix{
		position: fixed;
		z-index: 1000;
		width: 100%;
		background-color: #f7eee0;
		left: 0;
		top: 0;
		box-shadow: 1px 1px 10px 1px #ccc;
	}
	header.fix .logo img{
		height: 80px;
	}
	header.fix .header-right{
		padding-top: 2px;
	}
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .container{
    max-width: 100%;
  }
  .navbar-collapse.collapse{
  position: absolute;
  top: 100%;
  z-index: 1000;
  background-color: #fff;
  right: 0;
  text-align: right;
  width: 300px;
  max-width: 100%;
  padding-right: 38px;
  padding-top: 10px;
  }
  .gioithieu_camket{
  margin: 0px auto;
  }
  .gioithieu-content{
  text-align: center;
  }
.gioithieu-content .dess p{font-size: 16px;}
  .gioithieu_img{
  padding-left: 20%;
  margin-top: 20px;
  }
  .gioithieu:after{
  left: 0;
  }
  .chinhsach-item{
  display: block !important;
  text-align: center;
  }
  .chinhsach-item .text{
  margin-top: 10px;
  }
  .container{
    max-width: 100%;
  }
  .navbar-toggler{
  padding: 2px 5px;
  background: var(--bg-gradient-main);
  color: #fff !important;
  }
  .navbar{
  padding-top: 7px;
  padding-bottom: 7px;
  position: relative;
  }
  .header-right .btn-cart span{
      font-size: 0;
      width: 20px;
      height: 20px;
      display: block;
      background-position: center;
  }
  .header-right .btn-cart{
    width: 35px;
    height: 35px;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
  }
  .header-right .hotro-head strong{
    font-size: 20px;
  }
  .header-right .slogan{
    font-size: 20px;
    display: none;
  }
  .header-right{
    gap: 10px !important;
  }
  .logotext h2{
    font-size: 33px;
  }
  .logotext .sub{
  font-size: 21px;
  }
  .link-shop, .link-sale{
    display: none;
  }
  .navbar .nav-container{
  padding-left: 27%;
  }
  .navbar-expand-lg .navbar-nav .nav-link{
          font-size: 13px;
        padding: 12px 12px;
  }
  .quytrinh_item{
    padding-left: 10px;
    padding-right: 10px;
  }
  .quytrinh_item h3{
    font-size: 18px;
    min-height: 126px;
    line-height: 28px;
  }
  .quytrinh_item .dess{
    font-size: 14px;
    padding: 13px 20px;
    min-height: 150px;
    display: flex;
    align-items: center;
  }
  .quytrinh_item:before{
    left: 10px;
    right: 10px;
  }
  .quytrinh_item .img{
    margin-left: -5px;
    margin-right: -5px;
  }
  .quytrinh_item .icon{
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  .quytrinh_item .icon img{
    max-height: 30px;
  }
  header.fix{
		position: fixed;
		z-index: 1000;
		width: 100%;
		background-color: #f7eee0;
		left: 0;
		top: 0;
		box-shadow: 1px 1px 10px 1px #ccc;
	}
	header.fix .logo img{
		height: 80px;
	}
	header.fix .header-right{
		padding-top: 2px;
	}
}
@media (min-width: 992px) and (max-width: 1024px) {
  .container{
    max-width: 100%;
  }
  .header-right .btn-cart span{
      font-size: 0;
      width: 20px;
      height: 20px;
      display: block;
      background-position: center;
  }
  .header-right .btn-cart{
    width: 35px;
    height: 35px;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
  }
  .header-right .hotro-head strong{
    font-size: 20px;
  }
  .header-right .slogan{
    font-size: 24px;
  }
  .header-right{
    gap: 10px !important;
  }
  .logotext h2{
    font-size: 32px;
  }
  .logotext .sub{
  font-size: 20px;
  }
  .link-shop, .link-sale{
    display: none;
  }
  .navbar .nav-container{
  padding-left: 15%;
  }
  .navbar-expand-lg .navbar-nav .nav-link{
          font-size: 13px;
        padding: 12px 12px;
  }
  .quytrinh_item{
    padding-left: 10px;
    padding-right: 10px;
  }
  .quytrinh_item h3{
    font-size: 18px;
    min-height: 126px;
    line-height: 28px;
  }
  .quytrinh_item .dess{
    font-size: 14px;
    padding: 13px 20px;
    min-height: 150px;
    display: flex;
    align-items: center;
  }
  .quytrinh_item:before{
    left: 10px;
    right: 10px;
  }
  .quytrinh_item .img{
    margin-left: -5px;
    margin-right: -5px;
  }
  .quytrinh_item .icon{
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  .quytrinh_item .icon img{
    max-height: 30px;
  }
}
@media (min-width: 1025px) and (max-width: 1199.98px) {
  .container{
    max-width: 100%;
  }
  .header-right .btn-cart span{
      font-size: 0;
      width: 20px;
      height: 20px;
      display: block;
      background-position: center;
  }
  .header-right .btn-cart{
    width: 35px;
    height: 35px;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
  }
  .header-right .hotro-head strong{
    font-size: 20px;
  }
  .header-right .slogan{
    font-size: 24px;
  }
  .header-right{
    gap: 10px !important;
  }
  .logotext h2{
    font-size: 32px;
  }
  .logotext .sub{
  font-size: 20px;
  }
  .link-shop, .link-sale{
    display: none;
  }
  .navbar .nav-container{
  padding-left: 15%;
  }
  .navbar-expand-lg .navbar-nav .nav-link{
          font-size: 13px;
        padding: 12px 12px;
  }
  .quytrinh_item{
    padding-left: 10px;
    padding-right: 10px;
  }
  .quytrinh_item h3{
    font-size: 18px;
    min-height: 126px;
    line-height: 28px;
  }
  .quytrinh_item .dess{
    font-size: 14px;
    padding: 13px 20px;
    min-height: 150px;
    display: flex;
    align-items: center;
  }
  .quytrinh_item:before{
    left: 10px;
    right: 10px;
  }
  .quytrinh_item .img{
    margin-left: -5px;
    margin-right: -5px;
  }
  .quytrinh_item .icon{
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  .quytrinh_item .icon img{
    max-height: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .container{
    max-width: 95%;
  }
  .navbar .nav-container{
    padding-left: 200px;
  }
   .nav-item.dropdown:hover .dropdown-menu{
    display: block;
  }
   .nav-item.dropdown:hover>a{
    color: var(--bs-primary);
  }
}
@media (min-width: 1400px) {
  .nav-item.dropdown:hover .dropdown-menu{
    display: block;
  }
  .nav-item.dropdown:hover>a{
    color: var(--bs-primary);
  }
}
.navbar-toggler-icon{
      width: 1.3em;
}
.fb-page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.fb-page,
.fb-page span,
.fb-page iframe {
    width: 100% !important;
}
main{
  min-height: 90vh;
}
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    font-size: 16px;
    font-weight: 800;
}