/* Gradient Div */
.products-gradient-div {
    display: flex;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('../images/main-pages/furniture.webp');
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .btn-contact-us {
    width: 130px;
    margin: 5px;
  }
  
  .img-support {
    width: 130px;
  }

  /* Elements Animation */
.hidden-section {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 2s ease-out, transform 0.6s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
.top-img{
  width: 40%;
}

/* For mobile devices */
@media only screen and (max-width: 480px) {
  /* styles here */
  .top-img{
    width: 70%;
  }
}

/* For tablet devices */
@media only screen and (min-width: 481px) and (max-width: 1024px) {
  /* styles here */
  .top-img{
    width: 70%;
  }
}
