*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
}

button{
    font-size: 0.8rem;
    font-weight: 500;
    padding: 13px 30px;
    outline: none;
    background-color: #1d1d1d;
    color: aliceblue;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;


}
button:hover{
    background-color: #3a3833;

}

hr{
    width: 30px;
    height: 2px;
    background-color: #fb774b;
}

.star i{
     font-size: 0.8rem;
     color: gold;
}

.navbar{
    font-size: 16px;
    top: 0;
    left: 0;
  
  
}
  

/* monile nav */

.navbar-light .navbar-toggler{
    border: none;
    outline: none;
}


#bar{
    font-size: 1.5rem;
    padding: 7px;
    cursor: pointer;
    transition: 0.5s ease;
    color: black;
    
}

#bar:hover,
#bar:active{
    color: #fff;
}
  

@media only screen and (max-width:991px ) {
    body > nav > div > button:hover,
    body > nav > div > button:focus{
        background-color: #fb774b;
    }

    body > nav > div > button:hover #bar,
    body > nav > div > button:focus #bar {
        color: #fff;
    }

    #navbarSupportedContent > ul{
        margin: 1rem;
        justify-content: flex-end;
        align-items: flex-end;
    }
    #navbarSupportedContent > ul > li:nth-child(n) > a{
        padding: 10px 0;
    }
    
}

.navbar-light .navbar-nav .nav-link{
    padding: 0 20px;
    color: black;
    transition: 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar i:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar i:active{
    color: coral;
}

.navbar i{
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

#home span{
    color: coral;
}

#home{
    background-image: url(img/slide-03.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: top 60px  center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

}

#new .ones img{
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;


}
#new .ones .details{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    
    transition: 0.3s ease;
}

#new .ones:hover .details{
    cursor: pointer;
    background-color: rgba(245,178,178,0.7);

}

#new .ones .details button{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    background: none;
    text-transform: uppercase;
   
    border: none;
    border-bottom: 1px solid #2a2a2a;
    padding: 2.5px;
    transform: translateY(70px);
    transition: 0.3s ease;
    text-decoration: none;
}

#new .ones .details button:hover{
    color: #fff;
    border-bottom: 1px solid #fff;
}

#new .ones:nth-child(1) .details{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
}
#new .ones:nth-child(2) .details{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#new .ones:nth-child(3) .details{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}



/* product page */

.product1{
    cursor: pointer;
    margin-bottom: 2rem;
}


.product1 img{
    transition: 0.3s all;
}

.product1:hover img{
    opacity: 0.8;
}


.product1 .buy-btn{
    background: #fb774b;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s all;
    border: none;

}
.product1:hover .buy-btn{
    
    transform: translateY(0px);
    opacity: 1;
    

}



#banner{
    background-image: url(img/slide-03.jpg);
    height: 60vh;
    width: 100%;
    background-size: cover;
    background-position: top 40x  center;
    background-repeat: no-repeat;
    background-attachment:fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

}





/* footer css */

footer{
    background-color: #D8D8D8;
}

footer h5{
    color: #D8D8D8;
    font-weight: 500;
    font-size: 1.2rem;
}


footer li{
    padding-bottom: 4px;

}
footer li a{
    font-size: 0.8rem;
    color: #999;
    
}
footer li a:hover{
    font-size: 0.8rem;
    color: #fb774b;
    
}




  