* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif, 'Kaushan Script';
}
.navbar{
    display: flex;
    align-items: center;
    padding: 20px;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin: 20px;
}
a{
    text-decoration: none;
    color: #000033;
}
p{
    color: #000033;
}
.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.col2{
    flex-basis: 50%;
    min-height: 300px;
}
.col2 img{
    max-width: 100%;
    padding: 50px 0;
}
.col2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}
.btn{
    display: inline-block;
    background: #003271;
    color: #ffffff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
}
.btn:hover{
    background: #2ec1ea;
}
.header{
    background: radial-gradient(#ffffff, #2ec1ea);
}
.header .row{
    margin-top: 70px;
}
.categories{
    margin: 70px 0;
}
.col3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}
.col3 img{
    width: 100%;
}
.smallcontainer{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.col4{
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}
.col4 img{
    width: 100%;
}
.title{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #000033;
}
.title::after{
    content: '';
    background: #2ec1ea;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
h4{
    color: #000033;
    font-weight: normal;
}
.col4 p{
    font-size: 14px;
}
.rating .fa{
    color: red;
}
.col4:hover{
    transform: translateY(-5px);
}

/* OFFER */
.offer{
    background: radial-gradient(#ffffff, #2ec1ea);
    margin-top: 80px;
    padding: 30px 0;
}
.col2 .offer-img{
    padding: 50px;
}
small{
    color: #000033;
}

/* OFFER TESTIMONIAL */

.testimonial{
    padding-top: 100px;
}
.testimonial .col3{
    text-align: center;
    padding: 40px 20px;
    box-sizing: 0 0 20px 0px rgba(0.0.0.0.1);
    cursor: pointer;
    transition: transform 0.5s;
}
.testimonial .col3 img{
    width: 50px;
    margin-top: 20px;
    border-radius: 50px;
}
.testimonial .col3:hover{
    transform: translateY(-10px);
}
.fa.fa-quote-left{
    font-size: 34px;
    color: #000033;
}
.col3 p{
    font-size: 12px;
    margin: 12px 0;
    color: #000033;
}
.testimonial .col3 h3{
    font-weight: 600;
    color: #000033;
    font-size: 16px;
}

/*--footer*/

#footer{
    padding: 100px 0 20px;
    background: #ffffff;
    position: relative;
}
.title-text p{
    margin-top: 20px 0 auto;
    padding: 10px;
    text-align: center;
    font-size: 25px;
    color: #000033;
}
.title-text h1{
    text-align: center;
}
.footer-row{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left,.footer-right{
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
}
.footer-right{
    text-align: right;
}
.footer-row h1{
    margin: 70px 0;
}
.footer-row p{
    line-height: 35px;
}
.footer-left .fa,.footer-right .fa{
    font-size: 20px;
    color: #000033;
    margin: 10px;
}
.footer-img{
    max-width: 370px;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%,-50%);
}
.social-links{
    text-align: center;
}
.social-links .fa{
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid #000033;
    margin: 40px 5px 0;
    color: #000033;
    cursor: pointer;
    transition: 0.5s;
}
.social-links .fa:hover{
    background: #2ec1ea;
    color: #ffffff;
    transform: translateY(-7px);
}
.social-links p{
    font-size: 12px;
    margin-top: 20px;
}


/*------Brands-------*/

.brands{
    margin: 100px auto;
}
.col5{
    width: 160px;
}
.col5 img{
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
}
.col5 img:hover{
    filter: grayscale(0);
}

.menu-icon{
    width: 28px;
    margin-left: 20px;
    display: none;
}

@media only screen and (max-width: 800px) {
    nav ul{
        position: absolute;
        top: 70px;
        left: 0;
        background: #2ec1ea;
        width: 100%;
        overflow: hidden;
        transition: max-Height 0.5s;
    }
    nav ul li{
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a{
        color: #000033;
    }
    .menu-icon{
        display: block;
        cursor: pointer;
    }
}

/*--- 600 screen size ---*/

@media only screen and (max-width: 600px){
    .row{
        text-align: center;
    }
    .col2, .col3, .col4, .col5{
        flex-basis: 100%;
    }
}


/*----all stocks---*/

.row2{
    justify-content: space-between;
    margin: 100px auto 50px;
}

select{
    border: 1px solid #000033;
    padding: 5px;
}

select:focus{
    outline: none;
}

.pagebtn{
    margin: 0 auto 80px;
}
.pagebtn span{
    display: inline-block;
    border: 1px solid #000033;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.pagebtn span:hover{
    background: #2ec1ea;
    color: #ffffff;
}

/*----single products details---*/

.singleproduct{
    margin-top: 80px;
}
.singleproduct .col2 img{
    padding: 0;
}
.singleproduct .col2{
    padding: 20px;
}
.singleproduct h4{
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
}
.singleproduct select{
    display: block;
    padding: 10px;
    margin-top: 20px;
}
.singleproduct input{
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #2ec1ea;
}
input:focus{
    outline: none;
}
.singleproduct .fa{
    color: red;
    margin-left: 10px;
}

.small-img-row{
    display: flex;
    justify-content: space-between;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}


/*---- footer screen----*/

@media screen and (max-width: 770px){
    .footer-left,.footer-right{
        flex-basis: 100%;
        font-size: 14px;
    }
    .footer-img{
        top: 25%;
    }
    .singleproduct .row{
        text-align: left;
    }
    .singleproduct .col2{
        padding: 20p 0;
    }
    .singleproduct h1{
        font-size: 26px;
        line-height: 32px;
    }
}




/*--service--*/

#Service{
    width: 100%;
    padding: 70px 0;
    background: #e3f7fd;
}
.Service-box{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}
.single-service{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
}
.single-service img{
    width: 100%;
    border-radius: 7px;
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5), #2ec1ea);
    opacity: 0;
    transition: 1s;
}
.single-service:hover .overlay{
    opacity: 1;
}
.Service-desc{
    width: 80%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 1s;
}
hr{
    background: #ffffff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}
.Service-desc p{
    font-size: 14px;
}
.single-service:hover .Service-desc{
    bottom: 40%;
    opacity: 1;
}
@media screen and (max-width: 770px){
    .single-service{
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .Service-desc p{
        font-size: 12px;
    }
    hr{
        margin: 5px auto;
    }
    .single-service:hover .Service-desc{
    bottom: 25% !important;
    }
}