#fadeinout-mobile .image-fade-container {
  position: relative;
  overflow: hidden;
  border: 4px solid #000;
  background: #000;
}
#fadeinout-mobile .fade-image {      
  opacity: 0;
  transition: opacity 1.5s ease;
}
#fadeinout-mobile .image1 {
  position: relative;
  z-index: 1;
  opacity: 1; /* Image 1 is visible first */
  width: 100%;
}
#fadeinout-mobile .image2 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 2;
}
#fadeinout-mobile .image2.visible {
  opacity: 1;
}
#fadeinout-mobile.image2.hidden {
  opacity: 0;
}
@media (min-width: 1140px) {
	#fadeinout-mobile {display: none;}
}
 @media screen and (max-width:767px){} @media screen and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1200px), screen and (min-width: 768px) and (max-width: 1200px){} @media screen and (-webkit-min-device-pixel-ratio: 1) and (min-width: 1200px){} @media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1200px){}