.header__top {
  transition: transform 0.3s ease, opacity 0.3s ease;
  background: linear-gradient(114.95deg, #f0f8ff 18.25%, #fef2f3 81.75%);
}
.header__top.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.header__top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
}
.header__top .container .header__top__icon {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__top .container .header__top__icon a {
  text-decoration: none;
}
.header__top .container .header__top__icon a img {
  width: 16px;
  height: 16px;
}
.header__top .container .header__top__call {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__top .container .header__top__call .icon {
  width: 24px;
  height: 24px;
}
.header__top .container .header__top__call .icon img {
  width: 100%;
  height: 100%;
}

.header__top .container .header__top__call .phone {
  color: #005e9a;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}

.header__nav {
  background: #ffffffb8;
  padding: 24px 0;
  transition: top 0.3s ease;
}

.header__nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
}

.header__nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.header__nav .container .header__nav__logo {
  width: 196px;
  height: 21px;
}

.header__nav .container .header__nav__logo img {
  width: 100%;
}

.header__nav .container .header__nav__link ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header__nav .container .header__nav__link ul li {
  position: relative;
}

.header__nav .container .header__nav__link ul li a {
  position: relative;
  text-decoration: none;
  font-family: "1FTV VIP Classico URW Bold";
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: #055587;
  padding-bottom: 4px;
  display: block;
}

.header__nav .container .header__nav__link ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0a9fed;
  transition: width 0.3s ease;
}

.header__nav .container .header__nav__link ul li a:hover {
  color: #0a9fed;
}

.header__nav .container .header__nav__link ul li a:hover::after {
  width: 100%;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.product-dropdown {
  background-color: #e6e6e6;
  padding: 20px;
  border-radius: 5px;
  width: 500px;
}

.dropdown:hover .product-dropdown {
  display: flex;
  justify-content: space-around;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-item img {
  width: 80px;
  height: 111px;
  margin-bottom: 10px;
  object-fit: contain;
}

.product-item span {
  color: #055587;
  font-weight: 500;
  font-size: 16px;
}

/* Knowledge dropdown specific styles */
.knowledge-dropdown {
  background-color: #e6e6e6;
  width: 200px;
  padding: 15px;
  border-radius: 5px;
  text-align: left;
}

.knowledge-item {
  padding: 5px 0;
  color: #055587;
  font-size: 18px;
}

/* banner */
.banner__home .carousel-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: none;
  margin: 0 6px;
  position: relative;
  transition: background-color 0.3s, transform 0.3s;
  border: 1px solid #ffffff;
}

.banner__home .carousel-indicators .active {
  background-color: transparent;
  border: 2px solid #0a9fed;
  transform: scale(1.1);
}

.banner__home .carousel-indicators .active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: #0a9fed;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.banner__home .carousel-indicators button:hover {
  background-color: #0a9fed;
}
.banner__home {
  padding: 0;
  height: 670px;
}
.carousel-inner-height {
  height: 720px;
}
.banner__home .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1441px) {
  .carousel-inner-height {
    height: auto;
  }
}
/* kham pha */
.discover {
  padding: 56px 0;
  background: linear-gradient(114.95deg, #e8f1f6 18%, #f4edf1 82%);
}
.discover .container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}
.discover .container .title {
  color: #005e9a;
  font-family: "1FTV VIP Classico URW Bold";
  font-weight: 500;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0.5%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: -6px;
}
.discover .container .iframe__youtube {
  width: 70%;
  height: 400px;
}
.discover .container .iframe__youtube iframe {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 4px;
}
.mnav-toggle-icon.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.mnav-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 10px;
}
@media screen and (max-width: 1441px) {
  .discover .container .iframe__youtube {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .discover .container .iframe__youtube {
    height: 400px;
  }
}
@media screen and (max-width: 580px) {
  .discover .container .iframe__youtube {
    height: 250px;
    width: 90%;
  }
}
.search-more {
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, #5983b4 0%, #e070a6 100%);
  transition: background 0.5s ease;
}
.search-more a {
    position: relative; 
    z-index: 10; 
    text-decoration: none;
    color: #ffffff;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
}
.search-more:hover {
  background: linear-gradient(90deg, #5983b4 0%, #e070a6 54.33%);
}

/* center */
.center {
  position: relative;
  padding: 56px 0 0 0;
}
.center .container {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.center .container .title {
  color: #005e9a;
  font-family: "1FTV VIP Classico URW Bold";
  font-weight: 500;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
}
.center .container {
  position: relative;
  overflow: hidden;
}

.center .container .customer {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  transition: transform 0.1s linear;
  gap: 24px;
  padding-bottom: 56px;
}

.center .container .customer .item {
  padding: 4px;
  border: 1px solid var(--primary-grey-0, #ffffff);
  border-radius: 4px;
  width: 196px;
  height: 196px;
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 17px;
  display: inline-block;
  box-shadow: 0px 0px 20px 0px rgba(207, 222, 248, 0.5019607843);
  overflow: hidden;
  border-radius: 15px;
}
.center .container .customer .item img {
  width: 100%;
  object-fit: cover;
}

footer {
  padding: 56px 0 16px;
  background: linear-gradient(114.95deg, #e3f5ff 30.09%, #f8efff 81.75%);
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
footer .container .row__one {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
footer .container .row__one .col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .container .row__one .col h4 {
  font-family: "1FTV VIP Classico URW Bold";
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
  color: #005e9a;
  padding: 0;
}
footer .container .row__one .col .url {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .container .row__one .col .url a {
  color: #0a4670;
  font-family: "1FTV VIP Classico URW";
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-decoration: none;
}
footer .row__two {
  position: relative;
}

footer .row__two::before {
  content: "";
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
footer .container .row__two {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .container .row__two .col:first {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .container .row__two .col .item {
  display: flex;
  gap: 6px;
}
footer .container .row__two .col .item h5 {
  font-family: "1FTV VIP Classico URW";
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #0a4670;
}
footer .container .row__two .col .item p {
  color: #0a4670;
  font-family: "1FTV VIP Classico URW";
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

footer .container .row__two .col:last-child {
  flex: none;
  display: flex;
  gap: 48px;
}
footer .container .row__two .col a {
  text-decoration: none;
  width: 48px;
  height: 48px;
  border-radius: 29px;
}
footer .container .row__two .col a img {
  width: 100%;
}
.copy-right {
  margin-top: 56px;
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 136%;
  text-align: center;
  color: #005e9a;
}

/* --------------------------------------------------------------------- */
/* Main container */
.expert {
  padding: 0 0 56px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0; /* Ensure it's behind content */
  pointer-events: none; /* Prevent interaction */
}

.bg-circle-blue {
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 112, 196, 0.1) 0%,
    /* much lighter */ rgba(0, 112, 196, 0) 70%
  );
  top: -200px;
  left: -300px;
}

.bg-circle-red {
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.1) 0%,
    rgba(255, 0, 85, 0) 70%
  );
  bottom: -400px;
  right: -400px;
}
.bg-circle-red-left {
  width: 100%;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.1) 0%,
    rgba(255, 0, 85, 0) 70%
  );
}
.bg-circle-red-small-left {
  width: 900px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.05) 0%,
    /* even lighter */ rgba(255, 0, 85, 0) 70%
  );
  top: 30%;
}
.bg-circle-red-small {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.05) 0%,
    /* even lighter */ rgba(255, 0, 85, 0) 70%
  );
  top: 30%;
  right: -200px;
}
/* Main container */
.carousel-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

/* Title */
.carousel-title {
  text-align: center;
  color: #005e9a;
  font-size: 32px;
  margin-bottom: 30px;
  font-family: "1FTV VIP Classico URW Bold";
  text-transform: uppercase;
}

/* Hide radio buttons but use them for state */
.carousel-radio {
  display: none;
}

/* Carousel track */
.carousel-track {
  display: flex;
  position: relative;
  height: 550px;
  perspective: 1000px;
}

/* Slides container */
.slides {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease-in-out;
}

/* Individual slide */
.slide {
  position: absolute;
  width: 45%;
  left: 27.5%;
  top: 0;
  background: #ffffff; /* Light gray with transparency */
  border: 1px solid var(--primary-grey-0, #ffffff);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
  z-index: 1;
  padding: 16px; /* Added 16px padding */
}

/* Previous and next slides (smaller) */
.slide-prev,
.slide-next {
  position: absolute;
  width: 18%;
  height: 55%;
  top: 22.5%;
  background: #fafafa80; /* Light gray with transparency */
  border: 1px solid var(--primary-grey-0, #ffffff);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0.5;
  z-index: 0;
  transition: all 0.8s ease;
  padding: 16px; /* Added 16px padding */
}

/* 60px gap calculation */
.slide-prev {
  left: 0;
  transform: translateX(calc(-100% - 30px)) scale(0.9);
}

.slide-next {
  right: 0;
  transform: translateX(calc(100% + 30px)) scale(0.9);
}

/* Active slide states using radio buttons */
#slide1:checked ~ .carousel-track .slide1,
#slide2:checked ~ .carousel-track .slide2,
#slide3:checked ~ .carousel-track .slide3 {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Previous slide states - 60px gap */
#slide1:checked ~ .carousel-track .slide3,
#slide2:checked ~ .carousel-track .slide1,
#slide3:checked ~ .carousel-track .slide2 {
  opacity: 0.5;
  transform: translateX(calc(-100% - 60px)) scale(0.8);
  z-index: 1;
}

/* Next slide states - 60px gap */
#slide1:checked ~ .carousel-track .slide2,
#slide2:checked ~ .carousel-track .slide3,
#slide3:checked ~ .carousel-track .slide1 {
  opacity: 0.5;
  transform: translateX(calc(100% + 60px)) scale(0.8);
  z-index: 1;
}

/* Slide content - VERTICAL LAYOUT */
.slide-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 55%;
  overflow: hidden;
  position: relative;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.video-icon:hover {
  opacity: 1; /* Tăng độ rõ khi hover */
}

.slide-text {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.slide-title {
  color: #0270c4;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: left;
}

.slide-description {
  color: #212121;
  line-height: 1.5;
  flex-grow: 1;
  text-align: left;
  font-size: 18px;
  font-family: "1FTV VIP Classico URW";
}

.slide-button-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.slide-button {
  background-color: #0c8ee7;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.slide-button:hover {
  background-color: #0270c4;
}

/* Navigation controls - positioned relative to center item */
.carousel-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.control-button {
  background-color: #005e9a;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: auto;
  position: absolute;
}

.control-button:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* Position controls 20px from center item edges */
.control-prev {
  left: calc(
    27.5% - 20px - 40px
  ); /* Left edge of center item - 20px gap - button width */
}

.control-next {
  right: calc(
    27.5% - 20px - 40px
  ); /* Right edge of center item - 20px gap - button width */
}

/* Responsive styles */
@media (max-width: 1200px) {
  /* Adjust spacing for smaller screens but maintain gap */
  .slide-prev {
    transform: translateX(calc(-100% - 25px)) scale(0.9);
  }

  .slide-next {
    transform: translateX(calc(100% + 25px)) scale(0.9);
  }

  #slide1:checked ~ .carousel-track .slide3,
  #slide2:checked ~ .carousel-track .slide1,
  #slide3:checked ~ .carousel-track .slide2 {
    transform: translateX(calc(-100% - 50px)) scale(0.8);
  }

  #slide1:checked ~ .carousel-track .slide2,
  #slide2:checked ~ .carousel-track .slide3,
  #slide3:checked ~ .carousel-track .slide1 {
    transform: translateX(calc(100% + 50px)) scale(0.8);
  }

  /* Adjust control positions */
  .control-prev {
    left: calc(27.5% - 15px - 40px);
  }

  .control-next {
    right: calc(27.5% - 15px - 40px);
  }
}

@media (max-width: 992px) {
  .slide {
    width: 60%;
    left: 20%;
  }

  .slide-prev,
  .slide-next {
    width: 15%;
  }

  /* Adjust spacing for medium screens */
  .slide-prev {
    transform: translateX(calc(-100% - 20px)) scale(0.9);
  }

  .slide-next {
    transform: translateX(calc(100% + 20px)) scale(0.9);
  }

  #slide1:checked ~ .carousel-track .slide3,
  #slide2:checked ~ .carousel-track .slide1,
  #slide3:checked ~ .carousel-track .slide2 {
    transform: translateX(calc(-100% - 40px)) scale(0.8);
  }

  #slide1:checked ~ .carousel-track .slide2,
  #slide2:checked ~ .carousel-track .slide3,
  #slide3:checked ~ .carousel-track .slide1 {
    transform: translateX(calc(100% + 40px)) scale(0.8);
  }

  /* Adjust control positions */
  .control-prev {
    left: calc(20% - 15px - 40px);
  }

  .control-next {
    right: calc(20% - 15px - 40px);
  }
}

@media (max-width: 768px) {
  .carousel-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .slide-description-new {
    -webkit-line-clamp: 2 !important;
  }
  .slide {
    width: 85%;
    left: 7.5%;
  }

  .slide-prev,
  .slide-next {
    display: none;
  }

  .carousel-track {
    height: 465px;
  }
  .carousel-track-new {
    height: 480px !important;
  }

  .slide-image {
    height: 50%;
  }

  .slide-text {
    padding: 15px;
  }

  .slide-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .center .container .customer {
    padding-bottom: 5px;
  }

  /* Adjust control positions for mobile */
  .control-prev {
    left: 10px;
  }

  .control-next {
    right: 10px;
  }

  .control-button {
    width: 35px;
    height: 35px;
  }
}

/* ......... */
.slide-title a {
  text-decoration: none;
  color: #212121;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: left;
  font-family: Inter;
}
.knowledge-dropdown {
  width: 225px !important;
}
.knowledge-item a {
  padding: 5px 0;
  color: #055587;
  font-size: 18px;
}
.product-item a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  color: #055587 !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  font-family: Inter;
}
.header__nav .container .header__nav__link ul li {
  padding: 0 !important;
}
.banner__home {
  max-width: 2200px;
  margin: 0 auto;
}
.youtube-iframe-container,
.brand-popup-video,
.youtube-iframe-container iframe {
  width: 100%;
}
.result {
  padding: 56px 0;
  background: linear-gradient(114.95deg, #b9e4fe 18.25%, #fbd0d6 81.75%);
}
.result .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}
.result .container .result__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.result .container .result__left .title {
  color: #005e9a;
  font-family: "1FTV VIP Classico URW Bold";
  font-weight: 500;
  font-size: 42px;
  line-height: 130%;
  text-transform: uppercase;
}
.result .container .result__left p {
  color: #0a4670;
  font-family: "1FTV VIP Classico URW";
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

.result__left .search-more {
  display: inline-block;
  width: auto;
  align-self: flex-start;
}

.result__right .slider-frame {
  position: relative;
  border-radius: 6px;
  background: #ffffff3d;
  padding: 12px;
  overflow: visible;
}

#sliderImage {
  width: 100%;
  height: 410px;
  border-radius: 4px;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Prev/Next buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.slider-nav.prev {
  left: -12px;
  z-index: 10;
}

.slider-nav.next {
  right: -12px;
  z-index: 10;
}

.slider-nav.enabled {
  background: #005e9a;
  color: #ffffff;
}

.slider-nav.disabled {
  background: #c8c8c8;
  color: #e0e0e0;
  cursor: not-allowed;
}

.slide-cta {
  text-align: center;
  margin-top: -29px;
  position: relative;
}
.btn-outline-gradient {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid transparent;
  color: #055587;
  font-family: "1FTV VIP Classico URW Bold";
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  transition: background-position 0.3s ease, color 0.3s ease;
  background-size: 200% auto;
  text-decoration: none;
  background: linear-gradient(rgb(251, 253, 255), rgb(252, 254, 255))
      padding-box,
    linear-gradient(to right, #6282b0, #ca2c85) border-box;
  border-radius: 8px;
  border: 1px solid transparent;
}
.mnav-toggle-icon {
  color: #005e9a;
}
.search-more.centerr {
  display: flex;
  margin: 0 auto;
  width: fit-content;
}
.slide-image {
  height: 340px;
}

@media screen and (max-width: 1441px) {
  .banner__home {
    height: auto;
  }
  .center .container .customer .item {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 980px) {
  .discover .container .title,
  .result .container .result__left .title,
  .center .container .title,
  .center .container .title {
    font-size: 30px;
  }
  .result .container {
    gap: 60px;
  }
  .header__top .container {
    padding: 12px 20px;
  }
  .center .container .customer .item {
    width: 100px;
    height: 100px;
  }
  .center .container .customer {
    gap: 18px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 40px 20px 16px 20px;
  }
  .kd-indicators {
    margin-top: 0;
    margin-bottom: 40px;
  }
  .btn-outline-gradient {
    font-size: 16px;
  }
  #sliderImage {
    height: auto;
  }
  .slide-image {
    height: auto;
  }
  .search-more.centerr {
    margin-top: 50px !important;
  }
  .discover .container .title,
  .center .container .title,
  .center .container .title {
    font-size: 24px;
  }
  .result .container .result__left .title {
    font-size: 30px;
  }
  .discover,
  .result,
  .center {
    padding: 40px 20px 40px 20px;
  }
  .discover .container {
    gap: 30px;
  }
  .result .container {
    grid-template-columns: 1fr;
  }
  .expert-home {
    padding: 20px 0 40px 0;
  }
  .center .container .customer .item {
    width: 150px;
    height: 150px;
  }
  .center .container .customer {
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  footer .container .row__one {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  footer .container .row__two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  footer .container .row__two .col .item h5 {
    white-space: nowrap;
  }
  footer .container .row__two .col:first-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  footer .container .row__two .col:last-child {
    gap: 20px;
  }
  footer .container .row__two .col a {
    text-decoration: none;
    width: 35px;
    height: 35px;
    border-radius: 29px;
  }
  .slide-image-home img {
    width: 100%;
    height: 270px;
    object-fit: cover;
  }
  .center .container {
    gap: 40px;
  }
  .slider-nav {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 768px) {
  footer .container .row__one {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .carousel-title-home {
    margin: 20px 20px 40px 20px !important;
  }
}

@media screen and (max-width: 534px) {
  .center .container .customer .item {
    width: 80px;
    height: 80px;
  }
  .slider-nav {
    font-size: 16px;
  }
}

.mnav-header {
  display: none;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .header__nav {
    padding: 0;
  }
  .header__nav__logo {
    margin: 0 auto;
  }
  .header__nav .container {
    justify-content: flex-start;
  }

  .header__nav__link {
    display: none;
  }

  .mnav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    z-index: 1001;
  }

  .mnav-hamburger {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #055587;
  }

  .mnav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .mnav-menu.active {
    right: 0;
  }

  .mnav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mnav-menu ul li {
    border-bottom: 1px solid #e6e6e6;
  }

  .mnav-menu ul li a {
    display: flex;
    padding: 12px 16px;
    text-decoration: none;
    color: #055587;
    font-size: 16px;
    font-weight: 500;
  }

  .mnav-menu ul li a:hover {
    background-color: #f0f8ff;
  }

  .mnav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #055587;
    cursor: pointer;
    padding: 16px;
    text-align: right;
    width: 100%;
  }

  .mnav-dropdown-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
    padding: 0 16px;
  }

  .mnav-dropdown-content .product-item {
    padding: 10px 0;
  }

  .mnav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mnav-overlay.active {
    display: block;
    opacity: 1;
  }
}

.mnav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #055587;
}

.mnav-toggle i {
  margin-left: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mnav-dropdown.open .mnav-toggle i {
  transform: rotate(180deg);
}

.body-no-scroll {
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 390px) {
  .slide-image-home img {
    height: 230px;
  }
  .search-more.centerr {
    margin-top: 5px !important;
  }
}