/* v.972 — extracted from identical inline HTML styles. */
/* Create a Parallax Effect */
  .bgimg-1, .bgimg-2, .bgimg-3 {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  /* First image (Logo. Full height) */
  .bgimg-1 {
    background-image: url("../img/parallax400.webp");
    /* min-height: 100%; */
    min-height: 200px;
  }
  
  /* Second image (Portfolio) */
  .bgimg-2 {
    background-image: url("../img/parallax0.webp");
    min-height: 300px;
  }
  
  /* Third image (Contact) */
  .bgimg-3 {
    background-image: url("../img/parallax400.webp");
    min-height: 300px;
  }
  
  .w3-wide {letter-spacing: 10px;}
  .w3-hover-opacity {cursor: pointer;}
  
  /* Turn off parallax scrolling for tablets and phones */
  @media only screen and (max-device-width: 1600px) {
    /* .bgimg-1, .bgimg-2, .bgimg-3  */
    .bgimg-2, .bgimg-3 
    {
      background-attachment: scroll;
      min-height: 600px;
    }
  }
