@charset "utf-8";
/* CSS Document */
.carousel {
    width: 90%;
    overflow: hidden;
    margin: 30px auto;
}

.carousel-track {
    display: flex;
    width: max-content;
}

.marquee {
    animation: scroll-marquee 30s linear infinite;
}

/* smooth continuous movement */
@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* pause on hover */
.carousel:hover .marquee {
    animation-play-state: paused;
}

/* Logo card */
.logocarousel {
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

    .logocarousel .image1 {
      width: 100px;
      height: 70px;
/*      filter: brightness(0) saturate(100%) invert(49%) sepia(86%) saturate(277%) hue-rotate(154deg) brightness(94%) contrast(89%);*/
		 top : 0px;
		  position: absolute;
		  z-index: 1;
		transition: top 0.6s ease-in-out; /* smooth slide */
    }
	  .logocarousel .image2 {
       width: 120px;
      height: 70px;
/*      filter: brightness(0) saturate(100%) invert(49%) sepia(86%) saturate(277%) hue-rotate(154deg) brightness(94%) contrast(89%);*/
	  top : -100px;
		  position: absolute;
		  z-index: 1;
		  transition: top 0.6s ease-in-out; /* smooth slide */
    }
	