@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
    --main-color:#d3ad7f;
    --black:#13131a;
    --bg: #002952;
    --border:.1rem solid rgba(255,255,255,.3);
}

*{
    font-family: 'Roboto', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding:2rem 7%;
}

.heading{
    text-align: center;
    color:#fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span{
    color:var(--main-color);
    text-transform: uppercase;
}

.btn{
    margin-top:  1rem;;
    display: inline-block;
    padding:.9rem 3rem;
    font-size: 1.7rem;
    color:#fff;
    background: var(--main-color);
    cursor: pointer;
  
    
}

.btn:hover{
    letter-spacing: .2rem;
    color: #000;
    background: var(--main-color);


}



.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top: 50px; left: 0; right: 0;
    z-index: 1000;
    
   
}

.header .logo img{
    height: 5rem;
}

.header .navbarr a{
    margin:0 1rem;
    font-size: 1.6rem;
    color:#fff;
    margin-bottom: 0;
    z-index: 1000;

}

.header .navbarr a:hover{
    color:var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div{
    color:#fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons div:hover{
    color:var(--main-color);
}

#menu-btn{
    display: none;
}


.header .search-form{
    position: absolute;
    top:115%; right: 7%;
    background: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;

    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}

.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color:var(--black);
    padding:1rem;
    text-transform: none;
}

.header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color:var(--black);
}

.header .search-form label:hover{
    color:var(--main-color);
}

.header .cart-items-container{
    position: absolute;
    top:100%; right: -100%;
    height: calc(100vh - 9.5rem);
    width: 35rem;
    background: #fff;
    padding:0 1.5rem;
    overflow-y: scroll;
    
}

.header .cart-items-container.active{
    right: 0;
}

.header .cart-items-container .cart-item{
    position: relative;
    margin:2rem 0;
    display: flex;
    align-items: center;
    gap:1.5rem;
}

.header .cart-items-container .cart-item .fa-times{
    position: absolute;
    top:1rem; right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}



.header .cart-items-container .cart-item .fa-times:hover{
    color:var(--main-color);
}

.header .cart-items-container .cart-item img{
    height: 7rem;
}

.header .cart-items-container .cart-item .content h3{
    font-size: 2rem;
    color:var(--black);
    padding-bottom: .5rem;
}

.header .cart-items-container .cart-item .content .price{
    font-size: 1.5rem;
    color:var(--main-color);
}

.header .cart-items-container .btn{
    width: 100%;
    text-align: center;
}


















/*home 1*/



.home{
    min-height: 50vh;
    max-width: 100vw;
    display: flex;
    align-items: center;
    background:url(../images/pagehome.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}


.home .content{
    max-width: 100%;   
    display: grid;
    grid-template-columns: 1fr;

    align-items: center;
    justify-content: center;
    margin: auto;

}
.home .content .sublogo{
    width: 350px;
    height: 200px;
    margin-top: 40px;


}

.home .content h3{
    font-size: 5rem;
    text-transform: uppercase;
    color:#fff;
}

.home .content p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
}



.home .content2{
    max-width: 60rem;
    margin-top: 50px;

}


.home .content2 h3{
    font-size: 6rem;
    text-transform: uppercase;
    color:#fff;
}

.home .content2 p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
}



/*home2*/




.home2{
    min-height: 80vh;
    max-width: 100vw;
    display: flex;
    align-items: center;
    /*background:url(../images/home5000.jpg) no-repeat;*/
    background-size: cover;
    background-position: center;
}







.home2 .content{
    max-width: 60rem;

}
.home2 .content .sublogo{
    width: 350px;
    height: 200px;
    margin-top: 40px;


}

.home2 .content h3{
    font-size: 5rem;
    text-transform: uppercase;
    color:#fff;
}

.home2 .content p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
}



.home2 .content2{
    max-width: 60rem;
    margin-top: 50px;

}


.home2 .content2 h3{
    font-size: 6rem;
    text-transform: uppercase;
    color:#fff;
}

.home2 .content2 p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
}




/*hom2 end*/


/*home3*/




.home3{
    min-height: 100vh;
    max-width: 100vw;
    display: flex;
    align-items: center;
    background:url(../images/homeneww.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}




.home3 .content{
    max-width: 60rem;

}
.home3 .content .sublogo{
    width: 350px;
    height: 200px;
    margin-top: 40px;


}

.home3 .content h3{
    font-size: 5rem;
    text-transform: uppercase;
    color:#fff;
}

.home3 .content p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
}



.home3 .content2{
    max-width: 60rem;
    margin-top: 50px;

}


.home3 .content2 h3{
    font-size: 6rem;
    text-transform: uppercase;
    color:#fff;
}

.home3 .content2 p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
}




/*hom3 end*/











.about .row{
    display: flex;
    align-items: center;
    background: #002952;
    flex-wrap: wrap;
}

.about .row .image{
    flex:1 1 45rem;
}

.about .row .image img{
    width: 100%;
}
.about .row .content{
    flex:1 1 45rem;
    padding:2rem;
}

.about .row .content h3{
    font-size: 3rem;
    color:#fff;
}

.about .row .content p{
    font-size: 1.6rem;
    color:#ccc;
    padding:1rem 0;
    line-height: 1.8;
}

.about .row .content table{
    color:rgb(255, 255, 255);
    }
    
    .about .row .content table th{
        color: #d3ad7f;
    
    }
    
    .about .row .content table tbody tr:hover {
        color: #000;
        font-weight: bold;
       
    }








.details .row{
    /*display: flex;*/
    align-items: center;
    border-color: #d3ad7f;
    border-style: solid;
    border-width: 3px;
}

.details .row .image{
    flex:1 1 50rem;
    margin-left: 0;

}

.details .row .image img{
    /*width: 100%;*/
    width: 100px;
    margin-left: 0;


}
.details .row .content{
    flex: 1 1 45rem;
    padding:2rem;
    margin-right: 30px;
}

.details .row .content h3{
    font-size: 3rem;
    color:#fff;
}

.details .row .content p{
    font-size: 1.6rem;
    color:#ccc;
    padding:1rem 0;
    line-height: 1.8;
    
}






.details .row .content table{
    font-size: 1.6rem;
    color:rgb(255, 255, 255);
    padding:1rem 0;
    margin-right: 0px;
    line-height: 1.8;
    width: 100%;
 
}





.details .mm ul {

    color:#d3ad7f;
    display: inline-block;
    list-style-type: none;





}


.details ul {

    color:#d3ad7f;
    display: inline-block;
    list-style-type: none;

}



.details .row .content  li {

    color:#ffffff;
    display: inline-block;
    list-style-type: none;




}



.details .row .content table th {

    color:#d3ad7f;


}


.details .row .content table th {

    color:#d3ad7f;


}


.details .row .content table td.red {

    color:#ff0000;
    font-weight: bold;


}


.details .row .content table tr:hover {

    color:#000000;


}



.red{
    color: #ff0000;
    
    



}

.greenn{
    color: #02ff3d;
    



}
.greem{ 
    color: #bbb;
}


.menu {
    
    justify-content: center;
    box-sizing: border-box;



}


.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
    margin-left: 0%;
    justify-content: center;
    box-sizing: border-box;




    
}

.menu .box-container .box{
    padding:5rem;
    text-align: center;
   /* border:var(--border);    */
    border-radius: 15px;
    border-color: #d3ad7f;
    border-style: solid;
    border-width: .5px;

}

.menu .box-container .box img{
    height: 10rem;
}

.menu .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding:1rem 0;
}
.menu .box-container .box:hover h3 {
    color: #000;
    
}



.menu .box-container .box .price{
    color: #fff;
    font-size: 1.5rem;
    padding:.5rem 0;
}

.menu .box-container .box .price span{
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover{
    background: #fff;
    color: #000;
}

.menu .box-container .box:hover > *{
    color: #000;

}

.products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.products .box-container .box{
    text-align: center;
    border:var(--border);
    padding: 2rem;
}

.products .box-container .box .icons a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    border:var(--border);
    color:#fff;
    margin:.3rem;
}

.products .box-container .box .icons a:hover{
    background:var(--main-color);
}

.products .box-container .box .image{
    padding: 2.5rem 0;
}

.products .box-container .box .image img{
    height: 25rem;
}

.products .box-container .box .content h3{
    color:#fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .stars{
    padding: 1.5rem;
}

.products .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--main-color);
}

.products .box-container .box .content .price{
    color:#fff;
    font-size: 2.5rem;
}

.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
}

.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}


.review .box-container table{
color:rgb(255, 255, 255);
}

.review .box-container table th{
    color: #d3ad7f;

}

.review .box-container table tbody tr:hover{
    color: #000;
    font-weight: bold;
   
}


    

.review .box-container .box{
    border:var(--border);
    text-align: center;
    padding:3rem 2rem;
}

.review .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8;
    color:#ccc;
    padding:2rem 0;
}

.review .box-container  img{
height: 200px;
width: 100%;
align-items: center;
display: block;
}

.review .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .box-container .box h3{
    padding:1rem 0;
    font-size: 2rem;
    color:#fff;
}

.review .box-container .box .stars i{
    font-size: 1.5rem;
    color:var(--main-color);
}

.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}


.review .box-container table{
color:rgb(255, 255, 255);
}

.review .box-container table th{
    color: #d3ad7f;

}

.review .box-container table :hover{
    color: #13131a;
    font-weight: bold;
   
}


.profile{
    
    align-items: center;
}

.profile .box-container .box{
    border:var(--border);
    text-align: center;
    padding:3rem 2rem;
    width: 100%;
    
}

.profile .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8;
    color:#ccc;
    padding:2rem 0;
}

.profile .box-container  img{
height: auto;
width: 30%;
align-items: center;
display: block;
margin-left: 37%;
margin-bottom: 15px;

}





    

.profile .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.profile .box-container .box h3{
    padding:1rem 0;
    font-size: 2rem;
    color:#fff;
}

.profile .box-container .box .stars i{
    font-size: 1.5rem;
    color:var(--main-color);
}

.profile .box-container{
    display: flex;
    align-items: center;
    -ms-flex-align: center;
    margin-top: 50px;
    
}


.profile .box-container table{
color:rgb(255, 255, 255);

}

.profile .box-container table th{
    color: #d3ad7f;

}

.profile .box-container table :hover{
    color: #13131a;
    font-weight: bold;
   
}










.contact .row{
    display: flex;
    background: #002952;
    flex-wrap: wrap;
    gap:1rem;
}

.contact .row .map{
    flex:1 1 45rem;
    width: 100%;
    object-fit: cover;
}

.contact .row form{
    flex:1 1 45rem;
    padding:5rem 2rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color:#fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: #002952;
    border:var(--border);
}

.contact .row form .inputBox span{
    color:#fff;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding:2rem;
    font-size: 1.7rem;
    color:#fff;
    text-transform: none;
    background:none;
}

.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.blogs .box-container .box{
    border:var(--border); 
        align-items: center;
   
}

.blogs .box-container .box .image{
    height: 30rem;
    overflow:hidden;
    width: 80%;
    align-items: center;

}

.blogs .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width: 60%;
    align-items: center;
    margin-left: 35%;
    margin-right: 35%;
  
}



.blogs .box-container .box:hover .image img{
    transform: scale(1.2);
}

.blogs .box-container .box .content{
    padding:2rem;
}

.blogs .box-container .box .content .title{
    font-size: 2.5rem;
    line-height: 1.5;
    color:#fff;
}

.blogs .box-container .box .content .title:hover{
    color:var(--main-color);
}

.blogs .box-container .box .content span{
    color:var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.blogs .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color:#ccc;
    padding:1rem 0;
}

.footer{
    background:#002952;
    text-align: center;
}

.footer .share{
    padding:1rem 0;
}

.footer .share a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color:#fff;
    border:var(--border);
    margin:.3rem;
    border-radius: 50%;
}

.footer .share a:hover{
    background-color: var(--main-color);
}

.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding:2rem 0;
    gap:1rem;
}

.footer .links a{
    padding:.7rem 2rem;
    color:#fff;
    border:var(--border);
    font-size: 2rem;
}

.footer .links a:hover{
    background:var(--main-color);
}

.footer .credit{
    font-size: 2rem;
    color:#fff;
    font-weight: lighter;
    padding:1.5rem;
}

.footer .credit span{
    color:var(--main-color);
}













/* media queries  */
@media (max-width:991px){
    
    #menu-btn{
        display: inline-block;
    }

    
    .header .navbarr{
        position: absolute;
        top:100%; right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbarr.active{
        right:0;
    }

    .header .navbarr a{
        color:var(--black);
        display: block;
        margin:1.5rem;

        padding:.5rem;
        font-size: 1.6rem;
    }

    html{
        font-size: 55%;
    }

    .header{
        padding:1.5rem 2rem;
    }
    
    

    .header .search-form{
        width: 90%;
        right: 2rem;
    }

    section{
        padding:2rem;
    }

    


    .details .row .image .slideshow-container .mySlides img{
        margin-left: 0;
        width: 110;
        height: 70px;
    }
        

    .home{
        min-height: 100vh;

    }

    .home .content2{
        max-width: 60rem;
        height: 100vh;
        margin-top: 100px;

        
    
    }



    .home2{
        min-height: 100vh;

    }

    .home2 .content2{
        max-width: 60rem;
        height: 100vh;
        margin-top: 100px;

        
    }

    .home3{
        min-height: 100vh;

    }

    .home3 .content2{
        max-width: 60rem;
        height: 100vh;
        margin-top: 100px;

        
    
    }


    
    
}

@media (max-width:768){

    #menu-btn{
        display: inline-block;
    }

    
    .header .navbarr{
        position: absolute;
        top:100%; right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active{
        right:0;
    }

    .header .navbarr a{
        color:var(--black);
        display: block;
        margin:1.5rem;
        padding:.5rem;
        font-size: 2rem;
    }

    .header .search-form{
        width: 90%;
        right: 2rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 4.5rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }

       
    .home{
        min-height: 100vh;
    }

    .home .content2{
        max-width: 60rem;
        height: 100vh;
        margin-top: 100px; 
    
    }
    /*home2*/

    .home2{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home2 .content h3{
        font-size: 4.5rem;
    }

    .home2 .content p{
        font-size: 1.5rem;
    }

       
    .home2{
        min-height: 100vh;
    }

    .home2 .content2{
        max-width: 60rem;
        height: 100vh;
        margin-top: 100px; 
    
    }


    /*hom3*/


     /*home2*/

     .home3{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home3 .content h3{
        font-size: 4.5rem;
    }

    .home3 .content p{
        font-size: 1.5rem;
    }

       
    .home3{
        min-height: 100vh;
    }

    .home3 .content2{
        max-width: 60rem;
        height: 100vh;
        margin-top: 100px; 
    
    }



    .details .row .image .slideshow-container .mySlides img{
        margin-left: 0;

        width: 110;
        height: 70px;
    }

    .news .box-container .box{
     
       
        max-width: cover; 
    
             
    }
   

}

@media (max-width:560px){
    .news .box-container .box{
     
       
        max-width: 500px; 
    
             
    }

}

@media (max-width:500px){
    .news .box-container .box{
     
       
        max-width: 450px; 
    
             
    }

}


@media (max-width:450px){

    html{
        font-size: 50%;
    }

        .details .row .image .slideshow-container .mySlides img{
            margin-left: 0;
            width: 110;
            height: 70px;
        }

        .home{
            min-height: 80vh;
            max-width: 100vh;

        }
    
        .home .content2{
            max-width: 60rem;
            height: 80vh;
            margin-top: 40px;

        }


        .home2{
            min-height: 80vh;
            max-width: 100vh;

        }
    
        .home2 .content2{
            max-width: 60rem;
            height: 80vh;
            margin-top: 40px;

        }

        .home3{
            min-height: 80vh;
            max-width: 100vh;

        }
    
        .home3 .content2{
            max-width: 60rem;
            height: 80vh;
            margin-top: 40px;

        }
        .news .box-container .box{
     
       
            max-width: 400px; 
        
                 
        }
        


        

    



}


.cover-container
{
    height: 180px;
    width: 100%;
    overflow-x: scroll;
}

.cover-item
{
    position: relative;
    float: left;
    margin: 8px 8px;
    box-shadow: 2px 2px 4px #bbb;
    border-top-right-radius: 4px;
    width: 116px;
    height: 158px;
    vertical-align: bottom;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}







/*main slider*/

.slider .box-container{
    display: flex;
  /*  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));*/
    gap:1.5rem;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 15px;
    margin-bottom: 50px;
    scroll-behavior: smooth;
  

 
}

.slider .box-container .box{
    padding:20px;
    text-align: center;
    border:var(--border); 
    width: 300px;
    height: 350px;   
    border-radius: 15px;
}

.slider .box-container .box img{
    height: 10rem;
    margin-top: auto;

}

.slider .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding:1rem 0;
}

.slider .box-container .box .price{
    color: #fff;
    font-size: 1.5rem;
    padding:.5rem 0;
}

.slider .box-container .box .price span{
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.slider .box-container .box:hover{
    background:#fff;
}

.slider .box-container .box:hover > *{
    color:var(--black);
}



.space{

    display: flex;
    width : 100vw ;
    height: 70px;
    align-items: center;




}




.news .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:2rem;
    overflow: hidden;
}
.news .box-container .box{
     
    border-radius: 15px;
    border:var(--border); 
    max-width: cover; 

         
}

.news .box-container .box .image{
    height: 25rem;
    overflow:hidden;
    width: 50%;
    align-items: center;
    margin: auto;
}

.news .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
    align-items: center;

}

.news .box-container .box:hover .image img{
    transform: scale(1.2);
}

.news .box-container .box .content{
    padding:2rem;
}

.news .box-container .box .content .title{
    font-size: 2.5rem;
    line-height: 1.5;
    color:#fff;
}

.news .box-container .box .content .title:hover{
    color:var(--main-color);
}

.news .box-container .box .content span{
    color:var(--main-color);
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.news .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color:#ccc;
    padding:1rem 0;
   
}

.news .box-container .box .content a{
    color: #002952;
    width: 100%;
    }
    










.login{
    min-height: 100vh;

   /* max-width: 100vw;*/
    display: flex;
    align-items: center;
    background:url(../images/home5000.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}



.login .content{
    max-width: 60rem;
    
}


.login .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color:#fff;
}

.login .content p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
}





.login-box{
    width: 500px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    

   
  
  }
  
  .login-box h1{
    float: left;
    font-size: 40px;
    border-bottom: 6px solid #002952;
    padding: 13px 0;
    color: white;

    

  
  }
  
  
  .textbox1{
  width: 100%;
  overflow: hidden;
  font-size: 20px;
  padding: 8px 0;
  margin: 8px 0;
  border: 3px solid #002952;
  background-color: rgba(255, 255, 255, 0.2);
  color: #002952;

  }


  .textbox2{
    width: 100%;
    overflow: hidden;
    font-size: 10px;
    /*padding: 8px 0;
    margin: 8px 0;*/
    border-bottom: 3px solid #002952;
   /* background-color: rgba(255, 255, 255, 0.2);*/
    /*color: #002952;  */
    
    }
  
  
  
  .textbox1 i {
  width: 26px;
  float: left;
  text-align: center;
  }
  
  .textbox1 input {
    border: none;
    outline: none;
    background: none;
    color: black;
    font-size: 18px;
    width: 80%;
    float: left;
    margin: 0 10px;
    font-weight: bold;

  }

  .textbox2 input {
    border: none;
    outline: none;
    background: none;
    color: black;
    font-size: 10px;
    width: 80%;
    float: left;
    margin: 0 10px;
    font-weight: bold;

  }


  .textbox1 ::placeholder{

    color: rgb(48, 46, 46);
    
  }

  .btnnn{
    width: 100%;
    background: none;
    border: 3px solid #002952;
    color: white;
    padding: 5px;
    font-size: 18px;
    cursor: pointer;
    margin: 12px 0;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2);

  }
  
  
 
  
  
  
  .error {
     
     color: #A94442;
     padding: 10px;
     width: 95%;
     border-radius: 5px;
     /*margin: 20px auto;*/
  }
  
  .success {
     
     color: #40754C;
     padding: 10px;
     width: 95%;
     border-radius: 5px;
     margin: 20px auto;
  }
  
  h1 {
      text-align: center;
      color: #fff;
  }
  
  .ca {
      font-size: 14px;
      display: inline-block;
      padding: 10px;
      text-decoration: none;
      color: #444;
  }
  .ca:hover {
      text-decoration: underline;
  }
  
  
  
  
  




  .menu .box-container_p{
    display: grid;
    grid-template-columns: 1fr;
    gap:1.5rem;
    
}

.menu .box-container_p .box{
    padding:.5rem;
    text-align: center;
   /* border:var(--border);    */
    border-radius: 15px;
    border-color: #002952;
    border-style: solid;
    border-width: .5px;
    height: 10rem;
    
}

.menu .box-container_p .box img{
    height: 5rem;
    width: 5rem;
    margin-left: 0;
    margin-top: 0;
    margin-left: 0;
}

.menu .box-container_p .box h3{
    color: #002952;
    font-size: 2rem;
    position: relative;
}

.menu .box-container_p .box .price{
    color: #002952;
    font-size: 1.5rem;
    position: relative;
}

.menu .box-container_p .box .price span{
    font-size: 1.5rem;
    font-weight: lighter;
}

.menu .box-container_p .box:hover{
    background: #d3ad7f;
    
}

.menu .box-container_p .box:hover > *{
    color: #002952;
}

.menu .box-container_p .box.price button:hover > *{
    color: #002952;
}







.groupe {

display: grid;
grid-template-columns: 1fr 1fr;
gap: 1px;
justify-content: cover;
align-items: center;

}


.groupe .btn{


    width: 20px;
    background-color: #002952;
    border-radius: 10px;

}

.btn2{
    background-color: #002952;



}



.nodata{

    color: white;
    align-items: center;
    




}





/* calculator*/

/* ===== Google Font Import - Poppins ===== */
.ccc{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calculator{
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 6px;
    padding: 30px;
    margin: 0 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.calculator header{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.calculator header::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 27px;
    border-radius: 8px;
    background-color: #4070f4;
}
.calculator form{
    position: relative;
    margin-top: 16px;
    min-height: 660px;
    background-color: #fff;
    overflow: hidden;

}
.calculator form .form{
    position: absolute;
    background-color: #fff;
    transition: 0.3s ease;

}
.calculator form .form.second{
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);

}
form.secActive .form.second{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
form.secActive .form.first{
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
}
.calculator form .title{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 6px 0;
    color: #333;
}
.calculator form .fields{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}
form .fields .input-field{
    display: flex;
    width: calc(100% / 3 - 15px);
    flex-direction: column;
    text-align: center;
    margin: 4px 0;
}

.input-field label{
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #002952;
    
}


.input-field input{
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #002952;

    
    
}


.input-field .pricee{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    /*border-bottom: 6px solid green;*/
    color: green; 
    
}



.input-field input, select{
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 0 15px;
    height: 42px;
    margin: 8px 0;
}

.input-field input :focus,
.input-field select:focus{
    box-shadow: 0 3px 6px rgba(0,0,0,0.13);
}
.input-field select,
.input-field input[type="number"]{
    color: #002952;
    border: none;
    border-bottom: 3px solid #002952 ;
    
}



.input-field input[type="number"]:valid{
    color: #002952;
}
.calculator form button, .backBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    margin: 25px 0;
    background-color: #002952;
    transition: all 0.3s linear;
    cursor: pointer;
}
.calculator form .btnText{
    font-size: 14px;
    font-weight: 400;
}
form button:hover{
    background-color: #265df2;
}
form button i,
form .backBtn i{
    margin: 0 6px;
}
form .backBtn i{
    transform: rotate(180deg);
}
form .buttons{
    display: flex;
    align-items: center;
}
form .buttons button , .backBtn{
    margin-right: 14px;
}

@media (max-width: 750px) {
    .calculator form{
        overflow-y: scroll;
    }
    .calculator form::-webkit-scrollbar{
       display: none;
    }
    form .fields .input-field{
        width: calc(100% / 3 - 15px);
    }

    .input-field input{
        font-size: 15px;
        font-weight: bold;
        }

   .input-field label{
        font-size: 15px;
        font-weight: bold;
        }




}

@media (max-width: 550px) {
    form .fields .input-field{
        width: calc(100% / 3 - 5px);}

        .input-field input{
            font-size: 10px;
            font-weight: bold;
            }

       .input-field label{
            font-size: 10px;
            font-weight: bold;
            }

}






.slidecontainer {
    width: 100%;
  }
  
  .sliderr {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .sliderr:hover {
    opacity: 1;
  }
  
  .sliderr::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 10px;
    background: #04AA6D;
    cursor: pointer;
  }
  
  .sliderr::-moz-range-thumb {
    width: 25px;
    height: 10px;
    background: #04AA6D;
    cursor: pointer;
  }


  /*slider item details*/


  
.mySlides {display: none;}


.mySlides img {
vertical-align: middle;
width: 200px;
height: 300px;
margin-left: 0;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}



.details .row .image .slideshow-container .mySlides img{
    /*margin-left: px;*/
    width:400px;
    height: 300px; 

    
}

/* Caption text */
.stext {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.activeeee {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .stext {font-size: 11px}


}

/* home swiper*/


.sswiper {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
  }
  
  .swiper {
    width: 100%;
    padding-top: 0;
    padding-bottom: 100px;
    background-color: none;
    box-shadow: none;

  
  }
  
  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 200px;
    height: 200px;
    background-color: none;
    box-shadow: none;
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
  
    
  }
  
  .swiper-slide img {
    display: block;
    width: 100%;
  
 
   
  
  
  
  }
  .mySwiper{
    background-color: none;
  }

  .btn7{
    align-items: center;
    justify-items: center;
    width: 200px;
    text-align: center;
    border-radius: 15px;
    color: #002952;
    font-weight: bold;
    margin-top: 0;
    

  }

  .btn8{
    align-items: center;
    justify-items: center;
    width: 200px;
    text-align: center;
    border-radius: 15px;
    color: #002952;
    font-weight: bold;
    margin-top: 20px;
    

  }
    .btn8:hover{
    color: #000;
    background: var(--main-color);

}

  .swiper-slide .form{
    background-color: transparent;
    color: transparent;
  }
  

   .fa-star .checked {
    color: orange;
    margin-bottom: 20px;
    margin-right: 280px;
   
  }

  .box .fa-star {
    color: rgb(88, 88, 88);
    margin-bottom: 20px;
    margin-right: 250px;
    font-size: 20px;
   
  }



  .box a  {
    color: #00000030;
    font-size: 2em;
    margin-bottom: 0px;
    margin-right: 300px;
    margin-top: 0;
   

    }
    .heart i.fa-heart{
      color: #d3ad7f;
  
    }
  
    .box .heart{
      animation: heart 0.5s linear ;
    }
  
    @keyframes heart{
      0%{
          transform: rotate(0deg) scale(1.7);
      }
      40%{
          transform: rotate(0deg) scale(1);
      }
      41%{
          transform: rotate(360deg) scale(1);
      }
      100%{
          transform: rotate(0deg) scale(1);
      }
  
  
    }
    

    .favb{
     background:none;
     color: transparent;
     cursor: none; 
     width: 0;
     margin-bottom: 20px;
     margin-right: 250px;
     font-size: 20px;
    
     
     
    }
    .favb :hover{


        background:none;
        color: transparent;
        color: #d3ad7f;

        

    }




   .profile .profile_input{
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        color: #002952;
        background-color: rgba(255, 255, 255), .5;
        width: 80px;
        border-radius: 15px;
        margin-right: 20px;
        justify-content: center;
        cursor: pointer;

        


    }

    .profile_btn{
        color: white;
        background-color: transparent;

    }

    .profil .table  .profile_btn:hover{
        color: black;

    }

    .profile_inputmobile{
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        color: #002952;
        background-color: rgba(255, 255, 255), .5;
        width: 200px;
        border-radius: 15px;
        margin-right: 20px;
        justify-content: center;
        cursor: pointer;


    }
    .profile_inputmobile:hover{
        color: black;
    }


    .profile_select{
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        color: #002952;
        background-color: rgba(255, 255, 255), .5;
        width: 85px;
        height: 20px;
        border-radius: 15px;
        margin-right: 20px;
        justify-content: center;
        cursor: pointer;


    }

    .input-field  .profile_select2{
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        color: #002952;
        background-color: rgb(0, 30, 255), .5;
        width: 100%;
        border-radius: 15px;
        cursor: pointer;
        display: block;


    }

    .input-field  .carrancyprice  {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    /*border-bottom: 6px solid green;*/
    color: green; 

    }

    .input-field  .carrancyprice2  {
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        width: 80px;
        /*border-bottom: 6px solid green;*/
        color: green; 
    
        }

    
    .content .homesearch{
        flex: 1;
        border: none;
        outline: none;
        /*background: transparent;*/
        height: 45px;

    }
    
    .searchcontainerr{
        width: 100%;
        display: flex;
        align-items: center;
        background: transparent;
        height: 45px;



    }

    .searchformm{
        background: #fff;
        display: flex;
        align-items: center;
        width: 100%;
        height: 45px;


    }

    .homesearchbutton{
        background: #002952;
        height: 45px;
        padding: 10px 50px;
        border: none;
        outline: none;
        color: #fff;
        letter-spacing: 1px;
        cursor: pointer;

    }


    .searchformm .fa-solid {
        align-self: center;
        padding: 10px 20px;
        color: #777;



    }
