.collection {
  background-color: #0f0e0e;
  padding: 100px 10%;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-content: center;
  /* gap: 0 50px; */
}

.watch-box {
  display: grid;
  justify-items: center;
  /* align-content: flex-start; */
  text-align: center;
}

.model-img {
  height: 50vh;
  /* height: 50dvh; */
  margin-bottom: 50px;
}
.model-img-container {
  height: 50vh;
  width: 100%;
  margin-bottom: 50px;

  background: url("/assets/photos/models/first-edition/roundtable/r08.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;

  transition: background 0.5s ease-in-out;
}
.model-img-container:hover {
  background-image: url("/assets/photos/models/first-edition/roundtable/r0.png");
}
#model-img-bvh.model-img-container {
  background-image: url("/assets/photos/models/by-vianney-halter/roundtable/r08.png");
}

/* model imgs trasition */
.model-imgs-container {
  position: relative;
}
.upper-image {
  position: absolute;
  top: 0;
  left: 0;
  transition: ease-in-out 0.5s;
  opacity: 0;
}
.bottom-image {
  transition: ease-in-out 0.5s;
}
.model-imgs-container:hover .upper-image {
  opacity: 1;
}
.model-imgs-container:hover .bottom-image {
  opacity: 0;
}

.no-transition {
  transition: unset;
}

/* ----- model name ----- */
.model-name {
  width: 250px;
  height: auto;
  margin-bottom: 25px;
}

/* model description */
h6.hdescription {
  margin-bottom: 40px;
}

/* ----- model img margins (for centering) */
.model-mr {
  margin-right: 38px;
}
.model-mr2 {
  margin-right: 60px;
}

#model-name-bvh {
}

/* collection btns */
.collection .model-btn-container {
  display: flex;
  justify-content: center;
}

.btn-underline-container {
  display: grid;
  justify-items: center;
}
.btn-underline-container .underline {
  height: 3px;
  width: 30px;
  margin-bottom: 20px;
}

/* remove btn margin top */
.collection .jbtn {
  margin-top: 0;
}

/* remove btn cursor */
.jbtn-sold-out {
  cursor: default !important;
}

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 1100px) {
  .collection {
    grid-template-columns: auto;
    /* gap: 50px; */
  }
  .model-img {
    height: 60vh;
    margin-bottom: 20px;
  }
  .model-mr {
    margin-right: 13px;
  }

  #fe-btn {
    grid-area: 2/1;
    margin-bottom: 100px;
  }

  #watch-box-bvh {
    grid-area: 3/1;
  }

  #bvh-btn {
    grid-area: 4/1;
  }
}
@media (max-width: 576px) {
  .model-name {
    width: 200px;

    /* hmm */
    margin-bottom: 20px;
  }
  h6.hdescription {
    font-size: 10px;
    line-height: 1.5;

    /* hmm */
    margin-bottom: 30px;
  }
  .collection .jbtn {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .model-img {
    height: 50vh;
  }
}
@media (max-width: 420px) {
  .model-img {
    height: 384px;
  }
}
