.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay::before {
    background-color: rgba(223, 71, 92,.15);
  /*background: linear-gradient(180deg,rgba(56,1,20,.5),transparent);*/
}

.case-media-fw-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
}

.case-desktop-element,
.case-desktop-element-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-image-container{
  display: none;
}
.case-mobile-element-video {
  display: none;
}

@media (max-width: 767px){
  .mobile-image-container{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 80vh;
    width: 100%;
    min-width: 100vw;
    z-index: 3;
    display: block;
  }
  
    .case-mobile-element-video {
        height: 80vh;
        width: 100%;
        min-width: 100vw;
        z-index: 3;
        display: block;
        object-fit: cover;
  }
  
  .case-desktop-element {
    display: none;
}
  .case-desktop-element-video {
    display: none;
}


