:root {
  --color-v1: #624107;
  --color-v2: #927443;
  --color-v3: #885906;
  --color-scrollbar: linear-gradient(
    90deg,
    #7a5425 0.06%,
    #c0976b 26.55%,
    #b2895b 72.42%,
    #a78151 98.42%
  );
  --font-main: "Roboto";
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  font-family: var(--font-main);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

input,
button,
select,
textarea {
  font-family: var(--font-main);
  outline: none;
}

body::-webkit-scrollbar-track {
  background-color: #fff;
}

body::-webkit-scrollbar {
  width: 0.5rem;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background: var(--color-scrollbar);
}

a,
i,
input[type="submit"],
button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.s-content ol {
  list-style: decimal;
  margin-left: 15px;
  margin-bottom: 10px;
}

.s-content ul {
  list-style: initial;
  margin-left: 15px;
  margin-bottom: 10px;
}

.s-content li {
  list-style: inherit;
  margin-bottom: 5px;
}

.s-content p {
  margin-bottom: 10px;
}

.s-content img {
  display: block;
  max-width: 100%;
  margin: 10px auto;
  width: auto !important;
  -o-object-fit: contain;
  object-fit: contain;
  height: auto !important;
}

.s-content table,
.s-content iframe {
  max-width: 100%;
  width: 100%;
}

.s-content table {
  border-collapse: collapse;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.431372549);
}

.s-content table td {
  border-collapse: collapse;
  border: solid 1px rgba(0, 0, 0, 0.431372549);
  padding: 3px;
}

.s-content h1,
.s-content h2,
.s-content h3,
.s-content h4,
.s-content h5,
.s-content h6 {
  display: block;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.s-content h1 {
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
}

.s-content h2 {
  font-size: 1.5em;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

.s-content h3 {
  font-size: 1.17em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.s-content h4 {
  font-size: 1em;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}

.s-content h5 {
  font-size: 0.83em;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.s-content h6 {
  font-size: 0.67em;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.s-content .wp-video {
  margin: 0 auto;
}

.c-img {
  position: relative;
  display: block;
}

.c-img img,
.c-img iframe,
.c-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.scale-img {
  transition: all 0.5s;
  overflow: hidden;
}

.scale-img img {
  scale: 1.1;
  transition: all 0.5s;
}

.img__ {
  position: relative;
  overflow: hidden;
}

.img__:hover::after {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

.img__::after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.hv_img {
  display: block;
  position: relative;
  overflow: hidden;
}

.hv_img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.hv_img:hover::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img__contain img {
  width: 100%;
  height: auto;
  object-fit: contain;
  -o-object-fit: contain;
}

.img__h-full img {
  height: 100% !important;
}

.img__w-full img {
  width: 100%;
}

.img__center img {
  display: block;
  margin: 0 auto;
}

.contact-form__container .wpcf7-spinner {
  display: none;
}

.wpcf7-spinner {
  background-color: var(--background-color) !important;
  opacity: 1 !important;
  margin: 0 !important;
  display: flex !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
}

.wpcf7-spinner::after {
  content: "";
  margin: auto !important;
  border: 0.4rem solid transparent !important;
  border-radius: 50% !important;
  border-top: 0.4rem solid #fff !important;
  border-bottom: 0.4rem solid #fff !important;
  width: 2rem !important;
  height: 2rem !important;
  animation: spinner 3s linear infinite !important;
  background-color: transparent !important;
}

.wpcf7-spinner::before {
  display: none !important;
}

.wpcf7-response-output {
  display: none !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form label.error {
  position: absolute;
  top: 110%;
  left: 2% !important;
  padding: 2px 6px;
  background: #b52026;
  border-radius: 5px;
  color: #fff !important;
  display: block;
  z-index: 1;
}

.wpcf7-form label.error::before {
  position: absolute;
  width: 7px;
  aspect-ratio: 1 / 1;
  content: "";
  background: #b52026;
  top: -22%;
  left: 10%;
  rotate: 45deg;
  z-index: -1;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

footer::before {
  background-image: url("../images/layout-footer.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.15;
}

.menu-language > ul > li > a {
  display: none;
}

.menu-language .sub-menu {
  display: flex;
}

.menu-language .sub-menu img {
  width: 2rem;
  height: 1.5rem;
  padding: 0 0.25rem;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  border-radius: 2px;
  border: 1px solid transparent;
}

.menu-language .sub-menu .gt-current-lang img {
  border: 1px solid #624107;
}

header.fixed-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
}

body.no-scroll {
  overflow: hidden;
}

.rank-math-breadcrumb p a:nth-child(1)::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/icon-home.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(0.25rem);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(310deg) brightness(106%) contrast(107%);
}

.rank-math-breadcrumb p .separator::before {
  content: "|";
  display: inline-block;
  margin: 0 0.75rem;
}

.rank-math-breadcrumb p > * {
  display: inline;
}

.pagination ul,
.c-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination ul li {
  min-width: 2.5rem;
  text-align: center;
  border: 1px solid #bd9d6d;
  border-radius: 5px;
  transition: all 0.3s;
}

.pagination ul li:is(:first-child, :last-child) {
  border-color: transparent;
}

.pagination a,
.pagination strong {
  display: block;
  text-align: center;
  padding: 0.5rem;
  width: 100%;
}

.c-pagination a,
.c-pagination span {
  display: block;
  text-align: center;
  padding: 0.5rem;
  min-width: 2.5rem;
  border: 1px solid #bd9d6d;
  border-radius: 5px;
}

.pagination .prev-page,
.pagination .next-page {
  color: #bd9d6d;
}

.pagination ul a:not(.next-page):hover,
.pagination ul a.active,
.c-pagination a:hover,
.c-pagination span {
  background-color: #bd9d6d;
  color: #fff;
  border-color: #bd9d6d;
}

.c-pagination .page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
  color: #6d6d6d;
}

.pagination ul li {
  display: flex;
  align-items: center;
}

.swiper-pagination-customer .swiper-pagination-bullet-active {
  background-color: #ac824f;
  width: 2rem;
  border-radius: 2rem;
}

.list-awards .item-awards:nth-child(even) .c-img {
  margin-left: 1rem;
}

.list-awards .item-awards:nth-child(odd) .c-img {
  margin-right: 1rem;
}

.list-awards .item-awards:nth-child(even) .c-img::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -1rem;
  width: 1rem;
  height: calc(100% + 4px);
  background-image: url("../images/line-awards-left.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.list-awards .item-awards:nth-child(odd) .c-img::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: -1rem;
  width: 1rem;
  height: calc(100% + 4px);
  background-image: url("../images/line-awards-right.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.description-home {
  background-image: url("../images/bg-description.webp");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.description-home-2 {
  background-image: url("../images/bg-description-2.webp");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.bg-item-chuyengia {
  background-image: url("../images/bg-item-chuyengia.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.module-tabs .tab-content,
.block-content-facilities .content-facilities {
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-transform: translateY(3rem);
  transform: translateY(3rem);
}

.module-tabs .tab-content.active,
.block-content-facilities .content-facilities.active {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.module-tabs-video .tab-content.active {
  animation: zoomIn 0.5s ease-in-out;
}

.module-tabs-video .tab-link.active::before,
.module-tabs-video .tab-link:hover::before {
  width: 80%;
}

.custom-content-ticker ul li::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-image: url("../images/icon1.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.custom-content-ticker ul li {
  list-style: none;
  display: flex;
}

.custom-content-ticker ul {
  margin-left: 0;
}

.swiper-doctor-home .swiper-slide {
  opacity: 0.3;
  transition: all 0.3s;
}

.swiper-doctor-home .swiper-slide-active {
  opacity: 1;
}

.swiper-icon-left::before,
.swiper-icon-right::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/icon-slide.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.swiper-icon-left::before {
  transform: rotate(180deg);
}

.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.module-time-startup .item {
  background-image: url("../images/bg-item-time.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.section-why-chosse .layout-why-chosse::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -23.5rem;
  width: 31.25rem;
  height: 100%;
  background-image: url("../images/layout-why-chosse.png");
  background-position: right;
  background-size: auto 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.section-why-chosse .layout-why-chosse::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -23.5rem;
  width: 31.25rem;
  height: 100%;
  background-image: url("../images/layout-why-chosse.png");
  background-position: left;
  background-size: auto 100%;
  background-repeat: no-repeat;
  rotate: 180deg;
  pointer-events: none;
  z-index: -1;
}

.module-time-startup .number-count {
  text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.8);
}

.swiper-facilities .swiper-slide .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(191, 152, 92, 0) 0%,
    rgba(191, 152, 92, 0.61) 51.43%,
    #bf985c 100%
  );
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}

.swiper-facilities .swiper-slide .item .item-text {
  transform: translateY(100%);
  transition: all 0.3s;
}

.swiper-facilities .swiper-slide-active .item::before {
  opacity: 1;
}

.swiper-facilities .swiper-slide-active .item .item-text {
  transform: translateY(0);
}

.module-tabs-facilities .tab-link.active,
.module-tabs-facilities .tab-link:hover {
  color: #ffedcd;
}

.module-tabs-facilities > .container::before {
  content: "";
  display: block;
  position: absolute;
  top: 41%;
  left: 0;
  width: 100%;
  height: 500px;
  background-image: url("../images/image1.webp");
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.layout-section-content::before {
  background-image: url("../images/image6.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: calc(100% + 250px);
}

#page-facilities .container::before {
  opacity: 0.2;
}

#page-facilities .container ul {
  background: transparent;
}

#page-facilities .module-tabs-facilities .tab-link.active,
#page-facilities .module-tabs-facilities .tab-link:hover {
  color: #e08b20;
}

.module-modal,
.module-modal-popup-home {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.module-modal.active,
.module-modal-popup-home.active {
  visibility: visible;
  opacity: 1;
}

.module-modal .modal-content,
.module-modal-popup-home .modal-content-popup-home {
  transform: translateY(-5rem);
  transition: all 0.3s;
}

.module-modal.active .modal-content,
.module-modal-popup-home.active .modal-content-popup-home {
  transform: translateY(0);
}

.module-modal-popup-home .modal-content-popup-home {
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.custom-scrollbar-popup-home::-webkit-scrollbar-track {
  background-color: transparent;
}

.custom-scrollbar-popup-home::-webkit-scrollbar {
  width: 0.5rem;
  background-color: transparent;
}

.custom-scrollbar-popup-home::-webkit-scrollbar-thumb {
  background: #ac824f;
}

.bg-bg-gradient-ft2 {
  background: linear-gradient(
    90.07deg,
    #dbb667 0.06%,
    #e7c679 31.52%,
    #d7b263 66.97%,
    #efd48f 98.43%
  );
}

.bg-bg-gradient-ft1 {
  background: linear-gradient(180deg, #dec18c 0%, #a7783f 100%);
}

.but_ring {
  border-radius: 50%;
  text-align: center;
  position: relative;
  animation: lac 1s infinite;
  -webkit-animation: lac 1s infinite;
}

.but_ring:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 3px solid rgb(217, 171, 84);
  animation: zoomin 1.5s infinite;
  -webkit-animation: zoomin 1.5s infinite;
}

.but_ring:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid rgb(217, 171, 84);
  animation: zoomin 1.5s infinite 0.3s;
  -webkit-animation: zoomin 1.5s infinite 0.3s;
}

/* Simplified animations */
@keyframes zoomin {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}

/* Your existing lac animation remains the same */
@keyframes lac {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-25deg);
  }

  20% {
    transform: rotate(25deg);
  }

  30% {
    transform: rotate(-25deg);
  }

  40% {
    transform: rotate(25deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.swiper-doctor-home .swiper-slide .c-img img {
  object-fit: contain;
}

.layout-1 {
  background-image: url("../images/image4.png");
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
}

.layout-1::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background-image: url("../images/image6.png");
  background-position: top;
  background-size: 100% auto;
  background-repeat: repeat-y;
  pointer-events: none;
}

.layout-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/image5.png");
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  pointer-events: none;
}

select[name="service"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj48cGF0aCBkPSJNNy45OTk4IDExLjMzMzRDNy44Mjk2MSAxMS4zMzI1IDcuNjYxNzQgMTEuMjkzOCA3LjUwODM4IDExLjIyQzcuMzU1MDEgMTEuMTQ2MiA3LjIyIDExLjAzOTIgNy4xMzMxNCAxMC45MDY3TDQuMzA2NDcgNy41MDY3MUM0LjE0MjQ2IDcuMzAyMDIgNC4wMzkyNiA3LjA1NTM4IDQuMDA4NjEgNi43OTQ4OUMzLjk3Nzk3IDYuNTM0NCA0LjAyMTExIDYuMjcwNTQgNC4xMzMxNCA2LjAzMzM3QzQuMjIzOTkgNS44NzI2NCA0LjM3MjI1IDUuNzUxNjUgNC41NjAyMSA1LjYyNzUyQzQuNzQ4MTggNS41MDMzNCA0Ljk2NzkxIDUuNDM2IDUuMTkzMTQgNS40MzMzN0gxMC44MDY1QzExLjAzMTcgNS40MzYgMTEuMjUxNCA1LjUwMzM0IDExLjQzOTQgNS42Mjc1MUMxMS42MjczIDUuNzUxNjUgMTEuNzc1NiA1Ljg3MjY0IDExLjg2NjUgNi4wMzMzN0MxMS45Nzg1IDYuMjcwNTQgMTIuMDIxNiA2LjUzNDQgMTEuOTkxIDYuNzk0ODlDMTEuOTYwMyA3LjA1NTM4IDExLjg1NzEgNy4zMDIwMiAxMS42OTMxIDcuNTA2NzFMOC44NjY0NyAxMC45MDY3QzguNzc5NiAxMS4wMzkyIDguNjQ0NTkgMTEuMTQ2MiA4LjQ5MTIzIDExLjIyQzguMzM3ODYgMTEuMjkzOCA4LjE3IDExLjMzMjUgNy45OTk4IDExLjMzMzRaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
}

.box-text {
  background-image: url("../images/image10.png");
  mix-blend-mode: luminosity;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 1.5rem 1rem;
  max-width: 385px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.animate-scale {
  animation: scale 3s infinite;
}

.item-beauty-standards {
  background-image: url("../images/image9.webp");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.custom-scroll-facilities::-webkit-scrollbar-track {
  background-color: transparent;
}

.custom-scroll-facilities::-webkit-scrollbar {
  height: 0.5rem;
  background-color: #dedede;
  border-radius: 10px;
}

.custom-scroll-facilities::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    #e08b20 0.06%,
    #f2a451 26.55%,
    #d98b33 72.42%,
    #de7c00 98.42%
  );
  border-radius: 10px;
}

@media not all and (min-width: 1352px) {
  .menu-header {
    position: fixed;
    bottom: 0;
    left: 0;
    height: calc(100dvh - var(--header-height));
    background: #fff;
    width: min(350px, 80%);
    z-index: 100;
    transform: translateX(-100%);
    transition: all 0.3s;
    border-top: 1px solid #dadada;
  }

  .menu-header.active {
    transform: translateX(0);
  }

  .menu-header ul li {
    border-bottom: 1px solid #dadada;
    position: relative;
  }

  .menu-header ul ul li {
    border-top: 1px solid #dadada;
    border-bottom: none;
  }

  .menu-header ul li a {
    display: block;
    padding: 0.25rem 1rem;
  }

  .menu-header ul ul li a {
    padding: 0.25rem 1.75rem;
  }

  .menu-header ul ul ul li a {
    padding: 0.25rem 2.5rem;
  }

  .menu-header ul li .btn-down-menu {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.25rem 1rem;
    cursor: pointer;
    z-index: 1;
  }

  .bg-over-menu {
    position: fixed;
    height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
  }

  .bg-over-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-header ul ul {
    display: none;
  }

  .menu-header ul li .btn-down-menu.active i {
    transform: rotate(180deg);
  }
}

@media not all and (min-width: 1200px) {
}

@media not all and (min-width: 992px) {
}

@media not all and (min-width: 768px) {
}

@media not all and (min-width: 576px) {
}

@media not all and (min-width: 432px) {
}

@media (min-width: 432px) {
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  /* .wow {
    visibility: hidden;
  } */
  .rank-math-breadcrumb p a:nth-child(1)::before {
    width: 1.875rem;
    height: 1.875rem;
  }
}

@media (min-width: 1200px) {
  .list__brand__story .item:nth-child(2n):not(:last-child) .image {
    order: -1;
  }

  .list__brand__story .item:nth-child(n):not(:last-child) .image .c-img {
    margin-right: -300px;
  }

  .list__brand__story .item:nth-child(2n):not(:last-child) .image .c-img {
    margin-left: -300px;
  }
}

@media (min-width: 1352px) {
  .menu-header > ul {
    display: flex;
    height: 100%;
  }

  .menu-header > ul > li {
    padding: 0 1rem;
    display: flex;
    align-items: center;
  }

  .menu-header a {
    display: block;
  }

  .menu-header ul > li:has(ul) > a {
    padding-right: 1rem;
  }

  .menu-header li {
    position: relative;
  }

  .menu-header span.btn-down-menu {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
  }

  .menu-header ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: fit-content;
    background-color: #fff;
    box-shadow: 0px 6px 10px 0px rgba(98, 65, 7, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
    transform: translateY(1rem);
  }

  .menu-header ul ul li {
    white-space: nowrap;
  }

  .menu-header ul ul li a {
    padding: 0.25rem 1rem;
  }

  .menu-header ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-header ul ul li:hover > a {
    background: linear-gradient(
      90deg,
      #e08b20 0.06%,
      #f2a451 26.55%,
      #d98b33 72.42%,
      #de7c00 98.42%
    );
    color: #fff;
  }

  .menu-header > ul > li > a::before {
    content: "";
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e08b20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    scale: 0;
    transform-origin: center;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .menu-header > ul > li:hover > a::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    scale: 1;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 576px;
  }
}

.bg-\[linear-gradient\(90deg\2c\#E08B20_0\.06\%\2c\#F2A451_26\.55\%\2c\#D98B33_72\.42\%\2c\#DE7C00_98\.42\%\)\]:hover {
  box-shadow: 0px 6px 10px 0px rgba(98, 65, 7, 0.7);
}
