@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');

/* Root */
:root {
    ---white: #ffffff;
    ---black: #333333;
    ---pink: #ff6595;
    ---grey: #4a4a4a;
    ---light: #e5e5e9;
    ---yellow:#ffc600;
}

/* Root */

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

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

::-webkit-scrollbar{
    width: 20px;
}
::-webkit-scrollbar-track{
    background: var(---light);
}
::-webkit-scrollbar-thumb{
    background-color: var(---grey);
    height: 200px;
}
::-webkit-scrollbar-thumb:hover{
    background-color: var(---pink);
}

section {
    padding: 20px 120px;
}

/* Body */

/*Arrow*/
#upper{
    font-size: 20px;
    color: var(---black);
    border-radius: 100px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 2%;
    bottom: 2%;
    background-color: var(---white);
    box-shadow: 0px 0px 10px #2222221a;
    cursor: pointer;
    z-index: 7;
}
#upper:hover{
    color: var(---white);
    background-color: var(---pink);
    box-shadow: 0px 0px 10px #e543767c;
}
/*Arrow*/

/*Animation*/
.loading{
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(---white);
    z-index: 1000;
}
.loading img{
    width: 25%;
}
.dispper{
    animation: vanish 1s forwards;
}
@keyframes vanish {
    100%{
        opacity: 0;
        visibility: hidden;
    }
}
/*Animation*/

/*Header*/

.header{
    background-color: transparent;
    position: sticky;
    top: 0%;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(---white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.096);
    z-index: 10;
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .container .navbar .datas #active{
    font-weight: 700;
    background: linear-gradient(90deg , #e54375 , #fe7bb9, #feb080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header .container .navbar .datas a{
    font-size: 18px;
    font-weight: 400;
    color: var(---black);
    padding: 0px 15px;
}
.header .container .navbar .datas a:hover{
    font-weight: 700;
    background: linear-gradient(90deg , #e54375 , #fe7bb9, #feb080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header .container .right{
    display: flex;
    align-items: center;
}
.header .container .right button{
    width: 200px;
    height: 70px;
    background: linear-gradient(90deg , #e54375 , #fe7bb9, #feb080);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}
.header .container .right button a{
    color: var(---white);
}
.header .container .right button:hover{
    box-shadow: 0px 10px 30px #e543767e;
    border: 1px solid var(---white);
}
.header .container .right #menu{
    display: none;
}
.header .container .right i{
    font-size: 16px;
    color: var(---black);
    border-radius: 100%;
    border: 2px solid var(---grey);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin-right: 20px;
}
.header .container .right i:hover{
    color: var(---pink);
    border: 2px solid var(---pink);
}
.header .container .right #shop-cart{
    position: relative;
}
.header .container .right #shop-cart:hover{
    animation: hithere 1s ease infinite;
}
@keyframes hithere {
    30% { transform: scale(1.2); }
    40%, 60% { transform: rotate(-20deg) scale(1.2); }
    50% { transform: rotate(20deg) scale(1.2); }
    70% { transform: rotate(0deg) scale(1.2); }
    100% { transform: scale(1); }
  }
.header .container .right #shop-cart label{
    position: absolute;
    right: -6px;
    top: -6px;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    background-color: var(---pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(---white);
    cursor: pointer;
}
/*Header*/

/*Carttab*/
.sidebar{
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(---white);
    z-index: 12;
    padding: 20px;
    border-left: 2px solid var(---white);
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.144);
    transition: 1.2s linear;
}
.sidebar.open{
    right: 0;
    transition: 1.2s linear;
}
.sidebar #close-btn{
    display: flex;
    align-items: center;
    justify-content: right;
    font-size: 20px;
    color: var(---grey);
    cursor: pointer;
}
.sidebar .menucart h3{
    font-size: 30px;
    color: var(---black);
}
.sidebar .cart-item{
    margin: 22px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5px;
    border-radius: 5px;
    color: var(---black);
    border: 2px solid var(---light);
}
.sidebar-footer{
    position: absolute;
    bottom: 10px;
    width: 88%;
}
.sidebar-footer .total-amount{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
    border: 2px solid var(---light);
    border-radius: 5px;
}
.sidebar-footer .total-amount .cart-total{
    font-size: 16px;
    color: var(---black);
    font-weight: 600;
}
.sidebar-footer .checkout{
    width: 100%;
    background-color: var(---light);
    border-radius: 10px;
    color: var(---black);
    font-weight: 600;
    height: 50px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}
.sidebar-footer .checkout:hover{
    background-color: var(---pink);
    color: var(---white);
}
/*Carttab*/

/*Hero Area*/
.hero{
    background-color: transparent;
}
.hero .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero .container .image{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .container .image #leaf1{
    position: absolute;
    left: 90px;
    top: 25%;
    animation: swing2 7s ease infinite;
}
@keyframes swing2 {
	20% { transform: rotate(-15deg); }	
	40% { transform: rotate(10deg); }
	60% { transform: rotate(-5deg); }	
	80% { transform: rotate(5deg); }	
	100% { transform: rotate(0deg); }
}
.hero .container .image #leaf2{
    position: absolute;
    left: 18%;
    bottom: 15%;
    transform-origin: top center;
	animation: swing 7s ease infinite;
}
@keyframes swing {
	20% { transform: rotate(15deg); }	
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(5deg); }	
	80% { transform: rotate(-5deg); }	
	100% { transform: rotate(0deg); }
}
.hero .container .image #leaf3{
    position: absolute;
    left: 2px;
    top: 50%;
    animation: hinge 7s ease infinite;
}
@keyframes hinge {
    0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }  
    20%, 60% { transform: rotate(-80deg); transform-origin: top left; animation-timing-function: ease-in-out; }  
    40% { transform: rotate(-60deg); transform-origin: top left; animation-timing-function: ease-in-out; } 
    80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; } 
    100% { transform: translateY(150px); opacity: 0; }
  }
.hero .container .text h5{
    font-size: 16px;
    width: 150px;
    height: 60px;
    background: linear-gradient(90deg , #e54375 , #fe7bb9, #feb080);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(---white);
    font-weight: 500;
}
.hero .container .text h1{
    font-size: 90px;
    font-weight: 300;
    color: var(---black);
    line-height: 130px;
    margin-top: 20px;
}
.hero .container .text span{
    color: var(---pink);
}
.hero .container .text p{
    font-size: 20px;
    line-height: 40px;
    color: var(---grey);
    font-weight: 400;
    margin-top: 20px;
}
.hero .container .text .cart{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    backdrop-filter: blur(6px);
    height: 122px;
    border-radius: 15px;
    border: 2px solid var(---white);
    box-shadow: 0px 0px 25px #e442752d;
    margin-top: 40px;
}
.hero .container .text .cart h4{
    font-size: 50px;
    font-weight: 500;
    color: var(---black);
}
.hero .container .text .cart select{
    width: 165px;
    height: 70px;
    border-radius: 5px;
    background-color: transparent;
    border: 2px solid var(---light);
    font-size: 15px;
    color: var(---black);
    font-weight: 500;
    cursor: pointer;
}
.hero .container .text .cart button{
    width: 150px;
    height: 70px;
    border-radius: 10px;
    background: linear-gradient(45deg , #e54375 , #fe7bb9, #feb080);
    font-size: 15px;
    font-weight: 600;
}
.hero .container .text .cart button a{
    color: var(---white);
}
/*Hero Area*/

/*Catalogue*/
.cat{
    margin-top: 150px;
}
.cat h1{
    text-align: center;
    font-size: 80px;
    font-weight: 300;
    color: var(---black);
}
.cat h1 span{
    color: var(---pink);
}
.cat .container{
    margin-top: 100px;
}
.cat .container .col-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cat .container .col-1 .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(6px);
    border: 2px solid var(---white);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.089);
    border-radius: 30px;
    height: 100%;
    width: 800px;
    padding: 10px 0px;
}
.cat .container .col-1 .box .text {
    margin-left: 30px;
}
.cat .container .col-1 .box .text h3{
    font-size: 30px;
    font-weight: 300;
    color: var(---grey);
}
.cat .container .col-1 .box .text h2{
    font-size: 70px;
    font-weight: 300;
    color: var(---black);
}
.cat .container .col-1 .box .text a{
    font-size: 20px;
    color: var(---pink);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: right;
}
.cat .container .col-1 .box .text a:hover{
    font-weight: 700;
}
.cat .container .col-1 .image{
    margin-right: 30px;
}
.cat .container #col-2{
    margin-top: 60px;
}
/*Catalogue*/

/*Feed Back*/
.review{
    margin-top: 150px;
}
.review h1{
    text-align: center;
    font-size: 80px;
    font-weight: 300;
    color: var(---black);
}
.review h1 span{
    color: var(---pink);
}
.review .review-slider{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
    padding: 20px 20px;
}
.review .review-slider .box{
    background-color: #ffffff5b;
    display: flex;
    align-items: center;
    width: 530px;
    border-radius: 30px;
    border: 2px solid var(---white);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.089);
    cursor: grab;
}
.review .review-slider .box .data{
    width: 100%;
    height: 100%;
    padding: 30px 0px;
    padding-left: 30px;
}
.review .review-slider .box .data .top{
    display: flex;
    justify-content: space-between;
}
.review .review-slider .box .data .top .image{
    display: flex;
    align-items: center;
}
.review .review-slider .box .data .top .image img{
    border-radius: 100%;
    border: 2px solid var(---white);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.089);
}
.review .review-slider .box .data .top .image .detail{
    margin-left: 10px;
}
.review .review-slider .box .data .top .image .detail h5{
    font-size: 25px;
    color: var(---black);
    font-weight: 600;
}
.review .review-slider .box .data .top .image .detail .date{
    font-size: 16px;
    color: var(---grey);
    font-weight: 500;
    margin-top: 5px;
}
.review .review-slider .box .data .top .google{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.review .review-slider .box .data .top .google img{
    width: 100%;
}
.review .review-slider .box .data #stars{
    margin-top: 30px;
}
.review .review-slider .box .data p{
    font-size: 18px;
    line-height: 50px;
    color: var(---grey);
    font-weight: 500;
    margin-top: 20px;
}
/*Feed Back*/

/*Contact Us*/
.con{
    margin-top: 150px;
}
.con h1{
    text-align: center;
    font-size: 80px;
    font-weight: 300;
    color: var(---black);
}
.con h1 span{
    color: var(---pink);
}
.con .container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 100px;
}
.con .container .left-data h5{
    font-size: 50px;
    font-weight: 500;
    color: var(---black);
    margin-bottom: 30px;
}
.con .container .left-data .icons{
    display: flex;
    align-items: center; 
}
.con .container .left-data .i{
    width: 93px;
    height: 93px;
    border: 2px solid var(---pink);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.con .container .left-data .text {
    margin-left: 10px;
}
.con .container .left-data .text h3{
    font-size: 20px;
    color: var(---black);
    font-weight: 500;
}
.con .container .left-data .text p{
    font-size: 15px;
    color: var(---grey);
    font-weight: 500;
}
.con .container .left-data #phone{
    margin: 20px 0px;
}
.con .container .social{
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.con .container .social i{
    font-size: 20px;
    color: var(---black);
    border: 2px solid var(---black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    cursor: pointer;
    margin-right: 10px;
}
.con .container .social i:hover{
    color: var(---pink);
    border: 2px solid var(---pink);
}
.con .container form input{
    display: block;
    width: 700px;
    height: 120px;
    border-radius: 10px;
    border: 2px solid var(---white);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.075);
    font-size: 20px;
    color: var(---black);
    font-weight: 500;
    background-color: transparent;
    backdrop-filter: blur(6px);
    padding-left: 20px;
}
.con .container form textarea{
    display: block;
    width: 100%;
    height: 120px;
    border-radius: 10px;
    border: 2px solid var(---white);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.075);
    font-size: 20px;
    color: var(---black);
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.24);
    padding-left: 20px;
    resize: vertical;
    padding-top: 20px;
}
.con .container form textarea::placeholder{
    color: var(---black);
}
.con .container form input::placeholder{
    color: var(---black);
}
.con .container form .name{
    position: relative;
}
.con .container form .name img{
    position: absolute;
    z-index: -7;
    right: -50px;
    top: -30px;
}
.con .container form #email{
    margin: 20px 0px;
}
.con .container form button{
    width: 250px;
    height: 80px;
    background: linear-gradient(90deg , #e54375 , #fe7bb9, #feb080);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    color: var(---white);
    margin-top: 30px;
}
.con .container form button:hover{
    box-shadow: 0px 10px 30px #e5437663;
    border: 1px solid var(---white);
}
/*Contact Us*/

/*Footer*/
.footer{
    margin-top: 150px;
    background-color: transparent;
    backdrop-filter: blur(6px);
    box-shadow: 0px -10px 30px #e5437610;
    border-top:2px solid var(---white) ;
}
.footer .container{
    margin-top: 10px;
}
.footer .container .image{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .container .left-data {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.footer .container .left-data .icons{
    display: flex;
    align-items: center; 
}
.footer .container .left-data .i{
    width: 93px;
    height: 93px;
    border: 2px solid var(---pink);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .container .left-data .text {
    margin-left: 10px;
}
.footer .container .left-data .text h3{
    font-size: 20px;
    color: var(---black);
    font-weight: 500;
}
.footer .container .left-data .text p{
    font-size: 15px;
    color: var(---grey);
    font-weight: 500;
}
.footer .container .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0px;
}
.footer .container .navbar .data a{
    font-size: 18px;
    font-weight: 400;
    color: var(---black);
    padding: 0px 15px;
}
.footer .container .navbar .data a:hover{
    font-weight: 700;
    background: linear-gradient(90deg , #e54375 , #fe7bb9, #feb080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer .last{
    border-top: 2px solid var(---light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.footer .last p{
    font-size: 16px;
    color: var(---black);
    padding-top: 20px;
}
/*Footer*/


























/* media quries */

@media (max-width:1849px) {
    .cat .container .col-1 .box{
        width: 780px;
    }
}

@media (max-width:1805px) {
    .cat .container .col-1 .box{
        width: 760px;
    }
}

@media (max-width:1772px) {
    section {
        padding: 20px 100px;
    }
}

@media (max-width:1750px) {
    .cat .container .col-1 .box{
        width: 730px;
    }
}

@media (max-width:1685px) {
    section {
        padding: 20px 80px;
    }
    .hero .container .text h1{
        font-size: 70px;
        line-height: 100px;
    }
    .hero .container .text p{
        font-size: 18px;
        line-height: 40px;
    }
    .hero .container .text .cart h4{
        font-size: 40px;
    }
    .hero .container .text .cart select{
        width: 140px;
    }
    .review .review-slider .box .data p{
        font-size: 16px;
        line-height: 40px;
        margin-top: 10px;
    }
    .review .review-slider .box .data .top .image .detail h5{
        font-size: 20px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 30px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 60px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .image{
        margin-right: 10px;
    }
}

@media (max-width:1630px) {
    .cat .container .col-1 .box{
        width: 700px;
    }
}

@media (max-width:1590px) {
    section {
        padding: 20px 60px;
    }
    .hero .container .text h1{
        font-size: 60px;
        line-height: 80px;
    }
    .hero .container .text p{
        font-size: 16px;
        line-height: 40px;
    }
    .hero .container .text .cart button{
        width: 120px;
        height: 70px;
    }
    .hero .container .image{
        width: 700px;
    }
    .hero .container .image #main-image{
        width: 100%;
    }
    .hero .container .image #leaf2{
        left: 16%;
        bottom: 14%;
    }
    .cat{
        margin-top: 130px;
    }
    .cat .container .col-1 .box{
        padding: 0px 0px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 25px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 50px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .image{
        margin-right: 10px;
    }
    .review .review-slider .box .data p{
        font-size: 14px;
        line-height: 40px;
        margin-top: 10px;
    }
    .review{
        margin-top: 130px;
    }
    .review .review-slider .box .data .top .image .detail h5{
        font-size: 18px;
    }
    .review .review-slider .box .data .top .image .detail .date{
        font-size: 12px;
    }
    .review .review-slider .box .data #stars{
        margin-top: 15px;
        width: 170px;
    }
    .con{
        margin-top: 130px;
    }
    .footer{
        margin-top: 130px;
    }
}

@media (max-width:1530px) {
    .cat .container .col-1 .box{
        width: 650px;
    }
}

@media (max-width:1425px) {
    .cat .container .col-1 .box{
        width: 630px;
    }
}

@media (max-width:1486px) {
    .hero .container .image{
        width: 650px;
    }
    .hero .container .text h5{
        font-size: 14px;
        width: 120px;
        height: 50px;
    }
    .hero .container .image #leaf1{
        left: 80px;
        width: 90px;
    }
    .hero .container .image #leaf2{
        left: 13%;
        bottom: 18%;
        width: 90px;
    }
}

@media (max-width:1350px) {
    .cat .container .col-1 .box{
        width: 590px;
    }
}

@media (max-width:1390px) {
    section {
        padding: 20px 40px;
    }
    .hero .container .text p{
        font-size: 14px;
        line-height: 40px;
    }
    .hero .container .text .cart h4{
        font-size: 30px;
    }
    .hero .container .text .cart select{
        width: 120px;
        height: 60px;
    }
    .hero .container .text .cart button{
        width: 100px;
        height: 60px;
        font-size: 12px;
    }
    .hero .container .text .cart{
        height: 100px;
    }
    .review .review-slider .box .data{
        width: 100%;
        height: 100%;
        padding: 10px 0px;
        padding-left: 10px;
    }
    .review .review-slider .box .data .top .image img{
        width: 80px;
        height: 80px;
    }
    .review .review-slider .box {
        border-radius: 15px;
    }
    .review .review-slider .box .data .top .image .detail h5{
        font-size: 16px;
        color: var(---black);
        font-weight: 600;
    }
    .review .review-slider .box .data .top .google{
        margin-right: 10px;
    }
    .review .review-slider .box .data p{
        font-size: 12px;
        line-height: 30px;
        margin-top: 10px;
    }
}

@media (max-width:1280px) {

    html{
        font-size: 80%;
    }

    section {
        padding: 20px 20px;
    }
    .header .container img{
        width: 200px;
    }

    .header .container .navbar .datas a{
        font-size: 16px;
        font-weight: 400;
        color: var(---black);
        padding: 0px 12px;
    }

    .header .container .right button{
        width: 160px;
        height: 60px;
        font-size: 18px;
    }
    .header .container .right i{
        font-size: 12px;
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .header .container .right #shop-cart label{
        right: -5px;
        top: -5px;
        width: 16px;
        height: 16px;
        font-size: 12px;
    }
    .hero .container .text h5{
        font-size: 12px;
        width: 100px;
        height: 50px;
        border-radius: 5px;
    }
    .hero .container .image{
        width: 600px;
    }
    .hero .container .image #leaf2{
        left: 13%;
        bottom: 15%;
    }
    .hero .container .text h1{
        font-size: 50px;
        line-height: 70px;
    }
    .hero .container .text p{
        font-size: 12px;
        line-height: 30px;
    }
    .hero .container .text .cart h4{
        font-size: 25px;
    }
    .hero .container .text .cart select{
        width: 100px;
        height: 50px;
        font-size: 12px;
    }
    .hero .container .text .cart button{
        width: 100px;
        height: 50px;
        font-size: 12px;
        border-radius: 5px;
    }
    .hero .container .text .cart{
        border-radius: 10px;
    }
    .cat .container{
        margin-top: 80px;
    }
    .cat{
        margin-top: 100px;
    }
    .review{
        margin-top: 100px;
    }
    .review .review-slider{
        margin-top: 80px;
    }
    .con .container form input{
        width: 600px;
    }
    .con{
        margin-top: 100px;
    }
    .con .container{
        margin-top: 80px;
    }
    .footer{
        margin-top: 100px;
    }
}

@media (max-width:1230px) {
    .cat .container .col-1 .box{
        width: 580px;
    }
    .cat .container .col-1 .image{
        width: 200px;
        height: 200px;
    }
    .cat .container .col-1 .image img{
        width: 100%;
    }
    .cat .container #col-2{
        margin-top: 30px;
    }
}

@media (max-width:1210px) {
    .cat .container .col-1 .box .text h3{
        font-size: 20px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 40px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .box .text a{
        font-size: 16px;
    }
    .cat .container .col-1 .box{
        width: 560px;
    }
    .cat .container .col-1 .image{
        width: 200px;
        height: 200px;
    }
    .cat .container .col-1 .image img{
        width: 100%;
    }
    .cat .container #col-2{
        margin-top: 30px;
    }
}

@media (max-width:1170px){
    .cat .container .col-1 .box{
        width: 530px;
        border-radius: 20px;
    }
}

@media (max-width:1120px){
    .cat .container .col-1 .box{
        width: 520px;
        border-radius: 20px;
    }
}

@media (max-width:1080px) {
    section {
        padding: 20px 15px;
    }
    .header .container .right #menu{
        display: inherit;
    }
    .header .container .navbar{
        background-color: transparent;
        position: absolute;
        width: 100%;
        top: 75%;
        left: 0;
        transition: 0.7s all linear;
        z-index: 10;
    }
    .header .container .navbar .datas{
        background-color: var(---white);
        box-shadow: 0px 0px 20px #e5437615;
        width: 90%;
        margin: 0px auto;
        border-radius: 30px;
        display: none;
    }
    .header .container .navbar .datas a{
        display: block;
        line-height: 70px;
        text-align: center;
    }
    .hero .container{
        display: block;
    }
    .hero .container .image #leaf1{
        left: 130px;
        width: 110px;
    }
    .hero .container .image #leaf2{
        left: 15%;
        bottom: 18%;
        width: 110px;
    }
    .hero .container .text h5{
        font-size: 16px;
        width: 150px;
        height: 60px;
        background: linear-gradient(90deg , #e54375 , #fe7bb9, #feb080);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        color: var(---white);
        font-weight: 500;
    }
    .hero .container .text{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .hero .container .text p{
        text-align: center;
    }
    .hero .container .text .cart{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        background-color: #ffffff3b;
        height: 122px;
        border-radius: 15px;
        border: 2px solid var(---white);
        box-shadow: 0px 0px 25px #e442752d;
        margin-top: 30px;
    }
    .hero .container .text h1{
        font-size: 90px;
        font-weight: 300;
        color: var(---black);
        line-height: 130px;
        margin-top: 20px;
    }
    .hero .container .text p{
        font-size: 20px;
        line-height: 40px;
        color: var(---grey);
        font-weight: 400;
        margin-top: 20px;
    }
    .hero .container .text .cart h4{
        font-size: 50px;
        font-weight: 500;
        color: var(---black);
    }
    .hero .container .text .cart select{
        width: 165px;
        height: 70px;
        border-radius: 5px;
        background-color: transparent;
        border: 2px solid var(---light);
        font-size: 15px;
        color: var(---black);
        font-weight: 500;
    }
    .hero .container .text .cart button{
        width: 150px;
        height: 70px;
        border-radius: 10px;
        background: linear-gradient(45deg , #e54375 , #fe7bb9, #feb080);
        font-size: 15px;
        font-weight: 600;
    }
    .hero .container .text .cart button a{
        color: var(---white);
    }
    .hero .container .image{
        width: 100%;
        margin: 0px auto;
        margin-top: 30px;
    }
    .hero .container .image #main-image{
        width: 100%;
    }
    .cat .container{
        margin-top: 50px;
    }
    .cat{
        margin-top: 50px;
    }
    .cat .container .col-1 .box{
        width: 500px;
    }
    .review{
        margin-top: 50px;
    }
    .review .review-slider{
        margin-top: 50px;
    }
    .con .container{
        display: block;
    }
    .con .container form{
        margin-top: 50px;
    }
    .con .container form input{
        width: 100%;
    }
    .con .container form .name img{
        position: absolute;
        z-index: -7;
        right: -10px;
        top: -30px;
    }
    .con{
        margin-top: 50px;
    }
    .con .container{
        margin-top: 50px;
    }
    .footer{
        margin-top: 50px;
    }
    .footer .container .left-data{
        display: block;
    }
    .footer .container .left-data #phone{
        margin: 20px 0px;
    }
    .footer .container .navbar {
        display: flex;
        align-items: center;
        justify-content: left;
        margin: 30px 0px;
    }
    .footer .container .navbar .data a{
        display: block;
        line-height: 50px;
    }
    .footer .container .image{
        justify-content: left;
    }
}
@media (max-width:1040px) {
    .cat .container .col-1 .box{
        width: 480px;
    }
}
@media (max-width:1000px) {
    .cat .container .col-1 .box{
        width: 450px;
        padding: 10px 0px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 16px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 30px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .box .text a{
        font-size: 12px;
    }
    .cat .container .col-1 .image{
        width: 160px;
        height: 160px;
    }
}

@media (max-width:940px) {
    .cat .container .col-1 .box{
        width: 420px;
        padding: 10px 0px;
    }
    .hero .container .image #leaf1{
        left: 120px;
        width: 90px;
    }
    .hero .container .image #leaf2{
        left: 15%;
        bottom: 18%;
        width: 90px;
    }
}

@media (max-width:880px) {
    .cat .container .col-1 .box{
        width: 400px;
        padding: 10px 0px;
    }
}

@media (max-width:835px) {
    .hero .container .image #leaf1{
        left: 100px;
        width: 90px;
    }
    .cat .container .col-1 .box{
        width: 380px;
        padding: 10px 0px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 16px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 30px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .box .text a{
        font-size: 12px;
    }
    .cat .container .col-1 .image{
        width: 160px;
        height: 160px;
    }
}

@media (max-width:790px) {
    .hero .container .image #leaf1{
        left: 100px;
        width: 70px;
    }
    .hero .container .image #leaf2{
        left: 15%;
        bottom: 18%;
        width: 70px;
    }
    .hero .container .text h1{
        font-size: 70px;
        line-height: 100px;
    }
    .hero .container .text p{
        font-size: 18px;
        line-height: 40px;
    }
    .hero .container .text .cart h4{
        font-size: 40px;
    }
    .hero .container .text .cart select{
        width: 140px;
    }
    .cat h1{
        font-size: 70px;
    }
    .review h1{
        font-size: 70px;
    }
    .con h1{
        font-size: 70px;
    }
    .cat .container .col-1 .box{
        width: 360px;
        padding: 5px 0px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 14px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 25px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .box .text a{
        font-size: 12px;
    }
    .cat .container .col-1 .image{
        width: 120px;
        height: 120px;
    }
}

@media (max-width:750px) {
    .cat .container .col-1 .box{
        width: 340px;
        padding: 5px 0px;
    }
}

@media (max-width:725px) {
    .cat .container .col-1 .box{
        width: 320px;
        padding: 5px 0px;
    }
}

@media (max-width:690px) {
    .hero .container .image #leaf1{
        left: 80px;
        width: 70px;
    }
    .hero .container .image #leaf2{
        left: 15%;
        bottom: 18%;
        width: 70px;
    }
    .hero .container .text h1{
        font-size: 60px;
        line-height: 80px;
    }
    .hero .container .text p{
        font-size: 16px;
        line-height: 40px;
    }
    .hero .container .text .cart button{
        width: 120px;
        height: 70px;
    }
    .cat h1{
        font-size: 60px;
    }
    .review h1{
        font-size: 60px;
    }
    .cat .container .col-1 {
        display: block;
    }
    .cat .container .col-1 .box{
        width: 100%;
        margin-top: 30px;
    }
    .cat .container .col-1 .image{
        margin-right: 10px;
        width: 200px;
        height: 200px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 20px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 50px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .box .text a{
        font-size: 20px;
        color: var(---pink);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: right;
    }
    .review .review-slider .box .data .top .image img{
        width: 60px;
        height: 60px;
    }
    .review .review-slider .box .data .top .image .detail h5{
        font-size: 14px;
        color: var(---black);
        font-weight: 600;
    }
    .review .review-slider .box .data .top .google{
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }
    .review .review-slider .box .data p{
        font-size: 10px;
        line-height: 25px;
    }
    .review .review-slider .box .data .top .image .detail .date{
        font-size: 10px;
    }
    .con h1{
        font-size: 60px;
    }
}
@media (max-width:640px){
    .review .review-slider .box .data .top .image .detail h5{
        font-size: 25px;
        color: var(---black);
        font-weight: 600;
    }
    .review .review-slider .box .data .top .image .detail .date{
        font-size: 16px;
        color: var(---grey);
        font-weight: 500;
        margin-top: 5px;
    }
    .review .review-slider .box .data p{
        font-size: 18px;
        line-height: 50px;
        color: var(---grey);
        font-weight: 500;
    }
    .review .review-slider .box .data .top .image img{
        width: 100px;
        height: 100px;
    }
    .review .review-slider .box .data .top .google{
        width: 80px;
        height: 80px;
    }
    .review .review-slider .box .data #stars{
        width: 230px;
    }
}
@media (max-width:600px){
    .hero .container .image #leaf1{
        left: 70px;
        width: 70px;
    }
    .hero .container .image #leaf2{
        left: 15%;
        bottom: 17%;
        width: 70px;
    }
    .hero .container .text h5{
        font-size: 14px;
        width: 120px;
        height: 50px;
    }
    .hero .container .text p{
        font-size: 14px;
        line-height: 40px;
    }
    .hero .container .text .cart h4{
        font-size: 30px;
    }
    .hero .container .text .cart select{
        width: 120px;
        height: 60px;
    }
    .hero .container .text .cart button{
        width: 100px;
        height: 60px;
        font-size: 12px;
    }
    .hero .container .text .cart{
        height: 100px;
    }
    .cat h1{
        font-size: 50px;
    }
    .cat{
        margin-top: 40px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 20px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 40px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .box .text a{
        font-size: 16px;
    }
    .review h1{
        font-size: 50px;
    }
    .review{
        margin-top: 40px;
    }
    .con h1{
        font-size: 50px;
    }
    .con{
        margin-top: 40px;
    }
    .footer{
        margin-top: 40px;
    }

}

@media (max-width:550px) {
    .header .container .right button{
        width: 140px;
        height: 60px;
        font-size: 16px;
    }
    .header .container .navbar{
        top: 70%;
    }
    .hero .container .image #leaf1{
        left: 60px;
        width: 60px;
    }
    .hero .container .image #leaf2{
        left: 15%;
        bottom: 17%;
        width: 60px;
    }
    .hero .container .image #leaf3{
        left: 0px;
        width: 30px;
    }
    .hero .container .text h5{
        font-size: 12px;
        width: 100px;
        height: 50px;
    }
    .hero .container .text h1{
        font-size: 50px;
        line-height: 70px;
        margin-top: 10px;
    }
    .hero .container .text p{
        font-size: 12px;
        line-height: 30px;
        margin-top: 10px;
    }
    .hero .container .text .cart h4{
        font-size: 25px;
    }
    .hero .container .text .cart select{
        width: 100px;
        height: 50px;
        font-size: 12px;
    }
    .hero .container .text .cart button{
        width: 100px;
        height: 50px;
        font-size: 12px;
        border-radius: 5px;
    }
    .hero .container .text .cart{
        border-radius: 10px;
        margin-top: 20px;
    }
    .cat h1{
        font-size: 40px;
    }
    .review h1{
        font-size: 40px;
    }
    .con h1{
        font-size: 40px;
    }
}

@media (max-width:500px) {
    .header .container .navbar{
        top: 75%;
    }
    .header .container .right button{
        width: 120px;
        height: 50px;
        font-size: 14px;
        border-radius: 5px;
    }
    .header .container .right i{
        font-size: 10px;
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    .header .container img{
        width: 160px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 16px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 30px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .image{
        width: 170px;
        height: 170px;
    }
    .cat .container .col-1 .box .text a{
        font-size: 16px;
    }
    .review .review-slider .box .data .top .image .detail h5{
        font-size: 18px;
    }
    .review .review-slider .box .data .top .image .detail .date{
        font-size: 12px;
    }
    .review .review-slider .box .data #stars{
        margin-top: 15px;
        width: 170px;
    }
    .review .review-slider .box .data .top .image img{
        width: 80px;
        height: 80px;
    }
    .review .review-slider .box .data .top .google{
        margin-right: 10px;
        width: 60px;
        height: 60px;
    }
    .review .review-slider .box .data p{
        font-size: 16px;
        line-height: 40px;
        margin-top: 10px;
    }
}

@media (max-width:430px) {
    #upper{
        font-size: 16px;
        width: 40px;
        height: 40px;
        position: fixed;
        right: 2%;
        bottom: 2%;
    }
    .header .container .navbar .datas{
        border-radius: 15px;
    }
    .header .container .right button{
        width: 100px;
        height: 40px;
        font-size: 12px;
    }
    .header .container .right i{
        font-size: 8px;
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
    .header .container .right #shop-cart label{
        right: -4px;
        top: -4px;
        width: 14px;
        height: 14px;
        font-size: 8px;
    }
    .header .container img{
        width: 130px;
    }
    .hero .container .image #leaf1{
        left: 50px;
        width: 45px;
    }
    .hero .container .image #leaf2{
        left: 15%;
        bottom: 17%;
        width: 45px;
    }
    .hero .container .image #leaf3{
        left: 0px;
        width: 30px;
    }
    .hero .container .text h5{
        font-size: 10px;
        width: 80px;
        height: 40px;
    }
    .hero .container .text h1{
        font-size: 40px;
        line-height: 60px;
    }
    .hero .container .text p{
        font-size: 10px;
        line-height: 25px;
    }
    .hero .container .text .cart h4{
        font-size: 20px;
    }
    .hero .container .text .cart select{
        width: 80px;
        height: 40px;
        font-size: 10px;
    }
    .hero .container .text .cart button{
        width: 80px;
        height: 40px;
        font-size: 10px;
        border-radius: 5px;
    }
    .hero .container .text .cart{
        height: 80px;
    }
    .cat .container{
        margin-top: 30px;
    }
    .cat{
        margin-top: 30px;
    }
    .cat .container .col-1 .box .text{
        margin-left: 10px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 15px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 30px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .image{
        width: 130px;
        height: 130px;
    }
    .cat .container .col-1 .box .text a{
        font-size: 12px;
    }
    .review .review-slider{
        margin-top: 30px;
    }
    .review{
        margin-top: 30px;
    }
    .review .review-slider .box .data .top .image .detail h5{
        font-size: 16px;
    }
    .review .review-slider .box .data .top .image .detail .date{
        font-size: 10px;
    }
    .review .review-slider .box .data #stars{
        margin-top: 15px;
        width: 150px;
    }
    .review .review-slider .box .data .top .google{
        margin-right: 10px;
        width: 50px;
        height: 50px;
    }
    .review .review-slider .box .data p{
        font-size: 14px;
        line-height: 40px;
    }
    .con{
        margin-top: 30px;
    }
    .con .container{
        margin-top: 30px;
    }
    .con .container form input{
        height: 80px;
        font-size: 16px;
        padding-left: 10px;
    }
    .con .container form textarea{
        font-size: 16px;
        padding-left: 10px;
    }
    .con .container .left-data h5{
        font-size: 40px;
    }
    .con .container form button{
        margin-top: 20px;
        width: 160px;
        height: 70px;
        font-size: 16px;
    }
    .footer{
        margin-top: 30px;
    }
}

@media (max-width:400px){
    .hero .container .image #leaf1{
        left: 45px;
        width: 40px;
    }
    .hero .container .image #leaf2{
        left: 15%;
        bottom: 17%;
        width: 40px;
    }
    .hero .container .image #leaf3{
        left: 0px;
        width: 25px;
    }
    .hero .container .text h5{
        border-radius: 5px;
    }
    .hero .container .text p{
        font-size: 8px;
        line-height: 20px;
        margin-top: 5px;
    }
    .hero .container .text .cart{
        margin-top: 10px;
    }
    .cat h1{
        font-size: 30px;
    }
    .cat{
        margin-top: -10px;
    }
    .review{
        margin-top: -10px;
    }
    .review{
        margin-top: -10px;
    }
    .review h1{
        font-size: 30px;
    }
    .review .review-slider .box .data .top .image .detail h5{
        font-size: 14px;
    }
    .review .review-slider .box .data .top .image .detail .date{
        font-size: 10px;
    }
    .review .review-slider .box .data #stars{
        margin-top: 15px;
        width: 130px;
    }
    .review .review-slider .box .data .top .google{
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }
    .review .review-slider .box .data p{
        font-size: 12px;
        line-height: 30px;
    }
    .con{
        margin-top: -10px;
    }
    .con h1{
        font-size: 30px;
    }
    .con .container .left-data .text p{
        font-size: 12px;
    }
    .con .container .left-data .i{
        width: 70px;
        height: 70px;
    }
    .con .container .left-data .i img{
        width: 40%;
    }
    .con .container .social i{
        font-size: 16px;
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    .con .container form button{
        margin-top: 20px;
        width: 140px;
        height: 60px;
        font-size: 14px;
    }
    .footer .container .image{
       width: 100%;
    }
    .footer .container .image img{
        width: 100%;
     }
     .footer .container .left-data .i{
        width: 70px;
        height: 70px;
     }
     .footer .container .left-data .i img{
        width: 40%;
     }
     .footer .container .left-data .text p{
        font-size: 12px;
     }
     .footer .last p{
        font-size: 12px;
    }
}

@media (max-width:350px) {
    .header .container img{
        width: 100px;
    }
    .hero .container .image #leaf1{
        left: 40px;
        width: 35px;
    }
    .hero .container .image #leaf2{
        left: 15%;
        bottom: 17%;
        width: 35px;
    }
    .hero .container .image #leaf3{
        left: 0px;
        width: 25px;
    }
    .hero .container .text h5{
        font-size: 10px;
        width: 80px;
        height: 40px;
        border-radius: 5px;
    }
    .hero .container .text h1{
        font-size: 30px;
        line-height: 45px;
        margin-top: 10px;
    }
    .hero .container .text p{
        font-size: 6px;
        line-height: 20px;
        margin-top: 5px;
    }
    .hero .container .text .cart h4{
        font-size: 15px;
    }
    .hero .container .text .cart select{
        width: 60px;
        height: 30px;
        font-size: 6px;
    }
    .hero .container .text .cart button{
        width: 60px;
        height: 30px;
        font-size: 6px;
        border-radius: 5px;
    }
    .hero .container .text .cart{
        height: 60px;
        border-radius: 5px;
    }
    .review .review-slider .box .data p{
        font-size: 10px;
        line-height: 25px;
    }
    .cat .container .col-1 .box .text h3{
        font-size: 12px;
        font-weight: 300;
        color: var(---grey);
    }
    .cat .container .col-1 .box .text h2{
        font-size: 25px;
        font-weight: 300;
        color: var(---black);
    }
    .cat .container .col-1 .image{
        width: 120px;
        height: 120px;
    }
    .cat .container .col-1 .box .text a{
        font-size: 12px;
    }
    .con .container .left-data .text p{
        font-size: 10px;
    }
}
/* media quries */