@import url("style.css");
.top-img {
  width: 100%;
  height: 384px;
  background: var(--deepNavy);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100% 100%;
  padding-top: 10rem;
  color: var(--white);
  margin-top: 5.9rem;
}

.top-img h1 {
  font-size: 57px;
  font-weight: 700;
}

.product-btn {
  min-width: 6.4rem;
}
.product-btn button {
  width: 100%;
  height: 50px;
  padding: 14px 0px 18px 0px;
  color: var(--deepNavy);
  background: var(--lightWhite);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.5s;
}

.product-btn .active-btn {
  background: var(--deepNavy);
  color: var(--white);
  transition: all 0.5s;
}

.product-btn button:hover {
  background: var(--deepNavy);
  color: var(--white);
}

.active-btn:hover {
  opacity: 0.9;
  transition: 0.5s;
}

.pro-img-container {
  min-width: 22rem;
  height: 20rem;
  background: #f4f4f4;
  border-radius: 12px;
  transition: all 0.5s;
}

.pro-img {
  min-width: 22rem;
  height: 20rem;
  background: var(--lightWhite);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  transition: all 0.5s;
  cursor: pointer;
  opacity: 0;
  animation: fadeInBackground 1s ease-in-out forwards;
}

@keyframes fadeInBackground {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pro-img-container:hover {
  transform: scale(0.9);
}

.unboxing-shoes-img1 {
  min-width: 20rem;
  height: 33rem;
  background: var(--lightWhite);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.unboxing-shoes-img2 {
  min-width: 20rem;
  height: 33rem;
  background: var(--lightWhite);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.unboxing-shoes-img3 {
  min-width: 20rem;
  height: 33rem;
  background: var(--lightWhite);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ______________________________________ Media Query _________________________________________

---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
___________________________________________________________________________________________________
*/

@media only screen and (min-width: 200px) and (max-width: 800px) {
  .top-img {
    height: 247px;
    padding-top: 5rem;
    background-image: linear-gradient(to right, #01253d 20%, transparent),
      url("../images/products-top-mobile-img.jpg");
    background-size: cover;
    margin-top: 4rem;
  }
  .top-img div > h1 {
    font-size: 32px;
  }

  .pro-img-container {
    min-width: 10rem;
    height: 9rem;
  }

  .pro-img {
    min-width: 10rem;
    height: 9rem;
  }
  #product-images {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
