.allNotifications {
    display: flex;
    list-style: none;
    gap: 75px;
    white-space: nowrap;
    animation: animateText 30s linear infinite;
  }
  .first .allNotifications{
    animation: animateTextFirst 30s linear 1;
  }
  .allNotifications li {
    font-size: 16px;
    line-height: 120.19%;
    text-align: center;
    color: #000000;
    position: relative;
  }
  .allTrustUniversities {
    display: flex;
    height: 260px;
    position: relative;
    overflow: hidden;
  }
  
  .trustWrapper {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: absolute;
  }
  
  .allTrustUniversities::after {
    position: absolute;
    content: '';
    width: 525px;
    height: 1px;
    background-color: #EFF0F1;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .allNotifications img{
    width: 190px;
    max-height: 34px;
    height: 100%;
  }
  .allTrustUniversities::after, .allTrustUniversities::before{
    position: absolute;
    content: '';
    width: 183px;
    height: 100%;
    background: linear-gradient(270deg, #FFFFFF 43.68%, rgba(255, 255, 255, 0) 119.85%);
    top: 0;
    z-index: 5;
  }
  .allTrustUniversities::after{
    left: 0;
    transform: scaleX(-1);
  }
  .allTrustUniversities::before{
    right: 0;
  }
  @keyframes animateText {
    from {
      transform: translateX(80%);
    }
  
    to {
      transform: translateX(-125%);
    }
  }
  @keyframes animateTextFirst {
    from {
      transform: translateX(10%);
    }
  
    to {
      transform: translateX(-155%);
    }
  }
  @keyframes animateTextStandards {
    from {
      transform: translateX(50%);
    }
  
    to {
      transform: translateX(-125%);
    }
  }

  @media (max-width: 575px){
    .allTrustUniversities::after, .allTrustUniversities::before{
      width: 100px;
    }
  }