 .u-section-1 {
  background-image: none;
}

.u-section-1 .u-sheet-1 {
  min-height: 64px;
}

.u-section-1 .u-text-1 {
  font-family: stv-bold;
  margin: 18px auto;
}@font-face {
  font-family: 'stv-bold';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/stv-bold.ttf);
}


.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
  margin-bottom: 50px;
}


.category-name {
  font-family: stv-bold;

  text-align: center;
  font-size: 18px;
  color: #ffffff;
  display: block !important;
  margin-bottom: 10px;
}


.card {
  border: 1px solid #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  /* padding: 3px; */
  text-align: center;
  transition: transform 0.2s;

}

.card img {
  border-radius: 20px;
  width: auto;
  height: auto;
  margin: auto;
}

.card:hover {
  transform: scale(1.1);
  transition: transform 0.6s ease-in-out;
}



/* استعلامات الوسائط */
@media (min-width: 1024px) {
  .container {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }


}



