#shopify-section-template--21374906794224__service_menu_2025_v2 {

img {
  max-width: 261px;
  width: 261px;
  height: 100%;
  border: 0px;
}

.box {
  background-color: #fefefe;
  overflow-x: auto;
  overflox-y: hidden;
  white-space: nowrap;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fefefe;
}

.box .wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-auto-flow: column; 
  margin: 140px;

}

.item-light {
  margin: 0;
  width: 261px;
  height: auto;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-transition: transform .5s ease;
  transition: transform .5s ease;
  cursor: pointer;
}

.item-dark {
  margin: 0;
  width: 261px;
  height: auto;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all .5s ease;
  cursor: pointer;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  transition: transform .5s ease;
}

.item-light:hover,
.item-dark:hover {
  transform: scale(1.4);
  z-index: 2;
  border: 1px solid #cbbaa9;
}

.item-light:after,
.item-dark:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

@media (min-width: 768px) and (max-width: 991px) {
  
  .box .wrapper {
    margin: 10px;
    width: 200px;
    height: 100%;
  }
  .item-light,
  .item-dark {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .box .wrapper {
    padding: 5px;
  }
  .item-light,
  .item-dark {
    margin: 5px;
    width: 150px;
    height: 100%;
  }
}
}