.content-container{
    display: block; /* Important for preventing extra space below the image */
    width: 100%;    /* Makes the image take up the full width of its container (the slide) */
    height: 100%;   /* Maintains the image's aspect ratio */
    overflow-x: hidden;
    text-align: center;
}

img{
  height: 100%;
  width: auto;
  background-position: center;
}

.swiper-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    display: block;
}

.slide-desktop-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shadow-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}


.slide-content-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items:center ;
    justify-content: center;
    padding: 10px;
    width: 100%;
    height:100%;
    max-width: 60%;
    max-height: 55%;
}

@media (max-width:767px) {
  .mobile-text{
    font-size: 2rem;
  }
}



.slide-logo{
  height: 428px;
  width: 378px;

  max-width: 100%;
  height: auto;
}

@media (max-width:768px) {
  .slide-logo{
    width: 45%x;
    height: auto;
  }
}

.slide-text{
  color:white;
}

@media (max-width: 767px) {
    .hide-on-mobile {
      display: none !important;
    }
  }

@media (min-width: 767px) {
  .hide-on-desktop{
    display: none !important;
  }
}