*
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;

}

body{
    background-color: whitesmoke;
    background-image: url("../images/bg.jpg");
    background-size: cover;
}

.bg {
   background-color: white;
   border: #d7bde2   solid 5px ;
   border-radius: 10px;
   padding: 15px;
  }

.product
{
    position: relative;
    text-align: center;
}
.sale
{
    position: absolute;
    right: 20;
    top: 0;
    background-color: red;
    color: white;
    width: 40px;
    height: 50px;
    padding: 5px;
}

.priceBadge
{
    position: absolute;
    left: 20;
    top: 10;
}

.controlProduct
{
    position: relative;
    overflow: hidden;    
}

.controlProduct img
{
    width: 100%;
    height: 300px;
}

.controlLayer
{
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    transition:  all 0.5s ease-in;
}

.controlProduct:hover .controlLayer
{
    left: 0;
}

.ourProdh2
{
    color: purple;
}
