.product {
    margin: 0 auto;
  box-shadow: 0 30px 60px 0 rgba(118, 126, 173, 0.12);
  border-radius: 20px;
  overflow: hidden;
  }
  .removed {
    opacity: 20% !important;
    transition: all 2s ease;
}
  .product.removed:hover {
    margin: 0 auto;
    box-shadow: 0 30px 60px 0 rgba(118, 126, 173, 0.12);
    border-radius: 20px;
    overflow: hidden;
    opacity: 100% !important;
    transition: all 2s ease;
  }
.product img {
  margin-bottom: -5px;
  object-fit: cover;
  object-position: bottom;
}
.product__text {
  padding: 20px;
}
.articles__list {
  padding-left: 0!important;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.article {
  justify-content: flex-start!important;
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  margin-bottom: 40px;
  width: 25%;
  margin-right: 1%;
  margin-left: 1%;
  border-radius: 10px;
  overflow: hidden;
  transition: all 200ms ease-in;
  box-shadow: 0 30px 60px 0 rgba(118, 126, 173, 0.12);
  padding-bottom: 30px;
}
.article__media {
  overflow: hidden;
}
.article .article__img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 200ms ease-in;
}
.article h2 {
  width: 100%;
  margin-top: 10px!important;
  margin-bottom: 5px!important;
  text-align: center;
  font-size: 14px;
}
.article h3 {
padding: 0px 20px;
margin-left: revert !important;
}
.article:hover {
  transform: translate(0px, -2px);
}
.article:hover .article__img {
  transform: scale(1.3) rotate(3deg);
}
.article__features {
  max-height: 200px;
  overflow: scroll;
  overflow-x: hidden;
}

 .thumb-wrap-mob {
    display: none;
  }
  .thumb-wrap-full {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .thumb-wrap-full iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
  }

@media (max-width: 1000px) {
  .article {
    width: 30%;
  }
}
@media (max-width: 850px) {
  .article {
    width: 45%;
  }
}
@media (max-width: 500px) {
  .article {
    width: 95%;
  }
 .thumb-wrap-mob {
      display: block;
      width: 100%;
      margin-bottom: -10px;
      overflow: hidden;
    }
    .video-mob {
      width: 100%;
    }
    .thumb-wrap-full {
      display: none;
    }
}