@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Birthstone&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
}
:root{
    --primary_color : #970512;
}
::-webkit-scrollbar {
    width: 6px;
    border: 1px solid #d5d5d5;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background: #eeeeee;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    border-radius: 10px;
    background: var(--primary_color);
}
body{
    width: 100%;
    height: 100%;
}
.top_Offer{
    width: 100%;
    height: 4vh;
    background: #E9ECEF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.top_Offer h3{
    font-size: 0.85rem;
    font-weight: 400;
}
.top_Offer h3 span{
    color: var(--primary_color);
}
.navbar{
    width: 100%;
    height: 10vh;
    padding: 0 3%;
    display: flex;
    /* border: 1px solid #000; */
}
.navbar .logo{
    width: 30%;
    /* border: 1px solid #000; */
    display: flex;
    justify-content: start;
    align-items: center;
}
.navbar .logo h1 a{
    font-size: 2.8rem;
    color: var(--primary_color);
    font-family: 'Birthstone', cursive;
    cursor: pointer;
    text-decoration: none;
}
.navbar .nav_Item{
    width: 40%;
    /* border: 1px solid yellow; */
}
.nav_Item ul{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid yellow; */
}
.nav_Item ul li{
    font-size: 1rem;
    list-style: none;
    position: relative;
    padding: 1% 0;
    cursor: pointer;
    /* border: 1px solid yellow; */
}
.nav_Item ul li a{
    text-decoration: none;
    color: #000;
}
ul li:hover::after{
    content: "";
    position: absolute;
    width: 80%;
    height: 8%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #970512;
}
#un:after{
    content: "";
    position: absolute;
    width: 80%;
    height: 8%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #970512;
}
.banner{
    width: 100%;
    height: 70vh;
    background-image: url(images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    position: relative;
}
.banner .circle_Btn{
    width: 2rem;
    height: 2rem;
    background: #af9b9b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}
.banner .circle_Btn i{
    color: #fff;
    font-size: 1.2rem;
}
.banner .s_circle_Btn{
    transform: rotate(180deg);
}
.banner .slider_Dots{
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
}
.banner .slider_Dots i{
    font-size: 0.8rem;
    color: #fff;
    cursor: pointer;
}
.best_Seller{
    width: 100%;
    /* border: 1px solid red; */
}
.best_Seller .best_seller_head{
    width: 100%;
    /* border: 1px solid red; */
    text-align: center;
    margin-top: 2%;
}
.best_Seller .best_seller_head h1{
    font-size: 2rem;
}
.best_Seller .best_seller_head p{
    font-size: 0.8rem;
    margin-top: 0.5%;
}
.best_Seller .best_seller_head hr{
    height: 0.2rem;
    width: 10%;
    margin: auto;
    border-radius: 10px;
    background-color: var(--primary_color);
    margin-top: 0.6%;
}
.best_Seller .best_seller_Items{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 1%;
    padding: 0 5%;
    justify-content: center;
}
.best_seller_Items .card{
    width: 220px;
    text-align: center;
    position: relative;
    margin: 1% 1%;
    cursor: pointer;
}
.best_seller_Items .card .sale{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary_color);
    color: #fff;
    font-size: 0.8rem;
    position: absolute;
    top: 0;
    left: 0;
}
.best_seller_Items .card img{
    width: 12rem;
}
.best_seller_Items .card p{
    font-size: 0.8rem;
    margin: 5% 0;
}
.best_seller_Items .card span{
    font-size: 0.9rem;
    color: var(--primary_color);
}
.best_seller_Items .card span strike{
    color: #434343CC;
}
@media only screen and (max-width:992px){
    .navbar .nav_Item{
        width: 70%;
    }
}
@media only screen and (max-width:768px){
    .banner{
        height: 40vh;
    }
    .best_Seller{
        margin-top: 10%;
    }
}
@media only screen and (max-width:600px){
    .navbar{
        display: block;
        height: 15vh;
    }
    .navbar .logo{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .navbar .nav_Item{
        margin-top: 2%;
        width: 100%;
    }
    .best_seller_Items .card{
        width: 160px;
    }
    .best_seller_Items .card img{
        width: 10rem;
    }
    .best_Seller .best_seller_Items{
        padding: 0 0;
    }
}