@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,700&display=swap");

:root {
    --orange: #ff7800;
    --black: #130f40;
    --light-color: #666;
    --box-shadow: 0 .5rem 1rem 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);

}

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all 0.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: var(--black);
}

.heading span {
    background-color: var(--orange);
    color: #fff;
    display: inline-block;
    padding: .5rem 3rem;
    clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0 100%, 7% 50%, 0% 0%);
}

.btn-ornge {

    background-color: var(--orange) !important;
    border: none !important;
}

.btn-ornge:hover {

    background-color: #fff !important;
    color: var(--orange) !important;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .3rem 3rem;
    font-size: 1.7rem;
    border-radius: 0.5rem;
    border: 0.2rem solid var(--black);
    color: #fff;
    cursor: pointer;
    background-color: #130f40;
}

.btn:hover {
    background-color: var(--orange);
    color: var(--black);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    box-shadow: var(--box-shadow);
    background-color: #eee;
}

.header .logo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
}

.header .logo i {
    color: var(--orange);
    margin-right: 10px;
}

.header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
}

.header .navbar a:hover {
    color: var(--orange);
}

.header .icon div {
    font-size: 2rem;
    background: #e3dcdc;
    border-radius: .5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    color: var(--black);
    margin-right: 0.3rem;
    text-align: center;
    cursor: pointer;
    background: none;
}

.header .icon div:hover {
    background: var(--orange);
    color: #eee;
}

#menu-btn {
    display: none;
}

.header .search-form {
    position: absolute;
    top: 110%;
    right: -110%;
    width: 50rem;
    height: 5rem;
    background: #fff;
    border-radius: .5rem;
    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 {
    background: none;
    height: 100%;
    width: 100%;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--black);
    padding: 1.5rem;
}

.header .search-form label {
    font-size: 2.2rem;
    padding-right: 1.5rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover {
    color: var(--orange);
}


.header .shopping-cart {
    position: absolute;
    top: 110%;
    right: -110%;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    width: 35rem;
    background: #fff;
}

.header .shopping-cart.active {
    transition: .2s linear;
    right: 2rem;

}

.header .shopping-cart .box {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    position: relative;
    gap: 1rem;
}

.header .shopping-cart .box img {
    height: 10rem;
    width: 10rem;
}

.header .shopping-cart .box .fa-trash {
    font-size: 2rem;
    position: absolute;
    right: 2rem;
    top: 50%;
    color: var(--light-color);
    cursor: pointer;
    transform: translateY(-50%);
}

.header .shopping-cart .box .fa-trash:hover {
    color: var(--orange);
}

.header .shopping-cart .box .content h3 {
    font-size: 1.7rem;
    color: var(--black);
    padding-bottom: 1rem;
}

.header .shopping-cart .box .content span {
    font-size: 1.6rem;
    color: var(--light-color);
}

.header .shopping-cart .box .content .quantity {
    padding-left: 1rem;
}

.header .shopping-cart .total {
    padding: 1rem 0;
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
}

.header .shopping-cart .btn {
    display: block;
    text-align: center;
    margin: 1rem;
}

.header .login-form {
    position: absolute;
    top: 110%;
    right: -110%;
    width: 35rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: .5rem;
    background: #fff;
    text-align: center;
}

.header .login-form.active {
    transition: .2s linear;
    right: 2rem;

}

.header .login-form h3 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--black);
}

.header .login-form .box {
    width: 100%;
    margin: .7rem;
    background: #eee;
    border-radius: .5rem;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
}

.header .login-form p {
    font-size: 1.4rem;
    padding: .5rem;
    color: #130f40;
}

.header .login-form p a {
    color: var(--orange);
}

.home {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url(../images/center.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 17rem;
    padding-bottom: 10rem;
}

.home .content {
    text-align: left;
    width: 60rem;
}

.home .content h3 {
    color: #fff;
    font-size: 3rem;
}

.home .content h3 span {
    color: var(--orange);
}

.home .content p {
    color: #fff;
    font-size: 1.7rem;
    padding: 1rem 0;
    line-height: 1.8;
}
.features{
    padding: 0;
}
/* .features .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.features .box-container .box {
    padding: 3rem 2rem;
    background: #fff;
    outline: var(--outline);
    outline-offset: -1rem;
    text-align: center;
    box-shadow: var(--box-shadow);
} */
/* 
.features .box-container .box:hover {
    outline: var(--outline-hover);
    outline-offset: 0rem;
}

.features .box-container .box img {
    margin: 1rem 0;
    height: 15rem;

}

.features .box-container .box h3 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--black);
}

.features .box-container .box p {
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--light-color);
    padding: 1rem 0;
} */

.products .product-slider {
    padding: 1rem 0;
}

.products .product-slider:first-child {
    margin-bottom: 2rem;
}

.products .product-slider .box {
    background: #fff;
    border-radius: 0.5rem;
    text-align: center;
    padding: 3rem 0;
    outline-offset: -1rem;
    outline: var(--outline);
    box-shadow: var(--box-shadow);
    transition: .2s linear;
    margin: 0 auto;
}

.products .product-slider .box:hover {
    outline: var(--outline-hover);
    outline-offset: 0rem;
}

.products .product-slider .box img {
    height: 20rem;

}

a.ex-link {
    font-size: 16px;
    color: var(--black);
}

.products .product-slider .box h3 {
    font-size: 1.5rem;
    color: var(--black);
}

.products .product-slider .box .price {
    font-size: 2rem;
    color: var(--light-color);
    padding: .5rem 0;
}

.products .product-slider .box .starts i {
    font-size: 2.5rem;
    color: var(--orange);
    padding: .5rem 0;
}

.categories .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 1.5rem;
}

.categories .box-container .box {
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    outline: var(--outline);
    outline-offset: -1rem;
    text-align: center;
}

.categories .box-container .box:hover {
    outline: var(--outline-hover);
    outline-offset: 0rem;
}

.categories .box-container .box img {
    margin: 1rem 0;
    height: 15rem;
    width: 20rem;
}

.categories .box-container .box h3 {
    font-size: 2rem;
    color: var(--black);
    line-height: 1.8;
}

.categories .box-container .box p {
    font-size: 1.7rem;
    color: var(--light-color);
    line-height: 1.8;
    padding: 1rem 0;
}

.review .review-slider {
    padding: 1rem 0;
}

.review .review-slider .box {
    padding: 3rem 0;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    outline: var(--outline);
    outline-offset: -1rem;
    text-align: center;
}

.review .review-slider .box:hover {
    outline: var(--outline-hover);
    outline-offset: 0rem;
}

.review .review-slider .box img {
    margin: 1rem 0;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
}

.review .review-slider .box h3 {
    font-size: 2.2rem;
    color: var(--black);
    line-height: 1.8;
    padding-bottom: .5rem;
}

.review .review-slider .box p {
    font-size: 1.7rem;
    color: var(--light-color);
    line-height: 1.8;
    padding: 2.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    white-space: normal;
    -webkit-box-orient: vertical;
}

.review .review-slider .box .starts i {
    font-size: 1.7rem;
    color: var(--orange);

}

.blog .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.blog .box-container .box {
    overflow: hidden;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    background: #fff;
}

.blog .box-container .box img {

    width: 100%;
    margin: 0 auto;
    display: block;

}

.blog .box-container .box .content {
    padding: 2rem;
}

.blog .box-container .box .content .icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: var(--border);
}

.blog .box-container .box .content .icon a {
    color: var(--light-color);
    font-size: 1.5rem;
}

.blog .box-container .box .content .icon a:hover {
    color: var(--black);

}

.blog .box-container .box .content .icon a i::before {
    color: var(--orange);
    padding-right: 1rem;
}

.blog .box-container .box .content h3 {
    line-height: 1.8;
    color: var(--black);
    font-size: 2.2rem;
    padding: .5rem 0;
}

.blog .box-container .box .content p {
    line-height: 1.8;
    color: var(--light-color);
    font-size: 1.5rem;
    padding: .5rem 0;
}

.footer {
    background-color: #fff;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .box-container .box h3 i {
    color: var(--orange);
}

.footer .box-container .box .links {
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box .links i {
    padding-right: 0.5rem;
    color: var(--orange);
}

.footer .box-container .box .links:hover i {
    padding-right: 2rem;

}

.footer .box-container .box p {
    line-height: 1.8;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box .share a {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: 0.5rem;
    font-size: 2rem;
    color: var(--black);
    margin-left: 0.2rem;
    background-color: #eee;
    text-align: center;
}

.footer .box-container .box .share a:hover {
    background: var(--orange);
    color: #fff;
}

.footer .box-container .box .email {
    width: 98%;
    margin: .7rem 0;
    padding: 1rem;
    border-radius: .5rem;
    background: #eee;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
}

.footer .box-container .box .payment-img {
    margin-top: 2rem;
    height: 3rem;
    cursor: pointer;
}

.footer .credit {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    color: var(--black);
    border-top: var(--border);
}

.footer .credit span {
    color: var(--orange);
}

* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 10px;
    height: 300px;
    /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.div-100 {

    padding: 3% 10%;
    display: flex;
}

.div-50 img {
    width: 100%;
}

.left-logo {
    width: 80px;
    margin-right: 20px;
}

.div-50 {
    width: 50%;
    padding: 0 25px;
}

.lef-logo {
    width: 40px;
}

.main-d-flex {
    display: flex;
    padding-right: 25%;
    justify-content: center;
    align-items: flex-start;
}

.text-center {
    text-align: center;
}

.bg-mt {
    /* background-color: #fcdab5;
    margin-top: -19%;
    min-height: 970px; */
    background: url(/images/bg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.my-margin {
    margin-top: auto;
    margin-bottom: auto;
}

/* .contetnt{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} */
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}

.div-100 .div-50 h3 {
    font-size: 2.3rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 20px;

}

.div-100 .div-50 p.para {
    font-size: 1.5rem;
    color: var(--black);
    padding: 0 50px;
    margin-bottom: 20px;
}