.bg-img {
    /* The image used */
    background-image: url("../../static/img/quin_home_banner.jpg");
  
    /* Control the height of the image */
    min-height: 875px;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .centered-left {
    position: absolute;
    top: 15%;
    left: 16px;
  }