@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
    --main-color:#da251c;
    --black:#13131a;
    --bg:#010103;
    /* --border:.1rem solid rgb(0, 0, 0); */
}

*{
    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{
    overflow-x: hidden;
    background: #000 url(/images/webpattern.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

section{
    padding:2rem 7%;
}

.heading{
    /* text-align: center; */
    color:#153f89;
    text-transform: uppercase;
    /*margin-top: rem;*/
    margin-bottom: 3.5rem;
    font-size: 4rem;
    position: relative;
}
.heading::after{
    content: '';
    height: 4px;
    width: 80px;
    border-radius: 30px;
    background-color: #da251c;
    position: absolute;
    bottom: 0;
    transform: translateY(10px);
    margin-bottom: 0;
    left: 0;

}

.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;
    background:#153f89;
    
}

.header{
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 7%;
    border-bottom: var(--border);
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 2px solid #da251c;
}

.header .logo img{
    /* height: 6rem; */
    width: 20rem;
}

.header .navbar a{
    margin:0 1rem;
    font-size: 1.7rem;
    color:#000;
}

.header .navbar a:hover{
    color:var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div{
    color:#000;
    cursor: pointer;
    font-size: 3rem;
    margin-left: 2rem;
    display: inline-block;
}

.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;
    z-index: 90000;
}

.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 .icon{
    /* position: absolute;
    top:1rem; right: 1rem; */
    cursor: pointer;
    color: var(--black);
    font-size: 3rem;
}

.header .cart-items-container .cart-item .icon: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 a{
    font-size: 1.5rem;
    color:var(--main-color);
}

.header .cart-items-container .btn{
    width: 100%;
    text-align: center;
}






.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:url(/images/homebg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    /* position: relative; */
}
.gov-msg{
    width: 100%;
    background-color: #153f89;
    color: #fff;
    position: absolute;
    /*top: 10%;*/
    margin-top:72px;
    /*z-index:10000;*/
}
marquee{
    font-size: 2rem;
    word-spacing: 3px;
    font-weight: 600;
}
.home .content{
    max-width: 60rem;
}

.home .content h3{
    font-size: 4.5rem;
    text-transform: uppercase;
    color:#fff;
}

.home .content p{
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.8;
    padding:1rem 0;
    color:#eee;
}

.about .row{
    display: flex;
    align-items: center;
    background:#fff;
    flex-wrap: wrap;
}
details{
    display: none;
}

.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:#153f89;
}
big{
    font-size: 1.6rem;
    color: #da251c;
    font-weight: 700;
}
.about .row .content p{
    font-size: 1.4rem;
    color:#555;
    padding:0.2rem 0;
    line-height: 1.5;
}
.join{
    /* padding-left: 50px; */
    line-height: 20px;
    font-size: 1.4rem;
    list-style-type: none;
    line-height: 20px;
    padding-top: 10px;
    color: #555;
}
.joinbig{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
    margin-bottom: 30px;
}

.menu .box-container .box{
    padding-bottom:2rem;
    text-align: center;
    border:var(--border); 
    height: 100%;   
    background-color: #f3f2f1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.menu .box-container .box img{
    /* height: 100%; */
    width: 100%;
}

.menu .box-container .box h3{
    color: #000;
    font-size: 1.5rem;
    padding:1rem 0;
    padding-left: 10px;
    padding-right: 10px;
}

.menu .box-container .box .price{
    color: #fff;
    font-size: 2.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{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

/* .menu .box-container .box:hover > *{
    color:#fff;
} */
/* 
.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:#000;
    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:#000;
    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:#000;
    font-size: 2.5rem;
}

.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
} */

 /* .review {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
     gap:1.5rem;
   width: 100%;
   color: #000;
   /* overflow: hidden; 

} 

/* .review .box-container .item{
    border:var(--border);
    text-align: center;
    padding:3rem 2rem;
    /* height: 200px;
    width: 500px;
    margin: 20px;
    background-color: red; 
} 

.review .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8;
    color:#ccc;
    padding:2rem 0;
}

.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{
    width: 100%;
}
.item{
    /* height: 200px; */
    width: 100%;
    /*box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;*/
    /* border: 2px solid; */
}
.item img{
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.contact .row{
    display: flex;
    background:#153f89;
    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:#fff;
    border:var(--border);
}

.contact .row form .inputBox span{
    color:#da251c;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding:2rem;
    font-size: 1.7rem;
    color:#000;
    text-transform: none;
    background:none;
}

.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap:1.5rem;
}

.blogs .box-container .box{
    /* border:var(--border);     */
}

.blogs .box-container .box .image{
    overflow:hidden;
    width: 100%;
}

.blogs .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blogs .box-container .box:hover .image img{
    transform: scale(1.1);
}

.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:var(--black);
    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:1024px){
    
    html{
        font-size: 55%;
    }
    /* details .join{
        line-height: 20px;
    } */
    .header{
        /* padding:1.5rem 2rem; */
    }

    section{
        padding:2rem;
    }
 .gov-msg{
        margin-top:72px;
    }
}

@media (max-width:768px){

    #menu-btn{
        display: inline-block;
        font-size: 3.5rem;
        /* width: 20px; */
    }
    .header .navbar{
        position: absolute;
        top:100%; right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }
    .menu .box-container .box h3{
        font-size:2rem;
    }
    .header .navbar.active{
        right:0;
    }

    .header .navbar a{
        color:var(--black);
        display: block;
        margin:1.5rem;
        padding:.5rem;
        font-size: 1.7rem;
    }

    .header .search-form{
        width: 90%;
        right: 2rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 3rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }
    .gov-msg{
        margin-top:65px;
    }

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }
    .gov-msg{
        margin-top:60px;
    }

}