@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --orange : #ff7800;
    --black: #130f40;
    --light-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    --border: 2rem solid rgba(0,0,0,.1);
    --outline: 1rem solid rgba(0,0,0,.1);
    --outline:hover: 2rem solid var(--black);

}
*
{
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all .2s linear ;
}
html
{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}
body
{
    background: #eee;
}
section
{
    padding: 2rem 9%;
}
.heading
{
    text-align: center;
    padding: 2rem 0;
    padding-bottom: 3rem;
    font-size: 3.5rem;
    color: #130f40;
}
.heading span
{
    background: #ff7800;
    color: #fff;
    display: inline-block;
    padding: 2rem 3rem;
    /* clip-path: polygon(100% 99%, 0% 99%, 10% 50%, 0% 1%, 98% 1%, 90% 49%, 91% 51%, 90% 50%); */
    clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}
.btn
{
    margin-top: 10px;
    display: inline-block;
    padding: 16px 20px;
    font-size: 1.7rem;
    border-radius: 8px;
    border: 2px solid var(--black);
    color: #130f40;
    text-decoration: none;
    cursor: pointer;
    background: none;
}
.btn:hover
{
    background: #ff7800;
    color: #fff;
}
.header
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 9%;
    background: #fff;
    box-shadow: var(--box-shadow);
}
.header .logo
{
    font-size: 30px;
    font-weight: bolder;
    color: var(--black);
    text-decoration: none;
}

.header .logo i
{
    color: var(--orange);
}
.header .navbar a
{
    font-size: 15px;
    text-decoration: none;
    margin: 0 16px;
    color: #130f40;
}
.header .icons div
{
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 8px;
    background: #eee;
    text-align: center;
    transition: .5s;
}
.header .icons div:hover
{
    background: var(--orange);
    color: #fff;
}
#menu-btn
{
    display: none;
}
.header .search-form
{
    position: absolute;
    top: 110%; right: -110%;
    max-width: 50rem;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
} 
.header .search-form.active
{
    right: 2rem;
    transition: .4s linear;
}
.header .search-form input
{
    height: 100%;
    width: 100%;
    background: none;
    /* text-transform: none; */
    font-size: 15px;
    color: #130f40;
    padding: 0 24px;
}
.header .search-form label
{
    font-size: 15px;
    padding-right: 1.5rem;
    color: #130f40;
    cursor: pointer;
}
.header .search-form label:hover
{
    color: #ff7800;
}
.header .shopping-cart
{
    position: absolute;
    top: 110%;
    right: -110%;
    padding: 16px;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    width: 35rem;
    background: #fff;
}
.header .shopping-cart.active
{
    right: 2rem;
    transition: .4s linear;
}
.header .shopping-cart .box
{
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    margin: 1px 0;
}
.header .shopping-cart .box img{
    height: 60px;
}
.header .shopping-cart .box .fa-trash{
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 32px;
    cursor: pointer;
    color: var(--light-color);
    transform:  translateY(-50%);
}
.header .shopping-cart .box .fa-trash:hover
{
    color: #ff7800;
}
.header .shopping-cart .box .content h3
{
    color: #130f40;
    font-size: 15px;
    padding-bottom: 1rem;
}
.header .shopping-cart .box .content span
{
    color: var(--light-color);
    font-size: 1.6rem;
}
.header .shopping-cart .box .content .quantity
{
    padding-left: 1rem;
}
.header .shopping-cart .total
{
    font-size: 20px;
    padding: 16px 0;
    text-align: center;
    color: #130f40;
}
.header .shopping-cart .btn
{
    display: block;
    text-align: center;
    margin: 1rem;
}
.header .login-form
{
    position: absolute;
    top: 110%;
    right: -110%;
    width: 30rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}
.header .login-form.active
{
    right: 32px;
    transition: .4s linear;
}
.header .login-form h3
{
    font-size: 30px;
    text-transform: uppercase;
    color: #130f40;
}
.header .login-form .box
{
    width: 100%;
    margin: 10px 0;
    background-color: #eee;
    border-radius: 8px;
    padding: 16px;
    font-size: 1.6rem;
    color: #130f40;
    text-transform: none;
}
.header .login-form p 
{
    font-size: 1.4rem;
    padding: 10px 0;
    color: var(--light-color);
}
.header .login-form p a
{
    color: #ff7800;
    text-decoration: underline;
}
.home
{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(./image/banner-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 17rem;
    padding-bottom: 10rem;
}
.home .content
{
    text-align: center;
    width: 60rem;
}

.home .content h3
{
    color: #130f40;
    font-size: 30px;
}
.home .content h3 span
{
    color: #ff7800;
}
.home .content p
{
    color: #666;
    font-size: 15px;
    padding: 16px 0;
    line-height: 1.8;
}
.feature .box-container
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}
.feature .box-container .box
{
    padding: 3rem 2rem;
    background: #fff;
    outline: 2px solid rgb(206, 199, 199);
    outline-offset: -10rem;
    /* outline: var(--outline); */
    outline-offset: -1rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}
.feature .box-container .box:hover
{
    outline:2px solid #130f40;
    outline-offset: 0rem;
}
.feature .box-container .box img
{
    margin: .5rem 0;
    height: 15rem;
}
.feature .box-container .box h3
{
    font-size: 2rem;
    line-height: 1.8;
    color: #130f40;
}
.feature .box-container .box p
{
     font-size: 1.5rem;
     line-height: 1.8;
     color: #666;
     padding: 1rem 0;
}
.products .product-slider
{
padding: 1rem;
}
.products .product-slider:first-child
{
    margin-bottom: 2rem;
}
.products .product-slider .box
{
    background: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 3rem 2rem;
    outline-offset: -1rem;
    outline: 2px solid rgb(185, 171, 171);
    box-shadow: var(--box-shadow);
    transition: .2s linear;
}
.products .product-slider .box:hover
{
    outline-offset: 0rem;
    outline: 2px solid #130f40;
}
.products .product-slider .box img
{
    height: 20rem;
}
.products .product-slider .box h3
{
    font-size: 2.5rem;
    color: #130f40;
}
.products .product-slider .box .price
{
    font-size: 2rem;
    color: #666;
    padding: 8px 0;
}
.products .product-slider .box .stars i
{
    font-size: 1.7rem;
    color: #ff7800;
    padding: 8px 0;
}
.catagories .box-container
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
    gap: 1.5rem;
}
.catagories .box-container .box
{
    padding: 3rem 2rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--box-shadow);
    outline: 2px solid rgb(185, 171, 171);
    outline-offset: -1rem;
    text-align: center;
}
.catagories .box-container .box:hover
{
    outline-offset: 0rem;
    outline: 2px solid #130f40;
}
.catagories .box-container .box img
{
    margin: 1rem 0;
    height: 15rem;
}
.catagories .box-container .box h3
{
    font-size: 2rem;
    color: #130f40;
    line-height: 1.8;
}
.catagories .box-container .box p{
    font-size: 1.7 rem;
    color: #666;
    line-height: 1.8;
    padding: 1rem 0;
}
.review .review-slider
{
    padding: 1rem;
}
.review .review-slider .box
{
    padding: 3rem 2rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--box-shadow);
    outline: 2px solid rgb(185, 171, 171);
    outline-offset: -1rem;
    text-align: center;
}
.review .review-slider .box:hover
{
    outline-offset: 0rem;
    outline: 2px solid #130f40;
}
.review .review-slider .box img
{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
}
.review .review-slider .box p{
    padding: 1rem 0;
    line-height: 1.8;
    color: #666;
    font-size: 1.5rem;
}
.review .review-slider .box h3
{
    padding-bottom: .5rem;
    /* line-height: 1.8; */
    color: #130f40;
    font-size: 2.2rem;
}
.review .review-slider .box .stars i
{
    color: #ff7800;
    font-size: 1.7rem;
}
.blogs .box-container
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}
.blogs .box-container .box
{
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    background: #fff;
}
.blogs .box-container .box img
{
    height: 25rem;
    width: 100%;
    object-fit: cover;
}
.blogs .box-container .box .content
{
    padding: 2rem;
}
.blogs .box-container .box .content .icons
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: var(--border);
}
.blogs .box-container .box .content .icons a {
    color: var(--orange);
    padding-right: 1.5rem;
    text-decoration: none;
}
.blogs .box-container .box .content .icons a :hover
{
    color: #130f40;
}
.blogs .box-container .box .content .icons a {
    color: var(--orange);
    padding-right: .5rem;
}
.blogs .box-container .box .content h3
{
    line-height: 1.3;
    color: #130f40;
    font-size: 2.2rem;
    padding: 8px 0;
}
.blogs .box-container .box .content p
{
    line-height: 1.3;
    color: rgb(138, 136, 136);
    font-size: 1.5rem;
    padding: 8px 0; 
}
.footer .box-container
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
    gap: 1.5rem;
}
.footer .box-container .box h3
{
    font-size: 2.5rem;
    color: #130f40;
    padding: 1rem 0;
}
.footer .box-container .box h3 i
{
    color: #ff7800;
}
.footer .box-container .box .links
{
    display: block;
    font-size: 1.3rem;
    color: #130f40;
    padding: 1rem 0;
    text-decoration: none;
}
.footer .box-container .box .links i{
    color: #ff7800;
    padding-right: 8px;
}
.footer .box-container .box .links:hover i{
    padding-right: 2rem;
}
.footer .box-container .box p
{
    line-height: 1.8;
    font-size: 1.5rem;
    color: #130f40;
    padding: 1rem 0;
}
.footer .box-container .box .share a
{
    text-decoration: none;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: 8px;
    font-size: 2rem;
    color: #130f40;
    margin-left: .2rem;
    background: #fff;
    text-align: center;
}

.footer .box-container .box .share a:hover 
{
  background: #ff7800;
  color: #fff;
}
.footer .box-container .box .email
{
    width: 100%;
    margin: .7rem 0;
    padding: 1rem;
    border-radius: 8px;
    background: #eee;
    font-size: 1.6rem;
    color: #130f40;
    text-transform: none;
}
.footer .box-container .box .payment-img{
    margin-top: 2rem;
    height: 3rem;    
}















@media (max-width: 991px){

    html{
        font-size: 40%;
    }
    .header{
        padding: 32px;
    }

}
@media (max-width: 768px){
    #menu-btn{
        display: inline-block;
    }
    .header .navbar{
        position: absolute;
        top: 110%;right:-110%;
        width: 30rem;
        box-shadow: var(--box-shadow);
        border-radius: 8px;
        background: #fff;
    }
    .header .navbar.active
    {
        right: 2rem;
        transition: .4s linear;
    }
    .header .navbar a
    {
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }
    .header .navbar a:hover{
        color: #ff7800;
    }
    .header .search-form
    {
        width: 90%;
    }
    .header .logo
    {
        font-size: 20px;
    }
    .header .icons div
{
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 8px;
}
}

@media (max-width: 450px){

    html{
        font-size: 50%;
    }
}