@font-face {
  font-family: "SVN-Unthrift";
  src: url("../fonts/custom/SVN-Unthrift.woff2") format("woff2"), url("../fonts/custom/SVN-Unthrift.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "1FTV VIP Bostanic Millague";
  src: url("../fonts/custom/1FTVVIPBostanicMillague.woff2") format("woff2"), url("../fonts/custom/1FTVVIPBostanicMillague.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Poppins";
  src: url("../fonts/custom/SVN-PoppinsSemiBold.woff2") format("woff2"), url("../fonts/custom/SVN-PoppinsSemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Poppins";
  src: url("../fonts/custom/SVN-PoppinsSemiBoldItalic.woff2") format("woff2"), url("../fonts/custom/SVN-PoppinsSemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "iCielBC Cubano";
  src: url("../fonts/custom/iCielBCCubano-Normal.woff2") format("woff2"), url("../fonts/custom/iCielBCCubano-Normal.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@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;
  }
}
@keyframes skeleton {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
}
/* From Uiverse.io by alexruix */
.loader {
  --cell-size: 52px;
  --cell-spacing: 1px;
  --cells: 3;
  --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
  display: flex;
  flex-wrap: wrap;
  width: var(--total-size);
  height: var(--total-size);
}

.cell {
  flex: 0 0 var(--cell-size);
  margin: var(--cell-spacing);
  background-color: transparent;
  box-sizing: border-box;
  border-radius: 4px;
  animation: 1.5s ripple ease infinite;
}

.cell.d-1 {
  animation-delay: 100ms;
}

.cell.d-2 {
  animation-delay: 200ms;
}

.cell.d-3 {
  animation-delay: 300ms;
}

.cell.d-4 {
  animation-delay: 400ms;
}

.cell:nth-child(1) {
  --cell-color: #00FF87;
}

.cell:nth-child(2) {
  --cell-color: #0CFD95;
}

.cell:nth-child(3) {
  --cell-color: #17FBA2;
}

.cell:nth-child(4) {
  --cell-color: #23F9B2;
}

.cell:nth-child(5) {
  --cell-color: #30F7C3;
}

.cell:nth-child(6) {
  --cell-color: #3DF5D4;
}

.cell:nth-child(7) {
  --cell-color: #45F4DE;
}

.cell:nth-child(8) {
  --cell-color: #53F1F0;
}

.cell:nth-child(9) {
  --cell-color: #60EFFF;
}

/*Animation*/
@keyframes ripple {
  0% {
    background-color: transparent;
  }
  30% {
    background-color: var(--cell-color);
  }
  60% {
    background-color: transparent;
  }
  100% {
    background-color: transparent;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.inset-0 {
  inset: 0;
}

.pointer {
  cursor: pointer;
}

.z--1 {
  z-index: -1;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}

.isolate {
  isolation: isolate;
}

.ovf-hidden {
  overflow: hidden;
}

.square {
  aspect-ratio: 1/1;
}

:root {
  --max-width: min(1300px, calc(100% - 30px));
  --max-padding: 1fr;
  --light-secondary-color: #fedd56;
  --primary-color: #de0b22;
  --dark-secondary-color: #8d5200;
  --secondary-color: #e3820d;
  --white-color: #fff;
  --gray-color: #f5f5f5;
  --light-gray-color: #f8f8f8;
  --background-color: #faf4df;
  --d9d9d9: #6b4d30;
  --dark-gray-color: #6d6e70;
  --csk---306f46-500: #306f46;
  --csk---306f46-50: #edf7f1;
  --csk---306f46-950: #08120b;
  --csk---306f46-100: #dbf0e2;
  --csk---306f46-200: #b8e0c6;
  --csk---306f46-300: #94d1a9;
  --csk---306f46-400: #71c18d;
  --csk---306f46-600: #3e8e5a;
  --csk---306f46-700: #2e6b43;
  --csk---306f46-800: #1f472d;
  --csk---306f46-900: #0f2416;
  --color-white-solid: #fff;
  --color-grey-92: #ebebeb;
  --color-grey-20: #333;
  --color-grey-93: #e9ecef;
  --color-grey-40: #666;
  --color-black-solid: #000;
  --color-grey-49: #7e7e7e;
  --color-grey-97: #f7f7f7;
  --color-grey-68-320: rgba(173, 173, 173, 0.32);
  --color-black--46-70: rgba(0, 0, 0, 0.47);
  --color-grey-87: #ddd;
  --color-grey-98: #fdf7f7;
  --color-grey-46: #6b7280;
  --color-grey-95: #f1f1f1;
  --color-grey-26: #424242;
  --color-white--29-40: rgba(255, 255, 255, 0.29);
  --color-grey-50: #808080;
  --color-orange-89: #e5e3df;
  --color-grey-36: #5b5b5b;
  --color-grey-90: #e6e6e6;
  --color-grey-13: #222;
  --color-grey-96: #f5f5f5;
  --font-family: "Mulish", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "iCielBC Cubano";
  --font3: "SVN-Unthrift", sans-serif;
  --font4: "SVN-Poppins", sans-serif;
  --font5: "1FTV VIP Bostanic Millague";
  --font6: "Roboto Mono", sans-serif;
  --line: 3;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.5;
}
::-webkit-scrollbar-track {
  background: white;
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 5px;
}

body {
  top: 0 !important;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-family: var(--font-family);
  font-size: 14px;
  background: var(--background-color);
}

button {
  all: unset;
  box-sizing: border-box;
}

picture {
  display: flex;
}
picture:has(> img.w-100) {
  width: 100%;
  height: auto;
}

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

a,
input,
textarea {
  outline: none;
  padding: 0;
}

input[type=number] {
  appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wrap-content {
  display: grid;
  width: 100% !important;
  grid-column: main;
  grid-template-columns: [main-start] var(--max-padding) [content-start] var(--max-width) [content-end] var(--max-padding) [main-end];
}
.wrap-content > *:not(.fw, .wrap-content) {
  grid-column: content;
}
.wrap-content > .fw {
  grid-column: main;
}

.pagination {
  --bs-pagination-color: var(--primary-color);
  --bs-pagination-hover-color: var(--primary-color);
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
  flex-wrap: wrap;
  margin: 20px 0 0 0 !important;
}
.pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

:is(.title-main, .title-detail) {
  text-align: center;
  margin-bottom: clamp(12px, 1.9512195122vw, 24px);
}
:is(.title-main, .title-detail) :is(span, h1, h2, h3, h4) {
  font: 400 clamp(26px, 4.2276422764vw, 52px)/1.2307692308 var(--third-family);
  color: var(--primary-color);
  margin-bottom: 0;
  filter: drop-shadow(3px 3px 0 var(--secondary-color));
  -webkit-text-stroke: 4px white;
  paint-order: stroke fill;
  text-wrap: balance;
}

.time-main {
  color: #999;
  margin-bottom: 0.75rem;
}
.time-main i {
  margin: 3px 7px 0 0;
  vertical-align: top;
}
.time-main span {
  display: inline-block;
  vertical-align: top;
}

.share {
  background: hsla(0, 0%, 50%, 0.15);
  border-radius: 5px;
  line-height: normal;
  margin-top: 15px;
  padding: 17px 15px 10px;
}
.share b {
  display: block;
  margin-bottom: 5px;
}

.footer-top {
  padding-top: clamp(20px, 10.5691056911vw, 130px);
  padding-bottom: clamp(20px, 4.0650406504vw, 50px);
  gap: clamp(10px, 2.6829268293vw, 33px);
}
.footer-top .footer-logo {
  flex: 1 1 193px;
}
.footer-top .footer-content {
  flex: 1 1 249px;
}
.footer-top .footer-fanpage {
  flex: 1 1 236px;
  width: min(236px, 23.8461538462%);
}
.footer-top .footer-fanpage-frame {
  height: 225px;
}
.footer-top .footer-fanpage .fb_iframe_widget {
  max-width: 100%;
}
.footer-top .footer-fanpage .fb_iframe_widget > span {
  max-width: 100%;
}
.footer-top .footer-fanpage .fb_iframe_widget iframe {
  max-width: 100%;
}

.footer-back-to-top {
  font: 600 14px/1.64286 var(--font-family);
  text-transform: capitalize;
  text-align: center;
  color: var(--white-color);
}

.footer-slide {
  width: 140px;
  border-radius: 1000px;
  margin: 0 auto;
}

.footer-title {
  font: 700 15px/1.53333 var(--font-family);
  text-transform: uppercase;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(12px, 1.9512195122vw, 24px);
}
.footer-title::before {
  content: "";
  border: 1px solid var(--light-secondary-color);
  width: 0;
  height: 11px;
}

.footer-listview_item {
  font: 400 15px/2 var(--font-family);
  color: var(--6);
}

.footer-slogan {
  background: linear-gradient(90deg, rgba(255, 225, 100, 0.8) 0%, transparent 28.68%, transparent 64.74%, rgba(255, 225, 100, 0.8) 100%);
  padding: 0 29px;
  border-radius: 44px;
  margin: clamp(12px, 2.0325203252vw, 25px) 0 clamp(25px, 4.0650406504vw, 50px);
}
.footer-slogan > :last-child {
  margin-bottom: 0;
}
.footer-slogan + .footer-map {
  margin-top: 0;
}

.footer-powered {
  padding: clamp(12px, 1.9512195122vw, 24px) 0;
}

.footer-map {
  border-radius: clamp(10px, 1.6260162602vw, 20px);
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border: 5px solid var(--white-color);
  margin: clamp(25px, 4.0650406504vw, 50px) 0;
  background: var(--secondary-color);
}
.footer-map, .footer-map iframe {
  width: 100%;
  height: 450px;
}
.footer-map .footer-buttons {
  top: clamp(17px, 2.7642276423vw, 34px);
  left: clamp(22px, 3.5772357724vw, 44px);
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.25));
}
.footer-map .footer-buttons button {
  background: var(--white-color);
  border-radius: 4px;
  padding: clamp(5px, 0.8130081301vw, 10px) clamp(15px, 2.4390243902vw, 30px);
  font: 700 clamp(14px, 1.4634146341vw, 18px)/1.3888888889 var(--font-family);
  text-transform: uppercase;
  color: var(--color-black-solid);
}
.footer-map .footer-buttons button.active {
  background: var(--light-secondary-color);
}

.text-split {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line);
  box-orient: vertical;
  line-clamp: var(--line);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  height: calc(var(--line) * 1lh);
}

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

:is([class*=_item]:hover .scale-img, .scale-img:hover) > img,
:is([class*=_item]:hover .scale-img, .scale-img:hover) picture > img {
  transition: all 0.3s;
  transform: scale(1.1);
}

[class*=-xemthem] {
  transition: all 0.6s;
  position: relative;
  overflow: hidden;
}
[class*=-xemthem]::before {
  transition: all 0.6s;
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(20deg, var(--bg, transparent) 50%, var(--xemthem-color, var(--primary-color)) 50%);
  background-size: 600%;
}
[class*=-xemthem]:hover {
  color: white;
  transform: translateX(0.5rem);
}
[class*=-xemthem]:hover::before {
  background-position: 100%;
}

.transition {
  transition: all 0.3s;
}

.cart-fixed {
  color: #fff !important;
  z-index: 10;
}
.cart-fixed i {
  font-size: 20px;
}
.cart-fixed span {
  background: var(--primary-color);
  border-radius: 100%;
  color: #fff;
  font-size: 11px;
  height: 25px;
  line-height: 25px;
  position: absolute;
  right: -5px;
  text-align: center;
  top: 0;
  width: 25px;
}

.a2a_kit .a2a_svg {
  height: 30px;
  line-height: 30px;
  width: 30px;
}

.qty-pro {
  flex: 0 0 100px !important;
}

.skeleton :is([class*="-pic "], [class*="-title "], [class*="-desc "], [class*="-content "], [class*="-price "]) {
  background: #e4e4e4;
  border-radius: 5px;
  animation: skeleton 2s ease-in-out infinite;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.skeleton .pagination-ajax {
  filter: grayscale(1);
  position: relative;
}
.skeleton .pagination-ajax::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}
.skeleton img {
  opacity: 0;
}

.htmx-indicator:not(.htmx-request) {
  display: none !important;
}

.aos-overflow {
  overflow: hidden !important;
  overflow: clip visible !important;
}

.search-form {
  width: 37.5%;
}
.search-form input:is(:focus, :focus-visible, :focus-within) {
  border: unset !important;
  outline: unset;
  box-shadow: unset;
}
.search-form button {
  border-radius: 100%;
  width: 42px;
  color: white;
  font-size: 16px;
}

.menu-res {
  background: var(--primary-color);
  z-index: 100;
  display: none;
}
.menu-res .header-cart img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(8%) hue-rotate(353deg) brightness(104%) contrast(104%);
}

.search-res {
  position: relative;
}
.search-res input[type=checkbox]:checked + label {
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
}
.search-res input[type=checkbox]:checked + label + .search-grid {
  opacity: 1;
  grid-template-columns: 1fr;
}
.search-res .search-grid {
  display: grid;
  grid-template-columns: 0fr;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 2;
  width: max-content;
}

.grid-sp {
  display: grid;
  --gap: clamp(8px, calc(20 / 1230 * 100vw), 20px);
  gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(max(250px, (100% - var(--gap) * 3) / 4), 1fr));
}

.sp_item {
  padding: clamp(5px, 0.8130081301vw, 10px);
  background: var(--white-color);
  border-radius: clamp(7px, 1.1382113821vw, 14px);
}

.sp-header {
  margin-bottom: clamp(4px, 0.6504065041vw, 8px);
}
.sp-header .sp-logo {
  width: 27.5862068966%;
  margin: 0 clamp(8px, 1.3821138211vw, 17px);
}
.sp-header .sp-logo picture {
  display: inline;
}
.sp-header .sp-brand-name {
  font: italic 700 clamp(16px, 1.7886178862vw, 22px)/1.9090909091 var(--font-family);
  text-transform: capitalize;
  color: var(--color-grey-13);
}

.sp-pic {
  border-radius: clamp(5px, 0.8130081301vw, 10px);
}

.sp-price {
  text-align: center;
  padding: 3px clamp(20px, 3.2520325203vw, 40px) clamp(10px, 1.6260162602vw, 20px);
}
.sp-price span {
  font: 600 clamp(12px, 1.2195121951vw, 15px)/3 var(--font-family);
  text-transform: capitalize;
  color: var(--white-color);
}
.sp-price span strong {
  font: 400 clamp(16px, 1.7073170732vw, 21px)/2.1428571429 var(--third-family);
  text-transform: capitalize;
  color: var(--white-color);
}

.sp-title {
  font: 600 clamp(14px, 1.4634146341vw, 18px)/1.38889 var(--font-family);
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black-solid);
}

@media (min-width: 992px) {
  .sp-price {
    margin-top: -30px;
  }
}
.wrap-slide {
  position: relative;
  aspect-ratio: 412/176;
  width: 100%;
}

.slide-item {
  display: block;
  cursor: pointer;
}

.slide:hover .control-slide {
  opacity: 1;
}

.control-slide {
  opacity: 0;
}

.wrap-slide_gan_link_2_hinh {
  bottom: clamp(20px, 6.8292682927vw, 84px);
  right: 0;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.25));
  width: 398px;
}
.wrap-slide_gan_link_2_hinh .embla__slide {
  border: 7px solid rgba(255, 255, 255, 0.3);
  border-radius: 1000px;
  aspect-ratio: 1;
  margin: 0 !important;
}
.wrap-slide_gan_link_2_hinh .embla__slide img {
  border-radius: 1000px;
  outline: 3px solid #fff;
  outline-offset: -3px;
}
.wrap-slide_gan_link_2_hinh .embla__slide img:last-child {
  opacity: 0;
  transition: 0.5s;
}
.wrap-slide_gan_link_2_hinh .embla__slide:hover img:last-child {
  opacity: 1;
}

.wrap-tieuchi {
  margin: clamp(20px, 5.6910569106vw, 70px) 0;
}

.tieuchi-pic:hover img.tieuchi-pic {
  filter: brightness(0) saturate(100%) invert(72%) sepia(52%) saturate(440%) hue-rotate(5deg) brightness(105%) contrast(107%);
}

.tieuchi-title {
  font: 600 clamp(14px, 1.3008130081vw, 16px)/2.1875 var(--font-family);
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black-solid);
}

.wrap-spbc {
  padding: clamp(20px, 5.6910569106vw, 70px) 0;
}
.wrap-spbc .title-main {
  margin-bottom: 14px;
}

.spbc-slide-nav {
  width: fit-content;
  margin: 0 auto clamp(17px, 2.7642276423vw, 34px);
}
.spbc-slide-nav .embla__slide {
  flex: 0 0 auto;
  border-radius: 6px;
  overflow: hidden;
}
.spbc-slide-nav .embla__slide label {
  font: 700 clamp(14px, 1.4634146341vw, 18px)/1.1666666667 var(--font-family);
  text-transform: uppercase;
  color: var(--color-black-solid);
  background: var(--white-color);
  border-radius: 6px;
  overflow: hidden;
  padding: clamp(8px, 1.3008130081vw, 16px) clamp(17px, 2.7642276423vw, 34px);
  outline: 0.75px solid rgba(222, 11, 34, 0.2);
  outline-offset: -5px;
  transition: 0.3s;
}
.spbc-slide-nav .embla__slide input:checked + label {
  background: var(--light-secondary-color);
  color: var(--primary-color);
  outline: 10px solid white;
}

.wrap-slide_qc {
  margin: clamp(20px, 5.6910569106vw, 70px) 0;
}

.wrap-gioithieu {
  overflow: hidden;
  margin: clamp(20px, 5.6910569106vw, 70px) 0;
}
.wrap-gioithieu > .d-flex {
  gap: clamp(20px, 5.6910569106vw, 70px);
}

.gioithieu-label {
  width: fit-content;
}
.gioithieu-label > span {
  font: 400 40px/0.85 var(--font3);
  color: #161616;
  margin-top: 16px;
  margin-left: 69px;
}

.gioithieu-title {
  font: 400 clamp(26px, 4.2276422764vw, 52px)/1.2307692308 var(--third-family);
  color: var(--primary-color);
  margin-bottom: 0;
  filter: drop-shadow(3px 3px 0 var(--secondary-color));
  -webkit-text-stroke: 4px white;
  paint-order: stroke fill;
  margin-top: clamp(5px, 0.8130081301vw, 10px);
}

.gioithieu-desc {
  font: 600 clamp(14px, 1.4634146341vw, 18px)/25px var(--font-family);
  text-transform: capitalize;
  color: var(--color-black-solid);
  margin-top: clamp(5px, 0.8130081301vw, 10px);
}

.gioithieu-content {
  font: 400 14px/1.78571 var(--font-family);
  text-align: justify;
  color: var(--color-black-solid);
  opacity: 0.8;
  margin-top: clamp(10px, 1.6260162602vw, 20px);
}

.gioithieu-btn {
  padding: 11px 32px 15px;
  margin-top: clamp(20px, 3.2520325203vw, 40px);
}
.gioithieu-btn span {
  font: 500 14px/1.6666666667 var(--font-family);
  text-transform: uppercase;
  color: var(--white-color);
}

@media (min-width: 992px) {
  .gioithieu_item:nth-child(even) {
    transform: rotateY(180deg);
  }
  .gioithieu_item:nth-child(even) .gioithieu-pic,
  .gioithieu_item:nth-child(even) .gioithieu-title,
  .gioithieu_item:nth-child(even) .gioithieu-desc span,
  .gioithieu_item:nth-child(even) .gioithieu-content,
  .gioithieu_item:nth-child(even) .gioithieu-btn span {
    transform: rotateY(-180deg);
  }
  .gioithieu_item:nth-child(even) .gioithieu-title,
  .gioithieu_item:nth-child(even) .gioithieu-desc,
  .gioithieu_item:nth-child(even) .gioithieu-content {
    text-align: end;
  }
  .gioithieu_item:nth-child(even) .gioithieu-label > span > span {
    display: block;
    transform: rotateY(-180deg);
    text-align: end;
  }
}
.wrap-tintuc {
  margin: clamp(20px, 5.6910569106vw, 70px) 0;
}
.wrap-tintuc > .row.g-0 {
  --bs-gutter-x: clamp(10px, calc(20 / 1230 * 100vw), 20px);
  --bs-gutter-y: clamp(10px, calc(20 / 1230 * 100vw), 20px);
}

.tintuc-pic {
  border-radius: clamp(7px, 1.1382113821vw, 14px);
}

.tintuc-title {
  font: 600 clamp(16px, 1.4634146341vw, 18px)/1.38889 var(--font4);
  text-transform: uppercase;
  color: var(--color-grey-20);
  margin-top: clamp(10px, 1.6260162602vw, 20px);
}

.tintuc-desc {
  font: 400 14px/1.71429 var(--font-family);
  color: var(--color-grey-20);
  margin-top: clamp(9px, 1.4634146341vw, 18px);
  margin-bottom: clamp(15px, 2.1951219512vw, 27px);
}

.tintuc-slide-nav .tintuc-title {
  font: 600 clamp(13px, 1.2195121951vw, 15px)/1.6 var(--font4);
  text-transform: uppercase;
  color: var(--color-grey-20);
  margin-top: 0;
}
.tintuc-slide-nav .tintuc-date {
  background: #f49d02;
  border-radius: 8px;
  text-align: center;
  color: var(--white-color);
  padding: 13px 15px;
}
.tintuc-slide-nav .tintuc-date strong {
  font: 700 clamp(18px, 1.9512195122vw, 24px)/0.75 var(--font-family);
}
.tintuc-slide-nav .tintuc-date span {
  font: 400 clamp(12px, 1.1382113821vw, 14px)/1.28571 var(--font-family);
}
.tintuc-slide-nav .embla__slide:nth-child(even) .tintuc_item {
  flex-direction: row-reverse;
}
.tintuc-slide-nav .tintuc-pic {
  aspect-ratio: 275/200;
}
.tintuc-slide-nav .tintuc-parameter {
  margin-top: 8px;
  font: italic 400 14px/1.92857 var(--font-family);
  color: var(--color-grey-20);
}
.tintuc-slide-nav .tintuc-desc {
  font: 400 14px/1.64286 var(--font-family);
  color: var(--color-grey-20);
  margin: 0;
}

.wrap-dknq form {
  background: var(--white-color);
  border-radius: clamp(7px, 1.1382113821vw, 14px);
  padding: clamp(15px, 2.1951219512vw, 27px);
}
.wrap-dknq form input:not([type=checkbox]) {
  padding: 17px 20px;
  border: 1px solid rgba(51, 96, 57, 0.1);
  border-radius: 3px;
  height: 50px;
}
.wrap-dknq form input::placeholder {
  font: 400 15px/4.33333 var(--font-family);
  color: #b7b7b7;
}
.wrap-dknq form textarea {
  height: 120px;
  padding: 17px 20px;
  resize: none;
}
.wrap-dknq form button {
  font: 700 15px/4.33333 var(--font-family);
  text-align: center;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 4px;
  height: 50px;
  line-height: 50px;
}
.wrap-dknq form:not(.was-validated) input:not([type=checkbox]) {
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
}
.wrap-dknq form:not(.was-validated) input[name=fullname] {
  background-image: url(../images/user.svg);
}
.wrap-dknq form:not(.was-validated) input[name="extra_data[brand]"] {
  background-image: url(../images/user.svg);
}
.wrap-dknq form:not(.was-validated) input[name=phone] {
  background-image: url(../images/phone.svg);
}
.wrap-dknq form:not(.was-validated) input[name=email] {
  background-image: url(../images/email.svg);
}
.wrap-dknq form:not(.was-validated) textarea {
  background: url(../images/content.svg) no-repeat calc(100% - 20px) 17px;
}

.dknq-bg {
  padding: 0 clamp(15px, 3.2520325203vw, 40px) clamp(25px, 4.8780487805vw, 60px);
  position: relative;
  isolation: isolate;
}
.dknq-bg > .row.g-0 {
  --bs-gutter-x: clamp(10px, calc(20 / 1230 * 100vw), 20px);
  --bs-gutter-y: clamp(10px, calc(20 / 1230 * 100vw), 20px);
}
.dknq-bg::before {
  content: "";
  inset: 140px 0 0 0;
  background: var(--primary-color);
  border-radius: 24px;
  position: absolute;
  z-index: -1;
}
.dknq-bg::after {
  position: absolute;
  content: "";
  top: 168px;
  left: 57px;
  right: 57px;
  height: 267px;
  border: 2px solid var(--light-secondary-color);
  border-radius: 24px 24px 0 0;
  z-index: -1;
}

.dknq-slide-info {
  margin: 0 auto;
  width: 100%;
}
.dknq-slide-info .embla__slide {
  background: var(--white-color);
  border-radius: 10px;
  padding: 24px 20px;
}
.dknq-slide-info .dknq-info-address {
  font: italic 500 clamp(16px, 1.4634146341vw, 18px)/1.38889 var(--second-family);
  color: var(--color-black-solid);
}
.dknq-slide-info .dknq-info-address svg {
  margin-top: 4px;
}
.dknq-slide-info .dknq-info-email {
  font: italic 500 14px/1.78571 var(--second-family);
  color: var(--color-black-solid);
}
.dknq-slide-info .dknq-info-email svg {
  margin-top: 8px;
}
.dknq-slide-info .dknq-info-hotline span {
  font: italic 700 clamp(18px, 2.0325203252vw, 25px)/1 var(--second-family);
  color: var(--white-color);
}

@media (min-width: 768px) {
  .dknq-slide-info {
    width: calc(100% - 60px);
  }
}
.wrap-feedback {
  margin: clamp(20px, 5.6910569106vw, 70px) 0;
}

.feedback-title {
  font: 400 clamp(37px, 5.2845528455vw, 65px)/1.1538461538 var(--font5);
  color: var(--color-black-solid);
  text-transform: capitalize;
}

.feedback-desc {
  font: 400 14px/1.64286 var(--font-family);
  color: var(--color-black-solid);
}

.feedback-buttons {
  margin-top: clamp(15px, 3.6585365854vw, 45px);
}
.feedback-buttons svg {
  color: black;
}
.feedback-buttons svg:hover {
  color: var(--primary-color);
}

.feedback-main-body .feedback-pic {
  width: 30.7692307692%;
  height: auto;
  aspect-ratio: 1;
}

@media (min-width: 1200px) {
  .wrap-feedback {
    height: 525px;
  }
  .wrap-feedback-photo-1 {
    position: absolute;
    top: 3px;
    left: 80px;
    width: 262px;
  }
  .wrap-feedback-photo-1 .embla__slide svg {
    margin: 0 auto;
    margin-bottom: -10px;
  }
  .wrap-feedback-photo-1 .embla__slide .feedback-pic {
    background: var(--white-color);
    padding: 14px;
    padding-bottom: 39px;
  }
  .wrap-feedback-photo-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 551px;
  }
  .wrap-feedback-photo-2 .embla__slide .feedback-pic {
    overflow: hidden;
    border: 3px solid var(--white-color);
    border-radius: 10px;
    inset: 20px 18px 19px 26px;
  }
  .feedback-main-body {
    position: absolute;
    top: 124px;
    left: 397px;
    width: 295px;
  }
  .feedback-decor-1 {
    top: 142px;
    left: 0;
  }
  .feedback-decor-2 {
    top: 375px;
    left: 419px;
    isolation: isolate;
  }
  .feedback-decor-2 svg {
    position: absolute;
    top: -28px;
    left: calc(100% + 12px);
  }
  .feedback-decor-2 div {
    position: absolute;
    width: 100vw;
    height: 3px;
    bottom: 55px;
    right: 50%;
    background: var(--primary-color);
    z-index: -1;
  }
  .feedback-decor-3 {
    position: absolute;
    background: var(--primary-color);
    top: 73px;
    left: 248px;
    z-index: -1;
    height: 3px;
    width: 623px;
  }
}
.wrap-album {
  padding: clamp(20px, 5.6910569106vw, 70px) 0;
}

.album-slide-nav .embla__slide label {
  background: var(--white-color);
  border-radius: 4px;
  padding: clamp(5px, 0.8130081301vw, 10px) clamp(15px, 2.4390243902vw, 30px);
  font: 700 clamp(14px, 1.4634146341vw, 18px)/1.9444444444 var(--font-family);
  text-transform: uppercase;
  text-align: center;
  color: var(--color-grey-13);
  width: 100%;
  display: block;
}
.album-slide-nav .embla__slide input:checked + label {
  background: var(--light-secondary-color);
  color: var(--primary-color);
}

.grid-album {
  display: grid;
  --gap: clamp(8px, calc(20 / 1230 * 100vw), 20px);
  gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(max(150px, (100% - var(--gap) * 2) / 3), 1fr));
}

.album-title-main,
.album-social {
  grid-column: 1/-1;
}

.album-slogan {
  font: 400 clamp(30px, 4.8780487805vw, 60px)/1.1833333333 var(--font3);
  text-align: center;
  color: var(--white-color);
}

.album-social > .d-flex {
  border-top: 1px solid var(--light-secondary-color);
  border-bottom: 1px solid var(--light-secondary-color);
  padding: clamp(7px, 1.1382113821vw, 14px);
}
.album-social .album-email {
  margin-top: clamp(8px, 1.3008130081vw, 16px);
  font: 400 clamp(16px, 1.9512195122vw, 24px)/1.125 var(--font6);
  text-align: center;
  color: var(--light-secondary-color);
  margin: clamp(10px, 1.6260162602vw, 20px) auto 0;
}

@media (min-width: 1200px) {
  .album-title-main .title-main {
    margin-bottom: clamp(10px, 1.6260162602vw, 20px);
  }
  .album-slide-nav .embla__slide {
    height: 55px;
  }
  .album-slide-nav .embla__slide label {
    width: fit-content;
  }
  .grid-album {
    position: relative;
    aspect-ratio: 1300/672;
  }
  .grid-album > * {
    position: absolute;
  }
  .grid-album .album-title-main {
    top: 0;
    left: 0;
    width: 270px;
  }
  .grid-album .album-slogan {
    left: 0;
    top: 604px;
  }
  .grid-album .album-social {
    top: 78.125%;
    left: 76.3076923077%;
    width: 21.9230769231%;
  }
  .grid-album .album-decor {
    top: 0;
    left: 1078px;
  }
  .grid-album .album-1 {
    top: 0%;
    left: 22.4615384615%;
    width: 31.6153846154%;
    height: 48.2142857143%;
  }
  .grid-album .album-2 {
    top: 15.9226190476%;
    left: 55.6153846154%;
    width: 17.4615384615%;
    height: 32.2916666667%;
  }
  .grid-album .album-3 {
    top: 22.619047619%;
    left: 74.6153846154%;
    width: 25.2307692308%;
    height: 48.2142857143%;
  }
  .grid-album .album-4 {
    top: 34.0773809524%;
    left: 0%;
    width: 20.9230769231%;
    height: 45.0892857143%;
  }
  .grid-album .album-5 {
    top: 51.7857142857%;
    left: 22.4615384615%;
    width: 17.4615384615%;
    height: 32.2916666667%;
  }
  .grid-album .album-6 {
    top: 51.7857142857%;
    left: 41.4615384615%;
    width: 31.6153846154%;
    height: 48.2142857143%;
  }
}
.widget-mobile {
  position: fixed;
  right: 25px;
  bottom: 50vh;
  z-index: 9999999;
  transform: rotate(-45deg);
}

#my-phone-circle {
  position: relative;
  width: 50px !important;
  height: 50px !important;
}

.wcircle-open .wcircle-icon i:before {
  content: "\f00d";
}

.wcircle-icon {
  background: var(--primary-color);
  border-radius: 50%;
  position: relative !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wcircle-icon:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background: rgba(245, 144, 30, 0.5);
  border: 1px solid #ffffff;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  -webkit-animation: pulse 1s infinite ease-in-out;
  animation: pulse 1s infinite ease-in-out;
}

.wcircle-icon img {
  z-index: 1;
  position: relative;
  transform: rotate(45deg);
}

.clos {
  display: none;
}

.wcircle-icon:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background: rgba(245, 144, 30, 0.5);
  border-radius: 50%;
  left: -15px;
  top: -15px;
  -webkit-animation: zoomIn 2s infinite ease-in-out;
  animation: zoomIn 2s infinite ease-in-out;
}

.wcircle-menu {
  position: absolute !important;
  left: 0;
  top: 0;
  display: none;
}

.wcircle-menu-item {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wcircle-menu-item img {
  width: 50px;
  height: 32px;
  display: block;
  border-radius: 50%;
}

.wcircle-menu-item i {
  font-size: 25px;
  color: #ffffff;
  position: relative;
  z-index: 9999;
}

.wcircle-menu-item a {
  display: flex;
}

.shake-anim {
  -webkit-animation: shake-anim 1s infinite ease-in-out;
  animation: shake-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}