:root {
    --bright_blue: #40ABD7;
    --dark_blue: #0C324A;
    --light_blue: #C3EBFF;
    --orange: #F37028;
    --gray: #b7b7b7;
}

#acts-promo {
    background-color: var(--bright_blue);
    color: #fff;
    font-size: 24px;
    font-family: 'Roboto Slab';
    font-weight: bold;
    text-align: center;
    padding: 5px;
}


#acts-promo a {
    color: #fff;
    font-weight: bold;
}

#acts-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.star{
    width:25px;
    margin:0 10px;
}
#acts-banner a {
    padding:0 10px;
}

#acts-promo {
    position: relative;
    display: block;
    width:100%;
    background-image: url(../img/actsbanner/stars-transparent.svg);
    background-size: 1533px 118px;
    background-position: 0 -10px;
    background-repeat: repeat;
    animation: starsmove 2000s infinite;
  }

  @keyframes starsmove {
    0%,
    100% {
      background-position-x: 0;
    }
  
    50% {
      background-position-x: -15000px;
    }
  }

#banner-logo {
    width: 300px;
    padding-top: 10px;
  }

  @media (max-width:690px) {
    #banner-logo {
      width: 200px;
    }
  }

  @media (max-width:579px){
    #acts-promo {
      font-size: 18px;
    }
  }

  @media (max-width:515px){
    #acts-banner {
      flex-direction: column;
    }
    .star {
      display: none;
    }
    #banner-logo {
      padding-top: 0;
    }
  }