@charset "utf-8";
/* CSS Document */
.astoundLogoListContainer{
    height: 50px;
    width: 100vw;
	overflow-x: hidden;

}	
.astoundLogolist {
    height: 50px;
	display: flex;
 	 animation: scrollText 40s infinite linear;
}
.astoundLogolistBG {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 40px;
    width: auto;
    margin-right: 40px;
}
.astoundLogolistBG img {
    opacity: 0.0;
	width:auto;
	height:100%;
	max-width:120px;
}
@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-1000px);
  }
}