@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.brand{
    font-size: 50px;
    font-family:'Times New Roman', Times, serif;
    font-weight: bolder;
    text-align: center;
    color: goldenrod;
    padding-bottom: 20px;
    text-transform: uppercase;
}
/*start conatainer-card*/
.conatainer-brands{
    width: 100%;
    height: auto;
    
    display: grid;
    grid-template-columns: auto auto auto auto auto ;
    justify-content: space-around;
    gap: 5px;
    row-gap: 20px;
    margin: 40px 0;
    padding: 0 20px;
}



/* card-item */
.conatainer-brands .card-brands{
    width: 270px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #000; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    padding: 0 10px;
}

.conatainer-brands .card-brands > a{
    text-decoration: none;
    color: #000;
        width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-brands a > img{
    width: 100%;
    height: 100%;
    max-height: 50%;
}
/* price */
.card-brands .description{
    width: 100%;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 25px;
}

.card-brands .description .style-name{
    font-weight: bold;
}

/* price */
.card-brands .description .price{
    font-weight: bolder;
}

.card-brands .description .price .regularPrice{
    color: #7d7b7b;
}
/* card-item */


/* end of conatainer-card */