
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: sans-serif;
}
a{
    text-decoration: none;
    color: black;
}

html, body{
    height: 100%;
    width: 100%;
}
.breadcrumb{
    padding-top: 1rem;
}
.breadcrumb{
    font-size: 1rem;
}
.product-section{
    margin-top: 5rem;
}
.product-section span{
    color: greenyellow;
}
.product-section .box{
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}
.product-section .box img{
    scale: 1;
    transition: ease .5s;
}
.product-section .box ul{
    font-size: 1rem;
    font-weight: 400;
}

.product-section .box:hover img{
  scale: 1.1;  
  
}
@media only screen and (max-width: 993px){
    .div-flex{
        display: flex;
    flex-direction: column;
    }
}
@media only screen and (max-width: 500px){
    .product-section .box h3{
    font-size: 1rem;
}
.product-section .box ul {
    font-size: 0.9rem;
}
.product-section .box {
    min-height: fit-content;
}
}