body, html {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  background-color: #ffffff;
  color: #252525;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
   /* overflow: auto; */
  -ms-overflow-style: none;  /*IE và Edge */
  scrollbar-width: none;    /* Firefox */
}

h2{
  font-size: 25px;
  font-weight: 500;
  color: #D60C2E;
  text-align: center;
  margin-bottom: 10px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000; /* đảm bảo nằm trên các phần tử khác */
        background-color: white; /* hoặc màu bạn muốn */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* tạo hiệu ứng đổ bóng nhẹ */
}

.top_bar {
  width: 100%;
  display: flex;
  height: 50px;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 0; */
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.name_company{
    width: 25%;
    display: block;
    align-items: center;
    white-space: nowrap;
    margin-left: 10px;
}

#nameid {
  font-weight: 500;
  font-size: 20px;
  color: #D60C2E;
}

.top_info {
  display: inline-block;
  height: 100%;
  align-items: center;
  gap: 30px;
  margin-right: 20px;
  /* flex-direction: row; */
  overflow: hidden;
}

.top_info ul{
  height: 100%;
  align-items: center;
  display: flex;
}

.top_info ul li{
  height: 100%;
  display: flex;
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 10px;
  align-items: center;
}



.top_info ul li span {
  margin-left: 8px;
  color: #252525;
  overflow: hidden;
  align-items: center;
}

.top_info ul li:hover span {
  color: #D60C2E;
}



.logo_menu {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 60px;
        /* margin: 20px 0; */
}

.logo {
        width: 20%;
        /* height: 30px; */
        /* display: flex; */
        align-items: center;
        text-align: left;
        /* justify-content: center; */
}

.logo img {
        height: 50px;
        width: auto;
        object-fit: contain;
        margin-left: 20px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-menu {
  width: 70%;
  display: flex;
  justify-content: right;
  align-items: center;
  margin-right: 10px;
}

/* Menu ngang */
nav {
  background-color: #ffffff;

  /* font-family: Arial, sans-serif; */
}

.menu {
        width: 100%;
        list-style: none;
        display: flex;
        justify-content: flex-end;
        align-items: center;
}

.menu > li {
  position: relative;
  justify-content: flex-end;
}

.menu > li > a {
  display: block;
  padding: 15px 20px;
  color: #252525;
  text-decoration: none;
  font-size: 20px;
  font-weight: 450;
  white-space: nowrap;
  overflow: hidden;
}

.menu > li > a:hover {
  color: #D60C2E;
}



/* Dropdown dọc */
.submenu {
  position: absolute;
  top: 85%;
  left: 0;
  background-color: #ffffff;
  display: none;
  flex-direction: column;
  min-width: 280px;
  height: 100px;
  z-index: 1000;
  /* text-decoration: none; */
  list-style-type: none;
  border-radius: 5px;
  /* border-bottom-right-radius: 5px; */
  box-shadow: 2px 4px 5px 4px #00000033;
}

.menu li:hover .submenu {
  display: flex;
}


.submenu li{
  display: flex;
  /* height: 50px; */
  width: 100%;
}

.submenu li a {
  padding-top: 20px;
  padding: 10px 15px;
  height: 50px;
  width: 100%;
  font-size: 18px;
  /* color: white; */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.submenu li a:hover {
  background-color: #f3f3f3;
  color: #D60C2E;
  width: 100%;
  /* height: 50px; */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}



.languages{
        width: 10%;
        /* display: block; */
        /* justify-content: flex-end; */
        align-items: center;
        /* position: absolute; right: 0; */
        margin-right: 0px;
}

.languages ul {
        width: 100%;
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
        text-align: right;
        /* position: relative; */
}

.languages ul li {
        display: block;
        align-items: center;
        height: 100%;
        margin-left: 5px;
        text-align: right;
        margin-right: 5px;

}       

.img_flag{      
        width: 30px;
        height: 20px;
        border-radius: 15%;
        object-fit: cover;
        box-shadow: 0 2px 5px #00000033;
}

.languages img:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        box-shadow: 0 2px 5px #00000033;
}

.hamburger{
        width: 0%;
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        /* position: absolute; right: 0; */
        margin-right: 10px;
}

.side-menu{
        width: 0%;
        visibility: hidden;

}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;

    }

.background_top {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 110px;
        z-index: 0;
    }

.banner{
        width: 90%;
        margin-top: 10px;
        height: auto;
        position: relative;
        display: block;
        margin: 0 auto;
}


/* ================================================= */
        /* CÁC THIẾT LẬP CHUNG */
        /* ================================================= */
        .hidden {
            display: none !important;
        }

        /* ================================================= */
        /* THẺ DIV A (MÀN HÌNH CHÀO MỪNG) */
        /* ================================================= */
        #divA {

            width: 100%;
            aspect-ratio: 384 / 163;
            border-radius: 10px;
            /* background-image: url("../Images/slider/video-banner.webp"); */
            /* background-repeat: no-repeat; */
            /* background-size: cover; */
            /* object-fit: cover; */
            /* color: white; */
            /* Vẫn dùng Flexbox để căn GIỮA CONTAINER chứa chữ */
            display: flex;
            /* justify-content: center; Căn ngang giữa */
            align-items: center; /* Căn dọc giữa */
            /* z-index: 9999; */
            font-size: 4em;
            overflow: hidden;
            text-align: left;
            transition: opacity 0.5s ease-in-out; 
        }

        #divA img{
            width: 100%;
            height: auto;
            object-fit: cover;
            /* margin-bottom: 20px; */
        }

        /* HIỆU ỨNG GÕ CHỮ */
        #typing-text {
            font-family: "Great Vibes", cursive;
            font-weight: 400;
            font-style: normal;
            white-space: nowrap;
            letter-spacing: 0.15em;
            overflow: hidden;
            width: 0ch; /* bắt đầu từ 0 ký tự hiển thị */

            /* Biến CSS: ghi đè trên thẻ nếu cần (ví dụ: style="--chars:18; --duration:4s;") */
            --chars: 80;       /* mặc định số ký tự (override trên thẻ) */
            --duration: 4s;    /* mặc định thời gian (override trên thẻ) */

            text-align: left;
            animation: typing var(--duration) steps(var(--chars), end) forwards;
            margin-left: 40px;
        }

        /* animation mở rộng tới đúng số ký tự (1ch ~ chiều rộng ký tự) */
        @keyframes typing {
            to { width: calc(var(--chars) * 0.5ch); }
        }

        /* Con trỏ nhấp nháy (tùy chọn) */
        /* #typing-text::after {
            content: "";
            display: inline-block;
            width: .12em;
            height: 1em;
            margin-left: .15em;
            background: currentColor;
            vertical-align: bottom;
            animation: blink 1s steps(1) infinite;
        }

        @keyframes blink {
            50% { opacity: 0; }
        } */

        /* ================================================= */
        /* THẺ DIV B (NỘI DUNG CHÍNH) */
        /* ================================================= */
        #divB {
          width: 100%;
          aspect-ratio: 384 / 163; 
          padding: 0;
            text-align: center;
            display: none; 
            opacity: 0; 
            transition: opacity 0.5s ease-in-out;
        }

        #divB img{
        width: 100%;
        height: 100%;
        /* height: 250px; */
        object-fit: cover;
        border-radius: 10px;
        
    }





.slider {
      display: flex;
      position: sticky;
      top: 100px;
      width: 100%;
      height: 100%;
      /* margin-top: 110px; */
      margin: 0 auto;
      /* aspect-ratio: 16 / 7; */
      /* height: 600px; */
      /* overflow: hidden; */
      border-radius: 10px;
      z-index: 1;
      justify-content: space-evenly;
      text-align: center;
      /* align-items: center; */
      /* background-color: aqua; */
    }

.slider-container {
      width: 100%;
      /* height: 600px; */
      /* overflow: hidden; */
      aspect-ratio: 384 / 163;
      justify-content: center;
      /* align-items: center; */
      /* background-color: tomato; */
      z-index: 1;
    }

.slides {
      /* display: flex;
      height: 700px;
      /* justify-content: center; */
      /* transition: transform 0.5s ease-in-out; */ 
        /* width: 80%; Chiều rộng của slider */
        /* height: 600px; */
        width: 100%;
        aspect-ratio: 384 / 163;
        margin: 0 auto; /* Căn giữa slider */
        overflow: hidden; /* Quan trọng: ẩn phần ảnh thừa */
        position: relative; /* Quan trọng: để các ảnh con có position: absolute */
        /* height: 400px; Thêm chiều cao cố định cho container để tránh bị xẹp */
        /* Hoặc bạn có thể dùng padding-bottom để giữ tỷ lệ khung hình */
        /* padding-bottom: 56.25%; /* Ví dụ tỷ lệ 16:9 (chiều cao / chiều rộng * 100) */
        /* height: 0; */
        border-radius: 15px;
        z-index: 1;
    }
.slides img {
      /* width: 100%;
      height: 700px;
      object-fit: cover;
      justify-content: center;
      flex-shrink: 0; */
      /* height: 600px; */
      width: 100%; /* Đảm bảo ảnh luôn bằng chiều rộng thẻ div cha */
      aspect-ratio: 384 / 163; /* Giữ tỷ lệ khung hình */
        position: absolute; /* Quan trọng: để các ảnh xếp chồng lên nhau */
        top: 0;
        left: 0;
        opacity: 0; /* Mặc định ẩn tất cả ảnh */
        transition: opacity 1s ease-in-out; /* Hiệu ứng chuyển tiếp mượt mà trong 1 giây */
        display: block; /* Giữ display: block để transition opacity hoạt động */
        border-radius: 15px;
        z-index: 1;
    }

.slides img.active {
  opacity: 1; /* Hiển thị ảnh đang hoạt động */
  /* z-index: 2; Đảm bảo ảnh hiện tại nằm trên các ảnh khác */
}

.main-content {
        width: 90%;
        position: relative;
        margin: 0 auto;
        padding: 0;
        margin-top: 10px;
        /* background-color: #4d4d4d; */
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        height: auto;
        /* min-height: 400px; */
        /* height: auto; */
        /* height: 100vh; */
        /* overflow: auto; */
        /* -ms-overflow-style: none;  IE và Edge */
        /* scrollbar-width: none;    Firefox */
        z-index: 100;
        background-color: #ffffff;
    }

.products-highlight {
        width: 100%;
        display: block;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        /* gap: 20px; */
        margin: 0 auto;
        padding: 0;
        padding-top: 20px;
        background-color: #ffffff;
    }

.products-highlight h2 {
        font-size: 25px;
        font-weight: 500;
        color: #D60C2E;
        text-align: center;
        margin-bottom: 20px;
    }

.product-list {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        /* gap: 20px; */
        margin: 0 auto;
        padding: 0;
        flex-direction: row;
        /* background-color: aqua; */
    }

.product-item {
        width: 29vw;
        /* height: 350px; */
        display: inline-block;
        margin-bottom: 10px;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12), 
              0 1px 2px rgba(0,0,0,0.24);
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);

        background-color: #fff;
        /* margin-bottom: 20px; */
    }

.product-item img {
        width: 70%;
        margin-top: 10px;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

.product-item h4 {
        font-size: 18px;
        font-weight: 500;
        color: #252525;
        margin: 10px auto;
    }

.product-item p {
        font-size: 17px;
        color: #252525;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        /* font-weight: 400; */
    }

.product-item:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.19), 
              0 6px 6px rgba(0,0,0,0.23);
              
        /* Thêm một chút di chuyển lên trên để tăng cảm giác "nhấc" lên */
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
        transform: translateY(-4px);
    }

.about-us{
        width: 100%;
        display: flex;
        height: 220px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 0;
        background-color: #ffffff;
        text-align: center;
    }

.about-text{
        width: 60%;
        height: 100%;
        display: block;
        justify-content: center;
        margin: 0 auto;
        padding: 0;
        background-color: #ffffff;
        text-align: left;
        padding: 10px;
        /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
        /* border-radius: 10px; */
    }

.about-text h2 {
        font-size: 25px;
        font-weight: 500;
        color: #D60C2E;
        text-align: left;
        margin: 10px auto;
    }

.about-text h4 {
        font-size: 20px;
        font-weight: 400;
        color: #252525;
        text-align: left;
        margin: 10px auto;
    }
    

.about-text p {
       text-align: left;
       padding: 0 10px 10px 0;
       margin-right: 50px;
       text-align: justify;
       font-size: 18px;
       /* overflow: hidden; */
    }

.statics{
        width: 38%;
        display: flex;
        height: 98%;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0;
        background-color: #ffffff;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        
    }

.statistics-row{
        width: 100%;
        display: flex;
        height: 45%;
        justify-content: center;
        align-items: center;
        margin: 10px auto;
        padding: 0;
        /* background-color: #e67373; */
        text-align: center;
        flex-direction: row;
        background-color: rgb(255, 255, 255);
    }


.stat-item{
        width: 50%;
        height: 100%;
        display: block;
        text-align: center;
        /* background-color: #ffb3b3; */
        
        
    }

.stat-item h2:hover{
        transition: all 0.5s cubic-bezier(.25,.8,.25,1);
        scale:1.2;
        transform: translateY(-3px);
    }


.customers-logo{
        position: relative;
        width: 99%;
        height: 220px;
        padding-top: 50px;
        margin: 0 auto;
        /* margin-left: 40px; */
        /* margin-right: 40px; */
        background-color: #ffffff;
        text-align: center;
        /* border-radius: 10px; */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        border-radius: 5px;
}


.logo-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  border-radius: 10px;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.logo-strip {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.logo-strip img {
  height: 100px;
  margin-right: 20px;
  flex-shrink: 0;
}

.news-updates{
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px 0;
        /* margin-left: 40px; */
        /* margin-right: 40px; */
        background-color: #fcfeff;
        text-align: center;
        border-radius: 10px;
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 20px;
        /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.news-list{
        width: 100%;
        height: 350px;
        padding: 20px 0;
        /* margin-left: 40px; */
        /* margin-right: 40px; */
        background-color: #fafeff;
        justify-content: center;
        display: flex;
        align-items: center;
        text-align: center;
        border-radius: 10px;
        margin: 0 auto;
        /* margin-top: 20px; */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-item {
        width: 30%;
        height: 300px; 
        padding: 10px 0;
        /* margin-left: 40px; */
        /* margin-right: 40px; */
        background-color: #ffffff;
        justify-content: center;
        /* flex-direction: column; */
        align-items: center;
        text-align: center;
        border-radius: 10px;
        margin: 0 20px;
        /* padding-left: 10px; */
        color: #252525;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-item img {
        height: 160px;
        /* width: 90%; */
        max-width: 90%;
        border-radius: 5px;
        margin-top: 10px;
        margin-bottom: 10px;
        transition: transform 0.8s ease; /* Tăng thời gian từ 0.3s lên 0.8s */
        box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Tăng độ mờ của bóng */
}

.news-item img:hover {
        transform: scale(1.05); /* Tăng tỷ lệ phóng to từ 1.05 lên 1.1 */
        box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Tăng độ mờ của bóng */
}

.news-item h5 {
        width: 95%;
        font-size: 16px;
        font-weight: 300;
        color: #252525;
        margin: 0 auto;
        overflow: hidden;;
    }

.news-item a h5:hover {
        color: #D60C2E;
    }

.footer{
        position: relative;
        width: 100%;
        height: 280px;
        background-image: url(../Images/bg/bg_ft.png);
        background-size: cover;
        color: #252525;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 15px;
        margin-top: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.footer-content{
        width: 100%;
        height: 220px;
        /* background-color: #f5f5f5; */
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: row;
        /* text-align: center; */
        /* border-top: 1px solid #e0e0e0; */
        margin-top: 20px;
}


.footer-logo{
        width: 20%;
      
}

#name-mb{
        display: none;
}

#name-company-ft{
        font-size: 22px;
        font-weight: 500;
        color: #D60C2E;
        text-align: left;
        margin-bottom: 10px;
        margin-left: 0px;
}

.footer-logo img{
        width: 90%;
        height: 80px;
        object-fit: contain;
        margin-left: 0px;
        text-align: left;
        /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.contact-info{
        width: 50%;
        height: 100%;
}

.maps{
        width: 30%;
        height: 60%;
        margin-bottom: 10px;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-media{
        width: 100%;
        /* background-color: #ffffff; */
        height: 60px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: row;
        /* text-align: center; */
        /* border-top: 1px solid #e0e0e0; */
        margin-top: 20px;
}

.lg_container{
        position: relative;
        height: 100%;
        width: 30%;
        max-width: 80px;
        /* background-color: #ffffff; */
}



.lg_container a svg {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
    width: 60px;
    height: 60px;
    transition: transform 0.8s ease;
  }

  .lg_container a svg.hover {
    opacity: 0;
  }

  .lg_container:hover a svg.hover {
    opacity: 1;
    transform: scale(1.1);
  }


  .lg_container:hover a svg.default {
    opacity: 0;
  }

.lg_container a img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-left: 0px;
        /* text-align: left; */
        transition: transform 0.8s ease;
        margin-top: 6px;

  }

  .lg_container a img {
    opacity: 1;
  }
  
  .lg_container:hover a img {
    content: url('../Images/Logo/factlink2.png');
    transform: scale(1.1);
  }

#map-icon-id{
  display: none;
}


.copyright{
        width: 100%;
        height: 100px;
        /* background-color: #f5f5f5; */
        color: #004075cc;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        /* flex-direction: row; */
        /* text-align: center; */
        /* border-top: 1px solid #e0e0e0; */
        margin-top: 20px;
        border-radius: 10px;
        flex-direction: row;
}


.standard{
        /* justify-content: left;  */
        width: 40%;
        height: 100%;
        display: flex;
        text-align: left; 
        font-size: 20px; 
        font-weight: 500;
        margin-left: 20px;
        align-items: center;
}


.copyright2{
        width: 60%;
        height: 100%;
        display: flex;
        justify-content: flex-end;
        text-align: right; 
        font-style: italic; 
        text-align: right; 
        /* margin: 0 auto; */
        margin-right: 20px;
        align-items: center;
}

.mail-info{
        color: #252525;
}

.mail-info:hover {
        color: #D60C2E;
        text-decoration: none;
}       



/* 1--------------------------------------------------------------------------------------------------------------------------------------------------------------------1 */

@media screen and (min-width: 761px) and (max-width: 1142px) {
  #nameid {
    font-size: 18px;
  }
  
#location_id1 {
    display: none;
  }
#location_id2 {
    display: none;
  }

  .top_info ul li span {
    font-size: 16px;
  }
  
.logo_menu {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 60px;
}

  .logo {
        width: 15%;
        align-items: center;
        text-align: left;
}

.logo img {
        width: 100%;
        object-fit: contain;
        margin-left: 0px;
        text-align: left;
}





.main-menu {
  width: 70%;
  display: flex;
  justify-content: right;
  align-items: center;
  margin-right: 10px;
  /* overflow: hidden; */
}

.menu > li > a {
    display: block;
    padding: 10px;
    color: #252525;
    text-decoration: none;
    font-size: 1.8vw;
    font-weight: 450;
    white-space: nowrap;
    overflow: hidden;
  }

.submenu {

  height: 80px;
  width: 4vw;

}

.submenu li a {
    padding-top: 20px;
    padding: 10px 15px;
    height: 40px;
    width: 100%;
    font-size: 1.7vw;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

  .languages{
        width: 15%;
        align-items: center;
        margin-right: 0px;
}


.about-text p {
       text-align: left;
       padding: 0 10px 10px 0;
       margin-right: 50px;
       text-align: justify;
       font-size: 14px;
       /* overflow: hidden; */
    }

.customers-logo{
  height: 180px;
}

  .logo-strip img {
  height: 70px;
}
  
.news-item h5 {
        font-size: 15px;
    }

.footer-logo{
  width: 20%;
}

.contact-info{
  width: 80%;
  margin-left: 20px;
}

#map-icon-id{
  display: block;
}

.map{
  display: none;
}

.standard{
  width: 0%;
  display: none;
}

.copyright2{
  width: 100%;
  text-align: center;
  justify-content: center;
}


  
}



/* 2-------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 760px) {
  
 .top_bar {
  height: 40px;
 } 
  
  #nameid {
    font-size: 14px;
  }
  
.top_info ul li {
    margin-left: 5px;
  }

  .top_info ul li span {
    display: none;
    margin-left: 0px;
  }

.logo_menu {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 40px;
        padding: 0;
        margin: 0;
}

.logo {
        width: 40%;
        align-items: center;
        text-align: left;
        margin-left: 0px;
        justify-content: flex-end;
        
}

.logo img {
        width: 100px;
}

  .main-menu {
    display: none;
    width: 0%;
    visibility: hidden;
  }

.languages{
        width: 65%;
        align-items: center;
        margin-right: 10px;
}

.img_flag{      
        width: 25px;
        height: 20px;
}


      /* Nút hamburger */
    .hamburger {
      display: block;
      /* justify-content: flex-end; */
      align-items: center;
      visibility: visible;
      width: 6cqmin;
      font-size: 25px;
      cursor: pointer;
      padding: 0px;
      margin-bottom: 5px;
      text-align: right;
      margin-right: 10px;
    }

    /* Overlay khi menu mở */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 9;
    }

    /* Menu dọc */
    .side-menu {

      visibility: visible;
      position: fixed;
      top: 40px;
      right: -310px; /* Ẩn khỏi màn hình */
      width: 280px;   /* hoặc đổi thành 50vw nếu muốn */
      height: 400px;
      background-color: #fff;
      box-shadow: -2px 0 5px rgba(0,0,0,0.3);
      transition: right 0.3s ease;
      z-index: 10;
      padding: 20px;
      border-radius: 10px;
    }

    .side-menu.active {
      right: 0;
    }

    /* Nút đóng */
    .close-btn {
      font-size: 24px;
      cursor: pointer;
      text-align: right;
      margin-bottom: 20px;
    }

    .side-menu ul {
      list-style: none;
    }

    .side-menu li {
      margin: 15px 0;
      font-size: 18px;
    }

    .side-menu a {
      text-decoration: none;
      color: #333;
    }

.background_top {
        height: 80px;

    }


.slider {
      /* top: 80px; */
      margin-top: 0px;
    }



.main-content {
        width: 100%;
        margin-top: 0px;
    }

.product-list{
      display: flex;
      flex-direction: column;
    }

    .products-highlight h2{
        font-size: 20px;
    }

    .product-item {
        width: 90vw;
        margin-bottom: 10px;
    }

    .product-item img {
        width: 30%;
        aspect-ratio: 16 / 10;
    }

  .about-us{
        width: 100%;
        display: flex;
        height: 420px;
        flex-direction: column;
        background-color: #ffffff;
        margin-top: 10px;
    }

    .about-text{
        width: 100%;
        height: auto;
        display: block;
    }

    .about-text h2 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .about-text h4 {
       text-align: left;
       /* padding: 0 10px 10px 0; */
       margin-right: 10px;
       text-align: justify;
       font-size: 14px;
       margin-top: 0px;
       /* overflow: hidden; */
    }

      .about-text p {
       text-align: left;
       padding: 0 10px 10px 0;
       margin-right: 10px;
       text-align: justify;
       font-size: 13px;
       /* overflow: hidden; */
       
    }

    .statics{
        width: 100%;
        height: 130px;
        flex-direction: row;
        margin-top: 0px;
        background-color: #ffffff;
        padding: 10px;
    }

    .statistics-row{
        margin-top: 0px;
        height: 60px;
    }


    .stat-item {
        height: 50px;
        display: block;
        text-align: center;
        /* background-color: #ffb3b3; */
    }

    .stat-item h2{
        margin-top: 0px;
        margin-bottom: 10px;
        color: #006188;
    }

    .stat-item p{
        height: 50px;
        margin-top: 10px;
        font-size: 15px;
    }

.customers-logo{
  height: 130px;
  padding-top: 10px;
}

.customers-logo h2{
  font-size: 20px;}

  .logo-strip img {
  height: 50px;
}

.news-updates{
        height: auto;
        margin-bottom: 0px;
        box-shadow: none;
}


.news-updates h2{
        font-size: 20px;
    }

.news-list{
        width: 100%;
        height: auto;
        flex-direction: column;
        margin-bottom: 0px;
        padding: 0;
        box-shadow: none;

}

.news-item {
        width: 100%;
        height: auto; 
        margin: 10px auto;
        padding: 0 auto;

}

.footer{
  width: 100%;
  height: auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0px;
  background-position: 10% center;
}


.footer-content{
  width: 100%;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0px;
  padding: 10px 0;
}

.footer-logo{
  width: 50%;
  
}

.contact-info{
  /* display: none; */
  width: 100%;
}

.contact-info p{
  color: #252525;
  font-size: 16px;
  margin: 5px;

}

#name-company-ft{
  font-size: 19px;
  font-weight: 600;
  color: #D60C2E;
  margin: 10px 10px 10px 10px;
  text-align: center;
}

#name-pc{
  display: none;
}

#name-mb{
  display: inline;
}

.map{
  display: none;
}

.social-media{
  width: 100%;
  height: 80px;
  justify-content: center;
  margin: 10px auto;
}

#map-icon-id{
  display: block;
}

.copyright{
  width: 100%;
  height: 80px;
  margin-top: 20px;
  /* display: none; */
}

.standard{
  width: 0%;
  display: none;
}

.copyright2{
  width: 100%;
  height: 50px;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 14px;
}

.contact-info p{
  margin-left: 30px;
}

h2{
  font-size: 22px;
}

h3{
  font-size: 20px;
}

}