.row.align-items-stretch {
  align-items: stretch;
}
.row.align-items-stretch > [class^="col-"] {
  display: flex;
  flex-direction: column;
}
.image-container {
  width: 100%;
  flex-grow: 1;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  border: 1px solid #dee2e6;
  border-bottom:0px;
}
.img-in-container {
  width: 100%;
  height: 100%;
  max-height:480px;
  object-fit: contain;
  object-position: center;
}
.d-flex.gap-2.flex-wrap.justify-content-center {
  margin-top:0px;
}
.boxGallery img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid #dee2e6;
  border-radius: 0;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.boxGallery:hover img {
  border-color: #981021;
}
.thumb-img.active-thumb {
  border-color: #981021;
}