.container-fluid img {
    height: 10vh;
    width: 10vw;
}

/* Cart Section */

.cart-section h2 {
    text-align: center;
    font-size: 3em;
    padding-top: 1em;
    padding-bottom: 1em;
    font-weight: bold;
}

.listProduct {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
}

.listProduct .item {
    background-color: rgb(220, 221, 221);
    padding: 1em;
    border-radius: 1em;
    text-align: center;
    margin: 1em;
    box-shadow: 0.5em 0.4em 0.6em;
    overflow: hidden;
}

.listProduct .item:hover img {
    scale: 1.1;
}

.listProduct .item img {
    height: 50vh;
    width: 100%;
}

.listProduct .item p {
    text-align: justify;
}

.listProduct .item h2 {
    font-weight: bold;
    font-size: 1.5em;
}

/* Footer Section */

footer {
    position: absolute;
    height: 65vh;
    width: 100%;
    background-color: rgb(71, 69, 69);
    padding-top: 2em;
}

.f-main {
    display: flex;
    flex-wrap: wrap;
    color: white;
    justify-content: space-evenly;
}

.f-about {
    width: 20%;
    text-align: justify;
}

.f-navbar ul {
    padding-left: 1.2em;
}

.f-navbar ul li {
    padding: 0.2em;
}

.f-navbar ul li a {
    color: white;
    text-decoration: none;
}

.f-contact p i {
    margin-right: 0.5em;
}

.f-discover ul {
    list-style: none;
    padding-left: 0;
    cursor: pointer;
}

.f-navbar ul li a:hover {
    color: rgb(91, 91, 203);
}

.f-discover ul li {
    padding: 0.2em;
}

.f-icons i {
    font-size: x-large;
}

.f-icons a i {
    color: white;
    margin: 0.2em;
    cursor: pointer;
}

.f-icons a i:hover {
    color: rgb(91, 91, 203);
}

.rights {
    color: white;
    font-size: 1em;
    background-color: orange;
    background-color: rgb(91, 91, 203);
    text-align: center;
    height: 8vh;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 0.5em;
}

@media (max-width:1000px) {
    .listProduct {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer Section */

    footer {
        height: 50%;
    }

    .f-about {
        width: 40%;
    }

    .f-about h2 {
        font-size: small;
        margin-left: 0.5em;
    }

    .f-about p {
        font-size: x-small;
        margin-left: 0.5em;
    }

    .f-navbar h2 {
        font-size: small;
        padding-left: 1.2em;
        margin-bottom: 0;
    }

    .f-navbar ul {
        margin-top: 0;
        padding-left: 1.2em;
    }

    .f-navbar ul li {
        padding: 0;
    }

    .f-navbar ul li a {
        font-size: x-small;
    }

    .f-contact h2 {
        font-size: small;
    }

    .f-contact p,
    i {
        margin-top: 0.1em;
        margin-right: 1em;
        font-size: x-small;
    }


    .f-contact p i {
        margin-right: 0.2em;
        margin-left: 0em;
    }

    .f-discover h2 {
        font-size: small;
        padding-right: 1em;
    }

    .f-discover ul {
        list-style: none;
        padding-left: 0;
        cursor: pointer;
        margin-bottom: 0.2em;
    }

    .f-discover ul li {
        font-size: x-small;
        margin-top: 0;
    }

    .f-discover ul li {
        padding: 0.2em;
    }

    .f-icons i {
        margin-top: 0;
        font-size: x-small;
    }

    .f-icons a i {
        color: white;
        margin: 0.2em;
        cursor: pointer;
    }

    .f-icons a i:hover {
        padding: 0.2em;
    }

    .rights h3 {
        font-size: 1em;
    }

}

@media (max-width:500px) {
    .listProduct {
        grid-template-columns: repeat(1, 1fr);
    }

    .carousel .carousel-item img{
        height: 80vh;
    }

    .cart-section h2{
        font-size: 2.2em;
    }

    /* Footer Section */

    footer {
        height: 100vh;
    }

    .f-main {
        flex-direction: column;
        margin-left: 1.5em;
    }

    .f-about {
        width: 80%;
        margin-bottom: -1em;
    }

    .f-about h2 {
        font-size: large;
        margin-left: 0.3em;
    }

    .f-about .f-about-para {
        font-size: small;
    }

    .f-contact p {
        font-size: small;
        margin-bottom: -0.8em;
    }

    .f-navbar {
        margin-left: 0.2em;
        margin-top: 0.6em;
    }

    .f-navbar h2 {
        font-size: large;
        margin-bottom: 0.8em;
        margin-left: -1em;
    }

    .f-navbar ul li a {
        font-size: small;
    }

    .f-contact h2 {
        font-size: large;
        margin-bottom: 0.5em;
        margin-left: 0.4em;
    }

    .f-contact h3 {
        font-size: medium;
        margin-left: -0.2em;
        margin-top: 0.8em;
    }

    .f-contact p,
    i {
        margin-top: 0.7em;
        margin-left: 0.7em;
        font-size: small;
    }

    .f-discover {
        margin-top: 1.8em;
        margin-left: 0.6em;
    }

    .f-discover h2 {
        font-size: large;
    }

    .f-discover ul {
        margin-top: -0.5em;
    }

    .f-discover ul li {
        font-size: small;
        margin-bottom: -0.5em;
    }

    .f-icons i {
        font-size: small;
    }

}