:root {
  --color-main: #0a0a0a;
  /* màu đen (RAL 9005) */
  /*--color-v1: #4b4b4f;*/
  --color-v1: #263B7F;
  /* màu ghi (RAL 260 40 05) */
  --color-v2: #192031;
  --color-v3: #878c91;
  --color-v4: #4b4b4f;
  /* màu ghi nhạt hơn 1 chút */
  --color-v5: #010101;
  --color-v6: #6a6a70;
  --color-scrollbar: #000;
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", "Arial", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif;
}

html {
    font-size: 14.5px;
}

@media (min-width: 1024px) {
    html {
        font-size: 16px;
    }
}

html {
  scroll-behavior: smooth;
}

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 * {
  font-family: Arial;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.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: 1.3em;
}

.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;
}

.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%;
  max-height: 100%;
}

.img__w-full img {
  width: 100%;
}

.img__center img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .container {
    max-width: 576px;
  }
}

.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: #000;
}

.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: #000;
}

.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;
}

#select-province,
#select-district {
  height: 3.75rem;
  padding: 0.5rem 1rem;
  width: 100%;
  background-color: #fff;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-v3);
  appearance: none;
}

header.header-blur {
  /* backdrop-filter: blur(100px);
  background-color: rgba(255, 255, 255, 0.05); */
  background-color: #fff;
}

header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

header.header-blur.header__custom {
  background-color: transparent;
}

.menu__footer ul li a {
  display: block;
  margin-bottom: 0.5rem;
}

.menu__footer ul li a:hover {
  color: var(--color-v1);
}

.btn-contact:hover svg path {
  fill: var(--color-v1);
}

.btn-google-play {
  background-image: url(../images/gg-play.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(50%, 200px);
  height: 63px;
}

.btn-app-store {
  background-image: url(../images/app-store.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(50%, 200px);
  height: 63px;
}

.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-charging-post .tab-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
  transform-origin: center;
  transform: scaleX(0);
  transition: all 0.3s;
}

.module-tabs-charging-post .tab-link.active::before,
.module-tabs-charging-post .tab-link:hover::before {
  transform: scaleX(1);
}

.swiper-info-charging-post .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.swiper-info-charging-post .swiper-pagination-bullet-active {
  width: 74px;
  border-radius: 40px;
  background: #fff;
}

.swiper-news .swiper-pagination-bullet {
  background: #d9d9d9;
  opacity: 1;
}

.swiper-news .swiper-pagination-bullet-active {
  width: 74px;
  border-radius: 40px;
  background: #b4b4b4;
}

.swiper-partner .swiper-slide .c-img img {
  height: 90%;
  width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.banner__all {
  position: relative;
  z-index: 1;
}

.banner__all::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 48, 134, 0) 0%, #003086 100%);
  z-index: -1;
  pointer-events: none;
}

.banner__all::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60%;
  background-image: url("../images/image4.png");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

.title__all {
  font-size: 2.625rem;
  font-weight: 600;
  color: var(--color-v5);
  line-height: 130%;
  letter-spacing: -1.28px;
}

.list-shaping-future .item::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: var(--color-v1);
  box-shadow: 1px -3px 2px 0 rgba(172, 172, 172, 0.35) inset,
    -4px -8px 10px 0 rgba(255, 255, 255, 0.85) inset, 3px 3px 3px 0 #fff inset,
    4px 8px 19px 0 rgba(172, 172, 172, 0.15) inset,
    2px 2px 4px -1px rgba(172, 172, 172, 0.8) inset;
  filter: drop-shadow(16px 32px 44.3px rgba(74, 74, 74, 0.25)) drop-shadow(2px 4px 16px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(4px);
  position: absolute;
  top: 2px;
  left: 0;
  border-radius: 50%;
  z-index: 1;
}

.list-shaping-future .item::after {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--color-v1);
  box-shadow: 1px -3px 2px 0 rgba(172, 172, 172, 0.35) inset,
    -4px -8px 10px 0 rgba(255, 255, 255, 0.85) inset, 3px 3px 3px 0 #fff inset,
    4px 8px 19px 0 rgba(172, 172, 172, 0.15) inset,
    2px 2px 4px -1px rgba(172, 172, 172, 0.8) inset;
  filter: drop-shadow(16px 32px 44.3px rgba(74, 74, 74, 0.25)) drop-shadow(2px 4px 16px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
  left: 0.625rem;
}

.swiper-info-company:nth-child(even) .item:nth-child(1) {
  padding-left: 1.5rem;
}

.swiper-info-company:nth-child(odd) .item:nth-child(1) {
  padding-right: 1.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #667085;
  margin: 0 0.5rem;
}

.breadcrumb li {
  display: inline;
  color: #667085;
}

.breadcrumb li:last-child {
  font-weight: 500;
}

.list-future-to-come .line {
  position: relative;
}

.list-future-to-come .line::before {
  content: "";
  height: 2.25rem;
  aspect-ratio: 1/1;
  background: var(--color-v1);
  box-shadow: 1px -3px 2px 0 rgba(172, 172, 172, 0.35) inset,
    -4px -8px 10px 0 rgba(255, 255, 255, 0.85) inset, 3px 3px 3px 0 #fff inset,
    4px 8px 19px 0 rgba(172, 172, 172, 0.15) inset,
    2px 2px 4px -1px rgba(172, 172, 172, 0.8) inset;
  filter: drop-shadow(16px 32px 44.3px rgba(74, 74, 74, 0.25)) drop-shadow(2px 4px 16px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
}

.list-future-to-come .line::after {
  content: "";
  height: 1px;
  width: calc(100% + 2.5rem);
  background: var(--color-v1);
  box-shadow: 1px -3px 2px 0 rgba(172, 172, 172, 0.35) inset,
    -4px -8px 10px 0 rgba(255, 255, 255, 0.85) inset, 3px 3px 3px 0 #fff inset,
    4px 8px 19px 0 rgba(172, 172, 172, 0.15) inset,
    2px 2px 4px -1px rgba(172, 172, 172, 0.8) inset;
  filter: drop-shadow(16px 32px 44.3px rgba(74, 74, 74, 0.25)) drop-shadow(2px 4px 16px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(4px);
  position: absolute;
  top: 50%;
  left: -1.25rem;
  transform: translateY(-50%);
}

.list-future-to-come .c-img img {
  object-fit: contain;
}

label[for^="label-type-"]:has(input:checked),
label[for^="label-type-"]:hover {
  background-color: var(--color-v1);
  color: #fff;
}

.module-search-location.active .module-search-location-result {
  transform: scaleY(1);
}

.module-search-location.active input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.module-popup-charging-station-details.active .module-result-charging-station-details-content {
  animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner_info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 4px 0 #6a6a70;
  backdrop-filter: blur(2px);
  z-index: -1;
}

.banner_info::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2rem);
  aspect-ratio: 1/1;
  background: url("../images/banner/item1.svg") no-repeat center center / contain;
  z-index: -2;
  filter: brightness(0) saturate(100%) invert(29%) sepia(7%) saturate(228%) hue-rotate(202deg) brightness(93%) contrast(92%);
  animation: banner_info_animation 2s linear infinite;
  transform-origin: center;
}

.banner_info {
  animation: banner_info_animation_2 2s linear infinite;
}

@keyframes banner_info_animation_2 {
  0% {
    scale: 1;
  }

  25% {
    scale: 1.05;
  }

  50% {
    scale: 1;
  }

  75% {
    scale: 1.05;
  }
}

/* làm hiệu ứng lắc nhẹ theo hình tròn*/
@keyframes banner_info_animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  50% {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.icon-zalo {
  background-image: url("../images/zalo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-facebook {
  background-image: url("../images/facebook.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination strong,
.pagination a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border: 1px solid transparent;
}

.pagination strong,
.pagination a:hover {
  border-color: #878c91;
  background: #faf8ff;
}

.hover__image:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(93%) saturate(5%) hue-rotate(318deg) brightness(106%) contrast(100%);
}

.name-info {
  font-weight: 700;
  text-align: center;
}

.map-info {
  text-align: center;
  text-transform: capitalize;
}

header.header-shadow {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.p-1 {
  padding: 0.25rem;
  /* tương đương 4px nếu root font-size = 16px */
}

.custom-select-home .ss-main .ss-arrow {
  width: 1rem;
  height: 1.5rem;
  margin-right: 5px;
}

.custom-select-home .ss-main .ss-values .ss-single {}

.title_station_public_charger {
  font-size: 2rem;
  text-transform: uppercase;
}

.swiper-pagination-bullet-active {
  background: var(--color-v1);
}

div#toc_container {
  background: #e8e8e8;
  padding: 5px 15px;
  border: 1px solid #ccc;
  margin-bottom: 10px !important;
}

.show_or_hidden_toc {
  cursor: pointer;
}

.toc_heading {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc_list {
  margin-left: 0;
  margin-top: 10px;
}

.toc_list li {
  position: relative;
  margin-bottom: 7px !important;
  padding-left: 0;
  list-style: none;
  font-weight: 400;
  font-size: 14px;
}

div#toc_container ul {
  padding-left: 15px !important;
  margin-bottom: 0 !important;
}

.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);
}

.hover-img-white:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(215deg) brightness(103%) contrast(101%);
}

.scroll-v1::-webkit-scrollbar-track {
  background-color: #fff;
}

.scroll-v1::-webkit-scrollbar {
  width: 0.5rem;
  background-color: #f5f5f5;
}

.scroll-v1::-webkit-scrollbar-thumb {
  background: var(--color-scrollbar);
}

.s-content__ul {
  list-style: none;
}

.s-content__ul ul {
  position: relative;
}

.s-content__ul ul::before {
  content: "";
  left: 4px;
  width: 2px;
  height: 100%;
  top: 0;
  background: #fff;
  position: absolute;
}

.s-content__ul ul li{
  padding-left: 1.5rem;
  position: relative;
  list-style: none;
}


.s-content__ul ul li::before {
  content:"";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  top: 8px;
  left: 0;
  position: absolute;
}

.border-fade-bottom::before {
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

@media not all and (min-width: 1600px) {}

@media not all and (min-width: 1344px) {}

@media not all and (min-width: 1152px) {}

@media not all and (min-width: 960px) {
  body {
    padding-top: var(--header-height);
  }

  header {
    background-color: #fff;
  }

  .main-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: min(80%, 320px);
    background-color: #fff;
    z-index: 100;
    transition: all 0.3s;
  }

  .main-menu ul li a {
    display: block;
    padding: 0.5rem 1rem;
  }

  header.active-menu .main-menu {
    left: 0;
  }

  header.active-menu .main-menu-overlay {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .main-menu ul>li:has(ul)>a {
    padding-right: 2.125rem;
  }

  .main-menu ul li {
    position: relative;
  }

  .main-menu ul>li:has(ul)>.btn-down-menu {
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }

  .main-menu ul ul {
    display: none;
  }

  .btn-down-menu.active {
    transform: rotate(-180deg);
  }

  .main-menu ul>li {
    border-top: 1px solid #e0e0e0;
  }

  .main-menu ul ul>li>a::before {
    content: "";
    width: 4px;
    height: 4px;
    display: inline-block;
    background: var(--color-main);
    border-radius: 50%;
    margin-right: 4px;
    margin-bottom: 3px;
  }

  .main-menu ul li:has(.btn-down-menu.active)>a {
    background: var(--color-v1);
    color: #fff;
  }

  .main-menu ul li:has(.btn-down-menu.active) .btn-down-menu {
    color: #fff;
  }
}

@media not all and (min-width: 768px) {}

@media not all and (min-width: 576px) {
  .list-future-to-come .line {
    position: absolute;
    top: -1.25rem;
    left: 1.25rem;
    width: 2.25rem;
    height: 100%;
  }

  .list-future-to-come .line::before {
    top: 30%;
    left: 0;
  }

  .list-future-to-come .line::after {
    height: 100%;
    width: 1px;
    left: 0;
  }
}

@media not all and (min-width: 450px) {}

@media (min-width: 450px) {}

@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 960px) {

  header.header__custom .main-menu>ul>li>a,
  header.header__custom .main-menu>ul>li>.btn-down-menu {
    color: #fff;
  }

  header.header__custom .logo__header {
    filter: brightness(0) invert(1);
  }

  .main-menu>ul {
    display: flex;
    gap: 1rem;
  }

  /* .main-menu > ul > li:hover > a,
  .main-menu > ul > li:has(a.active) > a {
    font-weight: 600;
    letter-spacing: -0.0125em;
  } */
  .main-menu>ul>li:hover,
  .main-menu>ul>li:has(a.active) {
    background: var(--color-v1);
    color: #fff;
  }

  .main-menu>ul>li:hover>a,
  .main-menu>ul>li:has(a.active)>a {
    color: #fff;
  }

  .main-menu>ul>li {
    border-radius: 0.5rem;
    transition: all 0.3s;
  }

  .main-menu>ul>li>a {
    white-space: nowrap;
  }

  .main-menu ul>li>a {
    display: block;
    padding: 0.5rem 1rem;
  }

  .main-menu ul>li {
    position: relative;
    transition: all 0.3s;
  }

  .main-menu ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: var(--color-main);
    z-index: 100;
    width: fit-content;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    transform-origin: top;
    transform: scaleY(0);
  }

  .main-menu ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .main-menu ul>li:hover>.btn-down-menu {
    transform: translateY(-50%) rotate(-180deg);
  }

  .main-menu ul>li>ul>li>a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }

  .main-menu ul>li>ul>li:hover>a {
    color: #fff;
    background-color: var(--color-v1);
  }

  .main-menu ul>li:has(ul) {
    padding-right: 1.25rem;
  }

  .main-menu .btn-down-menu {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }

  .wow {
    visibility: hidden;
  }
}

@media (min-width: 1152px) {}

@media (min-width: 1344px) {
  .lg_height_40 {
    height: 40%;
  }
}

@media (min-width: 1600px) {}

@media (max-width: 576px) {
  .mobile_max_h_400 {
    max-height: 400px !important;
  }

  .mobile_min_h_400 {
    min-height: 400px !important;
  }
}