*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
.navbar{
  margin-left: 10vw;
}
.slideshow{
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 0;
    display: flex;
}
.photo-slideshow {
    height: 100%;
    width: 33.3333333333333vw;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    display: flex;
flex-direction: column;
    background-color: black;
  }
  
  .photo-slideshow  div {    
    width: 100%;
    height: fit-content !important;

    top: 0;
    left: 0;
    height: 100%;
    transform: translate3d(0, 0, 0);
    display: flex;
    flex-direction: column;
  }
  .photo-slideshow  div img {
    min-height:400px ;
    width: max-content;
    max-height:650px ;

    width: 100%;
    object-fit: cover;
    object-position: 100%;
    border: 2px solid black;
    box-shadow: inset 300px 300px 100px black;
  }
  .photo-slideshow .mover-1 {
    animation: moveSlideshow 120s linear infinite;
    display: flex;
  
}
  .photo-slideshow .mover-2 {

    animation: moveSlideshow 120s linear infinite;
  }
  
  

.photo-slideshow-two{
flex-direction: column-reverse;
}  
.photo-slideshow-two .mover-1{
    animation: moveSlideshow-right 120s linear infinite ;
    display: flex;
}
.photo-slideshow-two .mover-2{
    opacity: 100;   
    transition: opacity 0.5s ease-out;
    /* background-position: 0 -50vh; */
    animation: moveSlideshow-right 120s linear infinite ;
}




.overlay{
    position: absolute ;
    width: 100% !important;
    height: 100% !important;
/*     background-color: rgba(0, 0, 0, 0.55); */
}
.logo{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img{
  width: 50%;
/*   height: 30vh; */
  z-index: 1;
  min-width: 340px;
}
@keyframes moveSlideshow {
    100% { 
      transform: translateY(-100%);  
    }
  }
  @keyframes moveSlideshow-right {
    100% { 
      transform: translateY(100%);  
    }
  }
  @media (max-width:900px) {
    .photo-slideshow  div img {
        min-width:400px ;}

  }
  @media (max-width:555px) {
    .photo-slideshow  div img {
      min-width:0px ;}
    .photo-slideshow div img{
        min-height: 30vw;
max-height: 50vw;
        object-fit: fill;
        object-position: 100%;
        min-height: 0 !important;
    }

  }

.photo-slideshow div img{
max-height: 70vh;
object-position: top;
}

@media (max-width:555px) {
	  .photo-slideshow .mover-1 {
    animation: moveSlideshow 70s linear infinite;
    display: flex;
  
}
  .photo-slideshow .mover-2 {

    animation: moveSlideshow 70s linear infinite;
  }
  
}

