/* Fonts */
@font-face {
  font-family: "UVN Hoa Dao";
  src: url("../fonts/UVNHoaDao.woff2") format("woff2"), url("../fonts/UVNHoaDao.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-main: #ef1616;
  --color-hover: #f4ec05;
  --color-text: #383838;
  --color-content: #5c5c5c;
  --color-background: #ffefd2;
  --font-main: "Nunito", sans-serif;
  --font-title: "UVN Hoa Dao", sans-serif;
}

body {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-main);
  background: var(--color-background);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-main);
}

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

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}
img.lazy {
  display: inline-block;
  opacity: 0;
}
img:not(.initial) {
  transition: opacity 1s;
}
img:not([src]) {
  visibility: hidden;
}
img:is(.loaded, .error) {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

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

ol,
ul {
  list-style: unset;
}

.content-text a {
  color: #0d6efd;
  text-decoration: underline;
}

.social-plugin {
  display: flex;
  gap: 2px;
  margin: 12px 0;
}

.scale-img {
  display: block;
  overflow: hidden;
}
.scale-img img {
  transform: scale(1, 1);
  transition: all 0.3s ease;
}
.scale-img:hover img {
  transform: scale(1.1, 1.1);
  transition: all 0.3s ease;
}

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

/* Transition All */
.transition, .btn-frame .kenit-alo-circle-fill {
  transition: 0.3s all;
}

/* header */
#header-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.section-header {
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 0;
}
.section-header .header-info {
  color: #ff0;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}

/* Menu */
.fixed-menu {
  position: fixed !important;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.fixed-menu .menu {
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.4);
}
.fixed-menu .menu .menu-logo {
  margin-top: 0;
}
.fixed-menu .menu .menu-logo img {
  height: 60px;
}

.body-container.detail #header-primary {
  position: relative;
}
.body-container.detail .menu {
  background: rgba(0, 0, 0, 0.6);
}

.menu {
  position: relative;
  z-index: 100;
  background: transparent;
}
.menu .menu-logo {
  margin-top: -40px;
}
.menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.menu ul li {
  position: relative;
  z-index: 99;
  text-align: center;
}
.menu ul li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  padding: 13px 0;
  text-transform: uppercase;
  background: transparent;
}
.menu ul li a.active {
  color: #f4ec05;
}
.menu ul li a.active::before {
  content: "";
  position: absolute;
  background: url(../images/main/before-menu.png) no-repeat center center/100% 100%;
  width: 29px;
  height: 9px;
  left: calc(50% - 14.5px);
  bottom: 0;
}
.menu ul li a .menu-category-list-btn {
  position: absolute;
  right: -12px;
  top: calc(50% - 7px);
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease-out;
}
.menu ul li:hover > a {
  color: #f4ec05;
}
.menu ul li:hover > a .menu-category-list-btn {
  transform: rotate(90deg);
}
.menu ul li:hover > ul {
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.menu ul li ul {
  position: absolute;
  min-width: 220px;
  background-color: #fafafa;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
}
.menu ul li ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.menu ul li ul li:hover > a {
  background: var(--color-main);
  color: #fff;
}
.menu ul li ul li:hover > a .menu-category-list-btn {
  transform: rotate(180deg);
}
.menu ul li ul li a {
  text-align: left;
  font-size: 14px;
  color: #333;
  text-transform: capitalize;
  padding: 10px 10px;
}
.menu ul li ul li a::before {
  display: none;
}
.menu ul li ul li a .menu-category-list-btn {
  right: 10px;
}
.menu ul li ul li ul {
  top: 0;
  left: 100%;
  margin-top: 0px;
}

/* Search */
.search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #dcdcdc;
  background: #fff;
}
.search button {
  background: #0741a4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  margin: 4px;
}

/* Mmenu */
.menu-res {
  display: none;
  position: relative;
  background: transparent;
  z-index: 100;
}

#hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  border: 2px solid var(--color-hover);
  border-radius: 6px;
  display: grid;
  place-items: center;
}
#hamburger span {
  font-size: 23px;
  line-height: 1;
  color: var(--color-hover);
  transition: all 0.3s ease;
}

.mm-wrapper_opening #hamburger span::before {
  content: "\f00d";
}

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

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

/* Search */
.search-res {
  position: relative;
}
.search-res .icon-search {
  cursor: pointer;
  width: 45px;
  height: 45px;
  color: #f4ec05;
  font-size: 18px;
  line-height: 1;
  margin: 0px;
  display: grid;
  place-items: center;
  border: 1px solid #f4ec05;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}
.search-res .icon-search.active {
  color: #fff;
}
.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-main);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
}
.search-res .search-grid button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.search-res .search-grid input {
  font-size: 13px;
  width: 100%;
  height: 38px;
  text-indent: 10px;
  outline: none;
  border: none;
  box-shadow: none;
}

/* Main */
.title-main {
  position: relative;
  text-align: center;
  background: url(../images/main/title-main.png) no-repeat center bottom;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.title-main h2 {
  color: #ef1616;
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.title-main h2::before {
  content: attr(data-text);
  position: absolute;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: #f4ec05;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.title-main p {
  color: #333;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.7px;
  margin-bottom: 0;
}

.title-detail {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-detail h1 {
  color: #ef1616;
  font-family: var(--font-title);
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}

.title-related {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-related h2 {
  color: #ef1616;
  font-family: var(--font-title);
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Embla */
.embla__button {
  cursor: pointer;
  outline: none;
  border: 0px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 17px;
  background: var(--color-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.embla__button:hover {
  background: var(--color-hover);
}
.embla__button.embla__button--prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.embla__button.embla__button--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* breadCrumbs */
.breadCrumbs {
  padding: 10px 0px;
  background: #ddd;
}
.breadCrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadCrumbs ol li a {
  color: #333;
}
.breadCrumbs ol li.active a, .breadCrumbs ol li:hover a {
  color: var(--color-main);
}

/* Embla */
.embla__dots {
  position: absolute;
  top: 240px;
  right: calc(50% - 600px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.embla__dots .embla__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
}
.embla__dots .embla__dot.embla__dot--selected {
  position: relative;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #fff;
}
.embla__dots .embla__dot.embla__dot--selected::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  border-radius: 50%;
  background: #fff;
}

/* Tieu Chi */
.section-criteria {
  position: relative;
}
.section-criteria::before {
  content: "";
  position: absolute;
  background: url(../images/main/bg-tieuchi.png) no-repeat center center/cover;
  inset: 0;
  top: -15px;
  z-index: -1;
  pointer-events: none;
}
.section-criteria::after {
  content: "";
  position: absolute;
  background: url(../images/main/before-tieuchi.png) no-repeat center center/cover;
  width: 100%;
  height: 313px;
  bottom: -90px;
  z-index: -1;
  pointer-events: none;
}
.section-criteria .title-main {
  background: url(../images/main/title-main2.png) no-repeat center bottom;
}
.section-criteria .title-main h2 {
  color: #f4ec05;
}
.section-criteria .title-main h2::before {
  -webkit-text-stroke-color: #000;
}
.section-criteria .title-main p {
  color: #fff;
}

.criteria-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}
.criteria-container .criteria-cols:nth-child(1) {
  order: 0;
}
.criteria-container .criteria-cols:nth-child(1) .criteria-item {
  text-align: right;
  flex-direction: row-reverse;
}
.criteria-container .criteria-cols:nth-child(1) .criteria-item:nth-child(2) {
  margin-right: 55px;
}
.criteria-container .criteria-cols:nth-child(2) {
  order: 2;
}
.criteria-container .criteria-cols:nth-child(2) .criteria-item:nth-child(2) {
  margin-left: 55px;
}
.criteria-container .criteria-banner {
  position: relative;
  order: 1;
}
.criteria-container .criteria-banner .icon {
  position: absolute;
  width: 468px;
  height: 450px;
  top: calc(50% - 225px);
  left: calc(50% - 234px);
  animation: rotate 6s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.criteria-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.criteria-item:not(:last-child) {
  margin-bottom: 86px;
}
.criteria-item .photo {
  flex-shrink: 0;
}
.criteria-item .photo img {
  transition: all 0.6s linear;
}
.criteria-item .photo:hover img {
  transform: rotateY(360deg);
}
.criteria-item .info {
  flex: 1 1 0%;
}
.criteria-item .info .name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.criteria-item .info .desc {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

/* Product */
.section-product-list {
  position: relative;
}
.section-product-list:not(:last-child)::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5) inset;
  height: 20px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.product-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 4px 4px 0px #e1c28b;
}
.product-item .info {
  border: 1px solid #cbab75;
  background: #fbe0b1;
  border-radius: 0px 0px 10px 10px;
  padding: 1rem 1rem 20px;
}
.product-item .name {
  color: #1e2a38;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.product-item .name:hover {
  color: var(--color-main);
}
.product-item .desc {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}
.product-item .price {
  border-radius: 0px 20px;
  background: #ef1616;
  padding: 8px 6px;
}
.product-item .price .price-new {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.product-item .price .price-new a {
  transition: all 0.3s ease;
}
.product-item .price .price-new a:hover {
  color: var(--color-hover);
}

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

.album-container {
  position: relative;
}
.album-container .album-cols {
  display: flex;
  align-items: flex-start;
}
.album-container .album-cols:nth-child(1) {
  position: relative;
  justify-content: space-between;
}
.album-container .album-cols:nth-child(1) .album-item:nth-child(1) {
  margin-top: 50px;
}
.album-container .album-cols:nth-child(1) .album-item:nth-child(2) {
  position: relative;
  margin-left: -90px;
  z-index: 1;
}
.album-container .album-cols:nth-child(1) .album-item:nth-child(2)::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  border: 8px solid #fbe18a;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.album-container .album-cols:nth-child(1) .album-item:nth-child(3) {
  margin-top: 117px;
}
.album-container .album-cols:nth-child(1) .album-item:nth-child(4) {
  position: relative;
  margin-top: 230px;
  margin-left: -160px;
  z-index: 1;
}
.album-container .album-cols:nth-child(2) {
  gap: 10px;
  margin: -160px 0 0 175px;
}
.album-container .social-album {
  border-top: 1px dashed #f00;
  border-bottom: 1px solid #f00;
  padding: 10px 0;
  margin-top: 16px;
}
.album-container .album-social {
  position: absolute;
  right: 40px;
  bottom: 40px;
  text-align: center;
}
.album-container .album-social .album-slogan {
  margin-bottom: 1rem;
}
.album-container .album-social .album-social-title {
  margin-bottom: 1rem;
}

.album-item .scale-img {
  border-radius: 10px;
}
.album-item .title-main {
  background: transparent;
  padding-bottom: 0;
  margin-bottom: 0;
  position: absolute;
  bottom: -110px;
  right: 10px;
  max-width: 60%;
}
.album-item .title-main h2 {
  font-size: 50px;
}

.album-title {
  margin-bottom: 1.5rem;
}
.album-title span:nth-child(1) {
  font-family: "UVN Hoa Dao";
  font-size: 80px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: transparent;
}
.album-title span:nth-child(1)::before {
  content: attr(data-text);
  position: absolute;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #f00;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.album-title span:nth-child(2) {
  font-family: "UVN Hoa Dao";
  font-size: 80px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: #f00;
}

/* Newsletter */
.section-newsletter {
  position: relative;
}
.section-newsletter::before {
  content: "";
  position: absolute;
  background: url(../images/main/bg-newsletter.png) no-repeat center center/cover;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.section-newsletter .newsletter-container {
  position: relative;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  max-width: 460px;
  padding: 60px 40px 40px;
}
.section-newsletter .newsletter-container::before {
  content: "";
  position: absolute;
  background: url(../images/main/before-bg-newsletter.png) no-repeat center center/100% 100%;
  inset: 0;
  top: -11px;
  right: -40px;
  bottom: -8px;
  left: -50px;
  pointer-events: none;
}
.section-newsletter .newsletter-logo {
  position: absolute;
  top: -30px;
  left: 40px;
}
.section-newsletter .newsletter-title {
  margin-bottom: 0.75rem;
}
.section-newsletter .newsletter-title h2 {
  color: #ef1616;
  font-family: var(--font-title);
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.section-newsletter .newsletter-title p {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
}
.section-newsletter .newsletter-input {
  margin-bottom: 10px;
}
.section-newsletter .newsletter-input .form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
}
.section-newsletter .newsletter-input input {
  height: 45px;
}
.section-newsletter .newsletter-input textarea {
  height: 70px;
}
.section-newsletter .newsletter-button button {
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #c10001;
  width: 100%;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff9ed;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.section-newsletter .newsletter-button button:hover {
  background: var(--color-hover);
  color: #333;
}

/* Khach Hang */
.section-khachhang {
  position: relative;
}
.section-khachhang::before {
  content: "";
  position: absolute;
  background: url(../images/main/bg-ykien.png) no-repeat center center/cover;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.section-khachhang .wrap-content {
  max-width: 1110px;
}

.khachhang-item {
  position: relative;
  text-align: center;
  padding: 60px 37px 38px 28px;
}
.khachhang-item::before {
  content: "";
  position: absolute;
  background: url(../images/main/bg-ykien-item.png) no-repeat center center/100% 100%;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.khachhang-item .photo {
  display: inline-block;
  border: 10px solid #ffc500;
  border-radius: 50%;
  box-shadow: 0px 4px 10px 0px #fbe18a;
  margin-bottom: 10px;
}
.khachhang-item .photo .scale-img {
  border-radius: 50%;
}
.khachhang-item .name {
  color: #ef1616;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 0;
  margin-top: 8px;
}
.khachhang-item .desc {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 8px;
}

/* News */
.section-news {
  position: relative;
}
.section-news::before {
  content: "";
  position: absolute;
  background: #fbe0b1;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.news-slide {
  padding: 5px;
  margin: -5px;
}

.news-item {
  position: relative;
  padding: 10px 10px 0;
}
.news-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: #fef0d6;
  box-shadow: 5px 4px 4px 1px rgba(0, 0, 0, 0.06);
  top: 90px;
  bottom: 10px;
  z-index: -1;
  pointer-events: none;
}
.news-item .photo .scale-img {
  border-radius: 10px;
}
.news-item .info {
  padding: 10px 10px 0;
}
.news-item .name {
  color: #331a15;
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.news-item .name:hover {
  color: var(--color-main);
}
.news-item .desc {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0.5rem;
}
.news-item .viewmore a {
  border-radius: 10px;
  background: #ef1616;
  width: 120px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  transition: all 0.3s ease;
}
.news-item .viewmore a:hover {
  background: var(--color-hover);
  color: #333;
}

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

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

.list-news-other {
  padding-left: 17px;
  list-style: square;
}
.list-news-other li {
  margin-bottom: 2px;
}
.list-news-other li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #151515;
  transition: all 0.3s ease;
}
.list-news-other li a:hover {
  color: var(--color-main);
}

.box-news-detail {
  display: block;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  padding: 10px 10px;
  margin-bottom: 20px;
}
.box-news-detail .info-news-detail {
  font-weight: 400;
  font-size: 16px;
  padding: 5px 0;
  margin: 0;
}
.box-news-detail .info-news-detail i {
  color: var(--color-main);
}
.box-news-detail .contact-news-detail {
  display: block;
  background: var(--color-main);
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 7px 10px;
  margin-top: 11px;
  transition: all 0.3s ease;
}
.box-news-detail .contact-news-detail:hover {
  background: var(--color-hover);
}
.box-news-detail .title-related h2 {
  font-size: 24px;
}

.news-item-detail {
  position: relative;
  text-align: center;
}
.news-item-detail .news-photo {
  margin-bottom: 0.75rem;
}
.news-item-detail .news-photo .scale-img {
  border-radius: 10px;
}
.news-item-detail .news-info .news-name {
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.news-item-detail .news-info .news-name:hover {
  color: var(--color-main);
}
.news-item-detail .news-info .news-desc {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

/* Sort */
.sort-select {
  display: flex;
  justify-content: end;
  margin: 20px 0px;
  position: relative;
}
.sort-select .click-sort {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  margin: 0px;
}
.sort-select .sort-select-main {
  display: grid;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  padding: 0 7px;
  top: 30px;
  right: 0;
  width: 160px;
  z-index: 2;
}
.sort-select .sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0px;
  order: 2;
}
.sort-select .sort-select-main p:has(.check) {
  order: 1;
}
.sort-select .sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}
.sort-select .sort a.check i {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 100px;
  vertical-align: middle;
}
.sort-select .sort a.check i:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -4px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.sort-select .sort-show {
  padding-right: 12px;
  position: relative;
}
.sort-select .sort-show:before {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  right: 0;
  width: 0;
}

/* Category list */
.left-product {
  position: sticky;
  top: 60px;
}

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

.category-product-list {
  background: #fff;
  box-shadow: 0 0 10px 0 #e0e0e0;
  border: 1px solid #e0e0e0;
  border-top: 0;
  padding: 10px;
}
.category-product-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-product-list ul li {
  position: relative;
  padding: 10px 0;
}
.category-product-list ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.category-product-list ul li a {
  position: relative;
  display: block;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.category-product-list ul li a .btn-toggle {
  border: 0;
  outline: 0;
  box-shadow: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  right: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  color: #333;
}
.category-product-list ul li a .btn-toggle:hover {
  color: var(--color-main);
}
.category-product-list ul li a:hover, .category-product-list ul li a.active {
  color: var(--color-main);
}
.category-product-list ul li ul {
  display: none;
  padding: 0 20px !important;
}
.category-product-list ul li ul li a {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

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

.filter {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid #ddd;
  display: none;
}

.attr-pro-detail {
  list-style: none;
  padding: 0px;
}
.attr-pro-detail li {
  margin-bottom: 0.5rem;
}
.attr-pro-detail li .attr-label-pro-detail {
  font-weight: 700;
  margin-bottom: 0;
}
.attr-pro-detail li .attr-content-pro-detail {
  font-weight: 400;
}
.attr-pro-detail li .price-new-pro-detail {
  font-size: 20px;
  color: #e30613;
  font-weight: 700;
}
.attr-pro-detail li .price-old-pro-detail {
  font-size: 17px;
  color: #666666;
  font-weight: 400;
  text-decoration: line-through;
}

/* Detail */
.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quantity-pro-detail span {
  line-height: 25px;
  padding: 0px;
  width: 30px;
  height: 30px;
  color: #5f5f5f;
  cursor: pointer;
  font-size: 22px;
  border: 1px solid #cccccc;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0px;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0px;
}
.quantity-pro-detail input {
  height: 30px;
  border: 1px solid #cccccc;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 14px;
  padding: 5px;
  padding-left: 20px;
}

.attr-pro-detail .cart-pro-detail a {
  cursor: pointer;
  width: auto;
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  border-radius: 3px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
}
.attr-pro-detail .cart-pro-detail a:hover {
  background-color: var(--color-btn) !important;
  box-shadow: 0 2px 10px var(--color-btn);
}
.attr-pro-detail .cart-pro-detail a.addnow {
  background: var(--color-main);
  margin-right: 0 !important;
}
.attr-pro-detail .cart-pro-detail a.buynow {
  background: var(--color-hover);
}
.attr-pro-detail .cart-pro-detail a i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}

.tabs-pro-detail .nav-tabs {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.tabs-pro-detail .nav-tabs .nav-link.active {
  border-top-color: #9d9d9d;
  color: #000;
}
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  border-top-color: #9d9d9d;
}

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

.pagination-ajax {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pagination-ajax .page-item .page-link {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 14px !important;
  line-height: 1;
  font-weight: 600;
  border: 1px solid #ababab;
  border-radius: 50% !important;
  color: #333;
  background: rgb(255, 255, 255);
  transition: all 0.3s ease;
}
.pagination-ajax .page-item .page-link:hover {
  color: #fff;
  background: var(--color-main);
  border-color: var(--color-main);
}
.pagination-ajax .page-item.active .page-link {
  color: #fff;
  background: var(--color-main);
  border-color: var(--color-main);
}
.pagination-ajax .page-item.disabled .page-link {
  pointer-events: none;
}
.pagination-ajax .page-item:first-child .page-link, .pagination-ajax .page-item:last-child .page-link {
  font-size: 0 !important;
}
.pagination-ajax .page-item:first-child .page-link::before, .pagination-ajax .page-item:last-child .page-link::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 14px;
}
.pagination-ajax .page-item:first-child .page-link::before {
  content: "\f053";
}
.pagination-ajax .page-item:last-child .page-link::before {
  content: "\f054";
}

/* Footer */
.footer-container {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}
.footer-container::before {
  content: "";
  position: absolute;
  background: url(../images/main/bg-footer.png) no-repeat center center/cover;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.footer-container::after {
  content: "";
  position: absolute;
  background: url(../images/main/before-tieuchi.png) no-repeat center center/cover;
  width: 100%;
  height: 313px;
  top: -175px;
  left: 0;
  pointer-events: none;
}

.footer-article {
  padding: 170px 0 70px;
  font-size: 15px;
}
.footer-article .footer-name {
  margin-top: -20px;
}
.footer-article .footer-name h2 {
  position: relative;
  color: #f4ec05;
  font-family: var(--font-title);
  font-size: 55px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-article .footer-name h2::before {
  content: attr(data-text);
  position: absolute;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.footer-article .footer-title p {
  position: relative;
  color: #f4ec05;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-article .footer-title p::before {
  content: attr(data-text);
  position: absolute;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.footer-article .footer-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-article .footer-ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.footer-article .footer-ul h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.footer-article .footer-ul h3:hover {
  color: var(--color-hover);
}

.footer-powered {
  text-align: center;
  padding: 0 0 50px;
  font-size: 15px;
}

.footer-maps-iframe {
  position: relative;
  height: 500px;
}
.footer-maps-iframe iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Contact */
.contact-form .contact-input {
  color: #333;
}

.contact-map {
  position: relative;
  height: 500px;
  margin-top: 30px;
}
.contact-map iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

/* Card fixed */
.cart-fixed {
  position: fixed;
  right: 20px;
  bottom: 400px;
  z-index: 10;
  display: none;
}

/* Btn Frame */
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}
.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  animation-name: pulse;
}

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

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

/* Hvr Float Shadow */
.hvr-float-shadow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 1px transparent;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-float-shadow:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 5%;
  z-index: -1;
  width: 90%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0, transparent 80%);
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  pointer-events: none;
}
.hvr-float-shadow:active {
  transform: translateY(-5px);
}
.hvr-float-shadow:active:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:focus {
  transform: translateY(-5px);
}
.hvr-float-shadow:focus:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:hover {
  transform: translateY(-5px);
}
.hvr-float-shadow:hover:before {
  opacity: 1;
  transform: translateY(5px);
}

.duongcheosang3 {
  position: relative;
  overflow: hidden;
}
.duongcheosang3::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 1;
}
.duongcheosang3::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 2;
}
.duongcheosang3:hover::before, .duongcheosang3:hover::after {
  transform: rotateY(180deg);
  transition-duration: 1.3s;
  opacity: 0;
  height: 100%;
  width: 100%;
}

/* Toc */
.box-readmore {
  padding: 8px 15px;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}
.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0;
  padding-left: 0 !important;
  margin-top: 8px;
}
.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}
.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}
.box-readmore ul li a {
  color: #333333;
  cursor: pointer;
  font-weight: 600;
}
.box-readmore ul li a:hover {
  color: #767676;
}
.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}
.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%, 30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%, 50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-animation {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  10% {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.6, 1.6, 1.6);
    opacity: 0;
  }
}
@keyframes border-animation {
  0% {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0;
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.4, 1.4, 1.4);
    opacity: 0;
  }
}