/** Shopify CDN: Minification failed

Line 159:1 Expected "}" to go with "{"

**/
.custom-home-explore-banner{
    position: relative;
    width: 100%;
    padding:4rem;
    background-color:white;
}

.explore-banner-content-container{
     width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10%;
}

.explore-banner-content{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:28px;
  flex-wrap:wrap;
  max-width:21%;
}

.explore-banner-content-container h2{
    margin:0px;
    font-size:4.8rem;
    font-weight:700;
    color:#484747;
    font-family: 'Inter', sans-serif;
}

.right-arrow{
  width:100%;
  height:5px;
  position: relative;
  background-color:#1E504C;
}

.right-arrow::after {
  content: " ";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  border-top: 5px solid #1E504C;
  border-right: 5px solid #1E504C;
}


.category-cards-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px;
  margin: 0;
}
.category-card-container{
  display:flex;
  align-items:center;
  justify-content:center;
  background-color: linear-gradient(180deg, rgba(255, 255, 255, 0) 10.22%, rgba(30, 80, 76, 0.8) 71.51%);
  width: 390px;
  height: 325px;
}
.category-card {
  color: inherit;
  text-decoration: none;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  padding:2rem;
  background: #fff;
  width:100%;
  height:100%;


}

.category-description{
  color:white;
  font-family: 'Inter', sans-serif;
}

.category-card-container:hover {
  transform: translateY(-5px);
}

.category-card-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.category-card-container:hover {
  transform: scale(1.05);
  z-index: 2;
}

.category-card {
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}



.category-image{
    height:200px;
    width:100%;
}

.category-image img {
  max-width: 100%;
  height: 100%;
  margin-bottom: 1rem;
}

.category-title {
  font-weight: 600;
  font-size:2rem;
  line-height:1.25rem;
  color: white;
  font-family: 'Inter', sans-serif;
}

@media screen and (max-width: 750px) {
  .category-card,.category-card-container {
  width:100%;
}
.custom-home-explore-banner{
  padding-top:2rem;
}
.explore-banner-content{
  flex-direction:row;
  max-width:100%;
}
.explore-banner-content-container{
gap:20px;
}
.explore-banner-content-container h2{
    font-size:2.5rem;
}
.right-arrow{
  display:none;
}
.category-title {
  font-size:1.5rem;
}