@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/paper-works-personal-use-only');
/* Root */
:root{
    ---pink:#da2164;
    ---black:#2e2e2e;
    ---white:#ffffff;
    ---gray:#f5f5f5;
    ---dark:#036805;
    ---light:#678a14;
    ---yellow:#ffb900;
}
/* Root */

/* Body */
*{
margin: 0px;
padding: 0px;
border: none;
outline: none;
text-decoration: none;
text-transform: uppercase;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

html{
font-size: 100%;
scroll-behavior: smooth;
scroll-padding-top: 0px;
background: url(img/bac.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
section{
padding: 20px 150px;
}
/*body*/

/*header*/
.header{
    background-color: transparent;
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .container nav{
    display: flex;
    align-items: center;
}
.header .container nav .navbar a{
    font-size: 20px;
    font-weight: 600;
    color: var(---black);
    padding: 0px 20px;
    padding-bottom: 5px;
}
.header .container nav .navbar a:hover{
    color: var(---pink);
    border-bottom: 5px solid var(---pink);
}
.header .container nav .right-data{
    display: flex;
    align-items: center;
}
.header .container nav .right-data #menu{
    margin-right: 20px;
    display: none;
}
.header .container nav .right-data i{
    border: 3px solid var(---gray);
    color: var(---black);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 100px;
}
.header .container nav .right-data #shop{
    margin-right: 20px;
}
.header .container nav .right-data i:hover{
    border: 3px solid var(---pink);
    color: var(---pink);
}
.header .container nav .right-data button{
    width: 200px;
    height: 89px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, var(---light), var(---dark));
    color: var(---white);
    cursor: pointer;
}
.header .container nav .navbar.active{
    visibility: inherit;
}
/*header*/

/*hero*/
.hero{
    background-image: url(img/heroback.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 840px;
}
.hero .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero .container .text .button{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .container .text button{
    width: 241px;
    height: 80px;
    font-size: 20px;
    color: var(---white);
    background-color: var(---pink);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    margin-left: 80px;
}
.hero .container .text button:hover{
    box-shadow: 0px 20px 20px #ffffff3d;
}
/*hero*/

/*product*/
.product{
    background-color: transparent;
    margin-top: 150px;
}
.product .heading{
    text-align: center;
}
.product .heading h1{
    font-size: 80px;
    color: var(---black);
    font-weight: 700;
}
.product .proslider{
    background-color:transparent;
    padding: 20px 0px;
    margin-top: 100px;
}
.product .proslider .p1{
    width: 280px;
    height: 500px;
    display: flex;
    justify-content: center;
}
.product .proslider .p1 .data .image{
    background-color: var(---gray);
    width: 280px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 50% 30px 30px;
}
.product .proslider .p1 .data .text{
    text-align: center;
    margin-top: 20px;
}
.product .proslider .p1 .data .text h1{
    font-size: 30px;
    color: var(---pink);
    font-weight: 700;
}
.product .proslider .p1 .data .text h2{
    font-size: 30px;
    color: var(---black);
    font-weight: 700;
    margin: 20px 0px;
}
.product .proslider .p1 .data .text .icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.product .proslider .p1 .data .text i{
    width: 60px;
    height: 60px;
    font-size: 20px;
    background-color: var(---gray);
    color: var(---black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}
.product .proslider .p1 .data .text i:hover{
    background-color: var(---pink);
    color: var(---white);
}
/*product*/

/*about*/
.about{
    margin-top: 150px;
}
.about .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about .container .text h2{
    font-size: 60px;
    color: var(---black);
    font-family: 'Paper Works Personal Use only', sans-serif;
    letter-spacing: 2px;
}
.about .container .text h1{
    font-size: 80px;
    color: var(---pink);
    font-weight: 800;
    line-height: 100px;
    margin-top: 30px;
}
.about .container .text p{
    font-size: 20px;
    color: var(---black);
    font-weight: 600;
    line-height: 40px;
    margin-top: 30px;
}
.about .container .text .button{
    margin-top: 40px;
}
.about .container .text .button button{
    width: 200px;
    height: 80px;
    background: linear-gradient(90deg, var(---light) , var(---dark));
    border-radius: 10px;
    font-size: 20px;
    color: var(---white);
    font-weight: 600;
    cursor: pointer;
}
.about .container .text .button button:hover{
    box-shadow: 0px 10px 20px #03680580;
}
/*about*/

/*testimonial*/
.tes{
    background-color: transparent;
    margin-top: 150px;
}
.tes .heading{
    text-align: center;
}
.tes .heading h2{
    font-size: 60px;
    color: var(---pink);
    font-family: 'Paper Works Personal Use only', sans-serif;
    letter-spacing: 3px;
}
.tes .heading h1{
    font-size: 80px;
    color: var(---black);
    font-weight: 800;
}
.tes .tesslider{
    padding: 20px 20px;
    margin-top: 50px;
}
.tes .tesslider .box{
    width: 550px;
    height: 625px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f577;
    cursor: default;
}
.tes .tesslider .box:hover{
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
}
.tes .tesslider .box .data{
    text-align: center;
}
.tes .tesslider .box .data .image img{
    border-radius: 100px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.205);
    border: 5px solid var(---white);
}
.tes .tesslider .box .data h1{
    font-size: 40px;
    font-weight: 700;
    color: var(---pink);
    margin-top: 20px;
}
.tes .tesslider .box .data p{
    font-size:  18px;
    font-weight: 500;
    color: var(---black);
    line-height: 40px;
    margin-top: 20px;
}
.tes .tesslider .box .data .star{
    margin-top: 20px;
}
.tes .tesslider .box .data .star i{
    font-size: 30px;
    color: var(---yellow);
    padding: 0px 5px;
}
/*testimonial*/

/*contact*/
.contact{
    background-color: transparent;
    margin-top: 150px;
}
.contact .container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact .container .data-box{
    background-color: var(---pink);
    width: 1220px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 0px 50px 80px #da2165b0;
}
.contact .container .data-box .text{
    text-align: center;
}
.contact .container .data-box .text h1{
    color: var(---white);
    font-size: 88px;
    font-weight: 800;
}
.contact .container .data-box .text .time{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.contact .container .data-box .text h2{
    font-size: 35px;
    color: var(---white);
    font-weight: 700;
}
.contact .container .data-box .text span{
    width: 20px;
    height: 20px;
    border: 5px solid var(---white);
    border-radius: 50px;
}
/*contact*/

/*footer*/
.footer{
    background-color: var(---black);
    margin-top: 150px;
}
.footer .container{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.footer .container .link .icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .container .link .icon i{
    font-size: 20px;
    width: 50px;
    height: 50px;
    border: 2px solid var(---white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(---white);
    margin: 10px 5px;
    border-radius: 50px;
    cursor: pointer;
}
.footer .container .link .icon i:hover{
    border: 2px solid var(---pink);
    color: var(---pink);
}
.footer .container .link h1{
    font-size: 30px;
    color: var(---white);
    font-weight: 700;
}
.footer .container .link .navbar a{
    display: block;
    color: var(---white);
    font-weight: 500;
    line-height: 40px;
}
.footer .container .link a{
    display: block;
    color: var(---white);
    font-weight: 500;
    line-height: 40px;
}
.footer .container .link a:hover{
    color: var(---pink);
}
.footer .container .link p{
    font-size: 16px;
    color: var(---white);
    font-weight: 400;
    line-height: 30px;
    margin-top: 10px;
}
.footer .container .link .search{
    margin-top: 20px;
}
.footer .container .link .search .input{
    width: 445px;
    height: 60px;
    display: flex;
    align-items: center;
    border: 2px solid var(---white);
    border-radius: 5px;
}
.footer .container .link .search .input input{
    width: 100%;
    height: 100%;
    font-size: 16px;
    background-color: transparent;
    color: var(---white);
    padding-left: 10px;
}
.footer .container .link .search .input i{
    padding-right: 25px;
    color: var(---white);
    cursor: pointer;
    font-size: 16px;
}
.footer .container .link .search .input i:hover{
    color: var(---pink);
}
.footer .container .link .search .input input::placeholder{
    color: var(---white);
    font-size: 16px;
}
.footer .last{
    text-align: center;
    border-top:2px solid var(---white) ;
    margin-top: 50px;
    padding: 10px 0px;
}
.footer .last a{
    font-size: 16px;
    color: var(---white);
    font-weight: 700;
    padding: 10px 0px;
}
/*footer*/











/* media quries */


@media (max-width:1772px) {
    section{
        padding: 20px 100px;
    }
}
@media (max-width:1674px) {
    section{
        padding: 20px 75px;
    }
    .header .container nav .navbar a{
        font-size: 18px;
        font-weight: 700;
        color: var(---black);
        padding: 0px 15px;
        padding-bottom: 5px;
    }
    .header .container nav .right-data button{
        width: 150px;
        height: 60px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 700;
        background: linear-gradient(90deg, var(---light), var(---dark));
        color: var(---white);
        cursor: pointer;
    }
    .header .container nav .right-data i{
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    .hero .container .image{
        width: 700px;
    }
    .hero .container .image img{
        width: 100%;
    }
}
@media (max-width:1574px) {
    section{
        padding: 20px 50px;
    }
    .header .container .logo{
        width: 330px;
    }
    .header .container .logo img{
        width: 100%;
    }
}
@media (max-width:1486px) {
    .about .container .image{
        width: 700px;
    }
    .about .container .image img{
        width: 100%;
    }
}
@media (max-width:1390px) {
    section{
        padding: 20px 35px;
    }
    .header .container nav .navbar a{
        font-size: 17px;
        font-weight: 700;
        color: var(---black);
        padding: 0px 15px;
        padding-bottom: 5px;
    }
    .hero .container .image{
        width: 650px;
    }
    .hero .container .image img{
        width: 100%;
    }
    .about .container .image{
        width: 620px;
    }
}
@media (max-width:1280px) {
    section{
        padding: 20px 25px;
    }
    .header .container nav .navbar{
        text-align: center;
        position: absolute;
        top: 12%;
        width: 100%;
        right: 0%;
        visibility: hidden;
    }
    .header .container nav .navbar .link{
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.212);
        width: 95%;
        margin: 0px auto;
        background-color: var(---white);
    }
    .header .container nav .navbar a{
        display: block;
        line-height: 50px;
        border-bottom: 3px solid var(---gray);
        border-radius: 10px;
    }
    .header .container nav .right-data #menu{
        margin-right: 20px;
        display: inherit;
    }
    .header .container nav .navbar a:hover{
        color: var(---white);
        background-color: var(---pink);
        border: none;
    }
    .hero .container{
        display: block;
    }
    .hero .container .text{
        margin: 0px auto;
    }
    .hero .container .image{
        margin: 0px auto;
        margin-top: 50px;
    }
    .hero{
        height: 100%;
    }
    .hero .container .text .image-text{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero .container .text .button{
       display: flex;
       align-items: center;
       justify-content: center;
    }
    .hero .container .text .button button{
        margin-left: 0px;
    }
    .product{
        margin-top: 100px;
    }
    .product .proslider{
        margin-top: 50px;
    }
    .about{
        margin-top: 100px;
    }
    .about .container{
        display: block;
    }
    .about .container .image{
        margin: 0px auto;
        width: 700px;
    }
    .about .container .text{
        text-align: center;
        margin-top: 150px;
    }
    .contact{
        margin-top: 100px;
    }
    .contact .container .data-box .text .time{
        display: block;
    }
    .contact .container .data-box .text span{
        display: none;
    }
    .contact .container .data-box .text h2{
        margin: 10px 0px;
    }
    .footer{
        margin-top: 100px;
    }
    .footer .container{
        display: block;
        text-align: center;
    }
    .footer .container .link{
        margin: 20px 0px;
    }
    .footer .container .link .search{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width:1080px) {
    section{
        padding: 20px 20px;
    }
    .tes .heading h1{
        line-height: 80px;
    }
    .contact .container .data-box .text h1{
        font-size: 70px;
    }
}
@media (max-width:780px) {
    section{
        padding: 20px 15px;
    }
    .hero .container .image{
        width: 100%;
    }
    .contact .container .data-box .text h1{
        font-size: 60px;
    }
}
@media (max-width:690px) {
    section{
        padding: 20px 10px;
    }
    .header .container nav .right-data #menu{
        margin-right: 10px;
    }
    .header .container nav .right-data #shop{
        margin-right: 0px;
    }
    .header .container nav .right-data button{
        display: none;
    } 
    .hero .container .text .image-text{
        width: 100%;
    }
    .hero .container .text .image-text img{
        width: 100%;
    }
    .product .heading h1{
        font-size: 60px;
        color: var(---black);
        font-weight: 700;
    }
    .about .container .image{
        width: 100%;
    }
    .about .container .text{
        margin-top: 100px;
    }
    .about{
        margin-top: 50px;
    }
    .product{
        margin-top: 50px;
    }
    .tes .heading h1{
        font-size: 60px;
        line-height: 70px;
    }
    .contact .container .data-box .text h1{
        font-size: 48px;
    }
    .contact{
        margin-top: 50px;
    }
    .footer .last a{
        font-size: 12px;
    }
    .footer{
        margin-top: 50px;
    }
}
@media (max-width:500px) {
    section{
        padding: 20px 5px;
    }
    .header .container .logo{
        width: 250px;
    }
    .product .heading h1{
        font-size: 50px;
        color: var(---black);
        font-weight: 700;
    }
    .about .container .text h1{
        font-size: 60px;
        color: var(---pink);
        font-weight: 800;
        line-height: 70px;
        margin-top: 30px;
    }
    .about .container .text{
        margin-top: 50px;
    }
    .tes .tesslider .box .data p{
        font-size:  16px;
        font-weight: 500;
        color: var(---black);
        line-height: 30px;
        margin-top: 20px;
        padding: 0px 20px;
    }
    .contact .container .data-box .text h1{
        font-size: 40px;
    }
    .contact .container .data-box .text h2{
        font-size: 25px;
    }
}
@media (max-width:400px) {
    .header .container .logo{
        width: 200px;
    }
    .header .container nav .right-data #shop{
        display: none;
    }
    .hero .container .text button{
        width: 180px;
        height: 70px;
        font-size: 16px;
        color: var(---white);
        background-color: var(---pink);
        border-radius: 10px;
        cursor: pointer;
        font-weight: 700;
    }
    .product .heading h1{
        font-size: 40px;
        color: var(---black);
        font-weight: 700;
    }
    .product{
        margin-top: 30px;
    }
    .product .proslider{
        margin-top: 25px;
    }
    .about .container .text h1{
        font-size: 40px;
        line-height: 50px;
        margin-top: 0px;
    }
    .about .container .text h2{
        font-size: 40px;
        line-height: 50px;
        margin-top: 0px;
    }
    .about .container .text p{
        line-height: 40px;
        margin-top: 10px;
    }
    .about .container .text .button{
        margin-top: 20px;
    }
    .about .container .text{
        margin-top: 30px;
    }
    .about{
        margin-top: 30px;
    }
    .tes{
        margin-top: 30px;
    }
    .tes .tesslider{
        margin-top: 30px;
    }
    .tes .tesslider .box .data h1{
        font-size: 25px;
        font-weight: 700;
        color: var(---pink);
        margin-top: 20px;
    }
    .tes .heading h1{
        font-size: 40px;
        line-height: 50px;
    }
    .tes .heading h2{
        font-size: 40px;
    }
    .tes .tesslider .box{
        height: 550px;
    }
    .contact{
        margin-top: 30px;
    }
    .contact .container .data-box .text h1{
        font-size: 30px;
    }
    .contact .container .data-box{
        height: 300px;
    }
    .footer .last a{
        font-size: 8px;
    }
    .footer .last{
        padding: 0px 0px;
    }
    .footer{
        margin-top: 30px;
    }
}
/* media quries */