.amitabh-slideshow {
    height: 150px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    background-color: black;
  }
  
  .amitabh-slideshow > div {
    height: 150px;
    width: 5000px;
    background: url(../images/movies/amitabh-collage.jpg);
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
  }

  .amitabh-slideshow .mover-1 {
    animation: moveSlideshow 40s linear infinite;
  }
  
  .amitabh-slideshow .mover-2 {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    background-position: 0 -200px;
    animation: moveSlideshow 40s linear infinite;
  }
  
  @keyframes moveSlideshow {
    100% { 
      transform: translateX(-66.6666%);  
    }
  }
    
  .moviesrow {
    padding: 10px 10px 10px 10px;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .movcols1 {
    flex: 75%;
    width: 75%;
    
  }

  .movcols2 {
    flex: 25%;
    width: 25%;
  }

  .movdatarow {
    border: 1px solid rgb(201, 199, 199);
    display: flex;
    margin-bottom: 10px;
  }

  .movth {
    width: 25%;
  }

  .movth img {
    width: 100%;
    object-fit: cover;
    height: 100%;
  }

  .movdcontainer {
    width: 75%;
    overflow: visible;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .movdcontainer ul {
    display: flex;
    list-style: none;
    margin: 0px 5px 5px 10px;
    padding: 0;
  }
  
  .movhdr {
    width: 25%;
    height: auto;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    color: rgb(2, 80, 67);
    margin-right: 5px;
    text-align: right;
    background-color: #f1f1ef;
    padding: 1px;
    
  }

  .movdata {
    width: 75%;
    height: auto;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    color: #161101;
    text-align: left;
    background-color: #dededd;
    padding: 1px 2px 0px 8px;
  }

.mvdb {
  font-weight: bold;
}
  

@media screen and (max-width: 768px) {

  .amitabh-slideshow {
    height: 75px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    background-color: black;
  }

  .amitabh-slideshow > div {
    height: 75px;
    width: 2500px;
    background: url(../images/movies/amitabh-collage-mobile.jpg);
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
  }

  .movdata {
    width: 75%;
    height: auto;
    font-family: 'Figtree', sans-serif;
    font-size: .8rem;
    color: #161101;
    text-align: left;
    background-color: #dededd;
    padding: 1px 2px 0px 8px;
  }

  .movcols1 {
    flex: 100%;
    width: 100%;
  }

  .movth {
    width: 25%;
  }

  .movhdr {
    width: 25%;
    height: auto;
    font-family: 'Figtree', sans-serif;
    font-size: .7rem;
    color: rgb(2, 80, 67);
    margin-right: 5px;
    text-align: right;
    background-color: #f1f1ef;
    padding: 1px;
    
  }


}


