* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

a {
    color: unset;
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero - Section Start  */
.slider .slide {
    width: 100%;
    height: 100vh;

}

.slider .slide .item {
    height: 100%;
    width: 100%;
    position: absolute;
    transition: opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;

}

.item.active {
    opacity: 1 !important;
    pointer-events: auto;
    z-index: 1;
}

.slider button {
    cursor: pointer;
    padding: 30px 10px;
    border-radius: 5px;
    border: 0;
    background-color: #fcf1e3 !important;
}

/* Hero - Section End  */

/* Tag-Line Section Start  */
.tag-line{
    margin: 120px 0px;
}
.tag-line .content h1{
    font-size: 80px;
    font-family: "Poppins";
    font-weight: 900;
}
.tag-line .content p{
    color: gray;
    font-size: 18px;
}
/* Tag-Line Section End  */

/* Cart - Section Start   */
.carts h3{
    font-family: "Poppins";
    font-weight: 800;
    font-size: 40px;
}
.cart {
    padding: 0 25px;
    min-width: 350px;
    border-radius: 30px;
}
.cart-scroller {
    scroll-behavior: smooth;
    /* makes scrollBy smooth */
}

.colors {
    display: flex;
    font-size: xx-small;
    text-align: center;
    gap: 1em;
}

.colors .ellipse {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* Cart - Section End   */

/* Footer Start  */
footer span{
    font-size: 20px;
    font-weight: 600;
}
footer .border-top{
    border-color: rgb(168, 167, 167) !important;
}
/* Footer End  */