/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
} */

.category-tile {
  width: 250px;
  height: 250px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	padding: 10px;
  text-align: center;

  transition: transform 0.3s ease;
}

.category-tile:hover {
  transform: scale(1.03);
}
.category-tile a {
   color: #000;
    text-decoration: none;
    transition: color .2s ease-out;
    cursor: pointer;
}

.category-tile h3 {
  /* margin-top: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #691915; */
  font-size: 40px;
  margin-bottom: 10px;
  font-family: "Oswald", Sans-serif;
    font-size: 23px;
    font-weight: 600;
    font-style: inherit;
    line-height: 1em;
    letter-spacing: -.025em;
    text-transform: uppercase;
    color: #691915;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex!important;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #691915;
}

.custom-pagination {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}


