body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
  }
  .navbar {
    background-color: #0345fc;
    overflow: hidden;
    padding: 5%;
  }
  .navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  .navbar a:hover {
    background-color: #ddd;
    color: #333;
  }
  .navbar .logo {
    float: left;
    padding: 14px 20px;
    font-size: 20px;
    text-decoration: none;
    color: #f2f2f2;
  }
  .navbar .contact-btn {
    float: right;
    padding: 14px 20px;
    font-size: 16px;
    text-decoration: none;
    color: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
  }
  .navbar .contact-btn:hover {
    background-color: #f2f2f2;
    color: #333;
  }

  /*5*2 box*/
  
  .container {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 1%;

}

.box {
    width: 25%;
    height: 20vw;
    margin-bottom: 20px;
    border: 1px solid #ffffff;
    padding: 2.7%;
    box-sizing: border-box;
    position: relative; /* Add position relative */
}

.box img {
 
    width: 100%; /* Change max-width to width */
    height: 100%; /* Change height: auto to height: 100% */
    object-fit: cover; /* Ensure image fills the box */
    display: block;
}

.text-box {
  text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Adjust background color and transparency */
    /* Adjust padding */
    box-sizing: border-box;
}
@media only screen and (min-width: 600px) {
  .box {
      width: 48%; /* Adjust width for tablets */
  }
}

@media only screen and (min-width: 768px) {
  .box {
      width: 32%; /* Adjust width for larger tablets */
  }
}

@media only screen and (min-width: 1024px) {
  .box {
      width: 24%; /* Adjust width for laptops */
  }
}
  /*5*2 box*/
  /*Ad Banner*/
  img {
    vertical-align: middle;
  }
  
  /* Position the image container (needed to position the left and right arrows) */
  .container {
    position: relative;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: left;
    width: 16.66%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  /*Ad Banner*/
  /*wholesale/retail gallery*/
  .gallery {
   
    display: flex;
    flex-wrap: wrap;
}

.thumbnail {
    width: 200px;
    height: auto;
    margin: 10px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}
  /**/