*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    transition: .5s;
}
html{
    scroll-behavior: smooth;
}
.cointiner{
    width: 100%;
    min-height: 390vh;
}
header{
    width: 100%;
    height: 90vh;
    /* border: 2px solid black; */
    position: relative;
}
header nav{
    width: 100%;
    height: 120px;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    position: fixed;
    top: 0;
    border-radius: 30px;
    z-index: 2;
}
header nav .navbar-logo{
    width: 150px;
    height: 100px;
    object-fit: cover;
}
header nav .navbar-links{
    display: flex;
    gap: 40px;
}
header nav .navbar-links li{
    list-style: none;
}
header nav .navbar-links li a{
    text-decoration: none;
    color: #ffff;
    font-size: 25px;
    font-weight: bold;
    position: relative;
}
.navbar-links li a:hover{
    color: #ffffff;
}
.navbar-links li a::after{
    content: "";
   position: absolute;
   width: 100%;
   height: 0%;
   top: 30px;
   left: 0px;
   background-color: rgb(255, 255, 255);
   transition: .2s;
   z-index: -1;
}
.navbar-links li a:hover::after{
    height: 8%;
}
header .Popular{
    width: 100%;
    height: 270px;
    /* border: 3px solid black; */
    position: absolute;
    top: 230px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.box-photo{
    width: 220px;
    height: 270px;
    /* border: 2px solid black; */
    z-index: -10;
}
.photo{
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: -10;
}
header .Pamfurce{
    width: 100%;
    height: 40px;
    /* border: 2px solid black; */
    position: absolute;
    top: 190px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: -10;
}
header .Pamfurce .box{
    width: 220px;
    height: 100%;
    /* border: 2px solid black; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
}
header .pamfurce-price{
    width: 100%;
    height: 70px;
    /* border: 2px solid black; */
    position: absolute;
    top: 490px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.pamfurce-price .box-prince{
    width: 220px;
    height: 100%;
    /* border: 2px solid black; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.pamfurce-price .box-prince p{
    font-weight: 700;
    font-size: 26px;
    
}
header .Shopping-box{
    width: 100%;
    height: 80px;
    position: absolute;
    top: 550px;
    /* border: 2px solid black; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
header .Shopping-box button{
    width: 200px;
    box-sizing: border-box;
    padding: 15px 0;
    border: none;
    background-color: rgb(0, 0, 0);
    cursor: pointer;
    color: snow;
    font-size: 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: .5s;
   
}
.Shopping-box button:hover{
  scale: 1.1;
  letter-spacing: .9px;
}
.Shopping-box button:active{
    scale: .9;
}
/* Header End */
/* Main Start */
main{
    width: 100%;
    height: 120vh;
    /* border: 2px solid black; */
    margin-top: 80px;
    position: relative;
}
main .New-Product-table{
    width: 100%;
    height: 820px;
    /* border: 2px solid rgb(0, 0, 0); */
    position: absolute;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
main .New-Product-table .week-ago{
   width: 70%;
   height: 350px;
   /* border: 2px solid rgb(0, 0, 0); */
   box-shadow: 0px 10px 40px 3px rgba(165, 165, 165, 0.396);
   border-radius: 5px;
}
.New-Product-table .week-ago .week1{
    width: 100%;
    height: 50px;
    border-bottom: 2px solid rgb(122, 117, 117);
    display: flex;
    justify-content: center;
    align-items: center;
}
main .main-photo{
    width: 100%;
    height: 100%;
    /* border: 2px solid black; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
main .box-photo-new{
    width: 200px;
    height: 200px;
    /* border: 2px solid black; */
}
main .new-card{
    width: 300px;
    height: 460px;
    /* border: 2px solid black; */
    position: absolute;
    top: 150px;
    left: 1140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
    box-shadow: 0px 10px 40px 3px rgba(165, 165, 165, 0.396);
    border-radius: 4px;
}
main .new-card img{
    width: 100%;
    height: 250px;
    border-bottom: 2px solid rgb(122, 117, 117);
    border-radius: 4px 4px 0 0;
}
main .new-card h1{
    padding: 15px 0px;
}
main .new-card p{
    padding: 0px 10px;
    padding-bottom: 10px;
}
main .new-card button{
    padding: 10px 30px;
    font-size: 17px;
    cursor: pointer;
    font-weight: 530;
    border: none;
    background-color: rgb(0, 0, 0);
    color: #ffff;
    border-radius: 14px;
    transition: .5s;
}
main .new-card button a{
    text-decoration: none;
    color: #fff;
}
main .new-card button:hover{
    scale: 1.1;
}
main .new-card button:active{
    scale: .9;
}
main .New-Product-table-box{
    width: 70%;
    height: 350px;
    /* border: 2px solid rgb(0, 0, 0); */
    position: absolute;
    top: 550px;
    box-shadow: 0px 10px 40px 3px rgba(165, 165, 165, 0.396);
}
.New-Product-table-box .week-ago{
    width: 100%;
    height: 50px;
    border-bottom: 2px solid rgb(122, 117, 117);
    display: flex;
    justify-content: center;
    align-items: center;
}
.New-Product-table-box .main-photo{
    width: 100%;
    height: 300px;
    /* border: 2px solid black; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.rating-block{
    width: 300px;
    height: 210px;
    /* border: 2px solid black; */
    position: absolute;
    top: 670px;
    left: 1140px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 10px 40px 3px rgba(165, 165, 165, 0.396);
    border-radius: 5px;
}
.rating-block .rating-photo{
    width: 100%;
}
.rating-block h1{
    font-size: 26px;
    padding: 10px 0px;
    padding-left: 20px;
}
.rating-block p{
    text-align: center;
    padding: 0px 10px;
}
.marquee{
    width: 100%;
    position: absolute;
    height: 100px;
    background-color: #000;
    top: -50px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: underline;
    text-underline-offset: 10px;
}
.marquee p{
    animation: animation-text 8s linear infinite;
    letter-spacing: 2.1px;
}
@keyframes animation-text{
    from{
        transform: translateX(80px);
    }
    50%{
        transform: translateX(400px);
    }
    to{
        transform: translateX(80px);
    }
}
/* main end */
/* Footer start */
footer{
    width: 100%;
    height: 150vh;
    /* border: 2px solid black; */
    margin-top: 180px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}
footer .box{
    width: 100%;
    height: 400px;
    /* border: 3px solid black; */
    display: flex;
    justify-content: space-between;
    padding: 0px 80px;
    flex-wrap: wrap;
    position: relative;
}
footer .box .footer-cards{
    width: 200px;
    height: 280px;
    /* border: 2px solid black; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .box .footer-cards img{
    width: 100%;
    height: 85%;
    border-bottom: 2px solid black;
}
footer .box .footer-cards p{
    padding-top: 10px;
    font-weight: 700;
    font-size: 25px;
    display: flex;
    gap: 10px;
}
footer .footer-prince{
    width: 100%;
    height: 70px;
    /* border: 2px solid black; */
    position: absolute;
    top: 2120px;
    padding: 0px 80px;
    display: flex;
    justify-content: space-between;
}
footer .buy-button{
    width: 200px;
    height: 60px;
    background-color: #000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    transition: .5s;
}
footer .buy-button:hover{
    scale: 1.1;
    letter-spacing: 1.3px;
}
footer .buy-button:active{
  scale: .9;
}
footer .footer-prince1{
    width: 100%;
    height: 70px;
    /* border: 2px solid black; */
    position: absolute;
    top: 2618px;
    padding: 0px 80px;
    display: flex;
    justify-content: space-between;
}
footer .footer-prince1 .buy-button1{
    width: 200px;
    height: 60px;
    background-color: #000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: .5s;
    cursor: pointer;
    z-index: 9;
}
footer .buy-button1:hover{
    scale: 1.1;
    letter-spacing: 1.3px;
}
footer .buy-button1:active{
  scale: .9;
}
footer .footer-again {
    width: 100%;
    height: 80px;
    /* border: 1px solid black; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -150px;
    position: relative;    
}
footer .footer-again button{
    padding: 12px 40px;
    cursor: pointer;
    position: absolute;
    top: 80px;
    border: none;
    border-radius: 20px;
    background-color: #000;
    color: #fff;
    font-size: 22px;
    transition: .5s;
    
}
footer .footer-again button a{
    text-decoration: none;
    color: #fff;
}
footer .footer-again button:hover{
    scale: 1.1;
    letter-spacing: 1.4px;
}
 footer .footer-again button:active{
        scale: .9;
}
footer .banner{
    width: 100%;
    height: 100px;
    border: 2px solid black;
    background-color: #000;
    display: flex;
    align-items: center;
    font-size: 37px;
    color: #fff;
    letter-spacing: 1.4px;
    text-decoration: underline;
    text-underline-offset: 12px;
}
footer .footer-prince:nth-child(2) .buy-button{
    background-color: red;
}
footer .banner p{
    animation: footer-banner 18s linear infinite;
}
@keyframes footer-banner{
   from{
     transform: translateX(0);
   }
   50%{
     transform: translateX(1080px);
   }
   to{
    transform: translateX(0);
   }
}
#Newproducts{
    color: red;
}
/* Footer end */