.endless__ticker {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
background-color: #000;
  margin-top: 5rem;
  padding-bottom: 6.25rem;
  padding-right: 2rem;
  padding-left: 2rem;
	margin-top: 5rem;
}

/*@media screen and (min-width:1025px){
	.endless__ticker {
		margin-top: 25rem;
	}
}

@media screen and (max-width:1024px) and (max-width:921px){
	.endless__ticker {
		margin-top: 40rem;
	}
}*/

.endless__ticker:before,
.endless__ticker:after {
  content: "";
  height: 100%;
  top: 0;
  width: 10%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.endless__ticker-items {
  flex-shrink: 0;
  display: flex;  
  justify-content: space-around;
  min-width: 100%;
}

.endless__ticker-item-image {
    height: 100%;
    display: flex;
    align-items: center;
}

.endless__ticker-rows {
  display: flex;
  flex-direction: column;
  
}

.endless__ticker-items .endless__ticker-rows  .endless__ticker-items-row .endless__ticker-item:nth-child(1) .endless__ticker-item-image img{
margin-top:19px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row .endless__ticker-item:nth-child(2) .endless__ticker-item-image img{
margin-top:15px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row .endless__ticker-item:nth-child(3) .endless__ticker-item-image img{
margin-top:19px;
}

.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row .endless__ticker-item:nth-child(4) .endless__ticker-item-image img{
margin-top:21px;
}

.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row .endless__ticker-item:nth-child(6) .endless__ticker-item-image img{
margin-top:13px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row .endless__ticker-item:nth-child(7) .endless__ticker-item-image img{
margin-top:10px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row .endless__ticker-item:nth-child(8) .endless__ticker-item-image img{
margin-top:13px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row .endless__ticker-item:nth-child(9) .endless__ticker-item-image img{
margin-top:9px;
}


/* */
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(1) .endless__ticker-item-image img{
margin-top:13px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(2) .endless__ticker-item-image img{
margin-top:10px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(3) .endless__ticker-item-image img{
margin-top:10px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(4) .endless__ticker-item-image img{
margin-top:15px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(5) .endless__ticker-item-image img{
margin-top:19px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(6) .endless__ticker-item-image img{
margin-top:13px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(7) .endless__ticker-item-image img{
margin-top:8px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(8) .endless__ticker-item-image img{
margin-top:10px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(9) .endless__ticker-item-image img{
margin-top:10px;
}
.endless__ticker-items .endless__ticker-rows .endless__ticker-items-row--second .endless__ticker-item:nth-child(10) .endless__ticker-item-image img{

}

@media screen and (min-width:1000px) {
  .endless__ticker-rows {
    row-gap: 40px;
  }
}
@media screen and (max-width:999px) {
  .endless__ticker-rows {
    row-gap: 35px;
  }
	.endless__ticker-items .endless__ticker-rows .endless__ticker-item-image img{
		max-width:80%;	
	}
}
.endless__ticker-items-row {
  display: flex;
}

/*.endless__ticker-items-row .endless__ticker-item-image{
  margin-right: 120px;
}*/

@media screen and (min-width:1021px){
	.endless__ticker-items-row .endless__ticker-item-image{
	  margin-right: 120px;
	}
	.endless__ticker-items-row--second .endless__ticker-item-image{
	  margin-right: 120px;
	}
}
@media screen and (max-width:1020px) and (min-width:941px){
	.endless__ticker-items-row .endless__ticker-item-image{
	  margin-right: 106px;
	}
	.endless__ticker-items-row--second .endless__ticker-item-image{
	  margin-right: 106px;
	}

}
@media screen and (max-width:940px){
	.endless__ticker-items-row .endless__ticker-item-image{
	  margin-right: 40px;
	}
	.endless__ticker-items-row--second .endless__ticker-item-image{
	  margin-right: 40px;
	}
}


.endless__ticker-items-row--second{
  display: flex;
}



@media screen and (min-width:769px) {
    .endless__ticker-items {
        gap: 20px;
    }
}
@media screen and (max-width:768px) {
    .endless__ticker-items {
        gap: 10px;
    }
}

.endless__ticker-item {
  flex: 0 0 auto;
  width: fit-content;
  height: fit-content;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
  color: #fff;

  transition: all 0.1s ease-in-out;
	height: 100%;
}



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


@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}
