/* Free Shipping Tab */

.free_shipping_tab {
  background-color: var(--Orange_main);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 1rem 0rem;
}

.free_shipping_tab p {
  color: var(--White_main);
  font-family: Lato-Reg;
}

#free_shipping_cross {
  position: absolute;
  right: 0;
  margin-right: 1rem;
  cursor: pointer;
}

/* Define fade-out animation */
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
  }
}

/*Free shipping Tab end */

.all_merch {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 5rem 0rem;
}

.all_merch_procucts_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.all_merch img {
  height: 25rem;
  width: auto;
  margin: 1rem;
  border-radius: 2px;
  transition: 0.5 ease;
  cursor: pointer;
}

.all_merch img:hover {
  opacity: 0.9;
  transition: 0.5 ease;
  transform: scale(1.011);
}

.all_merch h1 {
  color: var(--Navy_main);
  font-size: 6rem;
  font-family: Bebas;
}

@media only screen and (max-width: 1050px) {
  .all_merch h1 {
    font-size: 5rem;
  }
}

@media only screen and (max-width: 500px) {
  .free_shipping_tab {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  .all_merch h1 {
    font-size: 4rem;
  }
}
