/* header css */
#header {
  position: fixed;
  background-color: black;
  width: 100vw;
  height: 5vh;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

#header .contact_phone {
  color: white;
  padding-left: 10px;

}

#header .contact_phone p {
  line-height: 5vh;
  display: inline;

}

#header .network_contact {
  margin-right: 15px;
}

#header .network_contact a {
  line-height: 5vh;
  display: inline;
  margin: 0 5px;
}

/* slider css */
#slider {
  position: relative;
  padding-top: 5vh;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

}

#slider .logo {
  display: flex;
  gap: 20px;
  margin: 15px 0px 15px 70px;
  cursor: pointer;
}

#slider .logo img {
  width: 80px;
  height: 80px;
}

#slider .logo h1 {
  color: #035c8f;
  font-size: 36px;
  line-height: 22px;
}

#slider .menu {
  margin-right: 90px;
  display: flex;
  gap: 30px;
}

#slider .menu_button {
  display: none; /* Ẩn nút menu mặc định */
}

#slider .menu a {
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
  font-weight: bold;
  text-decoration: none;
  color: black;
  font-size: 1.5rem;
  padding: 5px 5px;
  border-left: none;
}

#slider .menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: black;
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

#slider .menu a:hover::after {
  width: 85%;
}
/* Định dạng cho phần thông tin */
.info {
  display: flex;
  margin: 20px 0;
  align-items: center;
}

.info img {
  width: 150px;
  height: 100%;

  margin-right: 20px;
}

.info-text h1 {
  font-size: 24px;
  color: #333;
}

.info-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media only screen and (max-width: 600px) {
  #header .contact_phone {
    color: white;
 
  }

  #header .contact_phone p {
    line-height: 5vh;
    display: inline;
  }

  #header .network_contact {
    margin-right: 0px;
  }

  #header .network_contact a {
    line-height: 5vh;
    display: inline;
  }

  #header {
    font-size: 12px;
  }

  #slider .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    top: 60px; /* Dưới logo */
    z-index: 1000;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 0;
    width: 100%;
    text-align: center;
    height: 7vh;
    padding-top: 20px;
  }

  #slider .menu a {
    font-size: 18px;
    text-align: center;
  }

  #slider .logo {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  #slider .menu_button {
    display: block; /* Hiển thị nút menu khi responsive */
    font-size: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  #slider .icon {
    display: block;
    color: black;
    font-size: 20px;
  }

  #slider .logo h1 {
    font-size: 22px;
  }
}

.show-menu .menu {
  display: flex !important;
  align-items: center;
  width: 100%;
}

.show-menu .logo {
  display: none !important;
}
