*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: capitalize;
    text-decoration: none;
    transition: .2s linear;
    color: black;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section{
    padding: 2rem 9%;
}
.heading{
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(255,51,153,.05);
    
}
.heading span{
    color: rgba(255, 3, 162, 0.927);;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover{
    background:rgba(255, 3, 162, 0.927);
}
/* header style */

header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    padding: 1.5rem 9%;
    position:sticky;
    z-index:5;
}

header .logo{
    font-size:3rem ;
    color: #333;
    font-weight: bolder;
}

header .logo span{
    color:rgba(255, 3, 162, 0.927);
}

header .navbar a{
    font-size:1.8rem ;
    padding: 0 1.5rem;
    color: #666;
}

header .navbar a:hover{
    color:rgba(255, 3, 162, 0.927);
}

header .icon a{
    color: #333;
    margin-left: 1.7rem;
    font-size: 1.4rem;
}

header .icon a:hover{
    color:rgba(255, 3, 162, 0.927);
}

header #menu{
    display: none;
}

header .fa-bars{
    font-size: 1.8rem;
    color: #333;
    border-radius: .5rem;
    padding: .3rem .8rem;
    cursor: pointer;
    border: .1rem solid rgba(0,0,0,.3);
    display: none;
}

/* section style */

.home{
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: url("pink-flowers.avif");
    background-size: cover;
    background-position: center;
}

.home .content{
    max-width: 50rem;
}

.home .content h3{
    color: #333;
    font-size:6rem;
}

.home .content span{
    color:rgba(255, 3, 162, 0.927);
    font-size:3.5rem;
    padding: 1rem 0;
    line-height: 1.5;
}
.about .row{
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-bottom: 3rem;
}
.about .row .video-container{
    flex: 1 1 40rem; 
    position: relative;
}

.about .row .video-container video{
    width: 100%;
    border: 1.5rem solid #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    height: 100%;
    object-fit: cover;
    
}
.about .row .content{
    flex: 1 1 40rem; 
}

.about .row .content h3{
    font-size: 3rem;
    color: #333;
}

.about .row .content p{
    font-size: 1.5rem;
    color: #999;
    padding: .5rem 0;
    padding-top: 1rem;
    line-height: 1.5;
}

.about .row .video-container h3{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background:#fff ;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    mix-blend-mode: screen;
}

.home .content p{
    color:#fff;
    font-size:1.5rem;
    padding: 1rem 0;
    line-height: 1.5;
}
.icon-content{
    background: #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.icon-content .icon{
    background: #fff;
    border: 1rem solid rgba(0,0,0,.1);
    padding: 2rem;
    display: flex; 
    align-items: center;
    flex: 1 1 25rem;
    
}
.icon-content .icon img{
    height: 5rem;
    margin-right: 2rem;
}
.icon-content .icon h3{
    color: #333;
    padding-bottom: .5rem;
    font-size: 1.5rem;
}
.icon-content .icon span{
    color: #555;
    font-size: 1.3rem;
}

.products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;

}

.products .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0.5rem 1.5rem rgba(0,0,0,.1);
    border-radius: .5rem;
    border: 1rem solid rgba(0,0,0,.1);
    position: relative;
    
}

.products .box-container .box .discount{
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding:.7rem 1rem ;
    font-size: 2rem;
    color:rgba(255, 3, 162, 0.927) ;
    background: rgba(255,51,153,.05);
    z-index: 1;
    border-radius: .5rem;
}
.products .box-container .box .image{
    position: relative;
    text-align: center;
    padding-top: 2rem;
    overflow: hidden;
}
.products .box-container .box .image img{
    height: 25rem;
}
.products .box-container .box:hover .image img{
    transform: scale(1.1);
}
.products .box-container .box .image .icon{
   position: absolute;
    bottom:-7rem;
    left: 0;
    right:0 ;
    display: flex;
}
.products .box-container .box:hover .image .icon{
    bottom: 0;
}
.products .box-container .box .image .icon a{
    height: 5rem;
    line-height: 5rem;
    font-size: 1.5rem;
    width: 50%;
    background:rgba(255, 3, 162, 0.927) ;
    color: #fff;
}
.products .box-container .box .image .icon .cart-btn{
    border-left: .1rem solid #fff7;
    border-right: .1rem solid #fff7;
    width: 100%;
}
.products .box-container .box .image .icon a:hover{
    background: #333;
}
.products .box-container .box .content{
    padding: 2rem;
    text-align: center;
}
.products .box-container .box .content h3{
    font-size: 2.5rem;
    color:#333 ;
}
.products .box-container .box .content .price{
    font-size: 2.5rem;
    color: rgba(255, 3, 162, 0.927);
    font-weight: bolder;
    padding-top: 1rem;
}
.products .box-container .box .content span{
    font-size: 1.5rem;
    color:#999;
    font-weight: lighter;
    text-decoration: line-through;
}
.review .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.review .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0.5rem 1.5rem rgba(0,0,0,.1);
    border-radius:.5rem;
    padding: 3rem 2rem;
    position: relative;
    border: 1rem solid rgba(0,0,0,.1);
}
.review .box-container .box .fa-quote-right{
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    font-size: 6rem;
    color: #eee;
}
.review .box-container .box .stars i{
    color: rgba(255, 3, 162, 0.927);
    font-size: 2rem;
} 
.review .box-container .box p{
    color: #999;
    font-size: 1.5rem;
    line-height: 1.5;
    padding-top: 2rem;
}
.review .box-container .box .user{
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.review .box-container .box .user img{
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}
.review .box-container .box .user h3{
    font-size: 2rem;
    color: #333;
}
.review .box-container .box .user span{
    font-size: 1.5rem;
    color: #999;
}
.contact .row{
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 1.5rem;
    align-items: center;

}
.contact .row form{
    flex: 1 1 40rem;
    padding: 2rem 2rem;
    box-shadow: 0.5rem 1.5rem rgba(0,0,0,.1);
    border: .1rem solid rgba(0,0,0,.1);
    background: #fff;
    border-radius: .5rem;
}
.contact .row .image{
    flex: 1 1 40rem;
}
.contact .row .image img{
    width: 100%;
}

.contact .row form .box{
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    text-transform: none;
    border: .5rem solid rgba(0,0,0,.1);
    border-radius: .5rem;
    margin: .7rem 0;
    width: 100%;
}
.contact .row form .box:focus{
    border-color: rgba(255, 3, 162, 0.927);
}
.contact .row form textarea{
    height: 15rem;
    resize: none;
}
/* footer style */
.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer .box-container .box{
    flex: 1 1 25rem;
}
.footer .box-container h3{
    color: #333;
    font-size: 2.5rem;
    padding: 1rem 0;
}
.footer .box-container a{
    display: block;
    color: #666;
    font-size: 1.5rem;
    padding: 1rem 0;
}
.footer .box-container a:hover{
    color:rgba(255, 3, 162, 0.927) ;
    text-decoration: underline;
}
.footer .credit{
    text-align: center;
    padding: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    color: #333;
    border-top: .1rem solid rgba(0,0,0,.1);
}
.footer .credit span{
    color:rgba(255, 3, 162, 0.927) ;
}












/* media-queries */

@media only screen and (max-width:880px){

    html{
        font-size: 55%;
    }
    
    header{
        padding: .9rem;
    }

    section{
        padding: 2rem;
    }
    .home{
        background-position: left;
    }

    header .fa-bars{
        display: block;
    }

    header .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eee;
        border-top: .1rem solid rgba(0,0,0,.1);
        clip-path: polygon(0 0,100% 0,100% 0,0 0);
    }

    header #menu:checked ~ .navbar{
        clip-path:polygon(0 0,100% 0,100% 100%,0% 100%);
    }

    header .navbar a{
        margin:.5rem ;
        padding: 1rem;
        background: #fff;
        border:.3rem solid rgba(0,0,0,0.1);
        display: block;
    }

    .home .content h3{
        font-size: 5rem;
    }

    .home .content span{
        font-size: 2.5rem;
    }

    .icon-content .icon h3{
        font-size: 2rem;
    }
    .icon-content .icon span{
        font-size: 1.7rem;
    }
}