*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.banner{
    width: 100%;
    height: 100vh;
    background-image: url(Source/Banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 0 8%;
}

nav img{
    width: 85px;
    cursor: pointer;
}

nav{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
}

nav ul{
    flex: 1;
    text-align: right;
    padding-right: 25px;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin: 10px 25px;
    padding: 10px 0;
    position: relative;
}

nav ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background-color: #777;
    display: block;
    margin: auto;
    transition: 0.5s;
}

nav ul li:hover::after{
    width: 100%;
}

nav ul li a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    position: relative;
}

nav .cart{
    width: 30px;
    cursor: pointer;
}

/*--------Left--------*/

.left{
    color: rgb(0, 0, 0);
    position: absolute;
    text-align: left;
    margin-top: 120px;
}

.left h1{
    text-transform: uppercase;
    font-size: 140px;
    line-height: 160px;
    color: transparent;
    -webkit-text-stroke: 2px rgb(0, 0, 0);
    background-image: url(Source/back.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}

@keyframes back{
    100%{
        background-position: 2000px 0;
    }
}

.left h3{
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
    color: #777;
}

.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.row a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    padding: 10px 16px 10px 20px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.row a span{
    font-size: 30px;
    line-height: 15px;
    margin-left: 5px;
}

.row a:hover{
    background-color: #777;
    transition: 0.5s;
    color: white;
    border: 1px solid black;
}

.row p{
    color: black;
    font-size: 15px;
}

.mainwatch{
    width: 500px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: 1s;
}

.mainwatch:hover{
    transform: translateX(20px)
}

/*--------Details Bar-------*/

.details{
    width: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 0 100px;
}

.details-col{
    display: flex;
    margin: 15px 20px;
}

.details-col img{
    width: 50px;
    padding-right: 15px;
}

.details-text h5{
    font-size: 14px;
    font-weight: 500;
}

.details-text p{
    font-size: 13px;
    font-weight: 200;
}

/*--------Shop Now----------*/

.shopnow{
    width: 88%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
}

.shopnow-col{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: black;
    margin: 10px;
    border-radius: 10px;
    background: #f0f0f0;
    border: 1px solid #f0f0f0;
}

.shopnow-text{
    color: black;
    padding: 20px 25px 20px 30px;
    margin: 10px;
    border-radius: 10px;
    background: #f0f0f0;
    border: 1px solid #f0f0f0;
}

.shopnow-col img{
    position: relative;
    width: 250px;
    padding-right: 20px;
    transition: 0.4s;
}

.shopnow-col img:hover{
    transform: translateY(-5px);
}

.shopnow-col h5{
    font-weight: 300;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.shopnow-col p{
    font-weight: 300;
    text-transform: capitalize;
    padding: 12px 0;
    color: #777;
}

.shopnow-col h2{
    font-weight: 400;
    padding-bottom: 12px;
    line-height: 32px;
}

.shopnow-col button{
    padding: 5px 12px;
    text-transform: capitalize;
    cursor: pointer;
    border-radius: 10px;
}

.shopnow-col button:hover{
    background: #777;
    transform: translateX(3.5px);
    transition: 0.4s;
    color: white;
}

/*--------Features Products--------*/

#product1
{
    text-align: center;
}

.section-p1 h2{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 100;
}

.section-p1 h2 span{
    font-size: 35px;
    font-weight: 600;
}

.section-p1 p{
    color: #777;
}

#product1 .pro-container
{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;

}

#product1 .pro
{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #777;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover
{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);  
}

#product1 .pro img
{
    width: 100%;
}

#product1 .pro .des
{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span
{
    color: #606063;
    font-size: 12px;
    text-transform: uppercase;
}

#product1 .pro .des h5
{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des h4
{
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #777;
}

#product1 .pro .smallcart
{
    width: 35px;
    height: 35px;
    position: absolute;
    bottom: 25px;
    right: 20px;
    transition: 0.1s;
}

#product1 .pro .smallcart:hover{
    transform: translateY(-2px);
}

/*---------Offer------*/

.offer{
    width: 100%;
    height: 60vh;
    display: flex;
    background-position: center;
    background-size: cover;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    padding: 100px;
    margin: 20px 0;
}

.offer-col{
    margin: 0 2%;
    transition: 0.4s;
}

.offer-col:hover{
    transform: translateX(5px);
}

.offer img{
    width: 300px;
    transition: 0.4s;
}

.offer img:hover{
    transform: translateX(-5px)
}

.offer-col h5{
    font-size: 25px;
    font-weight: 500;
    color: #777;
}

.offer-col h3{
    margin: 22px 0;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 50px;
}

/*---------Details Bar 2-------*/

.section-p1
{
    padding: 40px 80px;
}
#feature
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box
{
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 14px;
    margin: 15px 0;
}
#feature .fe-box:hover
{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
#feature .fe-box img
{
    width: 100%;
    margin-bottom: 10px;
}
#feature .fe-box h6
{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 18px;
    color: #777;
    background-color: #fddde4;
}
#feature .fe-box:nth-child(2) h6
{
    background-color: #cdebbc;
}
#feature .fe-box:nth-child(3) h6
{
    background-color: #bceaeb;
}
#feature .fe-box:nth-child(4) h6
{
    background-color: #ebbce9;
}
#feature .fe-box:nth-child(5) h6
{
    background-color: #cdebbc;
}
#feature .fe-box:nth-child(6) h6
{
    background-color: #ebd3bc;
}
.section-p1 h2
{
    font-size: 40px;
}

/*--------Footer--------*/

footer
{
    width: 100%;
    position: relative;
    bottom: 0;
    background: #262626;
    color: #fff;
    padding: 50px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.footerrow
{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footerrow-col
{
    flex-basis: 25%;
    padding: 10px;
}

.footerlogo
{
    width: 120px;
}

.footerrow-col h3
{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
}

.email-id
{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.footerrow-col ul li
{
    list-style: none;
    margin-bottom: 12px;
}

.footerrow-col ul li a
{
    text-decoration: none;
    color: #fff;
    
}

form
{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

form input
{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

hr
{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright
{
    text-align: center;
}

.underline
{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span
{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving
{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

.social-icn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
}

.social-icn img{
    width: 40px;
    margin-right: 10px;
}