/* scroll*/
.scroll {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    position: relative;
    height: 70px;
    margin-top: 1.5rem;
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0));
  }
  @keyframes scrollright {
    to {
      right: -400px;
    }
  }
  .item {
    width: 470px;
    height: 70px;
    background-color: 0;
    border-radius: 6px;
    border: 3px solid red;
    position: absolute;
    right: max(calc(400px * 4), 100%);
    animation-name: scrollright;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;  
  }
  .item1 {
    animation-delay: calc(30s / 4 * (4 - 1) * -1);
  }
  .item2 {
    animation-delay: calc(30s / 4 * (4 - 2) * -1);
  }
  .item3 {
    animation-delay: calc(30s / 4 * (4 - 3) * -1);
  }
  .item4 {
    animation-delay: calc(30s / 4 * (4 - 4) * -1);
  }
  .scroll img {
    width: 100%;
    min-height: 70px;
    border-radius: 5px;
    border: 3px solid var(--clr-2);
    outline: 3px solid var(--clr-2);
    box-shadow: 2px 2px 10px var(--clr-3);
    display: block;
  }
  /* End Sroll */
  
  /* scroll*/
.scroll {
  width: 100%;
  max-width: 1550px;
  margin-inline: auto;
  position: relative;
  height: 100px;
  margin-bottom: .8rem;
}
/* End Sroll */