
/* ------------------------------ IMPRINT HEADING  --------------------------------------- */
#imprint-p{
    margin-top: 100px;
  }
  #imprint-p .container-fluid {
      position: relative;
      width: 100%;
      margin: 0 auto;
      overflow: hidden;
    }
    #imprint-p .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 350px;
      background-color: rgba(0, 0, 0, 0.5); /* Adjust the transparency as needed */
    }
    #imprint-p .background-image {
      width: 100%;
      height: 350px;
      object-fit: cover;
      background-size: cover;
    }
  
    #imprint-p .page-heading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--white);
      padding: 10px;
    }
    
  
    
    #imprint-p .page-heading h3 {
      color: var(--white);
    text-align: center;
    }
    
    
    /* responsive */
    @media only screen and (max-width: 600px) {
      #imprint-p{
        margin-top: 100px;
      }
      #imprint-p .container-fluid {
        padding: 20px;
        position: relative;
        display: flex;
    
      }
      #imprint-p .page-heading {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--black);
        padding: 10px;
    
      }
    
      #imprint-p .page-heading h3 {
   
        color: var(--white);
        padding: 10px;
        text-align: center;
      
    
      }
    
      #imprint-p .background-image {
         width: 100%;
   height: 300px;
    object-fit: cover;
    background-size: cover;
        
      }
      #imprint-p .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 300px;
        background-color: rgba(0, 0, 0, 0.5); /* Adjust the transparency as needed */
      }
  
    }
    
  
  
  
    
    