/*-------------Navbar-------------------*/
.navbar {
    background-color: #03A9F4!important;
}
#nav-bar {
    position: sticky;
    top: 0px;
    z-index: 10;
}
.nav-link {
    color: #fff!important;
    font-weight: bold!important;
    text-transform: uppercase!important;
}
/*---------------Slider-----------------*/
.carousel-caption {
    color: black;
}
/*--------------Shopping cart------------*/
.shopping-cart {
    display: inline-block;
    background: url(./Images/cart.png) no-repeat 0 0;
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
}
/*--------------Card--------------------*/
.mainCard {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}
.cardOne, .cardTwo, .cardThree {
    display: flex;
    width: 400px;
    height: 100px;
    background-color: #fff;
    box-shadow: 2px 4px 5px grey;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.fa-style {
    margin-right: 10px;
    color: #03A9F4!important;
}
.heading-style {
    color: #03A9F4;
}
/*------------------------New Arrivals------------------------*/
.newArrivals {
    margin-top: 20px;
}
.NewAHD {
    color: #03A9F4;
}
.NewAHD > h1 {
    text-shadow: 2px 2px 4px black;
}
.card {
    width: 260px;
    height: auto !important;
    margin-bottom: 5px;
}
.card img {
    height: 280px;
}
.btn-outline-primary {
    width: 100%;
}
.btn-outline-primary:hover {
    background-color: #03A9F4;
}
/*---------------------Featured Product---------------------------*/
.FeaturedProduct {
    margin-top: 20px;
}
/*-------------------------Footer---------------------------------*/
.footer {
    width: 100%;
    height: 70px;
    background-color: #03A9F4;
}
.footer > div {
    text-align: center;
}
.footer > div > h3 {
    color: #fff;
}

@media screen and (max-width: 815px) {
    .cardOne, .cardTwo, .cardThree {
        width: 100%;
    }
}