@import url('https://fonts.googleapis.com/css?family=Ubuntu');



/* <!-- Product Section Start --> */
.productsBox,#shoesContainer,#tShirtContainer,#pantContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.productCards{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.productCards h2{
    text-align: center;
    margin: 2rem 0;
}

.productCards button{
    height: 3rem;
    width: 18rem;
    margin: 2rem auto;
    background: none;
    color: rgb(0, 0, 0);
    font-weight: bold;
    outline: none;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 10px;
}

.productSection{
    margin: 2rem 0;
 }
 
 .productHeading{
     text-align: center;
     width: 20rem;
     margin:2rem auto;
 }
 
 .products{
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
 }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


h1 {
    font-size: 1.2rem;
    text-transform: capitalize;
}

.card {
  height: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    /* height: 500px; */
    /* overflow: hidden; */
    width: 300px;
    margin: 1rem;
    
}

.card > figure {
    width: 90%;
    margin: 20px auto 0 auto;
}

.card > figure > img {
    width: 100%;
}

.details {
    background-color: #FFF;
    border-radius: 10px;
    padding: 20px;
    /* display: none; */

}

.card:hover .details {
    box-shadow: 0 -5px 10px rgba(0,0,0,0.3);
    display: block;
    z-index: 2;

}

.details > .min-details,
.details > .options,
.details > .options > .options-size,
.details > .options > .options-colors {
    margin-bottom: 20px;
}

.details > .min-details {
    display: flex;
    justify-content: space-between;
}

.details > .min-details > h1 > span {
    color: #7B7B7B;
    display: block;
    font-size: .9rem;
    font-weight: 400;
}

.details > .options h1 {
    margin-bottom: 5px;
}

.details > .options ul {
    list-style-type: none;
    display: flex;
}

.details > .options ul li {
    border-radius: 50%;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    margin-right: 5px;
    text-align: center;
    width: 30px;
}

.options-size > ul > li {
    background-color: rgba(0,0,0,0.5);
    color: #FFF;
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: background-color .3s ease-in-out;
}

.options-size > ul > li:hover {
    background-color: #192a56;
}

.options-colors > ul > li {
    border: none;
}

.options-colors > ul > li:nth-child(1) {
    background-color: #FF1;
}

.options-colors > ul > li:nth-child(2) {
    background-color: #000;
}

.options-colors > ul > li:nth-child(3) {
    background-color: #FB0000;
}

.options-colors > ul > li:nth-child(4) {
    background-color: #FF69B4;
}

.options-colors > ul > li:nth-child(5) {
    background-color: #192a56;
}

.btn {
    cursor: pointer;
    background-color: #192a56;
    border-radius: 5px;
    color: #FFF;
    display: block;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    width: 100%;
    transition: box-shadow .3s ease-in-out,
                transform .3s ease-in-out;
}

.btn:hover {
  box-shadow: 0 5px 10px rgba(0,0,0,.3);
  transform: translateY(-2px);
}
 
 /* <!-- Product Section END --> */
 