@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{
    ---green:#28a99d;
    ---black:#222222;
    ---white:#ffffff;
    ---gray:#6e6e6e;
    ---lightgray:#f2f2f2;
    ---yellow:#FDCC0D;
}
/* 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-image: url(img/bac.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
section{
padding: 20px 150px;
}
/*body*/

/*header*/
.header{
    background-color: var(---green);
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .container p{
    font-size: 20px;
    color: var(---white);
    font-weight: 400;
}
.header .container .location .data{
    display: flex;
    align-items: center;
    background-color: transparent;
}
.header .container .location .data a{
    color: var(---white);
    font-size: 20px;
    font-weight: 400;
}
.header .container .location .data #downarrow{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(---white);
    font-size: 16px;
    margin-left: 5px;
    cursor: pointer;
}
.header .container .location .other{
    background-color: transparent;
    position: absolute;
    width: 250px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.082);
    display: none;
    border-radius: 10px;
    z-index: 7;
}
.header .container .location .other .all-lan{
    background-color: var(---white);
    width: 100%;
    border-radius: 10px;
}
.header .container .location .other .all-lan .lan{
    display: flex;
    align-items: center;
    padding: 10px 10px;
}
.header .container .location .other .all-lan .lan a{
    font-size: 16px;
    font-weight: 600;
    color: var(---black);
    margin-left: 10px;
}
.header .container .location .other .all-lan .lan a:hover{
    color: var(---green);
}
/*header*/

/*home*/
.home{
    background-color: transparent;
}
.home .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home .container .icon{
    display: flex;
    align-items: center;
}
.home .container .icon a{
    color: var(---black);
}
.home .container .icon i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(---lightgray);
    border-radius: 10px;
    margin-left: 20px;
    font-size: 20px;
    cursor: pointer;
}
.home .container .icon i:hover{
    background-color: var(---green);
    color: var(---white);
}
.home .container .icon #menu{
    display: none;
}
/*home*/

/*search*/
.search{
    background-color: transparent;
    width: 100%;
    position: absolute;
    right: 0;
    top: 17%;
    display: none;
    z-index: 7;
}
.search .container{
    background-color: transparent;
    border: 2px solid var(---lightgray);
    border-radius: 10px;
}
.search .container .input{
    width: 100%;
    background-color: var(---white);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.search .container .input input{
    width: 100%;
    background-color: var(---white);
    height: 100px;
    border-radius: 10px;
    font-size: 20px;
    color: var(---gray);
    padding-left: 20px;
}
.search .container .input input ::placeholder{
    font-size: 20px;
    color: var(---gray);
    padding-left: 20px;
    background-color: var(---white);
}
.search .container .input i{
    font-size: 20px;
    background-color: var(---lightgray);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 10px 10px 0px;
    cursor: pointer;
}
.search .container .input i:hover{
    background-color: var(---green);
    color: var(---white);
}
/*search*/

/*navbar*/
.nav{
    background-color: transparent;
    border-top: 2px solid var(---green);
    width: 100%;
}
.nav  .navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav  .navbar a{
    font-size: 20px;
    color: var(---black);
    font-weight: 400;
    padding: 0px 30px;
}
.nav  .navbar a:hover{
    font-weight: 600;
    color: var(---green);
}
/*navbar*/

/*hero*/
.hero{
    background-image: url(img/hero.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 850px;
}
.hero .container .text{
    margin-top: 100px;
}
.hero .container .text h1{
    font-size: 100px;
    color: var(---black);
    font-weight: 400;
    line-height: 120px;
}
.hero .container .text p{
    font-size: 20px;
    color: var(---gray);
    font-weight: 400;
    line-height: 40px;
    margin-top: 10px;
}
.hero .container .text button{
    font-size: 20px;
    background-color: var(---green);
    width: 200px;
    height: 80px;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 30px;
}
.hero .container .text button a{
    color: var(---white);
}
.hero .container .text button:hover{
    box-shadow: 0px 15px 30px #28a99cbe;
}
/*hero*/

/*about*/
.about{
    background-color: transparent;
    margin-top: 150px;
}
.about .heading{
    text-align: center;
}
.about .heading h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
}
.about .heading h2{
    font-size: 40px;
    font-weight: 400;
    color: var(---green);
}
.about .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}
.about .container .image img{
    width: 100%;
}
.about .container .text h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
    line-height: 100px;
}
.about .container .text p{
    font-size: 20px;
    font-weight: 400;
    color: var(---gray);
    line-height: 40px;
    margin-top: 20px;
}
.about .container .text button{
    font-size: 20px;
    background-color: var(---green);
    width: 200px;
    height: 80px;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 30px;
}
.about .container .text button a{
    color: var(---white);
}
.about .container .text button:hover{
    box-shadow: 0px 15px 30px #28a99cbe;
}
/*about*/

/*cate*/
.cat{
    background-color: transparent;
    margin-top: 150px;
}
.cat .heading{
    text-align: center;
}
.cat .heading h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
}
.cat .container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.cat .container .left{
    display: flex;
    align-items: center;
}
.cat .container .left .box{
    background-color: transparent;
    width: 340px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat .container .left .box .data .image{
    background-color: var(---white);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.096);
    margin: 0px auto;
}
.cat .container .left .box .data h1{
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: var(---black);
    margin-top: 10px;
    cursor: pointer;
}
.cat .container .left .box .data h1:hover{
    color: var(---green);
}
/*cate*/

/*product*/
.product{
    background-color: transparent;
    margin-top: 150px;
}
.product .heading{
    text-align: center;
}
.product .heading h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
}
.product .proslider{
    background-color: transparent;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 50px;
    height: 600px;
}
.product .proslider .probox{
    width: 480px;
    height: 580px;
    background-color: transparent;
    border-radius: 10px;
    text-align: center;
}
.product .proslider .probox:hover{
    transform: scale(1.1,1.1);
    transition: 1s;
}
.product .proslider .probox .data .image img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.123);
}
.product .proslider .probox .data h1{
    font-size: 40px;
    font-weight: 400;
    color: var(---black);
    cursor: pointer;
}
.product .proslider .probox .data h1:hover{
    color: var(---green);
}
/*product*/

/*news*/
.news{
    background-color: transparent;
    margin-top: 150px;
}
.news .heading{
    text-align: center;
}
.news .heading h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
}
.news .container{
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 50px;
}
.news .container .left-side .box{
    margin: 20px 0px;
}
.news .container .left-side .box .data{
    display: flex;
    align-items: center;
}
.news .container .left-side .box .data .text{
    margin-left: 30px;
}
.news .container .left-side .box .data .image img{
    border-radius: 10px;
}
.news .container .left-side .box .data h1{
    font-size: 30px;
    font-weight: 400;
    color: var(---black);
    width: 550px;
}
.news .container .left-side .box .data p{
    font-size: 16px;
    color: var(---gray);
    line-height: 30px;
    margin-bottom: 5px;
}
.news .container .left-side .box .data a{
    font-size: 16px;
    font-weight: 600;
    color: var(---black);
}
.news .container .left-side .box .data a:hover{
    color: var(---green);
}
.news .container .right{
    background-image: url(img/n.jpg);
    width: 750px;
    height: 790px;
    display: flex;
    align-items: end;
    justify-content: center;
    border-radius: 20px;
    border: 5px solid var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.137);
}
.news .right .text{
    width: 675px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(50px);
    border: 3px solid var(---white);
    border-radius: 20px;
    margin-bottom: 50px;
}
.news .right .text h1{
    font-size: 60px;
    color: var(---white);
    font-weight: 400;
    cursor: pointer;
}
.news .right .text h1:hover{
    color: var(---green);
}
/*news*/

/*contact*/
.contact{
    background-color: transparent;
    margin-top: 150px;
}
.contact .heading{
    text-align: center;
}
.contact .heading h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
}
.contact .heading p{
    font-size: 20px;
    color: var(---gray);
    font-weight: 400;
    line-height: 50px;
}
.contact .container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact .container .input{
    width: 1000px;
    height: 130px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.116);
    margin-top: 30px;
    z-index: 7;
}
.contact .container .input input{
    width: 100%;
    height: 130px;
    border-radius: 10px 0px 0px 10px;
    font-size: 20px;
    color: var(---black);
    padding-left: 20px;
    background-color: var(---white);
}
.contact .container .input input::placeholder{
    color: var(---black);
}
.contact .container .input .button{
    width: 250px;
    height: 130px;
    background-color: var(---green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
}
.contact .container .input .button h1{
    font-size: 25px;
    color: var(---white);
    font-weight: 400;
}
/*contact*/

/*footer*/
.footer{
    background-color: var(---black);
    margin-top: 150px;
}
.footer .container{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.footer .container .logo-link .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.footer .container .logo-link .icon i{
    font-size: 20px;
    color: var(---black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background-color: var(---white);
    cursor: pointer;
}
.footer .container .logo-link .icon i:hover{
    background-color: var(---green);
    color: var(---white);
}
.footer .container .link h1{
    font-size: 30px;
    font-weight: 600;
    color: var(---white);
}
.footer .container .link a{
    font-size: 20px;
    font-weight: 400;
    display: block;
    color: var(---white);
    line-height: 40px;
    font-style: normal;
    margin-left: 5px;
}
.footer .container .link i{
    display: flex;
    align-items: center;
    color: var(---white);
    margin-top: 10px;
}
.footer .container .link i:hover{
    color: var(---green);
}
.footer .container .link a:hover{
    color: var(---green);
}
.footer .container .last-link h1{
    font-size: 30px;
    font-weight: 600;
    color: var(---white);
}
.footer .container .last-link .data i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(---green);
    border-radius: 100px;
    color: var(---white);
}
.footer .container .last-link .data .box{
    display: flex;
    align-items: center;
    margin: 10px 0px;
}
.footer .container .last-link .data .box a{
    color: var(---white);
    margin-left: 10px;
    width: 160px;
}
.footer .container .last-link .data .box a:hover{
    color: var(---green);
}
.footer .last{
    text-align: center;
    border-top: 2px solid var(---white);
    margin-top: 50px;
}
.footer .last p{
    font-size: 16px;
    font-weight: 400;
    color: var(---white);
    margin-top: 5px;
}
/*footer*/


/*----------------------------------------Product Page-----------------------------*/
.pro-hero{
    background-color: transparent;
}
.pro-hero .heroslider{
    border: 5px solid var(---white);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.247);
    border-radius: 30px;
}
.pro-hero .heroslider .heroimage{
    display: flex;
    align-items: center;
    height: 850px;
    border-radius: 30px;
}
.pro-hero .heroslider .heroimage .text{
    margin-left: 150px;
}
.pro-hero .heroslider .heroimage .text h1{
    font-size: 80px;
    color: var(---white);
    font-weight: 400;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.123);
}
.pro-hero .heroslider .heroimage .text p{
    font-size: 20px;
    color: var(---white);
    font-weight: 400;
    line-height: 40px;
}
.pro-hero .heroslider .dot span{
    width: 10px;
    height: 10px;
    background-color: var(---green);
}
.all-product{
    margin-top: 150px;
}
.all-product .heading{
    text-align: center;
}
.all-product .heading h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
}
.all-product .productslider{
    background-color: transparent;
    padding: 30px 30px;
    margin-top: 50px;
}
.all-product .productslider .box{
    height: 100%;
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.096);
    border-radius: 20px 20px 20px 20px;
}
.all-product .productslider .box img{
    border-radius: 20px 20px 0px 0px;
    width: 100%;
    cursor: pointer;
}
.all-product .productslider .box .text{
    text-align: center;
    background-color: transparent;
    width: 100%;
    margin: 20px 0px;
}
.all-product .productslider .box .text p{
    font-size: 18px;
    font-weight: 400;
    color: var(---black);
}
.all-product .productslider .box .text .star{
    margin: 10px 0px;
}
.all-product .productslider .box .text .star i{
    font-size: 20px;
    color: var(---yellow);
    margin: 0px 5px;
}
.all-product .productslider .box .text button{
    width: 250px;
    height: 70px;
    border-radius: 10px;
    background-color: var(---lightgray);
    color: var(---black);
    font-size: 20px;
    cursor: pointer;
    font-weight: 400;
}
.all-product .productslider .box .text button:hover{
    background-color: var(---green);
    color: var(---white);
}
.catory {
    background-color: transparent;
    margin-top: 150px;
}
.catory .heading {
    text-align: center;
}
.catory .heading h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
}
.catory .container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.catory .container button{
    width: 250px;
    height: 70px;
    background-color: var(---lightgray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
}
.catory .container button:hover{
    background-color: var(---green);
    color: var(---white);
}
/*----------------------------------------Product Page-----------------------------*/

/*----------------------------------------Log In  Page-----------------------------*/
.form{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
}
.form .container{
    border-radius: 20px;
    width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 800px;
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.123);
}
.form .container h1{
    font-size: 40px;
    color: var(---black);
    font-weight: 400;
    text-align: center;
}
.form .container .full-data .first-form .email-form{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 70px;
    border: 2px solid var(---lightgray);
    margin: 20px auto;
    border-radius: 10px;
}
.form .container .full-data .first-form .email-form input{
    width: 100%;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    background-color: transparent;
    margin-left: 10px;
}
.form .container .full-data .first-form .email-form ::placeholder{
    color: var(---black);
}
.form .container .full-data .first-form .email-form i{
   width: 30px;
   height: 68px;
   background-color: var(---green);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   border-radius: 10px 0px 0px 10px;
   color: var(---white);
}
.form .container .full-data .first-form button{
    background-color: var(---green);
    font-size: 16px;
    color: var(---white);
    font-weight: 500;
    width: 500px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
}
.form .container .full-data p{
    text-align: center;
    font-size: 16px;
    color: var(---black);
    font-weight: 600;
    margin: 20px 0px;
}
.form .container .full-data #google{
    font-size: 16px;
    color: var(---white);
    font-weight: 500;
    width: 500px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
}
.form .container .full-data .button{
    font-size: 16px;
    color: var(---white);
    font-weight: 500;
    width: 500px;
    height: 70px;
    border: 2px solid var(---lightgray);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px;
}
.form .container .full-data .button h5{
    font-size: 15px;
    font-weight: 400;
    color: var(---black);
}
.form .container .full-data .button h5:hover{
    color: var(---green);
}
.form .container .full-data .button #icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    width: 30px;
    font-size: 16px;
    background-color: var(---green);
    border-radius: 10px 0px 0px 10px;
}
.form .container .full-data .button #right{
    margin-right: 10px;
    color: var(---green);
}
.form .container .button-sign{
    display: flex;
    align-items: center;
    justify-content: center;
}
.form .container button{
    width: 250px;
    height: 60px;
    background-color: var(---lightgray);
    font-size: 16px;
    font-weight: 400;
    color: var(---black);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form .container button:hover{
    background-color: var(---green);
    color: var(---white);
}
/*----------------------------------------Log In  Page-----------------------------*/

/*----------------------------------------Location  Page---------------------------*/
.map{
    background-color: transparent;
    margin-top: 150px;
}
.map .container{
    width: 100%;
    height: 500px;;
    border-radius: 20px;
}
.map .container iframe{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.116);
}
/*----------------------------------------Location  Page---------------------------*/
.faq{
    background-color: transparent;
    margin-top: 150px;
}
.faq .heading{
    text-align: center;
}
.faq .heading h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
}
.faq .container{
    background-color: transparent;
    margin-top: 50px;
}
.faq .container .box{
    background-color: transparent;
    border-radius: 10px;
    margin: 20px 0px;
}
.faq .container .box .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(---white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.096);
    border-radius: 10px 10px 0px 0px;
}
.faq .container .box .top h1{
    font-size: 20px;
    font-weight: 600;
    color: var(---black);
    margin-left: 30px;
}
.faq .container .box .top i{
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(---lightgray);
    color: var(---black);
    width: 100px;
    height: 100px;
    cursor: pointer;
    border-radius: 0px 10px 0px 0px;
}
.faq .container .box .top i:hover{
    background-color: var(---green);
    color: var(---white);
}
.faq .container .box .para{
    background-color: var(---white);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.096);
    border-radius: 0px 0px 10px 10px;
    display: none;
}
.faq .container .box .para p{
    font-size: 20px;
    color: var(---gray);
    background-color: transparent;
    padding: 30px 30px;
    line-height: 40px;
    border-top: 2px solid var(---lightgray);
}

.faq .container .box .para1{
    background-color: var(---white);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.096);
    border-radius: 0px 0px 10px 10px;
    display: none;
}
.faq .container .box .para1 p{
    font-size: 20px;
    color: var(---gray);
    background-color: transparent;
    padding: 30px 30px;
    line-height: 40px;
    border-top: 2px solid var(---lightgray);
}

.faq .container .box .para2{
    background-color: var(---white);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.096);
    border-radius: 0px 0px 10px 10px;
    display: none;
}
.faq .container .box .para2 p{
    font-size: 20px;
    color: var(---gray);
    background-color: transparent;
    padding: 30px 30px;
    line-height: 40px;
    border-top: 2px solid var(---lightgray);
}

.faq .container .box .para3{
    background-color: var(---white);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.096);
    border-radius: 0px 0px 10px 10px;
    display: none;
}
.faq .container .box .para3 p{
    font-size: 20px;
    color: var(---gray);
    background-color: transparent;
    padding: 30px 30px;
    line-height: 40px;
    border-top: 2px solid var(---lightgray);
}

/*----------------------------------------Collection  Page---------------------------*/
.coll{
    margin-top: 150px;
}
.coll .heading{
    text-align: center;
}
.coll .heading h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---black);
}
.coll .container{
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}
.coll .container .box{
    width: 380px;
    height: 620px;
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.096);
    border-radius: 20px 20px 20px 20px;
}
.coll .container .box img{
    border-radius: 20px 20px 0px 0px;
    width: 100%;
    cursor: pointer;
}
.coll .container .box .text{
    text-align: center;
    background-color: transparent;
    width: 100%;
    margin: 20px 0px;
}
.coll .container .box .text p{
    font-size: 25px;
    font-weight: 400;
    color: var(---black);
}
.coll .container .box .text .star{
    margin: 10px 0px;
}
.coll .container .box .text .star i{
    font-size: 20px;
    color: var(---yellow);
    margin: 0px 5px;
}
.coll .container .box .text button{
    width: 250px;
    height: 70px;
    border-radius: 10px;
    background-color: var(---lightgray);
    color: var(---black);
    font-size: 20px;
    cursor: pointer;
    font-weight: 400;
}
.coll .container .box .text button:hover{
    background-color: var(---green);
    color: var(---white);
}
/*----------------------------------------Collection  Page---------------------------*/

/*----------------------------------------Video  Page--------------------------------*/
.work{
    background-color: transparent;
    margin-top: 150px;
}
.work .container{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.work .container .video{
    text-align: center;
}
.work .container .video .text{
    margin-top: 20px;
}
.work .container .video a{
    font-size: 30px;
    color: var(---black);
    font-weight: 400;
}
.work .container .video a:hover{
    color: var(---green);
}
.work .container .video .data-video{
    background-image: url(img/eg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 586px;
    height: 894px;
    border-radius: 20px;
}
.work .container .video .data-video2{
    background-image: url(img/wed.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 586px;
    height: 894px;
    border-radius: 20px;
}
/*----------------------------------------Video  Page--------------------------------*/

/*----------------------------------------Book  Page---------------------------------*/
.book{
    background-image: url(img/sho.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
}
.book .container{
    text-align: center;
    backdrop-filter: blur(50px);
    border: 3px solid #ffffff9a;
    width: 1400px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.466);
}
.book .container .text h1{
    font-size: 80px;
    font-weight: 400;
    color: var(---white);
}
.book .container .text p{
    font-size: 20px;
    font-weight: 400;
    color: var(---white);
    line-height: 40px;
}
.book .container .text .button{
    display: flex;
    align-items: center;
    justify-content: center;
}
.book .container .text .button button{
    width: 400px;
    height: 80px;
    border: 3px solid var(---white);
    color: var(---white);
    font-size: 20px;
    font-weight: 400;
    background-color: transparent;
    margin: 0px 20px;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 10px;
}
.book .container .text .button button:hover{
    border: 3px solid var(---green);
    background-color: #28a99c46;
}
/*----------------------------------------Book  Page---------------------------------*/

/*----------------------------------------Big News Page------------------------------*/
.big-news{
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.big-news .container .image img{
    width: 100%;
    border-radius: 30px;
    border: 5px solid var(---white);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.185);
}
.big-news .container .text{
    margin-top: 50px;
}
.big-news .container .text h1{
    font-size: 80px;
    color: var(---black);
    font-weight: 400;
}
.big-news .container .text p{
    font-size: 20px;
    color: var(---gray);
    font-weight: 400;
    line-height: 50px;
}
/*----------------------------------------Big News Page------------------------------*/





























/* media quries */


@media (max-width:1772px) {
    section{
        padding: 20px 100px;
    }
    .about .container .image{
        width: 750px;
    }
    .coll .container .box{
        width: 320px;
        height: 580px;
    }
}
@media (max-width:1674px) {
    section{
        padding: 20px 75px;
    }
    .nav  .navbar a{
        font-size: 20px;
        padding: 0px 20px;
    }
}
@media (max-width:1574px) {
    section{
        padding: 20px 50px;
    }
    .about .container .image{
        width: 650px;
    }
    .news .container .right{
        width: 650px;
    }
    .news .right .text{
        width: 600px;
    }
}
@media (max-width:1486px) {
    .about .container .image{
        width: 600px;
    }
    .product .proslider .probox .data .image img{
        width: 80%;
    }
    .news .container .right{
        width: 550px;
    }
    .news .right .text{
        width: 500px;
    }
}
@media (max-width:1390px) {
    section{
        padding: 20px 35px;
    }
    .header .container p{
        font-size: 16px;
        color: var(---white);
        font-weight: 400;
    }
    .header .container .location .data a{
        color: var(---white);
        font-size: 16px;
        font-weight: 400;
    }
    .header .container .location .other{
        width: 210px;
    }
    .nav .navbar a{
        font-size: 16px;
    }
    .about .container .image{
        width: 550px;
    }
    .cat .container .left .box{
        width: 320px;
        height: 280px;
    }
    .news .container .right{
        width: 500px;
    }
    .news .right .text{
        width: 450px;
    }
    .coll .container .box{
        width: 300px;
        height: 550px;
    }
}
@media (max-width:1280px) {
    section{
        padding: 20px 25px;
    }
    .nav{
        position: absolute;
        top: 17%;
        border-top: none;
        display: none;
        z-index: 7;
    }
    .nav  .navbar{
        background-color: var(---white);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.082);
        border-radius: 20px;
        display: block;
    }
    .nav  .navbar a{
        font-size: 20px;
        color: var(---black);
        font-weight: 400;
        padding: 0px 30px;
        display: block;
        text-align: center;
        line-height: 50px;
    }
    .home .container .icon #menu{
        display: inherit;
    }
    .hero{
        background-image: url(img/mobile.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 1385px;
        display: flex;
        justify-content: center;
    }
    .hero .container .text{
        text-align: center;
    }
    .pro-hero .heroslider .heroimage{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 850px;
        z-index: -1;
    }
    .pro-hero .heroslider .heroimage .text{
        margin: 0px auto;
        text-align: center;
    }
    .about{
        margin-top: 100px;
    }
    .about .container{
        display: block;
    }
    .about .container .image{
        width: 800px;
        margin: 0px auto;
    }
    .about .container .text{
        text-align: center;
    }
    .cat .container .left{
        display: block;
    }
    .cat{
        margin-top: 100px;
    }
    .product {
        margin-top: 100px;
    }
    .product .proslider{
        height: 100%;
    }
    .product .proslider .probox .data .image img{
        width: 60%;
    }
    .product .proslider .probox{
        height: 100%;
    }
    .news .container{
        display: block;
    }
    .news .container .left-side .box{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .news .container .right{
        width: 750px;
        margin: 0px auto;
    }
    .news .right .text{
        width: 675px;
    }
    .news{
        margin-top: 100px;
    }
    .footer{
        margin-top: 100px;
    }
    .footer .container{
        display: block;
        text-align: center;
    }
    .footer .container .link {
        margin: 20px 0px;
    }
    .footer .container .link i{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer .container .last-link .box{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .all-product{
        margin-top: 100px;
    }
    .catory{
        margin-top: 50px;
    }
    .form{
        margin-top: 100px;
    }
    .map{
        margin-top: 100px;
    }
    .faq{
        margin-top: 100px;
    }
    .coll .container{
        display: block;
    }
    .coll .container .box{
        width: 380px;
        height: 620px;
        margin: 20px auto;
    }
    .coll{
        margin-top: 100px;
    }
    .work{
        margin-top: 100px;
    }
    .work .container{
        display: block;
    }
    .work .container .data-video{
        margin: 0px auto;
    }
    .work .container .data-video2{
        margin: 0px auto;
        margin-top: 50px;
    }
    .work {
        margin-top: 100px;
    }
    .book{
        margin-top: 100px;
    }
    .big-news .container .text{
        text-align: center;
    }
}
@media (max-width:1080px) {
    section{
        padding: 20px 20px;
    }
    .header .container{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header .container p{
        font-size: 12px;
        color: var(---white);
        font-weight: 400;
        display: none;
    }
    .header .container .location .data a{
        color: var(---white);
        font-size: 20px;
        font-weight: 400;
    }
    .header .container .location .other{
        width: 100%;
        background-color: transparent;
        right: 0;
        box-shadow: none;
    }
    .header .container .location .other .all-lan{
        width: 90%;
        background-color: var(---white);
        margin: 0px auto;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.096);
    }
    .header .container .location .other .all-lan .lan{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .home .container .icon i{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: var(---lightgray);
        border-radius: 10px;
        margin-left: 20px;
        font-size: 16px;
        cursor: pointer;
    }
    .product .proslider .probox .data .image img{
        width: 60%;
    }
    .book .container{
        width: 100%;
        height: 500px;
    }
    .book .container .text .button button{
        width: 300px;
        height: 80px;
        border: 3px solid var(---white);
        color: var(---white);
        font-size: 16px;
        font-weight: 400;
        background-color: transparent;
        cursor: pointer;
        border-radius: 10px;
    }
}
@media (max-width:850px) {
    .about .container .image{
        width: 100%;
    }
    .product .proslider .probox .data .image img{
        width: 60%;
    }
    .book .container{
        height: 800px;
    }
}
@media (max-width:780px) {
    section{
        padding: 20px 15px;
    }
    .hero .container .text h1{
        font-size: 80px;
        color: var(---black);
        font-weight: 400;
        line-height: 100px;
    }
    .product .proslider .probox .data .image img{
        width: 60%;
    }
    .news .container .left-side .box .data h1{
        width: 100%;
    }
    .news .container .left-side .box .data{
        display: block;
        text-align: center;
    }
    .news .container .right{
        width: 100%;
    }
    .news .container .right .text{
        width: 90%;
    }
    .news .container .left-side .box .data .text{
        margin-left: 0px;
    }
}
@media (max-width:690px) {
    section{
        padding: 20px 10px;
    }
    .home .container .icon #icon{
        display: none;
    }
    .hero .container .text{
        margin-top: 50px;
    }
    /*heading size*/
    .hero .container .text h1{
        font-size: 60px;
        color: var(---black);
        font-weight: 400;
        line-height: 80px;
    }
    .about .container .text h1{
        font-size: 60px;
        line-height: 80px;
    }
    .about .heading h1{
        font-size: 60px;
        line-height: 80px;
    }
    .about .heading h2{
        font-size: 20px;
    }
    .cat .heading h1{
        font-size: 60px;
    }
    .product .heading h1{
        font-size: 60px;
    }
    .product .proslider .probox .data h1{
        font-size: 30px;
    }
    .news .heading h1{
        font-size: 60px;
    } 
    .contact .heading h1{
        font-size: 60px;
        line-height: 80px;
    }
    .all-product .heading h1{
        font-size: 60px;
        line-height: 80px;
    }
    .catory .heading h1{
        font-size: 60px;
        line-height: 80px;
    }
    .pro-hero .heroslider .heroimage .text h1{
        font-size: 60px;
    }
    .faq .heading h1{
        font-size: 60px;
        line-height: 80px;
    }
    .coll .heading h1{
        line-height: 80px;
        font-size: 60px;
    }
    .book .container .text h1{
        font-size: 60px;
        line-height: 80px;
    }
    .big-news .container .text h1{
        font-size: 60px;
        line-height: 80px;
    }
    /*heading size*/
    .hero{
        background-image: url(img/half-mobile.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 1000px;
        display: flex;
        justify-content: center;
    }
    .about{
        margin-top: 50px;
    }
    .about .container{
        margin-top: 30px;
    }
    .cat{
        margin-top: 50px;
    }
    .cat .container{
        display: block;
        margin-top: 30px;
    }
    .cat .container .left .box{
        margin: 0px auto;
    }
    .product {
        margin-top: 50px;
    }
    .product .proslider .probox .data .image img{
        width: 60%;
    }
    .product .proslider{
        margin-top: 30px;
    }
    .news .container .left-side .box .data h1{
        font-size: 20px;
    }
    .news .container .left-side .box .data p{
        font-size: 14px;
    }
    .news .container{
        margin-top: 30px;
    }
    .news{
        margin-top: 50px;
    }
    .contact .container .input{
        margin-top: 10px;
    }
    .footer{
        margin-top: 30px;
    }
    .all-product{
        margin-top: 30px;
    }
    .all-product .productslider{
        margin-top: 30px;
    }
    .catory{
        margin-top: 30px;
    }
    .catory .container{
        display: block;
        margin-top: 30px;
    }
    .catory .container button{
        margin: 20px auto;
    }
    .form .container .full-data .first-form .email-form{
        width: 100%;
    }   
    .form .container .full-data .first-form button{
        width: 100%;
    }
    .form .container .full-data .button{
        width: 100%;
    }
    .form{
        margin-top: 50px;
    }
    .map{
        margin-top: 50px;
    }
    .faq{
        margin-top: 50px;
    }
    .coll{
        margin-top: 50px;
    }
    .work{
        margin-top: 50px;
    }
    .book .container .text .button{
        display: block;
    }
    .book{
        margin-top: 50px;
    }
}
@media (max-width:610px) {
    .work .container .video{
        width: 100%;
    }
    .work .container .video .data-video{
        width: 100%;
    }
    .work .container .video .data-video2{
        width: 100%;
    }
}
@media (max-width:500px) {
    /*heading size*/
    .hero .container .text h1{
        font-size: 40px;
        color: var(---black);
        font-weight: 400;
        line-height: 50px;
    }
    .about .container .text h1{
        font-size: 40px;
        line-height: 50px;
    }
    .about .heading h1{
        font-size: 40px;
        line-height: 50px;
    }
    .about .heading h2{
        font-size: 15px;
        margin-bottom: 10px;
    }
    .cat .heading h1{
        font-size: 40px;
    }
    .product .heading h1{
        font-size: 40px;
    }
    .news .heading h1{
        font-size: 40px;
    } 
    .contact .heading h1{
        font-size: 35px;
        line-height: 50px;
    }
    .all-product .heading h1{
        font-size: 40px;
        line-height: 50px;
    }
    .catory .heading h1{
        font-size: 40px;
        line-height: 50px;
    }
    .pro-hero .heroslider .heroimage .text h1{
        font-size: 40px;
    }
    .faq .heading h1{
        font-size: 40px;
        line-height: 50px;
    }
    .coll .heading h1{
        line-height: 50px;
        font-size: 40px;
    }
    .big-news .container .text h1{
        font-size: 40px;
        line-height: 50px;
    }
    /*heading size*/

    /*paragraph size*/
    .hero .container .text p{
        font-size: 16px;
        color: var(---gray);
        font-weight: 400;
        line-height: 30px;
        margin-top: 10px;
    }
    .about .container .text p{
        font-size: 16px;
        line-height: 30px;
        margin-top: 10px;
    }
    .contact .heading p{
        font-size: 16px;
        line-height: 30px;
        margin: 10px 0px;
    }
    .pro-hero .heroslider .heroimage .text p{
        font-size: 16px;
        line-height: 30px;
    }
    .book .container .text p{
        font-size: 16px;
        line-height: 30px;
    }
    .big-news .container .text p{
        font-size: 16px;
        line-height: 30px;
    }
    /*paragraph size*/

    /*button*/
    .hero .container .text button{
        margin-top: 20px;
        width: 150px;
        height: 70px;
        font-size: 16px;
    }
    .about .container .text button{
        margin-top: 20px;
        width: 150px;
        height: 70px;
        font-size: 16px;
    }
    /*button*/   
    .product .proslider .probox .data .image img{
        width: 60%;
    }
    .news .container .right .text h1{
        font-size: 50px;
    }
    .all-product .productslider{
        background-color: transparent;
        padding: 10px 30px;
    }
    .form .container h1{
        font-size: 30px;
        color: var(---black);
        font-weight: 400;
    }
    .form{
        margin-top: 30px;
    }
    .map{
        margin-top: 30px;
    }
    .faq .container{
        margin-top: 30px;
    }
    .faq .container .box .top h1{
        font-size: 16px;
        margin-left: 10px;
    }
    .faq .container .box .para p{
        font-size: 16px;
        padding: 10px 10px;
    }

    .faq .container .box .para1 p{
        font-size: 16px;
        padding: 10px 10px;
    }

    .faq .container .box .para2 p{
        font-size: 16px;
        padding: 10px 10px;
    }

    .faq .container .box .para3 p{
        font-size: 16px;
        padding: 10px 10px;
    }
    .coll{
        margin-top: 30px;
    }
    .coll .container{
        margin-top: 30px;
    }
    .book{
        margin-top: 30px;
    }
    .big-news .container .text{
        margin-top: 30px;
    }
}
@media (max-width:400px) {

    .home .container .logo{
        width: 100%;
    }
    .home .container .logo img{
        width: 100%;
    }

    /*paragraph size*/
    .hero .container .text p{
        font-size: 13px;
        color: var(---gray);
        font-weight: 400;
        line-height: 30px;
        margin-top: 10px;
    }
    .about .container .text p{
        font-size: 13px;
        line-height: 30px;
    }
    .pro-hero .heroslider .heroimage .text p{
        font-size: 13px;
        line-height: 30px;
    }
    .book .container .text p{
        font-size: 13px;
        line-height: 30px;
    }
    .big-news .container .text p{
        font-size: 13px;
        line-height: 30px;
    }
    /*paragraph size*/
    .cat .container .left .box{
        background-color: transparent;
        width: 100%;
    }
    .product .proslider .probox .data h1{
        font-size: 20px;
    }
    .product .proslider .probox .data .image img{
        width: 80%;
    }
    .news .container .right .text h1{
        font-size: 35px;
    }
    .contact .container .input input{
        font-size: 16px;
        padding-left: 10px;
    }
    .contact .container .input .button h1{
        font-size: 20px;
    }
    .all-product .productslider .box .text p{
        font-size: 16px;
        font-weight: 400;
        color: var(---black);
    }
    .form .container h1{
        font-size: 25px;
        font-weight: 400;;
    }
    .form .container{
        height: 800px;
    }
    .faq .container .box .top h1{
        font-size: 12px;
    }
    .faq .container .box .para p{
        font-size: 12px;
    }
    .faq .container .box .para1 p{
        font-size: 12px;
    }
    .faq .container .box .para2 p{
        font-size: 12px;
    }
    .faq .container .box .para3 p{
        font-size: 12px;
    }
    .coll .container .box{
        width: 100%;
        height: 620px;
    }
    .big-news .container .text h1{
        font-size: 35px;
    }

}
@media (max-width:350px) {
    .contact .container .input .button h1{
        font-size: 16px;
    }
    .contact .container .input input{
        font-size: 12px;
        padding-left: 10px;
    }
    .all-product .productslider .box .text p{
        font-size: 12px;
        font-weight: 400;
        color: var(---black);
    }
    .all-product .productslider .box .text button{
        width: 150px;
        height: 60px;
        font-size: 16px;
    }
    .faq .container .box .top h1{
        font-size: 10px;
    }
    .faq .container .box .para p{
        font-size: 10px;
    }
    .faq .container .box .para1 p{
        font-size: 10px;
    }
    .faq .container .box .para2 p{
        font-size: 10px;
    }
    .faq .container .box .para3 p{
        font-size: 10px;
    }
    .coll .container .box{
        width: 100%;
        height: 540px;
    }
    .work .container .video a{
        font-size: 20px;
    }
    .book .container .text .button button{
        width: 250px;
        height: 80px;
        font-size: 12px;
    }
}
/* media quries */