*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  /*body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
  }*/

  .container{
    width:100%;
    height: 300px;
    overflow: hidden;
    /*margin-bottom:80px;*/
  }

   
  .image-box{
    display: flex;
    height: 100%;
    width: 400%;
    justify-content: space-between;
  }
  .image-box{
    animation: imgBox 50s linear infinite;
  }
  @keyframes imgBox{
    0%{
      margin-left: 0;
    }
    100%{
      margin-left: -200%;
    }
  }


  .image-box:hover{
    animation-play-state: paused;
    cursor:progress;
  }
  .image-box .image{
    width: calc(100% - 100px);
    height: 100%;
  }
  .image-box img{
    height: 400px;
    width: 100%;
    object-fit: cover;
  }

  .tagline {
    width:100%;
    text-align: center;
    font-size: 30px;
    position: relative;
  }
  
  .tagline img {
    width:100%;
    
  }
  
  .tagline h3 {
  color: #eada18;
  font-size:80px;
  font-weight: bold;
  line-height:10px;
  position: relative;
  bottom: 260px;
  }
  
  /* .tagline h3:before {
    content:"";
    display:block;
    width:285px;
    height:2px;
    background:#eada18;
    position:absolute;
    left:0px; 
    top:50%;
  
  
  }
  
  .tagline h3:after {
    content:"";
    display:block;
    width:285px;
    height:2px;
    background:#eada18;
    position:absolute;
    right:0px; 
    top:50%;
    
  }*/
  
  




