@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&family=Roboto:wght@300&family=Sriracha&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Andika&family=Poppins:wght@100;200;300;400;500;600&family=Roboto:wght@300&family=Sriracha&display=swap');


:root{

    --green: #16a085;
    --black: #444;
    --light-color: #777;
    --box-shadow: .5rem .5rem 0 rgba(22, 160, 133, .2);
    --text-shadow: .4rem .4rem 0 rgba(0, 0, 0, .2);
    --border: .2rem solid var(--green);

}

*{

    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-transform: capitalize;
    transition: all .2s ease-out;
    text-decoration: none;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

section{
    padding: 2rem 9%;
    
}

section:nth-child(odd){
    background: #f5f5f5;
}

.heading{
    text-align: center;
    padding-bottom: 2rem;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    color: var(--black);
    font-size: 5rem;
    letter-spacing: .4rem;
    font-family: 'Andika', sans-serif;
}

.heading span{
    text-transform: uppercase;
    color: #407bff;
    font-family: 'Andika', sans-serif;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: .5rem;
    padding-left: 1rem;
    border: var(--border);
    border-radius: .5rem;
    box-shadow: .5rem .5rem 0 rgb(205, 226, 247);
    color: #407bff;
    cursor: pointer;
    font-size: 1.7rem;
    border-color: #407bff;
}

.btn span{
    padding: .7rem 1rem;
    border-radius: .5rem;
    background: #407bff;
    color: #fff;
    margin-left: .5rem;
}

.btn:hover{
    background: #407bff;
    color: #fff;
}

.btn:hover span{
    color: #407bff;
    background: #fff;
    margin-left: 1rem;


}

.header{
    padding: .2rem 5%;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.logo {
    width: 340px;
    height: 68px;
    padding: .5rem;
}

.header .navbar a{
    font-size: 1.5rem;
    /* color: rgba(4, 58, 108, 0.73); */
    color: #407bff;
    margin-left: 2rem;
}

.header .navbar a:hover{
    color: var(--green);
}



#menu-btn {
    font-size: 2.5rem;
    border-radius: .5rem;
    background: #eee;
    color: #407bff;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: none;
}




.home{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 10rem;
}

.home .image{

    flex: 1 1 45rem;
    /* min-height: 100vh;
    background: url(../images/od.gif) no-repeat; */
    background-size: cover;
    background-position: center;
}

.home .image img{

    width: 100%;
}

.home .content{
    flex: 1 1 45rem;
}

.home .content h3{

    font-size: 3.8rem;
    color: var(--black);
    line-height: 1.8;
    text-shadow: var(--text-shadow);
    font-family: 'Andika', sans-serif;
}


 .home .content p{

    font-size: 1.7rem;
    color: var(--light-color);
    line-height: 1.8;
    padding: 1rem 0;
    font-family: 'Andika', sans-serif;
}


.icons-container{

    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.icons-container .icons{

    border: var(--border);
    box-shadow: .5rem .5rem 0 rgb(205 218 247);
    border-radius: .5rem;
    text-align: center;
    padding: 2.5rem;
    background: #fff;
    border-color: #407bff;
}

.icons-container .icons i{

    font-size: 4.5rem;
    color: #407bff;
    padding-bottom: .7rem;

}

.icons-container .icons h3{

    font-size: 1.7rem;
    color: var(--black);
    padding: .5rem 0;
    text-shadow: .4rem .4rem 0 rgb(180 162 162 / 20%);
    font-family: 'Andika', sans-serif;

}

.icons-container .icons p{

    font-size: 1.3rem;
    color: var(--light-color);
    font-family: 'Andika', sans-serif;

}



/* Sevice section starts (test) */



.services .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.services .row .image{
    flex: 1 1 45rem;
}

.services .row .image img{
    width: 70%;
}

.services .row .content{
    flex: 1 1 45rem;
}

.services .row .content h3{
    color: var(--black);
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
    
}

.services .row .content p{
    color: var(--light-color);
    padding: 1rem 0;
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}




.services .row-1{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.services .row-1 .image{
    flex: 1 1 45rem;
}

.services .row-1 .image img{
    width: 70%;
    margin-left: 20%;
}

.services .row-1 .content{
    flex: 1 1 45rem;
}

.services .row-1 .content h3{
    color: var(--black);
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}

.services .row-1 .content p{
    color: var(--light-color);
    padding: 1rem 0;
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}

.btn5{
    text-align: center;
}

.btn5 .button{
    display: inline-block;
    margin-top: 1rem;
    padding: .5rem;
    padding-left: 1rem;
    border: var(--border);
    border-radius: .5rem;
    box-shadow: .5rem .5rem 0 rgb(205, 226, 247);
    color: #407bff;
    cursor: pointer;
    font-size: 1.7rem;
    border-color: #407bff;
    
}

.btn5 .button span{
    padding: .7rem 1rem;
    border-radius: .5rem;
    background: #407bff;
    color: #fff;
    margin-left: .5rem;
}

.btn5 .button:hover{
    background: #407bff;
    color: #fff;
}

.btn5 .button:hover span{
    color: #407bff;
    background: #fff;
    margin-left: 1rem;


}






/* Sevice section ends (test) */










/* 

.services .box-container{

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap: 2rem;
}

.services .box-container .box{

    background: #f5f5f5;
    border-radius: .5rem;
    box-shadow: .5rem .5rem 0 rgb(205 218 247);
    border: var(--border);
    padding: 2.5rem;
    border-color: #2183a2;
    
}

.services .box-container .box i{

    color: #2183a2;
    font-size: 5rem;
    padding-bottom: .5rem;
}

.services .box-container .box h3{

    color: var(--black);
    font-size: 2.5rem;
    padding: 1rem 0;
}

.services .box-container .box p{

    color: var(--light-color);
    font-size: 1.4rem;
    line-height: 2;
}

.services .heading span{
    color: #2183a2;
} */

/* About Us Section */

.about .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.about .row .image{
    flex: 1 1 45rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex: 1 1 45rem;
}

.about .row .content h3{
    color: var(--black);
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}

.about .row .content p{
    color: var(--light-color);
    padding: 1rem 0;
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}


/* Welcome to KR */




/* Single product Page */


.singleproductpage .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.singleproductpage .row .image{
    flex: 1 1 45rem;
}

.singleproductpage .row .image img{
    /* width: 100%; */
    margin: 10%;
    width: auto;
}

.singleproductpage .row .content{
    flex: 1 1 45rem;
}

.singleproductpage .row .content h3{
    color: var(--black);
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}

.singleproductpage .row .content h2{
    color: #2958c2;
    text-shadow: .4rem .4rem 0 rgb(224 227 234);
    font-size: 3rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}

.singleproductpage .row .content p{
    color: var(--light-color);
    padding: 1rem 0;
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}

.singleproductpage .row .productinfo{
    flex: 1 1 45rem;
}

.singleproductpage .row .productinfo h2{
    color: var(--black);
    /* text-shadow: var(--text-shadow); */
    font-size: 3rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}

.singleproductpage .row .productinfo p{
    color: var(--light-color);
    padding: 1rem 0;
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}

.btn10{
    display: inline-block;
    margin-top: 1rem;
    padding: .5rem;
    padding-left: 1rem;
    border: var(--border);
    border-radius: .5rem;
    box-shadow: .5rem .5rem 0 rgb(205, 226, 247);
    color: #407bff;
    cursor: pointer;
    font-size: 1.7rem;
    border-color: #407bff;
}

.btn10 span{
    padding: .7rem 1rem;
    border-radius: .5rem;
    background: #407bff;
    color: #fff;
    margin-left: .5rem;
}

.btn10:hover{
    background: #407bff;
    color: #fff;
}

.btn10:hover span{
    color: #407bff;
    background: #fff;
    margin-left: 1rem;


}




/* Featured Product */


/* .fp .heading span{
    color: #407bff;
}

.fp .gallery{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.fp .gallery .content{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    padding-top: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    transition: .4s;
    background: #f2f2f2;
    overflow: hidden;
}

.fp .gallery .content span{
    transition: 0.5;
    opacity: 0;
}

.fp .gallery .content:hover span{
    opacity: 1;
}

.fp .gallery .content span:nth-child(1){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #2cb4de);
    animation: animate1 2s linear infinite;
}

@keyframes animate1{

    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}


.fp .gallery .content span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #2cb4de);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2{

    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
}


.fp .gallery .content span:nth-child(3){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, transparent, #2cb4de);
    animation: animate3 2s linear infinite;
}

@keyframes animate3{

    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}


.fp .gallery .content span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, transparent, #2cb4de);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4{

    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
}





.fp .gallery .content:hover{
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translate(0px, -8px);
}

.fp .gallery .content h1{
    text-align: center;
    font-size: 30px;
    margin: 0;
    padding-top: 10px;

}

.fp .gallery .content p{
    text-align: center;
    color: #b2bec3;
    font-size: 15px;
    margin: 0;
    padding-top: 10px;
}

.fp .gallery .content .product_image{
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 0 auto;
    display: block;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

}

.fp .gallery .content .km{
    text-align: center;
    font-size: 24px;
    color: #fff;
    width: 100%;
    padding: 15px;
    border: 0;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #2183a2;
    background: #407bff;
}

.fp .gallery .content .km:hover{
    background: #0d9062;
}
 */


.btn5{
    text-align: center;
}

.btn5 .button{
    display: inline-block;
    margin-top: 1rem;
    padding: .5rem;
    padding-left: 1rem;
    border: var(--border);
    border-radius: .5rem;
    box-shadow: .5rem .5rem 0 rgb(205, 226, 247);
    color: #407bff;
    cursor: pointer;
    font-size: 1.7rem;
    border-color: #407bff;
    
}

.btn5 .button span{
    padding: .7rem 1rem;
    border-radius: .5rem;
    background: #407bff;
    color: #fff;
    margin-left: .5rem;
}

.btn5 .button:hover{
    background: #407bff;
    color: #fff;
}

.btn5 .button:hover span{
    color: #407bff;
    background: #fff;
    margin-left: 1rem;


}






/* Our Team Section start */

.ourteam .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ourteam .box-container .box{
    text-align: center;
    background: #fff;
    border-radius: .5rem;
    border: var(--border);
    box-shadow: .5rem .5rem 0 rgb(205 218 247);
    border-color: #407bff;
    padding: 2rem;
}

.ourteam .box-container .box img{
    height: 20rem;
    border: var(--border);
    border-color: #407bff;
    border-radius: .5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ourteam .box-container .box h3{
    color: var(--black);
    font-size: 2.5rem;
}

.ourteam .box-container .box span{
    color: #407bff;
    font-size: 1.5rem;
}

.ourteam .box-container .box .share{
    padding-top: 2rem;
}

.ourteam .box-container .box .share a{
    height: 5rem;
    width: 5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    color: #407bff;
    border-radius: .5rem;
    border: var(--border);
    margin: .3rem;
    border-color: #407bff;
}

.ourteam .box-container .box .share a:hover{
    background: #407bff;
    color: #fff;
    box-shadow: var(--box-shadow);
}


/* our team section end */




/* Ask Us Section */



.contact .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact .row .image{
    flex: 1 1 45rem;
}

.contact .row .image img{
    width: 100%;
}

.contact .row form{
    flex: 1 1 45rem;
    background: #fff;
    /* border: #407bff; */
    border: .2rem solid #407bff;
    /* box-shadow: var(--box-shadow); */
    box-shadow: .5rem .5rem 0 #c7d5f3;
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
}

.contact .row form h3{
    color: var(--black);
    padding-bottom: 1rem;
    font-size: 3rem;
}

.contact .row form .box{
    width: 100%;
    margin: .7rem 0;
    border-radius: .5rem;
    /* border: var(--border); */
    border: .2rem solid #407bff;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    padding: 1rem;
}

.contact .row form .btn{
    padding: 1rem 4rem;
}



/* footer section starts */

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
}

.footer .box-container .box h3{
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box a i{
    padding-right: .5rem;
    color: #407bff;
}

.footer .box-container .box a:hover i{

    padding-right: 2rem;

}

.footer .credit{
    padding: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
    color: var(--light-color);
    border-top: .1rem solid rgba(0, 0, 0, .1);
}

.footer .credit .mycode{
    color: #407bff;
}

.footer .credit .mycode:hover{
    color: #79a2ff;
}



/* footer section ends */

  /* Product slider starts */

  .slider1{

    display: grid;
  height: 100%;
  place-items: center;
  text-align: center;
  background: #fff;

  }


  .slider1 h1{

    color: var(--black);
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;


  }












/* New Dropdown Menu */


/* All products start */

.product-container{

    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 4fr));
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.product-container .allproducts{

    border: var(--border);
    box-shadow: .5rem .5rem 0 rgb(205 218 247);
    border-radius: 0 2.0rem;
    text-align: center;
    padding: 2.5rem;
    background: #fff;
    border-color: #407bff;
    color: #444;
}

.product-container .allproducts:hover{
    background: #407bff;
    color: #fff;
    border-color: #fff;
}

.product-container .allproducts h3{

    font-size: 1.7rem;
    color: var(--black);
    text-decoration: none;
    padding: .5rem 0;
    text-shadow: .4rem .4rem 0 rgb(180 162 162 / 20%);
    font-family: 'Andika', sans-serif;

}

.product-container .allproducts h3:hover{
    color: #fff;
}

.product-container .allproducts h3 a{
    font-size: 1.7rem;
    color: var(--black);
    padding: .5rem 0;
    text-shadow: .4rem .4rem 0 rgb(180 162 162 / 20%);
    font-family: 'Andika', sans-serif;
}

.product-container .allproducts h3 a:hover{
    color: #fff;
}

.productcategories{
    background: #fff;
}
.productcategories .heading{
    text-align: center;
    padding-bottom: 0;
    /* padding-top: 2rem; */
    margin-top: 5%;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    color: var(--black);
    font-size: 5rem;
    letter-spacing: .4rem;
    font-family: 'Andika', sans-serif;
    /* background: #fff; */
}

.productcategories .heading span{
    text-transform: uppercase;
    color: #407bff;
    font-family: 'Andika', sans-serif;
}



.timeline{
    display: flex;
}

.timeline .content h3{
    color: var(--black);
    /* text-shadow: var(--text-shadow); */
    font-size: 5rem;
    line-height: 1.8;
    font-family: 'Andika', sans-serif;
}




/* Media Queries */

@media (max-width:991px){
    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem;
        position: absolute;
    }

    section{
        padding: 2rem;
    }

    .logo{

        padding: 1rem;
        width: 270px;
        height: 60px;
    }

    .fp .gallery .content{
        width: 45%;
    }

    .singleproductpage .row .image img{
        margin-top: 30%;
        width: 70%;
    }

    .productcategories .heading{
        margin-top: 25%;
        margin-bottom: -5%;
    }



}

@media (max-width:768px){
    
    #menu-btn{
        display: initial;
    }

    .header .navbar{
        position: absolute;
        top: 115%; right: 2rem;
        border-radius: .5rem;
        box-shadow: var(--box-shadow);
        width: 30rem;
        border: var(--border);
        background: #fff;
        transform: scale(0);
        opacity: 0;
        transform-origin: top right;
        transition: none;
    }

    .header .navbar.active{
        transform: scale(1);
        opacity: 1;
        transition: .2s ease-out;
    }

    .header .navbar a{

        font-size: 2rem;
        display: block;
        margin: 2.5rem;

    }

    .logo{

        padding: 0.7rem;
        width: 290px;
        height: 70px;
    }

    .fp .gallery .content{
        width: 100%;
    }

    .singleproductpage .row .image img{
        margin-top: 20%;
        width: 70%;
    }

   
}

@media (max-width:450px){
    html{
        font-size: 50%;
    }

    .header{
        padding: 2rem;
        position: absolute;
    }

    .logo{

        padding: 1rem;
        width: 250px;
        height: 60px;
    }

    .btn4{
        margin-left: 35%;
    }

    .singleproductpage .row .image img{
        margin-top: 30%;
        width: 70%;
    }

   
}

