.section-tools{
    text-align: center;
}

.my-tools{
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 16px;
    overflow: hidden;
    position: relative;
    width: max-content;
  animation: scroll 20s linear infinite;
}

.my-tools::before,
.my-tools::after {
  content: "";

  position: absolute;

  top: 0;

  width: 120px;
  height: 100%;

  z-index: 2;
}

.my-tools::before {
  left: 0;

  background:
    linear-gradient(
      to right,
    #FBF4F9,
      transparent
    );
}

.my-tools::after {
  right: 0;

  background:
    linear-gradient(
      to left,
      #FBF4F9,
      transparent
    );
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.my-tool-small{
    width: 76px;
    height: 76px;
    background-color: #fff;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-tool-big{
    width: 136px;
    height: 76px;
    background-color: #fff;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}