// Setup for Icon Overlay Positioning
.entry-content.with-icon-overlay {
  position: relative;
  margin-top: 0;
}

// icon overlay styling & position
.logo-overlay {
  position: absolute;
  // top: 50px;
  left: -100px;
  width: 650px;
  height: 430px;
  @media (max-width: 1440px){
    // top: 10vw;
    left: 100px;
    width: 30vw;
  }
  @media (max-width: 768px){
    // top: 240px;
    left: 5%;
    // width: 240px;
    width: 300px;
  }
  @media (max-width: 768px){
    width: 200px;
  }
  z-index: 2;
  display: flex;
  align-items: center;
  img {
    width: 100%;
    // height: 100%;
    // object-fit: contain;
    // object-position: center;
  }
}