* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
  }
  
  /* navigation*/
  
  .navbar {
    border-bottom: 1px solid grey;
    height: 62px;
  
  }
  
  .container-fluid a img {
    margin-top: -8%;
    margin-left: 5%;
  
  }
  
  .nav-link {
    margin-left: -15%;
    width: 100%;
  }
  
  
  .navbar-brand {
    font-weight: bolder;
  }
  
  .nav-item {
    padding-left: 1rem;
  }
  
  
  
  .navbar ul li a {
    color: black;
    padding: 10px;
    padding-top: 5%;
  }
  
  .nav ul li {
    display: inline;
    padding-right: 10%;
  }
  
  .menu {
    color: black !important;
  
  }
  
  .color {
    padding-top: 1%;
  }
  
  .form-control {
    background-color: rgb(224, 186, 186);
    border: 1px solid rgba(255, 255, 255, .5);
    ;
    border-radius: 0;
    opacity: 1;
  }
  
  .form-control .form-inline {
    width: 200px;
  }
  
  
  .form-control:focus {
    color: black;
    background-color: #fff;
    border-color: #a75470;
    box-shadow: none;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, .5);
  }
  
  .btn {
    color: #fff;
    background-color: #a56177;
    border-color: rgb(224, 186, 186);
    border-radius: 0;
    height: 38px;
  }
  
  .btn:hover,
  .btn:focus {
    color: #fff;
    box-shadow: 0 0 0 0.2rem #a56177;
  }
  
  .dropdown-menu {
    padding: 0;
    border-radius: 0;
    background-color: rgb(223, 197, 197);
  
  }
  
  .dropdown-item {
    color: rgba(255, 255, 255, .5);
  
  }
  
  .dropdown-item:hover {
    background-color: rgb(224, 186, 186);
    color: white;
  }





/* product */
  a:hover {
    color: #000; 
}
.container-fluid {
    height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    /* background: #000; */
}
.cart {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    margin: 27px 50px;
    /* box-shadow: 0 0 15px 2px rgba(0,0,0,0.1); */
}
.row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#ProductImg {
    margin-bottom: 25px;
    transition: 0.4s;
}


.black::before {
    content: "";
    /* background: #000; */
    width: 19px;
    height: 19px;
    display: block;
    border-radius: 50%;
    position: relative;
    top: 2px;
    left: 2px;
}

.red::before {
    content: "";
    /* background: #ff0000; */
    width: 19px;
    height: 19px;
    display: block;
    border-radius: 50%;
    position: relative;
    top: 2px;
    left: 2px;
}

.white::before {
    content: "";
    /* background: #fff; */
    width: 19px;
    height: 19px;
    display: block;
    border-radius: 50%;
    position: relative;
    top: 2px;
    left: 2px;
}

.yellow::before {
    content: "";
    /* background: #ffff00; */
    width: 19px;
    height: 19px;
    display: block;
    border-radius: 50%;
    position: relative;
    top: 2px;
    left: 2px;
}

.colors {
    display: flex;
    background: rgb(55, 55, 55);
    padding: 5px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}
.price {
    margin-bottom: 15px;
    font-size: 20px;
    color: #a75470;
    font-weight: bold;
}
/* .price span:first-child {
    font-size: 30px;
    font-weight: 700;
    margin-right: 10px;
}
.price span:last-child {
    color: rgb(117, 117, 117);
    text-decoration: line-through;
    font-size: 19px;
} */
.reviews {
    display: flex;
    margin: 16px 0;
}
.reviews p {
    font-size: 15px;
    color: #777;
    margin: 0;
    margin-left: 8px;
    line-height: 19px;
}
.reviews i {
    color: #000;
}
.product-title {
    font-size: 35px;
    font-weight: 700;
    /* font-style: italic; */
    color: #000;
}
.product-inf {
    margin-top: 20px;
    
}
.product-inf ul {
   display: grid;
   grid-template-columns: auto auto auto;
    list-style: none;
}
.product-inf ul li:first-child {
    margin-right: 15px;
}
.product-inf ul li {
    padding: 5px 30px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.product-inf ul li:hover {
    border-radius: 5px;
    background: #eee;
}
.product-inf ul li a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
.product-inf ul li a:hover {
    text-decoration: none;
}
.product-inf ul li.active {
    border-bottom: 3px solid #000;
    background: #eee;
    transition: 0.3s;
}

#Details {
    display: none;
}
#Details2 {
    display: none;
}

.custom-btn {
    background: #000;
    color: #fff;
    display: block;
    width: 200px;
    text-align: center;
    font-size: 16px;
    border-radius: 25px;
    padding: 10px;
    transition: 0.3s;
    font-weight: 500;
    margin-top: 20px;
}
.custom-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.88;
}

.buttons .row .col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.small-imgs {
    display: flex;
}
.small-img {
    margin: 0 5px;
    cursor: pointer;
    width: 22%;
}

.custom-btn i {
    margin-left: 15px;
}

.size,
.quantity {
    cursor: pointer;
}
.size:focus,
.quantity:focus {
    border-color: #919191 !important;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 0, 0, 0.25) !important;
}

@media only screen and (max-width: 768px){
    .product-title {
        margin-top: 65px;
    }
    .sze {
        margin-top: 28px;
    }
    .qty {
        margin-top: 28px;
    }
    .cart {
        padding: 25px;
    }
    * {
        text-align: center;
    }
    .reviews {
        display: flex;
        margin: 16px 0;
        text-align: center !important;
        align-items: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 390px){
    .cart {
        padding: 15px;
    }
}
/* photo */
.photo{
    background-image: url(./hallmark.png);
    height: 20vh;
    margin-top: 12%;
     margin-left: 2%; 
    background-repeat: no-repeat;
    background-size: 97%;
}

/* review */
.item6 {
    display: grid;
    grid-template-columns: auto auto auto auto;
  }
  
  .box {
    margin: auto;
    width: 70%;
    padding-top: 5%;
  }
  
  .box p {
    margin-left: 10%;
  }
  
  .box h5 {
    margin-left: 10%;
  }
  .box img{
    margin-left: 18%; 
  }


  /* footban */
  .footban{
    background-image: url(./footban.webp);
    height: 85vh;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 1%;
  }


  /* icons */
.icon {
    margin-top: 2%;
    width: 80%;
    margin-left: 11.2%;
    text-align: center;
    /* border: 1px solid grey; */
  }
  
  .icon i {
    font-size: 25px;
    /* padding-left: 25px; */
    /* padding-right: 25px; */
    margin-top: 2%;
    border: 1px solid grey;
    border-radius: 50%;
    padding: 1%;
  }
  
  
  
  /* footer */
  .footer-container {
    display: flex;
    justify-content: space-around;
    /* background-color: rgba(128, 128, 128, 0.121);  */
    padding: 20px;
    flex-wrap: wrap;
    padding-top: 2%;
    margin-top: 3%;
    border-top: 1px solid black;
  }
  
  .footer-section {
    margin: 10px;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .footer-section p,
  .footer-section a {
    color: black;
    text-decoration: none;
    margin: 5px 0;
  }
  
  .footer-section p {
    font-size: 14px;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  .footerphoto h4 {
    font-size: 1.1rem;
  }
  
  .footerphoto img {
    margin-top: 2%;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #22222231;
    /* color: #ccc; */
  }