/*Стиль контейнера с партнерами*/
.fl-part-cont{
    margin: auto;
    display: flex;
    overflow: hidden;
    max-width: 1202px;
    position: relative; /* Относительное позиционирование - для эффекта градиента*/
}

.fl-edu_part-cont{
    margin: auto;
    display: flex;
    overflow: hidden;
    max-width: 1202px;
    position: relative; /* Относительное позиционирование - для эффекта градиента*/
}


.Block{
  flex-shrink: 0;
  height: 180px;
  opacity: 0.8;
  /*background-color: #aaa;*/
  background: url(film-band.png);
  background-size: 180px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
}

.fl-part-cont:before,
.fl-part-cont:after {
  content: ""; /*Указание отображения нового содержимого после или до элемента, к которому добавляются*/
  width: 10%; /*ширина эффекта градиента*/
  height: 100%; /*высота эффекта градиента*/
  /*Стиль слоя сверху*/
  position: absolute;
  z-index: 5; 
}

/*Эффект градиента слева и справа*/
.fl-part-cont:before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.fl-part-cont:after {
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

/*Стиль контейнера с Лого в блоке партнеры*/
.item-w{
    width: 350px;
    background-color: inherit;
    text-align: center;
    border-left: 5px solid #000;
    border-right: 5px solid #000;
}

.item-w img {
    background-color: inherit;
    height: 110px;
    /*Стиль скругленных углов*/
    border-radius: 15px;
    -webkit-border-radius: 15px;
}

.part-Gw{height: 76px;text-indent: 20px;}
/*Стиль анимации*/
.myMarquee {
  animation: myScroll 20s infinite linear;
  -webkit-animation: myScroll 20s infinite linear;
  -moz-animation: myScroll 20s infinite linear;
}
/*Стиль остановки анимации*/
.fl-part-cont:hover .myMarquee{
  animation-play-state: paused;
}
.fl-edu_part-cont:hover .myMarquee{
  animation-play-state: paused;
}
@-webkit-keyframes myScroll {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}
@-moz-keyframes myScroll {
    0% {
        -moz-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -moz-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}
@keyframes myScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%)
    }
}