.hero-container{
	height: 400px;
  width: 100%;
  position: relative;
}

.not-found-container{
 	display: flex;
  flex-direction: column;
  padding: 75px 0px;
  height: auto!important;
}

.not-found-container p{
 	margin: 10px 0; 
}

.not-found-container a{
 	font-size: 16px;
  text-decoration: underline;
}

.not-found-container .products-title{
 	width: 100%;
  margin-top: 50px;
}

.hero{
	height: 100%; 
  width: 100%;
  position: absolute;
  opacity: 0;
  z-index: -8;
  transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}

.hero .hero-title{
  padding-bottom: 30px;
  padding-left: 40px;
/*   margin-bottom: 25px; */
	font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0px 10px 25px rgba(0, 0, 0, 0.75);
  color: #fff;
}

.hero-inner{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.hero-inner a{
	display: inline-block;
  margin-bottom: 100px;
}

.hero-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding: 20px 40px 20px 40px;
  color: var(--color-primary);
}

.hero-btn i{
 	margin-left: 20px; 
	transition: all .15s ease-in-out;
  font-size: 16px;
}

.hero-btn:hover i{
	transform: translateX(10px);
}

.sale-sticker{
	position: absolute;
  bottom: -42%;
  right: -120px;
  padding: 20px; 
  border-radius: 100%;
  background-color: #fff;
}

.hero-sale{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotate(-30deg);
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.hero-percentage{
 	font-size: 32px;
  font-weight: 900; 
  color: #fff;
}

.hero-sale-text{
	font-size: 18px;
  font-weight: 900;
 	color: #fff; 
}

.index-categories-title{
	padding-top: 50px; 
  padding-bottom: 25px;
}

.card-category{
 width: 100%; 
}

.cat-img{
 	height: 100%;
  width: 100%;
	object-fit: cover;
  object-position: center;
}

.card-category{
	position: relative; 
  height: 475px;
}

.card-category .card-title{
	position: absolute;
  bottom: 15%;
  left: 0;
  background-color: #fff;
  padding: 15px; 
  text-align: center;
  min-width: 0%;
  width: auto;
  transition: all .25s ease-in-out;
  font-size: 22px;
}

.card-category:hover .card-title{
 min-width: 100%; 
}

.index-categories{
 	display: grid;
	column-gap: 25px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 50px;
}

.index-products{
 	display: grid;
	column-gap: 25px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 50px;
}

.product{
	position: relative;
}

.product .sale-flag{
  position: absolute;
  left: -10px;
  top: 15px;
  background-color: #FFE5E5;
  color: #DC4D5E;
  padding: 10px;
  border-radius: 8px;
  font-weight: 900;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product-price{
 	font-size: 16px; 
  font-weight: 700;
}

.products-title{
 	padding-bottom: 25px; 
}

.section-title h2{
  font-size: 26px;
}

.section-title a:hover{
	text-decoration: underline;
}

.section-title a i{
  transition: all .2s ease-in-out;
}

.section-title a:hover i{
 	transform: translate(5px, 0);
}

.index-blog{
	padding: 80px; 
  background-position: top right;
  background-repeat: no-repeat;
  background-color: #F5F5F5;
  margin-top: 100px;
  margin-bottom: 50px;
  border-radius: 0px 8px 0px 0px;
  background-size: 50%;
}

.blog-title{
	font-size: 26px;
}

.blog-desc{
  margin: 25px 0;
  width: 40%;
  line-height: 30px;
  font-size: 16px;
}

.blog-btn{
  margin-top: 15px;
  padding: 12px 18px;
  border: solid 2px #323232;
  border-radius: 5px;
  font-weight: bold;
  color: #323232;
}

.blog-btn i{
	margin-left: 10px; 
	transition: all .2s ease-in-out;
}

.blog-btn:hover{
	text-decoration: underline; 
}

.blog-btn:hover i{
transform: translateX(5px);
}

.section-info{
 	margin-bottom: 85px; 
  align-items: stretch;
}

.section-info img{
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-info .img-container{
 	padding-right: 100px; 
}

.section-info h1{
  font-size: 26px;
}

.section-info p{
 	font-size: 16px;
  line-height: 30px;
  margin-top: 25px;
}

.section-info a{
 	color:  #729C5E;
  text-decoration: underline;
  font-size: 16px;
  transition: all .2s ease-in-out;
}

.section-info a:hover{
	text-decoration: none;
}

.active__hero{
 	opacity: 1;
  z-index: 5;
}

@media(max-width: 787px){
 .index-products {
    grid-auto-flow: column;
    overflow: auto;
    grid-auto-columns: 30%;
    grid-template-columns: unset;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline-start: 24px;
    height: auto;
	}
  .product {
    scroll-snap-align: start;
    height: unset;
	}
}

@media(max-width: 1024px){
  .hero-container{
   	height: 33vh; 
  }
  .hero-btn{
   	font-size: 26px; 
  }
  .hero-sale{
   	width: 100px;
    height: 100px;
  }
  .hero-percentage{
  	font-size: 32px;
  }
  .hero-sale-text{
   	font-size: 20px; 
  }
  .index-categories{
   	margin-bottom: 0px; 
  }
  .card-category .card-title{
   	font-size: 18px; 
  }
 	.all__cat{
   	display: none; 
  }
  .card-category{
   	height: auto; 
  }
  .index-blog{
		background-size: 40%;
    padding: 50px;
    margin: 25px 0;
  }
  .blog-desc{
   	width: 70%; 
  }
  .section-info{
   	flex-direction: column-reverse; 
  }
  .section-info .w-40{
  	width: 100%;
  }
  .section-info .img-container{
   	padding: 0;
    margin-top: 0px;
  }
}

@media(max-width: 500px){
  .hero-container{
		height: 40vh; 
	}
  
  .hero .hero-title{
   	font-size: 32px; 
    padding-left: 25px;
  }
  
  .all__cat{
   	display: flex; 
  }
  
  .hero-btn{
  	font-size: 22px;
    padding: 10px 25px;
  }
  
  .hero-sale{
   	width: 88px;
    height: 88px;
  }
  
  .hero-percentage{
    font-size: 28px;
	}

  .hero-sale-text{
    font-size: 16px;
  }
  
  .index-categories-title{
   	padding-top: 10px;
    padding-bottom: 15px;
  }
  
  .index-categories-title h2{
/*   	text-align: center; */
    font-size: 19px;
  }
  
  .all__cat--title{
   	text-align: center; 
  }
  
  .index-categories{
  	grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 0;
  }
  
  .card-category{
    height: auto;
  }
  
  .all__cat{
   	border: solid 2px var(--color-contrast-higher);
    border-radius: 10px;
  }
  
  .card-category .card-title, .all__cat--title{
   	padding: 5px;
    font-size: 16px;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .card-category .card-title .icon-btn-right{
  	font-size: 10px;   
  }
  
  .index-products{
   	grid-auto-flow: column; 
    overflow: auto;
    grid-auto-columns: 75%;
    grid-template-columns: unset;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline-start: 24px;
    height: auto;
    margin-bottom: 0px;
  }
  
  .product{
   	scroll-snap-align: start; 
    height: unset;
  }
  
  .products-title h2{
    font-size: 19px;
  }
  
  .index-blog{
   	padding: 0;
    background-image: unset!important;
    margin: 0;
  }
  
  .blog-title{
   	font-size: 19px; 
  }
  
  .blog-desc{
   	width: 100%; 
    font-size: 16px;
    line-height: 30px;
  }
  
  .blog-btn{
   	display: inline-block; 
    font-size: 14px;
    padding: 12px 29px;
  }
  
 	.section-info{
   	flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 0px;
  }
  
  .section-info .img-container{
   	width: 100%; 
    padding: unset;
  }
  
  .section-info .w-40{
   	width: 100%; 
  }
  
  .section-info .blog-title, .section-info .info-content{
   	margin-top: 30px; 
  }
  
  .sale-sticker{
    bottom: -66%;
    right: -100px;
    padding: 15px; 
  }

  .hero-sale{
    width: 80px;
    height: 80px;
  }
  
  .hero .hero-title{
    padding-bottom: 15px;
}