/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.menu-row {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.row .wrapper-menu {
  display: flex;
  padding: 0 35px;
  align-items: center;
  justify-content: center;
  margin: auto;
  /* min-height: 100vh; */
  /* background: linear-gradient(to left top, #031A9A, #8B53FF); */
}

.wrapper-menu {
  /* max-width: 1100px; */
  width: 100%;
  position: relative;
}
.wrapper-menu i {
  top: 38%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper-menu i:hover{
  background-color: rgba(255, 229, 78, 0.8);
  color: rgba(37, 200, 204, 1);
	text-decoration: none;
	outline: 0;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}
.wrapper-menu i:active{
  transform: translateY(-50%) scale(0.85);
}
.wrapper-menu i:first-child{
  left: 0;
}
.wrapper-menu i:last-child{
  right: 0;
}
.wrapper-menu .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 4) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  height: 420px;
  list-style: none;
  background: rgb(255, 229, 78, 1);
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}
.carousel .card .img {
  margin: 0 auto;
  /* background: rgba(37, 200, 204, 1); */
  width: auto;
}
.card .img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  /* border: 4px solid #fff; */
}
.carousel .card h2 {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 30px 0 5px;
  color: #333;
}
.carousel .card span {
  color: #6A6D78;
  font-size: 0.85rem;
}

@media screen and (max-width: 900px) {
  .wrapper-menu .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper-menu .carousel {
    grid-auto-columns: 100%;
  }
}