body{
    align-items: center;
    justify-content: center;
  }

  @keyframes scroll {
  0% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  }
  100% {
  -webkit-transform: translateX(calc(-2000px * 1));
  transform: translateX(calc(-2000px * 1));
  }
  }

  @media only screen and (max-device-width: 600px) {
    @keyframes scroll {
    0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    }
    100% {
    -webkit-transform: translateX(calc(-2750px * 1));
    transform: translateX(calc(-2750px * 1));
    }
    }
  }

  .sending{
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
  }
  .sending .slide-track{
    display: flex;
    width: calc(1550px * 30);
    animation: scroll 15s linear infinite;
    overflow: hidden;
  }
  .sending .slide{
    margin-left: 30px;
    padding-top: 15px;
    overflow: hidden;
    overflow-x: hidden;
    border-radius: 15px;
    cursor: pointer;
  }
  .sending .slide img{
    height: 150px;
    padding: 10px;
    shadow: 2px 2px black;
    overflow-x: hidden;
  }
  .container .section-title .title-style h2{
    color: red;
  }
