* {
  box-sizing: border-box;
}


.stamp-container-t {  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
 /* width: 20rem; */

}

.stamp-box-t {
  width: 100px;
  height: 112px;
  position: relative;
}

.stamp-t {
  width: 100%;
  height: 100%;
  position: absolute;
}

.stack-top-t {
  z-index: 9;
}

.stamp-movil-t {
  display: none;
}

@media (max-width: 1000px) {
  .stamp-container-t {
      display: none;
  }

  .stamp-movil-t {
      display: flex;
      justify-content: center;
  }
}