.breadcrumbs {
    background-color: #f8f9fa;
    padding: 20px 0;
  }
  
  .banner {
    position: relative;
    overflow: hidden;
    display: block;
  }
  
  .banner {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  
  .image-wrapper {
      position: relative;
      display: inline-block; 
  }
  
  .image-wrapper::before,
  .image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
  }
  
  .image-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
  }
  
  .image-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
  }
  
  .banner-img {
      width: 100%; 
      height: auto;
      object-fit: cover;
    }
  
  .banner-img1 {
    display: block;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
  }
  
  .banner-opacity {
    opacity: 0.5;
  }
  
  /* .banner-opacity1 {
    opacity: 0.1;
  } */
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .logo-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  
  .logo-overlay img {
    max-width: 100%;
    height: auto;
  }
  
  .inner-page {
    padding: 40px 0;
    
  }
  
  .embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .embed-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  
  .banner::before,
  .banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px; 
    z-index: 2;
  }

/* Adjusted Hero Section */
.adjusted-hero {
    /* The margin-top value to be overridden with hero.js */
    margin-top: 0;
}

  /* @media (min-width: 1024px) and (max-width: 1440px) {
    .banner-image1 {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .header {
        position: relative;
        z-index: 10;
    }
} */

  @media (max-width: 576px) {
    .logo-overlay {
      width: 40%;
    }
  }
  
  @media (min-width: 576px) {
    .logo-overlay {
      width: 40%;
    }
  }
  
  @media (max-width: 768px) {
      .image-wrapper::before, .image-wrapper::after {
          display: none;

      }
  }
  
  @media (min-width: 768px) {
    .embed-container iframe {
      width: 600px;
      height: 450px;
    }
  }
  
  @media (min-width: 1024px) {
    .embed-container iframe {
      width: 800px;
      height: 450px;
    }
  }
  