.Thumb-video {
  position: relative;
  cursor: pointer;
  filter: brightness(80%);

  &:hover {
    .Button-play {
      border: 1px solid #fff;
    }
  }

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
  }

  .Button-play {
    position: absolute;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: rgba(255, 255, 255, 0.24);
    border-radius: 100%;

    i {
      color: #fff;
      font-size: 28px;
    }
  }
}

.Thumb {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.6s all;

  img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
}
