/* header.css */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white-back);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  z-index: 1000;
}

.vip-header-content {
  display: flex;
  justify-content: space-between;
  width: 1400px; 
}

.vip-header-icons {
  display: flex;
  align-items: center;
  margin-left: 30px; 
}

.vip-header-logo {
  max-width: 150px;
}

.vip-header-icon {
  width: 30px; 
  height: 30px; 
  margin-right: 30px; 
}

.vip-logo-div {
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  flex-grow: 1; 
}


.menu {
  display: flex;
  justify-content: center; 
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu ul {
  list-style: none; 
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li {
  margin: 0 15px;
}

.catalog-menu {
  text-decoration: none;
  color: var(--black-text); 
  font-weight: bold;
  font-size: 16px; 
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.catalog-menu:hover {
  color: var(--dark-red);
}




.banner_wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
  height: 300px;
}
.slick-initialized {
  visibility: visible;
}
.slider .banner:not(:first-child) {
    visibility: hidden;
}
.slider .banner {
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  color: white;
  border: none;
  font-size: 20px;
  z-index: 10;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
}

.banner{
    position: relative;
}
.banner_text {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    padding: 15px;
    color: #fff;
    width: 100%;
}


@media (max-width: 1200px) {
 
    .banner_wrapper {
        height: 250px;
      }
    
      .slick-prev, .slick-next {
        font-size: 18px;
      }
}

@media (max-width: 768px) {
 
  .catalog-menu {
    font-size: 14px; 
    padding: 8px 16px; 
  }
  .banner_wrapper {
    height: 150px; 
  }

  .slick-prev, .slick-next {
    font-size: 16px;
  }
  
  .banner_text {
    display: none;
  }

}
@media (max-width: 480px) {
  .banner_wrapper {
    height: 100px; 
  }

  .slick-prev, .slick-next {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .catalog-menu {
    font-size: 12px;
    padding: 6px 12px; 
  }
@media (max-width: 400px) {
    .vip-header-logo {
      max-width: 100px;
      margin: 10px 10px 10px 30px; 
    }
    
    .vip-header-icons {
      display: flex;
      align-items: center;
      margin-left: 0px; 
    }
    
    .vip-header-icon {
      width: 30px; 
      height: 30px; 
      margin-right: 10px; 
    }

    .vip-header-logo {
      margin: 10px 20px 10px 20px; 
    }
}

