html,body{
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}



/*fonts*/
@font-face {
    font-family: 'Archer-Book-Pro';
    src: url(../fonts/Archer_Book.otf) format("opentype");
}


.Products_section .container {
    max-width: 81.25rem;
    padding-left: 3.125rem;
    padding-right: 3.125rem;
}
.product_wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.item_card {
    padding: .3125rem;
    flex: 0 1 33.3%;
    max-width: 33.3%;
    margin-bottom: 1rem;
}

.item_card .card{
    border: 1px solid #767676;
    text-align: center;   
    border-radius: 0px; 
}
.item_card .card-img-top{
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
}
.item_card .price{
    color: #313638;
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 0px;
}
.item_card .product_name{
    color: #313638;
    font-weight: 400;font-size: 20px;
    line-height: 28px;
    font-family: 'Archer-Book-Pro';
    margin-bottom: 0px;
}
.item_card .card-text{
    color: #717578;
    line-height: 21px; font-size: 14px;
    font-weight: 400;
    margin-bottom: 1rem;
}
.rating_stars .list-group{
    background-color: transparent;
}
.rating_stars .list-group .list-group-item{
    border:0px;
    padding: 1px;
}
.rating_stars .list-group .list-group-item .fa-star{
    color: grey;
}
.rating_stars .list-group .list-group-item .fa-star.filled{
    color: green;
}
.item_card .card:hover{
    box-shadow: 0 0 0 0.2rem rgba(57,21,56,.5);
}

/*// Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) { 


}

/*// Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) { 
    .item_card {
        flex: 0 1 50%;
        max-width: 50%;
    }
    .Products_section .container {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
}

}


/*// Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
.Products_section .container {
    padding-left: 15px;
    padding-right: 15px;
}
.item_card {
        flex: 0 1 100%;
        max-width: 100%;
    }
.item_card {
    padding: 0px;
}


}





