:root {
  --color-main: #474747;
  --color-v1: #2082e2;
  --color-v2: #044aa0;
  --color-v3: #ff8122;
  --color-v4: #fe1e00;
  --color-v5: #e8f6ff;
  --color-scrollbar: #035cb9;
  --font-main: "Averta", sans-serif;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 980px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 576px;
  }
}

body {
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  font-family: var(--font-main);
  color: var(--color-main);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

input,
button,
select,
textarea {
  font-family: var(--font-main);
  outline: none;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 0.5rem;
  background-color: #f5f5f5;
}

::-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 table thead {
  background-color: var(--color-v1);
  color: #fff;
}

.s-content table thead td,
.s-content table tbody td {
  padding: 0.625rem;
}

.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;
}

.c-img {
  position: relative;
  display: block;
}

.c-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -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;
  }
}

.zoom__img {
  position: relative;
  transition: filter 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
  transform-origin: center center;
  overflow: hidden;
}

.zoom__img img {
  transition: all 0.5s;
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.zoom__img:hover img {
  transform: scale(1.03) rotateZ(0.3deg) translateY(-2px);
  filter: brightness(1.2) contrast(1.1) saturate(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.1);
}

.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%;
}

.img__w-full img {
  width: 100%;
}

.img__center img {
  display: block;
  margin: 0 auto;
}

.hamburger {
  overflow: visible;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.625rem;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.hamburger--squeeze .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 1.25rem; /* giảm còn 20px */
  height: 0.1875rem; /* giảm từ 4px xuống 3px cho cân đối */
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 3px;
  background-color: var(--color-v2);
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -0.0938rem; /* nửa chiều cao của thanh 3px */
}

.hamburger--squeeze .hamburger-inner:before {
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.hamburger-inner:before {
  top: -0.4375rem; /* điều chỉnh theo kích thước mới */
}

.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 75ms ease 0.12s,
    transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner:after {
  bottom: -0.4375rem;
}

.hamburger--squeeze.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: var(--color-v2);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease,
    transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}

body.no-scroll {
  overflow: hidden;
}

header.fixed-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s;
}

.footer__menu li a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer__menu li a:hover {
  color: var(--color-v3);
}

.title_all {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-v1);
  text-align: center;
  text-transform: uppercase;
}

.title_all_v2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-v1);
}

.hv-svg-fill-v1:hover svg path {
  fill: var(--color-v1);
}

.btn_play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.btn_play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.5rem;
  aspect-ratio: 1/1;
  background-image: url("../images/btn_play.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.list-service .item .c-img img {
  height: 65%;
  width: 65%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  -o-object-fit: contain;
  transition: all 0.3s;
}

.list-service .item .c-img:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

.card__doctor .c-img img {
  object-fit: contain;
  -o-object-fit: contain;
  height: 90%;
  bottom: 0;
  top: auto;
  transition: all 0.3s;
}

.card__doctor:hover .c-img img {
  transform: scale(1.1);
}

.card__doctor .card__doctor-info-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.card__doctor .card__doctor-info:hover .card__doctor-info-content {
  max-height: 300px;
  transition: all 0.5s;
}

.module-tabs .tab-content {
  display: none;
}

.module-tabs .tab-content.active {
  display: block;
}

.module-tabs[module-animation] .tab-content {
  display: block;
  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[module-animation] .tab-content.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-effect .tab-link.active,
.module-tabs-effect .tab-link:hover {
  color: #fff;
  background-color: var(--color-v1);
}

.module-tabs-effect .tab-links::-webkit-scrollbar {
  display: none;
}

.swiper-prize .swiper-slide .c-img img {
  object-fit: contain;
  -o-object-fit: contain;
}

.swiper-partner .swiper-slide .c-img img {
  object-fit: contain;
  -o-object-fit: contain;
  height: 90%;
  width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.module-modal {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.module-modal.active {
  visibility: visible;
  opacity: 1;
}

.module-modal .modal-content {
  transform: translateY(-5rem);
  transition: all 0.3s;
}

.module-modal.active .modal-content {
  transform: translateY(0);
}

.banner_intro::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: url("../images/layout_intro.png");
  background-position: bottom;
  background-size: auto 100%;
  background-repeat: repeat-x;
  z-index: -1;
}

.banner_intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  z-index: -1;
}

.breadcrumb li {
  display: inline-block;
  font-size: 14px;
}

.breadcrumb li:first-child::before {
  content: "";
  background-image: url("../images/home.svg");
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  transform: translateY(1px);
}

.breadcrumb li:hover::before {
  filter: brightness(0) saturate(100%) invert(43%) sepia(98%) saturate(2346%)
    hue-rotate(191deg) brightness(93%) contrast(90%);
}

.breadcrumb li:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  font-size: 0.875rem;
}

.breadcrumb li:hover a,
.breadcrumb li:last-child a {
  color: var(--color-v1);
}

.list-cetificate li {
  padding-left: 1.5rem;
  position: relative;
}

.list-cetificate li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0.25rem;
  left: 0;
  background-image: url("../images/checked.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.list-image-certificate .c-img img {
  object-fit: contain;
  -o-object-fit: contain;
}

.section__doctor-info::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  pointer-events: none;
  background-color: #eff8ff;
  z-index: -2;
}

.section__doctor-info::after {
  content: "";
  position: absolute;
  top: calc(5% + 1.25rem);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  pointer-events: none;
  background-color: #d6eeff;
  z-index: -2;
}

.section__doctor-info .image {
  position: absolute;
  height: 100%;
  left: 50%;
  width: 90%;
  top: 0;
  transform: translateX(-50%);
}
#toc_container {
  background: #f7fcff;
  border: 1px solid #e8e9ea;
  padding: 10px;
  display: inline-block;
  min-width: 250px;
  font-size: 15px;
  border-radius: 10px;
}
#toc_container .toc-header {
  font-size: 1rem;
  position: relative;
  font-weight: 700;
}
#toc_container .toc-header .icon {
  display: inline-block;
  margin-right: 5px;
}
#toc_container .toc_list {
  padding-top: 10px;
  display: none;
}
#toc_container .toc-header .toggle-content-toc {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  cursor: pointer;
  margin-top: -3px;
}
#toc_container ul li {
  font-size: 1rem;
  margin-top: 3px;
}
#toc_container ul li ul {
  font-size: 0.875rem;
  padding-left: 25px;
}
#toc_container ul li a {
  font-weight: normal !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#toc_container ul li ul li a strong {
  font-weight: normal !important;
}
#toc_container .toc-header .toggle-content-toc {
  top: 3px;
}
#toc_container {
  background: #e6f4fc;
  width: 100%;
}

.pagination {
  text-align: center;
  margin: 1.25rem 0;
}

.pagination a,
.pagination strong,
.pagination span {
  display: inline-block;
  min-width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 6.1875rem;
  text-align: center;
  background: #ebebeb;
  margin-right: 0.3125rem;
  margin-bottom: 0.3125rem;
}

.pagination a:hover,
.pagination strong {
  background: var(--color-v1);
  color: white;
}

.menu__landingpage ul {
  display: flex;
  justify-content: space-evenly;
}

.menu__landingpage ul li a {
  display: block;
  padding: 0.5rem;
  white-space: nowrap;
}

.menu__landingpage ul li a:hover {
  color: var(--color-v3);
}

.menu__landingpage ul {
  overflow-x: auto;
  scrollbar-width: none;
}

.icon-rang::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/icon-rang.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 0.5rem;
  transform: translateY(2px);
}

.ul__checked li {
  position: relative;
  padding-left: 1.5rem;
  list-style: none;
}

.ul__checked ul {
  margin-left: 0;
}

.ul__checked li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/checked-v2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.list-why-choose .item .c-img img {
  object-fit: contain;
  -o-object-fit: contain;
  height: 60%;
  width: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.list-why-choose .item .c-img:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

.swiper-process::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 0;
  width: calc(100% - 1.5rem);
  height: 0.25rem;
  background-color: var(--color-v1);
}

.swiper-process::after {
  content: "";
  position: absolute;
  top: 4.125rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  background-image: url("../images/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.table-compare table thead {
  background-color: #306bbd;
}

.table-fix {
  max-height: 550px;
  overflow-y: auto;
}

.table-fix table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.module-content-detail.active .btn-content-open {
  display: none;
}
.module-content-detail.active .btn-content-close {
  display: block;
}
.module-content-detail.active .s-content {
  max-height: 100%;
}

.layout-image-v1 {
  position: relative;
  z-index: 1;
  margin-right: 2rem;
  margin-bottom: 0.75rem;
}

.layout-image-v1::before {
  position: absolute;
  right: -2rem;
  top: -2rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-top-left-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  content: "";
  background-color: #eaf5ff;
}

.layout-image-v1::after {
  position: absolute;
  bottom: -0.625rem;
  right: -0.625rem;
  z-index: -1;
  width: 80%;
  height: 80%;
  border-bottom-right-radius: 3rem;
  content: "";
  background-color: var(--color-v1);
}

.layout__processflow {
  background-image: url("../images/image10.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ul_check-white ul {
  margin-left: 0;
}

.ul_check-white li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.ul_check-white li::before {
  content: "";
  width: 2.0625rem;
  height: 2.0625rem;
  background-image: url("../images/checked-v4.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.list__process .item:nth-child(even) {
  margin-left: auto;
  padding-top: 5.5%;
  padding-right: 7.5%;
  position: relative;
}

.list__process .item:nth-child(odd) {
  margin-right: auto;
  padding-left: 7.5%;
  padding-top: 5.5%;
  position: relative;
}

.list__process .item .process-step {
  position: absolute;
  z-index: 1;
  top: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.list__process .item .process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/icon2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  animation: process-step 5s linear infinite;
}

@keyframes process-step {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.list__process .item:nth-child(even) .process-step {
  right: 0;
}

.list__process .item:nth-child(odd) .process-step {
  left: 0;
}

.list__process .item:nth-child(n) .process-icon {
  left: 4%;
  bottom: -28%;
  animation: process-icon 2s ease-in-out infinite;
}

@keyframes process-icon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}

.list__process .item:nth-child(2n) .process-icon {
  right: 30%;
  top: 82%;
  bottom: auto;
  left: auto;
}

.list__process .item:nth-child(3n) .process-icon {
  aspect-ratio: 1/1;
  left: 5%;
  bottom: -25%;
}

.list__process .item:nth-child(4n) .process-icon {
  right: 4%;
  bottom: -3%;
  left: auto;
  top: auto;
}

.list__process .item:not(:first-child)::before {
  content: "";
  background-image: url("../images/line1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  width: 37%;
  height: 50%;
  position: absolute;
  z-index: -1;
  top: 5%;
}

.list__process .item:not(:first-child):nth-child(odd)::before {
  left: 100%;
  transform: scaleX(-1);
}

.list__process .item:not(:first-child):nth-child(even)::before {
  right: 100%;
  left: auto;
}

@media not all and (min-width: 1352px) {
}

@media not all and (min-width: 1200px) {
  .header__bottom {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100dvh;
    width: min(320px, 80%);
    background-color: #fff;
    z-index: 100;
    transition: all 0.3s;
  }
  .header__bottom-menu {
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
  }
  .header__bottom-menu::-webkit-scrollbar-track {
    background-color: #ececee;
  }
  .header__bottom-menu::-webkit-scrollbar {
    width: 0.5rem;
    background-color: #f5f5f5;
  }
  .header__bottom-menu::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 0.5rem;
  }
  .header__bottom-menu ul li a {
    display: block;
    padding: 0.5rem 1rem;
  }
  .header__bottom-menu ul li {
    position: relative;
    border-top: 1px solid #ececec;
  }
  .header__bottom-menu ul > li:has(ul) > a {
    padding-right: 2rem;
  }
  .header__bottom-menu .header__bottom-menu-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    cursor: pointer;
  }
  .header__bottom-menu ul ul li a {
    padding-left: 1.5rem;
  }
  .header__bottom-menu ul ul ul li a {
    padding-left: 2rem;
  }
  .header__bottom-menu ul ul {
    display: none;
  }
  header.active-menu .header__layout-moblie {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header.active-menu .header__bottom {
    left: 0;
  }
  header .header__bottom-menu-arrow.active {
    transform: rotate(180deg);
  }
}

@media not all and (min-width: 980px) {
}

@media not all and (min-width: 768px) {
  .form-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1.5px solid var(--color-v1);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    pointer-events: none;
  }
  header.active-search-form .form-search {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .list__process .item::before {
    display: none;
  }
}

@media not all and (min-width: 576px) {
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 980px) {
  .title_all {
    font-size: 2.375rem;
  }
  .title_all_v2 {
    font-size: 2rem;
  }
  .wow {
    visibility: hidden;
  }
}

@media (min-width: 1200px) {
  .header__bottom-menu > ul {
    display: flex;
    justify-content: space-between;
  }
  .header__bottom-menu ul li a {
    display: block;
    padding: 0.75rem 0;
  }
  .header__bottom-menu ul ul li a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
  .header__bottom-menu ul > li:has(ul) {
    position: relative;
    /* padding-right: 1.25rem; */
  }
  .header__bottom-menu-arrow {
    /* position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    font-size: 14px; */
    display: none;
  }
  .header__bottom-menu ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    color: var(--color-main);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
    transform: translateY(0.5rem);
  }
  .header__bottom-menu ul ul ul {
    top: 0;
    left: 100%;
  }
  .header__bottom-menu ul ul li a::before {
    content: "";
    width: 0.25rem;
    height: 0.25rem;
    transform: translateY(-0.25rem);
    background: var(--color-main);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
  }
  .header__bottom-menu ul ul li:not(:last-child) a {
    border-bottom: 1px solid #ececec;
  }
  .header__bottom-menu ul ul li:hover > a {
    background: var(--color-v1);
    color: #fff;
  }
  .header__bottom-menu ul ul li:hover a::before {
    background: #fff;
  }
  .header__bottom-menu ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (min-width: 1352px) {
}
