ul.dropdown-menu {
  display: none; /* Hidden initially */
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: black; /* Black background for dropdown */
}
ul.dropdown-menu li a {
  font-family: 'Advent Pro', sans-serif; /* Set Advent Pro font */
  font-size: 16px; /* Set font size */
  color: white; /* Set font color to white */
  text-decoration: none; /* Remove underline from links */
}

/* Show dropdown when the parent has 'active' class */
.active .dropdown-menu {
  display: block;
}


/* ------ */


/* Popup Styles */
/* Popup Styles */
.popup {
  display: none; /* Hide the popup by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
  justify-content: center; /* Center the content */
  align-items: center; /* Center the content */
  display: flex; /* Use flexbox for centering */
}

/* Image Styles */
.popup img {
  max-width: 90%; /* Limit width for responsiveness */
  max-height: 90%; /* Limit height for responsiveness */
  border-radius: 8px; /* Optional: rounded corners */
  position: relative; /* Allow absolute positioning of close button */
  transition: transform 0.3s ease; /* Smooth transition for zoom */
}

/* Media Queries for Larger Screens */
@media (min-width: 768px) {
  .popup img {
      max-width: 80%; /* More space on larger screens */
      max-height: 80%;
  }
}

/* Media Queries for Extra Large Screens */
@media (min-width: 1200px) {
  .popup img {
      max-width: 70%; /* Even more space on very large screens */
      max-height: 70%;
  }
}

/* Close Button Styles */
.close {
  position: absolute; /* Position it absolutely within the popup */
  top: 20px; /* Adjust as needed */
  right: 30px; /* Adjust as needed */
  color: #fff; /* White color */
  font-size: 40px; /* Font size */
  font-weight: bold; /* Font weight */
  cursor: pointer; /* Pointer cursor on hover */
  z-index: 1001; /* Sit above the image */
}

/* Ensure close button is over the image */
.popup img {
  display: block; /* Make sure the image is a block to position correctly */
  position: relative; /* Allow absolute positioning for the close button */
}

.close:hover,
.close:focus {
  color: #bbb; /* Change color on hover */
}

/*----*/


#logo_container {
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Aligns the content to the right */
}

/* Adjust the wrapper if necessary */
.logo_wrapper {
    max-width: 100%;
    display: flex;
    justify-content: flex-end; /* Ensures the image is aligned to the right */
}

/* Responsive Image */
.responsive-img {
    height: auto;
    transition: opacity 0.5s ease-in-out; /* Transition effect for lazy load */
    opacity: 0; /* Start with the image invisible */
}

/* Transition effect when image is loaded */
.responsive-img.lazyloaded {
    opacity: 1; /* Make the image visible once it's loaded */
}

/* Media query for smaller screens (phones) */
@media (max-width: 599px) {
    .responsive-img {
        width: 50%; /* Smaller image on phones */
    }
}

/* Media query for larger screens (laptops) */
@media (min-width: 600px) {
    .responsive-img {
        width: 95%; /* Larger image on laptops */
    }
}

/* Hide elements by default */
.laptop-only, .phone-only {
    display: none;
}

/* Show for laptops and larger screens */
@media (min-width: 600px) {
    .laptop-only {
        display: block;
    }
}

/* Show for phones and smaller screens */
@media (max-width: 599px) {
    .phone-only {
        display: block;
        z-index: 1;
        padding-top: 60px;
        padding-left: 50px;
    }
}

/* Default styling for .block_list */
.block_list {
    display: flex;
    flex-direction: column;
    position: relative; /* Make the container a positioning context */
  }
  
  /* Media query for mobile devices */
  @media (max-width: 768px) {
    .block_list {
      flex-direction: column;
    }
  
    .block_container {
      display: flex;
      flex-direction: column;
    }
  
    .slider {
      display: block;
    }
  
    .slider > div {
      display: block;
    }
  
    .block {
      width: 100%; /* Ensure each block takes full width */
      box-sizing: border-box;
      padding: 5px; /* Adjust for spacing between blocks */
    }
  
    .block_pic {
      width: 100%; /* Ensure the image container takes the full width */
    }
  
    .block_pic img {
      width: 100%; /* Ensure images are responsive */
    }
  
    .owl-buttons {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none; /* Ensure the buttons do not interfere with the content */
    }
  
    .owl-buttons .owl-prev,
    .owl-buttons .owl-next {
      pointer-events: all; /* Re-enable pointer events for the buttons */
      width: 15vw; /* Responsive width based on viewport width */
      max-width: 50px; /* Set maximum width */
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .owl-buttons .owl-prev {
      left: 0;
    }
  
    .owl-buttons .owl-next {
      right: 0;
    }
  
    .owl-buttons img {
      width: 100%; /* Make the image fill the container */
      height: auto;
    }
  }
  .image-viewport {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px; /* Left and right padding */
    box-sizing: border-box;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Even space between image blocks */
    width: 100%;
    max-width: 1200px; /* Adjust based on your layout needs */
}

.image-block {
    margin: 10px;
    text-align: center;
    flex: 1 1 calc(33.33% - 20px); /* Ensure 4 blocks per row */
    box-sizing: border-box;
}

.image-block img {
    width: 300px; /* Fixed image width */
    height: 300px; /* Fixed image height */
    object-fit: cover; /* Crops the image to fit the container */
    object-position: top; /* Crops from the top */
}

.image-block h1 {
    font-size: 30px;
    margin: 10px 0;
}

.image-block h1 b {
    font-weight: bold;
    color: #000;
}

.image-block p {
    font-size: 20px;
    margin: 5px 0;
    color: #666;
}

/* Styles for smaller screens */
@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
        align-items: center;
    }

    .image-block {
        width: 100%;
        max-width: 300px; /* Adjust for smaller devices */
    }

    .image-block img {
        width: 100%;
        height: auto;
        object-position: top;
    }
}

@media (max-width: 768px) {
  .panel_logo {
      padding-top: 70px;
      padding-left: 20px; /* Adjust padding for smaller screens */
  }

  .logo_pieces img {
      max-width: 80%; /* Reduce the image size on smaller screens */
  }
}

/* Media query for very small devices */
@media (max-width: 480px) {
  .panel_logo {
     padding-top: 80px;
     padding-left: 30px; /* Further adjust padding for very small screens */
  }

  .logo_pieces img {
      max-width: 70%; /* Further reduce the image size on very small screens */
  }
}




  
  
  
  




