/*common css start*/
* {
    padding: 0;
    margin: 0;
}

button,
a {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    text-decoration: none;
}

ul li {
    list-style: none;
}

p {
    font-size: 14px;
    line-height: 1.4;
}

img {
    width: 100%;
}

a:hover {
    text-decoration: none;
}

body {
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    font-family: "Quicksand", sans-serif;
}

.categories-product-title {
    font-size: 25px;
    font-weight: 600;
    /* border: 1px solid #8fc742; */
    padding: 10px 15px;
    color: #000;
    text-transform: capitalize;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}

.section-title-outer {
    margin-bottom: 30px;
    text-align: center;
}

.section-title-outer .title {
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0;
    text-transform: capitalize;
}
/*common css End*/

/*Add to Cart css start*/

.add-cart-outer {
    cursor: pointer;
    /*width: 65px;
    height: 75px;*/
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: fixed;
    z-index: 9;
    box-shadow: 0 0 16px -1px rgb(0 0 0 / 75%);
    transition: all .3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
}

.cart-item-count {
    text-align: center;
    width: 100%;
    background: #8fc742;
    padding: 5px;
}

.cart-item-count i {
    font-size: 18px;
    color: #fff;
}

.cart-item-count .items-number {
    font-size: 13px;
    display: block;
    color: #fff;
}

.cart-item-total-price {
    padding: 5px;
    font-size: 14px;
    font-weight: 600;
    background: #547a20;
    color: #fff;
}

/*.items-total-price span {
    margin-right: 5px;
    font-size: 15px;
    font-weight: 700;
}*/

.shopping-cart-order-check {
    padding: 0px 10px;
    bottom: 0;
}

.add-cart-outer.cart-show-hide-btn.visible {
    display: none;
}

/*Add to Cart css end*/


/*Shopping Order Cart start*/

.shopping-order-items-wrapper {
    width: 100%;
    height: calc(100% - 180px);
    overflow-y: auto;
}

.shopping-order-item-image img {
    width: 100%;
    max-width: 55px;
}

.shopping-order-item-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #8fc742;
}

.shopping-cart {
    width: 320px;
    height: 100vh;
    position: fixed;
    z-index: 3;
    right: -348px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: -2px 0 12px 0 rgb(143 143 143 / 38%);
    transition: all .3s ease;
    top: 0;
}

.cart-hide-icon {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
}

.shopping-cart-close-icon {
    border: none;
    background: #8fc742;
    height: 55px;
    padding: 0 7px;
    color: #fff;
    font-size: 18px;
    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;
}

.shopping-cart-items-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #e4e0e1;
}

.shopping-cart-item-cont {
    margin-bottom: 0;
}

.shopping-cart-item-cont span {
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.shopping-cart-item-cont span i {
    margin-right: 5px;
    font-size: 20px;
}

.shopping-item-number {
    color: #8fc742;
    margin-right: 3px;
}

.shopping-cart-close-btn {
    border: 1px solid #8fc742;
    text-transform: capitalize;
    padding: 3px 15px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}

.shopping-cart-close-btn:focus {
    outline: none;
}

.shopping-cart-close-btn:hover {
    background: #8fc742;
    color: #fff;
    border-color: transparent;
}

.shopping-delivery {
    padding: 10px 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: #f6f6f6;
}

.shopping-delivery span i {
    margin-right: 6px;
}

.shopping-order-item-name .name {
    font-size: 13px;
    width: 120px;
}

.shopping-order-item-outer .order-quantity {
    width: 30px;
    text-align: center;
}

.shopping-order-item-outer .order-quantity i {
    color: #aaa;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
}

.shopping-order-item-name {
    font-size: 11px;
}

.order-item-amount {
    font-size: 14px;
    margin-right: 8px;
    font-weight: 500;
}

.shopping-order-item-delete-btn {
    border: 1px solid #8fc742;
    cursor: pointer;
    padding: 0 5px;
    background: #8fc742;
}

.shopping-order-item-delete-btn i{
    color: #fff;
}

.shopping-order-item-delete-btn:focus-visible {
    outline: none;
}

.shopping-order-item-delete-btn:focus {
    outline: none;
}

.shopping-order-check {
    display: block;
    text-align: center;
    background: #8fc742;
    width: 100%;
    padding: 7px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.shopping-order-price {
    background: #8fc742;
    width: 100%;
    text-align: center;
    display: block;
    padding: 7px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
}

.shopping-order-price:hover,
.shopping-order-check:hover,
.shopping-order-view-cart:hover {
    color: #fff;
}

.shopping-order-view-cart {
    background: #8fc742;
    width: 100%;
    text-align: center;
    display: block;
    padding: 7px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.shopping-cart.visible {
    right: 0;
    z-index: 999;
}
/*Shopping Order Cart End*/

/*Header section css start*/
.header-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 5px 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
}

.header-menu-list {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    width: calc(50% - (var(--logo-width) * 1px / 2));
}

.header-menu-list-item {
    margin-right: 40px;
}

.header-menu-list-item:last-child {
    margin-right: 0;
}

.header-menu-list-item-link {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    display: inline-block;
    white-space: nowrap;
}

.header-menu-list-item-link:hover {
    color: var(--primary);
}

.header-top-right-outer {
    display: flex;
    align-items: center;
}

.header-top-right-item .cart-items-wrapper {
    position: absolute;
    background: #fff;
    width: 320px;
    top: calc(100% + 20px);
    right: 0;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    padding: 30px 20px 27px;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    border: 1px solid #ececec;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.header-top-right-item.dropdown {
    position: relative;
    cursor: pointer;
}

.header-top-right-item-link {
    display: inline-block;
    color: #000;
}

.header-top-right-item-link .icon-outer {
    position: relative;
}

.header-top-right-item-link .icon-outer .count-number {
    position: absolute;
    top: -15px;
    right: -5px;
    background: #8fc742;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 100%;
    font-size: 12px;
    font-weight: 500;
}

.header-top-right-item {
    padding: 0 10px;
}

.header-top-right-item-link .icon-outer i {
    font-size: 20px;
    color: #8fc742;
}

.header-top-right-item .account-list {
    position: absolute;
    background: #fff;
    padding-left: 0;
    margin-bottom: 0;
    position: absolute;
    width: 200px;
    top: calc(100% + 20px);
    right: 0;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    padding: 15px 20px 0px;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    border: 1px solid #ececec;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.brand-logo-outer {
    display: inline-block;
}

.brand-logo-outer .brand-logo-inner {
    width: 100%;
    height: 80px;
    object-fit: cover;    
}

.search-form-toggle-icon {
    display: none;
}

.search-form-outer{
    position: relative;
}

/*.search-form-outer {
    position: fixed;
    z-index: 99;
    top: 80px;
    display: none;
    right: 30px;
}

.search-form-outer.show {
    display: block;
}*/

.search-form-toggle-icon i {
    font-size: 25px;
    color: #000;
}
.header-right-outer {
    display: flex;
    /* align-items: center; */
    justify-content: end;
    width: calc(50% - (var(--logo-width) * 1px / 2));
}

.header-right-outer .search-form-wrap {
    /* width: calc(50% - (var(--logo-width) * 1px / 2)); */
    /* display: flex; */
    justify-content: end;
    margin-right: 30px;
}

.search-form-wrap .search-form input {
    width: 230px;
    height: 40px;
    border: 1px solid #8fc742;
    border-radius: 5px;
    background: #fff;
}

.search-form-wrap .search-form i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #8fc742;
}

.search-form-wrap .search-form input:focus {
    box-shadow: none;
}

.search-form-results{
    /* border-radius: 10px; */
    box-shadow: rgb(143 199 66) 2px 5px 10px;
    padding: 10px 10px;
    position: absolute;
    z-index: 9;
    width: 100%;
    top: 40px;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(221, 221, 221, 0.867);
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.search-result-item-image {
    display: inline-block;
    margin-right: 10px;
}

.search-result-item-image img {
    width: 65px;
}

.search-result-item-name {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.search-result-item-name:hover {
    color: #8fc742;
}

.search-result-item-price {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 3px;
}

.header-top-right-item.dropdown:hover .cart-items-wrapper {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.cart-item-outer {
    display: flex;
    margin-bottom: 20px;
}

.cart-product-image img {
    max-width: 80px;
    width: 100%;
}

.cart-product-image {
    margin-right: 10px;
}

.cart-product-name-price {
    margin-right: 20px;
}

.cart-product-name-price .product-name {
    font-size: 16px;
    color: #8fc742;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-product-name-price .product-price {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
}

.cart-item-delete .delete-btn i {
    color: #6b6b6b;
    font-size: 16px;
}

.cart-item-delete .delete-btn {
    border: none;
    background: transparent;
}

.header-top-right-item.dropdown:hover .account-list {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.account-list-item .account-list-item-link {
    color: #253d4e;
    font-size: 15px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.account-list-item .account-list-item-link i {
    font-size: 14px;
    margin-right: 10px;
    color: #253d4e;
}

.shopping-cart-total {
    border-top: 2px solid #e7b3b3;
    margin: 25px 0;
    padding-top: 17px;
}

.shopping-cart-total h4 {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

.shopping-cart-total h4 span {
    font-size: 18px;
    float: right;
    color: #8fc742;
}

.shopping-cart-button {
    margin-top: 20px;
    text-align: center;
}

.shopping-cart-button .view-cart-link {
    background-color: transparent;
    border: 2px solid #8fc742;
    color: #8fc742;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 4px;
    display: inline-block;
}

.shopping-cart-button .checkout-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 4px;
    padding: 8px 20px;
    background-color: #8fc742;
    font-family: "Quicksand", sans-serif;
    border: 2px solid #8fc742;
}

.shopping-cart-button .checkout-link:hover {
    background: transparent;
    color: #8fc742;
}

.shopping-cart-button .view-cart-link:hover {
    background: #8fc742;
    color: #fff;
}

.cart-items-outer {
    width: 100%;
    height: 350px;
    overflow: auto;
}

/*small btn css*/
.nav-toggle-btn .btn-inner {
    width: 26px;
    border-bottom: 1px solid #000;
    position: relative;
    transition: all .4s ease;
}
.nav-toggle-btn-wrapper {
    /*position: absolute;
    top: 50%;
    transform: translateY(-50%);
*/    display: none;
}
.nav-toggle-btn {
    height: 30px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.nav-toggle-btn .btn-inner:before {
    content: "";
    height: 1px;
    width: 26px;
    position: absolute;
    background: #000;
    top: -7px;
}

.nav-toggle-btn .btn-inner:after {
    content: "";
    height: 1px;
    width: 26px;
    position: absolute;
    background: #000;
    top: 7px;
}

.header-menu-list.menu-visible {
    left: 0;
    visibility: visible;
    opacity: 1;
}

.toggle-btn-animation .nav-toggle-btn .btn-inner {
    border-color: transparent;
}

.toggle-btn-animation .nav-toggle-btn .btn-inner:before {
    transform: rotate(45deg);
    top: 0;
    transition: all .5s ease;
}

.toggle-btn-animation .nav-toggle-btn .btn-inner:after {
    transform: rotate(-45deg);
    top: 0;
    transition: all .5s ease;
}

/*fixed header*/
.fixed-header .header-section {
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*Header section css end*/

/*Home section css start*/
.home-item-outer {
    height: 100%;
    position: relative;
}

.home-item-outer .home-item-banner {
    height: 500px;
}

.home-item-content {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    z-index: 9;
    width: 100%;
    max-width: 600px;
}
/* .home-item-content .category-name {
        color: #8fc742;
        font-size: 14px;
        margin-bottom: 5px;
    } */

.home-item-content .title {
    font-size: 60px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

/* .home-item-content .text {
        font-size: 20px;
        font-style: italic;
        font-family: initial;
        color: #333c56;
    } */

.home-item-content .shop-link {
    background: transparent;
    border: 1px solid #111111;
    color: #111111;
    border-radius: 4px;
    display: inline-block;
    padding: 8px 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.home-item-content .shop-link:hover {
    background: #111;
    color: #fff;
    transition: all 0.3s ease;
}

.home-item-content .shop-link i {
    font-size: 14px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.home-item-content .shop-link:hover i {
    margin-left: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

.home-items-wrap .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.home-items-wrap .owl-dots .owl-dot {
    width: 15px;
    height: 1px;
    background: #000;
    margin-right: 6px;
}

.home-items-wrap .owl-dots .owl-dot.active {
    height: 2px;
    width: 20px;
}
/*Home section css End*/

/*Categoris section css start*/
.categoris-section {
    padding-top: 40px;
    padding-bottom: 30px;
}

.categoris-items-wrapper {
    position: relative;
}

.catrgory-item-outer {
    position: relative;
    transition: all 0.3s ease;
    display: block;
    overflow: hidden;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    padding: 20px 10px;
}

.catrgory-item-outer .content {
    font-family: sans-serif;
    color: black;
    text-align: center;
}

.catrgory-item-outer img {
    /* border-radius: 100%; */
    transition: all 0.3s ease;
    transition: 0.25s opacity, 0.25s visibility, transform 1.9s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    width: 100px;
    height: 80px;
    /* object-fit: cover; */
    margin-bottom: 10px;
}
.catrgory-item-outer.first:last-child img {
    height: 250px;
    object-fit: cover;
}

.catrgory-item-outer.mid:first-child img {
    height: 250px;
    object-fit: cover;
}
.catrgory-item-outer.last:last-child img {
    height: 250px;
    object-fit: cover;
}
.catrgory-item-outer .content .categories-name {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #000;
}

.catrgory-item-outer .content .count {
    margin-bottom: 0;
    font-size: 15px;
    color: #111;
}

.catrgory-item-outer:hover img {
    webkit-transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
    transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
    overflow: hidden;
}
/*Categoris section css End*/

/*Banner section css start*/
.banner-item-outer {
    position: relative;
    overflow: hidden;
}

.banner-item-outer img {
    border-radius: 10px;
    transition: 0.25s opacity, 0.25s visibility, transform 1.5s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.banner-item-outer:hover img {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
    transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
}

.banner-item-outer .banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 300px;
    transform: translateY(-50%);
}

.banner-item-outer .banner-content h4 {
    font-size: 25px;
    font-weight: 700;
    color: #253d4e;
    line-height: 34px;
    margin-bottom: 20px;
}

.banner-item-outer .banner-content .shop-now-btn {
    display: inline-block;
    padding: 7px 8px 7px 12px;
    background: #8fc742;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.banner-item-outer .banner-content .shop-now-btn:hover {
    background: #fdc040;
}

.banner-item-outer .banner-content .shop-now-btn:hover i {
    margin-left: 10px;
}

.banner-item-outer .banner-content .shop-now-btn i {
    font-size: 12px;
    margin-left: 5px;
    transition: all 0.3s ease;
}
/*Banner section css end*/

/*Product section csss start*/
.product-section {
    padding: 40px 0px;
}

.product-item-wrap {
    margin-bottom: 30px;
    text-align: center;
}

.product-item-image-outer {
    position: relative;
    overflow: hidden;
}

.product-item-image-outer .product-item-image {
    display: block;
}

.product-content-outer .product-item-ratting {
    padding-left: 0;
    display: inline-flex;
    margin-top: 8px;
    margin-bottom: 5px;
}

.product-item-ratting li i {
    font-size: 13px;
    color: #ff9800;
}

.product-content-outer .product-name {
    display: inline-block;
    font-size: 17px;
    color: #000;
    font-weight: 700;
}

.product-content-outer .product-item-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.product-item-bottom .product-price span {
    font-size: 18px;
    font-weight: 700;
    color: #8fc742;
}

/*.product-item-bottom .product-price .old-price {
    font-size: 14px;
    color: #adadad;
    margin-left: 5px;
}*/

.product-content-outer .product-item-bottom .add-cart-btn {
    padding: 6px 20px 6px 20px;
    border-radius: 4px;
    background-color: #8fc742c7;
    border: 1px solid #8fc742c7;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

.quick-order-btn-inner {
    margin-top: 10px;
    display: block;
    text-align: center;
    background: #8fc742c7;
    border-radius: 5px;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #8fc742c7;
    user-select: none;
    cursor: pointer;
}

.quick-order-btn-inner:hover {
    background: transparent;
    color: #8fc742c7;
}

.product-item-wrap:hover .product-hover-list {
    right: 5%;
    visibility: visible;
    opacity: 1;
    z-index: 9;
}

.product-item-wrap:hover .product-name {
    color: #8fc742;
}

.product-item-wrap:hover .add-cart-btn {
    background: transparent;
    color: #8fc742;
    border: 1px solid #8fc742c7;
}

.product-hover-list-item-link:hover i {
    color: #8fc742c7;
}
.product-item-wrap:hover .product-item-image img {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
    transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
}
.product-item-image-outer .product-item-image img {
    transition: 0.25s opacity, 0.25s visibility, transform 1.5s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
    height: 250px;
}

.shop-products .product-item-image-outer .product-item-image img {
    height: 150px;
}
/*Product section csss End*/

/*Testimonial section css start*/
.testimonial-section {
    padding: 40px 0;
    background: #FAF7EF;
}

.testimonial-item-outer {
    background: #fff;
    border-radius: 5px;
    padding: 30px;
}

.testimonial-author-outer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-author-outer .author-image {
    margin-right: 20px;
}

.testimonial-author-outer .author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author-outer .author-info .author-name {
    font-size: 22px;
    font-weight: 500;
    color: #061421;
    font-family: 'Kanit', sans-serif;
    margin-bottom: 5px;
}

.testimonial-author-outer .author-info .description {
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: #595959;
    margin-bottom: 0;
}

.testimonial-info .testimonial-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    font-family: 'Kanit', sans-serif;
}

.testimonial-info .text {
    font-size: 18px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: #595959;
    line-height: 30px;
    margin-bottom: 0;
}

.testimonial-items-wrap {
    position: relative;
}

.testimonial-items-wrap .owl-nav {
    text-align: center;
    margin-top: 20px;
}

.testimonial-items-wrap .owl-nav .owl-prev {
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    border: 1px solid #8fc742!important;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-items-wrap .owl-nav .owl-next {
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    border: 1px solid #8fc742!important;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
}

.testimonial-items-wrap .owl-nav .owl-prev span,
.testimonial-items-wrap .owl-nav .owl-next span {
    font-size: 26px;
    line-height: 26px;
    color: #8fc742;
    transition: all 0.4s ease-out;
}

.testimonial-items-wrap .owl-nav .owl-prev:hover,
.testimonial-items-wrap .owl-nav .owl-next:hover{
    background: #8fc742!important;
}

.testimonial-items-wrap .owl-nav .owl-prev:hover span, 
.testimonial-items-wrap .owl-nav .owl-next:hover span{
    color: #fff;
}
/*Testimonial section css End*/

/*Footer Top css start*/
.footer-top-section {
    padding: 30px 0;
}

.footer-top-item-wrap {
    background: #f4f6fa;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-top-item-wrap .content {
    margin-left: 15px;
}

.footer-top-item-wrap .content .title {
    color: #242424;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-top-item-wrap .content .description {
    font-size: 16px;
    font-weight: 400;
    color: #adadad;
    margin-bottom: 0;
}

.footer-top-item-wrap:hover {
    webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}
/*Footer Top css End*/

/*Footer section css start*/
.footer-section {
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-item-wrap {
    margin-bottom: 20px;
}

.footer-item-wrap .text {
    font-size: 16px;
    font-weight: 500;
    color: #253d4e;
    margin-bottom: 20px;
}

.footer-item-wrap .footer-logo-inner {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo-inner img {
    width: 100%;
    max-width: 100px;
}

.footer-contact-info .footer-item {
    margin-bottom: 10px;
}

.footer-contact-info .footer-item .item-link {
    color: #253d4e;
    font-size: 16px;
    margin-bottom: 0;
}

.footer-contact-info .footer-item .item-link i {
    font-size: 16px;
    color: #8fc742;
    margin-right: 9px;
}

.footer-contact-info .footer-item .item-link strong {
    font-size: 14px;
}

.footer-item-wrap .footer-item-title {
    position: relative;
    border-bottom: 1px solid #ececec;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-item-wrap .footer-item-title:after {
    content: "";
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #e6a2b0;
}

.footer-item-wrap .footer-service-list {
    padding-left: 0;
}

.footer-service-list-item {
    margin-bottom: 12px;
}

.footer-service-list-link {
    font-size: 15px;
    color: #253d4e;
    display: block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-service-list-link:hover {
    color: #8fc742;
    padding-left: 5px;
}

.footer-item-wrap .install-app-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #e690a1;
    padding: 20px;
    background: #000;
}

.footer-bottom-left .text {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
}

.footer-bottom-left .text .text-brand {
    color: #8fc742;
}

.footer-bottom-center .hot-number {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #8fc742;
}

.footer-bottom-center .hot-number i {
    color: #557174;
    margin-right: 5px;
}

.footer-bottom-social-media {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.footer-bottom-social-media .title {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.footer-bottom-social-media a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    margin-right: 5px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    height: 30px;
    width: 30px;
    background: #8fc742;
    border-radius: 30px;
    line-height: 30px;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
}

.footer-bottom-right p {
    margin-bottom: 0;
}
/*Footer section css End*/

/*Product Details page css start*/
.product-details-section {
    padding-bottom: 40px;
    padding-top: 40px;
}

#pills-description ul li {
    list-style: disc;
}

.product-details-content .product-name {
    font-size: 26px;
    color: #253d4e;
    font-weight: 700;
}

.product-details-content .product-item-ratting {
    display: inline-flex;
    padding-left: 0;
}

.product-details-content .product-item-ratting li i {
    color: #fdc040;
}

.product-details-content .product-price span {
    font-size: 35px;
    font-weight: bold;
    color: #8fc742;
}

.product-details-content .product-price .old-price {
    font-size: 20px;
    margin-left: 10px;
    font-weight: 700;
    color: #b6b6b6;
}

.product-details-content .shor-description {
    font-size: 16px;
    color: #7e7e7e;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 8px;
}

.purchase-info-outer input {
    background: #fff;
    border: 2px solid #8fc742 !important;
    font-size: 20px;
    font-weight: 700;
    color: #8fc742;
    border-radius: 5px;
    padding: 10px 15px 10px 20px;
    max-width: 90px;
}

.purchase-info-outer input:focus-visible {
    outline: none;
}

.purchase-info-outer .cart-btn-inner {
    padding: 8px 15px;
    border-radius: 5px;
    border: 0;
    font-weight: 700;
    font-size: 16px;
    background: #8fc742;
    color: #fff;
    margin-top: 10px;
}

.product-details-info {
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: 40px 50px;
    margin-top: 30px;
}

.product-details-info .nav-pills .nav-link {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-right: 15px;
}

.product-details-info .nav-pills .nav-link.active {
    background: #8fc742;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.product-des-title {
    color: #253d4e;
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
    display: block;
}

.product-des-text {
    font-size: 16px;
    font-weight: 400;
    color: #7e7e7e;
    margin-bottom: 20px;
}

.review-item-wrapper {
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
}

.review-item-left {
    margin-right: 15px;
}

.review-item-left i {
    background: #8fc742;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
}

.review-author-name {
    font-size: 18px;
    font-weight: 900;
    color: #39404a;
}

.review-item-message {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 26px;
}

.review-item-rating-stars i.fa-star.fas {
    font-size: 16px;
    color: #ffab10;
}

.review-item-rating-stars i.fa-star.far {
    color: #555;
}

.product-details-categoris {
    padding: 30px;
    border: 1px solid #ececec;
    border-radius: 15px;
    -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    margin-bottom: 20px;
}

.product-details-categoris .category-item-outer {
    display: flex;
    align-items: center;
    border: 1px solid #f2f3f4;
    padding: 5px 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.product-details-categoris .category-item-outer img {
    width: 100%;
    max-width: 50px;
    margin-right: 10px;
}

.product-details-categoris .product-details-title {
    position: relative;
    border-bottom: 1px solid #ececec;
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-details-categoris .product-details-title:after {
    content: "";
    width: 80px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #8fc74270;
}

.product-details-categoris .category-item-outer:hover {
    color: #8fc742;
    border: 1px solid #f1adbb;
    -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product-details-sidebar .banner-item-outer.side-banner img {
    height: auto;
}

.releted-product-section {
    padding: 40px 0;
}

#pills-description ul li {
    list-style: disc;
}

.product-details-select-item-outer {
    position: relative;
    background: #ddd;
    margin-right: 10px;
    width: 70px;
    height: 35px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.category-item-label,
.category-item-radio {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.category-item-radio {
    opacity: 0.011;
    z-index: 100;
}

.category-item-radio:checked + .category-item-label {
    background: #8fc742;
    color: #fff !important;
    border-radius: 4px;
}

.category-item-label {
    cursor: pointer;
    z-index: 90;
    line-height: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 5px;
}

.product-details-select-items-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.stock-number-outer {
    margin-bottom: 15px;
}

.stock-number-outer h6 {
    font-size: 16px;
    font-weight: 600;
}

.stock-number-outer h6 strong {
    color: #8fc742;
}
.product-images-slider-outer .slider-content img {
    width: 100%;
    height: 400px !important;
    object-fit: contain;
}

.product-images-slider-outer .slider-thumb img {
    max-width: 100px;
    height: 100px;
    transition: all 0.3s ease;
}

.product-images-slider-outer .slider-content i.fas.fa-chevron-left {
    position: absolute;
    background: #8fc742;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    left: 20px;
    z-index: 9;
    cursor: pointer;
}

.product-images-slider-outer .slider-content {
    position: relative;
    margin-bottom: 20px;
}

.product-images-slider-outer .slider-content i.fas.fa-chevron-right {
    position: absolute;
    background: #8fc742;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    right: 20px;
    z-index: 9;
    cursor: pointer;
}

.star-rating {
    display:flex;
    flex-direction: row-reverse;
    font-size:1.5em;
    justify-content:space-around;
    text-align:center;
    width:5em;
}

.star-rating input {
    display:none;
}

.star-rating label {
    color:#ccc;
    cursor:pointer;
    font-size: 20px !important;
}

.star-rating :checked ~ label {
    color:#f90;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color:#fc0;
}

.product-review-form-title {
    font-size: 20px;
    font-weight: 600;
}

.product-review-form {
    margin-top: 30px;
}

.product-review-form-text {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.product-review-form-item-outer {
    margin-bottom: 20px;
}

.product-review-form-item-outer label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.product-review-form-item-outer textarea:focus,.product-review-form-item-outer input:focus {
    box-shadow: none;
    border-color: #8fc742;
}

.product-review-form-btn {
    border: none;
    background: #8fc742;
    color: #fff;
    padding: 6px 25px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
/*Product Details page css End*/

/*Cart page css start*/
.cart-section {
    padding: 50px 0;
}

.cart-table-wrapper table {
    border: 1px solid #ddd;
    text-align: center;
    width: 100%;
}

.cart-table-wrapper table thead {
    background: #ececec;
}

.cart-table-wrapper table thead tr,
th {
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 800;
}

.cart-table-wrapper table tbody,
tr {
    border-bottom: 1px solid #ddd;
}

.cart-table-wrapper table tbody tr td img {
    width: 100%;
    max-width: 100px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.cart-table-wrapper table tbody tr td {
    padding: 10px 10px;
}

.cart-table-wrapper table tbody tr td .product-name {
    font-size: 16px;
    font-weight: 700;
}

.continue-shopping-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    color: #fff;
    border: 1px solid transparent;
    background-color: #3bb77e;
    cursor: pointer;
    -webkit-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.continue-shopping-btn:hover {
    color: #fff;
    transform: translateY(-10px);
}

.cart-subtotal-wrapper {
    border-radius: 15px;
    -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    padding: 30px 40px;
    margin-top: 60px;
    border: 1px solid #ececec;
}

.cart-subtotal-wrapper table {
    width: 100%;
    border: 1px solid #ddd;
}

.cart-subtotal-wrapper table tbody tr td {
    padding: 10px;
}

.cart-subtotal-wrapper table tbody tr td h4 {
    font-size: 16px;
    font-weight: 800;
    color: #000;
}

.cart-subtotal-wrapper table tbody tr td strong {
    font-size: 18px;
    font-weight: bold;
}

.process-checkout-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    color: #fff;
    border: 1px solid transparent;
    background-color: #3bb77e;
    cursor: pointer;
    -webkit-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
    letter-spacing: 0.5px;
    margin-top: 20px;
    text-align: center;
}

.process-checkout-btn:hover {
    color: #fff;
}

/*Cart page css End*/

/*Checkout page css start*/
.checkout-section {
    padding-top: 40px;
    padding-bottom: 50px;
}

.checkout-wrapper {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 10px;
}

.billing-address-form input.form-control,
.billing-address-form select.form-control {
    height: 60px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.billing-address-form textarea {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.billing-address-form select {
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.billing-address-wrapper .title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
}

.billing-address-wrapper input::placeholder,
.billing-address-wrapper textarea::placeholder {
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.custome-checkbox {
    margin-bottom: 20px;
}

.checkout-input-number:focus {
    box-shadow: none;
}

.order-place-btn-outer {
    text-align: center;
    margin-top: 20px;
}

#collapseAddress {
    display: none;
}

.order-place-btn-inner {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 0px;
    border-radius: 4px;
    color: #fff;
    border: 1px solid #8fc742;
    background-color: #8fc742;
    cursor: pointer;
    -webkit-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
    letter-spacing: 0.5px;
}

.order-place-btn-inner:hover {
    background: transparent;
    color: #8fc742;
}

.checkout-item-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.checkout-item-left {
    display: flex;
}

.checkout-item-image {
    margin-right: 10px;
}

.checkout-item-image img {
    width: 90px;
    height: 90px;
}

.checkout-item-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.checkout-item-price {
    font-size: 16px;
    font-weight: 800;
    color: #8fc742;
    margin-bottom: 0;
}

.checkout-item-count {
    font-size: 15px;
    font-weight: 600;
}

.checkout-item-right .delete-btn {
    background: #8fc742;
    color: #fff;
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
}
.sub-total-wrap .sub-total-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sub-total-item.grand-total {
    border-top: 1px solid #eeeeee;
    padding-top: 10px;
    margin-bottom: 25px;
}

.checkout-items-wrapper {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 10px;
}

.checkout-product-incre-decre {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.qty-increment-btn {
    background: transparent;
    border: 1px solid #8fc742;
    font-size: 14px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 22px;
    color: #8fc742;
}
.qty-decrement-btn {
    background: transparent;
    border: 1px solid #8fc742;
    font-size: 14px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 22px;
    color: #8fc742;
}
.qty-increment-btn:hover,
.qty-decrement-btn:hover {
    background: #8fc742;
    color: #fff;
}

.checkout-item-left .checkout-product-incre-decre input {
    background: #fff;
    border: 1px solid #8fc742 !important;
    font-size: 18px;
    font-weight: 700;
    color: #8fc742;
    border-radius: 5px;
    text-align: center;
    max-width: 75px;
    margin: 0 5px;
}
/*Checkout page css End*/

/* View cart css start */
.product-cart-item-title {
    text-align: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.cart-section-item-wrapper {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

.product-cart-item-title .title {
    font-size: 20px;
    font-family: "Poppins";
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}

.cart-sec.item-image img {
    width: 130px;
    height: 80px;
}

.cart-sec.item-title .item-name {
    font-size: 20px;
    font-family: "Poppins";
    font-weight: 400;
    text-transform: capitalize;
}

.cart-sec.item-title .item-des {
    font-family: "Poppins";
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
}

.cart-sec.item-price .item-price {
    font-family: "Poppins";
    font-weight: 300;
    font-size: 18px;
}

.cart-sec.item-quantity .quantity {
    margin-bottom: 10px;
}

.cart-sec.item-quantity .quantity input {
    text-align: center;
    width: 60px;
    height: 30px;
    font-size: 16px;
    font-family: "Poppins";
    font-weight: 400;
    border: 1px solid #ccc;
}

.cart-sec.item-remove-btn button.remove-product {
    background: #3bb77e;
    color: #fff;
    border: 1px solid #3bb77e;
    border-radius: 5px;
    font-size: 16px;
    font-family: "Poppins";
    padding: 5px 10px;
    font-weight: 400;
    text-transform: capitalize;
}

.cart-sec.item-total span.total-price {
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 400;
}

.total-price-item-wrapper {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 20px;
}

.cart-responsive-item-wrapper {
    display: none !important;
}

.cart-responsive-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.cart-responsive-product-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-responsive-product-total {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-responsive-product-name .item-title h3 {
    font-size: 16px;
    font-family: "Poppins";
    font-weight: 400;
    text-transform: capitalize;
    margin-right: 5px;
}

.cart-responsive-product-name .item-price h3 {
    font-family: "Poppins";
    font-weight: 300;
    font-size: 18px;
}

.cart-responsive-product-total .item-quantity .quantity input {
    background: #fff;
    border: 1px solid #3bb77e !important;
    font-size: 18px;
    font-weight: 700;
    color: #3bb77e;
    border-radius: 5px;
    padding: 5px;
    max-width: 60px;
    line-height: 30px;
    height: 30px;
}

.cart-responsive-product-total .item-remove-btn .remove-product {
    background: #3bb77e;
    color: #fff;
    border: 1px solid #3bb77e;
    font-size: 16px;
    font-family: "Poppins";
    padding: 3px 5px;
    margin: 0 10px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 5px;
}

.cart-responsive-product-total .item-total .total-price {
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 400;
}
/* View cart css End */

/*Privacy Policy section css start*/
.privacy-policy-section {
    padding: 40px 0;
}

.section-heading-outer {
    text-align: center;
    padding-bottom: 30px;
}

.section-heading-inner {
    font-size: 40px;
    font-family: "Poppins";
    color: #000;
    text-transform: capitalize;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.section-heading-inner:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 70px;
    background: #154360;
    bottom: 0;
    right: 50%;
    transition: all 0.3s ease;
}

.section-heading-inner:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 70px;
    background: #154360;
    bottom: 0;
    left: 50%;
    transition: all 0.3s ease;
}

.section-heading-inner:hover {
    color: #154360;
}

.section-heading-inner:hover::before {
    margin-left: 15px;
}

.section-heading-inner:hover::after {
    margin-right: 15px;
}

.privacy-policy-content .contant-title {
    font-size: 20px;
    font-family: "Poppins";
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
}

.privacy-policy-content .contant-des, .privacy-policy-content .contant-des * {
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins";
    line-height: 26px;
    color: #4d5154;
}
/*Privacy Policy section css End*/

/*Payment Policy section css start*/
.payment-policy-section {
    padding: 40px 0;
}

.payment-policy-content .content-description strong {
    font-size: 14px;
    font-family: "poppins";
    text-transform: capitalize;
    color: #000;
    font-weight: 500;
    margin-right: 5px;
}

.payment-policy-content .content-description strong i {
    font-size: 12px;
    margin-right: 4px;
    color: #154360;
}
/*Payment Policy section css End*/

/*Shipping Policy section css start*/
.shipping-policy-section {
    padding-top: 100px;
    padding-bottom: 40px;
}

.shipping-policy-content .contant-title {
    font-size: 20px;
    font-family: "Poppins";
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
}

.shipping-policy-content .contant-title i {
    font-size: 18px;
    color: #8fc742;
}

.shipping-policy-content .contant-des {
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins";
    line-height: 26px;
    color: #4d5154;
}
/*Shipping Policy section css End*/

/*Refund Policy section css start*/
.refund-policy-section {
    padding: 40px 0;
}

.refund-policy-content-list {
    padding-left: 0;
    display: inline-block;
    margin-bottom: 0;
}

.refund-policy-content-list-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    font-size: 18px;
    color: #000;
}

.refund-policy-content-list-item i {
    font-size: 16px;
    color: #154360;
    margin-right: 5px;
}
/*Refund Policy section css End*/

/*Term & Conditions section css start*/
.terms-conditions-section {
    padding: 40px 0;
}

.terms-conditions-content .contant-title {
    font-size: 20px;
    font-family: "Poppins";
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
}

.terms-conditions-content .contant-title i {
    font-size: 18px;
    color: #154360;
}

.terms-conditions-content .contant-des, .terms-conditions-content .contant-des * {
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins";
    line-height: 26px;
    color: #4d5154;
}
/*Term & Conditions section css End*/

/*Contact section css start*/
.contact-section-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-info-item {
    text-align: center;
    position: relative;
    z-index: 0;
    padding: 30px 0;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-info-item:hover {
    transform: translateY(-10px);
}

.contact-info-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
    opacity: 0.4;
    border-radius: 10px;
    z-index: -1;
    box-shadow: rgb(0 0 0 / 38%) 0px 3px 8px;
}

.contact-info-icon {
    display: inline-block;
    padding: 20px 30px;
    background: #8fc742;
    margin-bottom: 20px;
}

.contact-info-icon i {
    font-size: 20px;
    color: #fff;
}

.contact-info-item .title {
    font-size: 20px;
    text-transform: capitalize;
    color: #000;
    font-weight: 500;
}

.contact-info-item a {
    color: #222;
    font-size: 16px;
    display: inline-block;
}

.contact-info-item a:hover,
.contact-info-item p:hover {
    color: #8fc742;
}

.contact-info-item p {
    color: #222;
    font-size: 16px;
    margin-bottom: 0;
}

.contact-form-wrapper {
    margin-top: 30px;
}

.contact-form {
    box-shadow: rgb(0 0 0 / 38%) 0px 3px 8px;
    padding: 20px;
    border-radius: 10px;
}

.contact-form label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 3px;
}

.contact-form input {
    margin-bottom: 20px;
    height: 50px;
}

.contact-form input:focus {
    box-shadow: none;
    border-color: #ddd;
}

.contact-submit-btn-outer {
    margin-top: 20px;
}

.contact-submit-btn-inner {
    width: 100%;
    padding: 10px 0;
    border: none;
    background: #8fc742;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 5px;
}
/*Contact section css End*/

/*Blog section css start*/
.bolg-section-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
}

.bolg-item-wrapper {
    display: block;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.bolg-item-wrapper:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translateY(-10px);
}

.bolg-item-wrapper img {
    width: 100%;
}

.bolg-item-title {
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
    color: #000;
    font-family: "Poppins";
}

.bolg-item-des {
    font-size: 14px;
    color: #22272c;
    font-family: "Poppins";
    font-weight: 400;
}

.blog-section-title {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-family: "Poppins";
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.blog-section-title .title {
    display: inline-block;
    margin-bottom: 0;
}

.blog-section-title .title:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 2px;
    background: #154360;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.blog-section-title .title:hover::after {
    width: 90px;
}
/*Blog section css End*/

/*Blog Details section css start*/
.blog-details-banner-section {
    position: relative;
}

.blog-details-banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.blog-details-banner-content-title {
    color: #000;
    font-size: 40px;
    font-family: "Poppins";
    font-weight: 500;
    padding-bottom: 10px;
    position: relative;
}

.blog-details-banner-content-title:after {
    content: "";
    position: absolute;
    width: 130px;
    height: 2px;
    background: #154360;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.blog-details-section {
    padding: 40px 0;
}

.blog-details-image-outer img {
    width: 100%;
    height: 500px;
}

.blog-details-image-outer {
    margin-bottom: 10px;
}

.blog-details-wrapper.card {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-details-content .blog-des {
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 300;
    line-height: 26px;
    color: #154360;
}

.blog-details-content-title {
    font-size: 20px;
    font-family: "Poppins";
    font-weight: 400;
    color: #154360;
    text-transform: capitalize;
}

.blog-details-content .text-left-align {
    border-left: 5px solid #154360;
    font-size: 14px;
    font-family: "Poppins";
    font-style: italic;
    color: #154360;
    padding: 20px;
    background: #eeee;
    line-height: 26px;
}
/*Blog Details section css End*/

/*Career section css start*/
.career-section-about {
    padding: 40px 0;
}

.career-section-about-content {
    text-align: center;
}

.career-section-about-heading {
    text-align: center;
}

.career-section-about-heading .heading-inner {
    font-size: 35px;
    text-transform: uppercase;
    font-family: "Poppins";
    color: #000;
    padding-bottom: 5px;
    position: relative;
    margin-bottom: 20px;
}

.career-section-about-heading .heading-inner:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: #154360;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.career-section-about-content-description {
    text-align: center;
}

.career-section-about-content-description .des {
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 300;
    line-height: 22px;
}

.our-mission-section-heading {
    text-align: center;
    padding: 10px 0;
    background: #3bb77e;
    margin-bottom: 20px;
}

.our-mission-section-heading .title {
    color: #fff;
    font-size: 35px;
    text-transform: uppercase;
    font-family: "Poppins";
    font-weight: 500;
    margin-bottom: 0;
}

.our-mission-content {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.future-program-section {
    padding: 40px 0;
}

.future-program-section-heading {
    text-align: center;
    padding: 10px 0;
    background: #3bb77e;
    margin-bottom: 20px;
}

.future-program-section-heading .title {
    color: #fff;
    font-size: 35px;
    font-family: "Poppins";
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
}

.future-program-section-video-outer {
    position: relative;
}

.video-icon-outer a {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-icon-outer a i {
    font-size: 50px;
    color: #154360;
}

.future-program-section-content .des {
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 300;
    color: #000;
}

.our-location-section {
    padding-bottom: 40px;
}

.our-location-section-heading {
    text-align: center;
    background: #3bb77e;
    padding: 10px 0;
    margin-bottom: 20px;
}

.our-location-section-heading .title {
    font-size: 35px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: "Poppins";
    font-weight: 500;
}

.future-program-section-content .title {
    text-align: center;
    border-bottom: 1px solid #3bb77e;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 600;
    color: #3bb77e;
}

.future-program-section-content .apply-btn {
    display: inline-block;
    background: #3bb77e;
    color: #fff;
    padding: 7px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
}

.future-program-section-content .apply-btn:hover {
    transform: translateY(-5px);
}
/*Career section css End*/

/* Shop page css start */
.product-page-banner-section {
    position: relative;
}

.shop-page-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}
.product-page-leftside-wrapper {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.leftside-heading {
    text-align: center;
    color: #fff;
    padding: 12px 0;
    font-size: 25px;
    font-weight: 500;
    font-family: "Poppins";
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    text-transform: capitalize;
    background: #8fc742c7;
}

.leftside {
    padding-left: 15px;
}

.leftside.categories,
.leftside.sub-categories,
.leftside.manufactures,
.leftside.condition {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.leftside.categories-title,
.leftside.sub-categories-title,
.leftside.manufactures-title,
.leftside.condition-title {
    font-size: 16px;
    font-family: "Poppins";
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 8px;
    cursor: pointer;
}

.leftside.categories-title:hover,
.leftside.sub-categories-title:hover,
.leftside.manufactures-title:hover,
.leftside.condition-title:hover {
    background: #8fc742c7;
    color: #fff;
}

.leftside.categories-title:hover i,
.leftside.sub-categories-title:hover i,
.leftside.manufactures-title:hover i,
.leftside.condition-title:hover i {
    color: #fff;
}

.leftside.categories-title,
.leftside.sub-categories-title,
.leftside.manufactures-title,
.leftside.condition-title {
    background: #8fc742c7;
    color: #fff;
}

.leftside .checkbox input {
    height: 20px;
    width: 20px;
    margin-right: 8px;
}

.leftside .checkbox label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 400;
}

.leftside.price-title {
    font-size: 16px;
    font-family: "Poppins";
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 8px;
}

.leftside.categories-title i,
.leftside.manufactures-title i,
.leftside.condition-title i,
.leftside.sub-categories-title i {
    float: right;
}

.leftside.categories-title i.fas.fa-chevron-down,
.leftside.manufactures-title i.fas.fa-chevron-down,
.leftside.condition-title i.fas.fa-chevron-down,
.leftside.sub-categories-title i.fas.fa-chevron-down {
    transform: rotate(180deg);
    transition: all 0.3s ease;
    color: #3bb77e;
}

.leftside.categories-title.collapsed i.fas.fa-chevron-down,
.leftside.manufactures-title.collapsed i.fas.fa-chevron-down,
.leftside.condition-title.collapsed i.fas.fa-chevron-down,
.leftside.sub-categories-title.collapsed i.fas.fa-chevron-down {
    transform: rotate(0deg);
    transition: all 0.3s ease;
    color: #fff;
}

.product-page-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: #8fc742c7;
    margin-bottom: 20px;
    color: #fff;
}

.left-side-box .title {
    font-size: 22px;
    font-family: "Poppins";
    font-weight: 500;
    color: #fff;
}

.right-side-box .product-qty {
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 400;
    color: #fff;
}

.right-side-box .product-qty span.number {
    margin-left: 6px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Poppins";
}
/* Shop page css End */

/*Return Process section css start*/
.banner-section {
    position: relative;
}

.banner-bg-image img {
    height: 200px;
    object-fit: cover;
}

.banner-section .banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
}

.return-process-section {
    padding: 40px 0;
}

.return-process-form {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 5px;
    background: #fff;
}

.return-process-form-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.input-item-wrapper label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #000;
    text-transform: capitalize;
}

.input-item-wrapper input {
    margin-bottom: 15px;
    height: 50px;
}

.input-item-wrapper textarea {
    margin-bottom: 15px;
}

.input-item-wrapper input:focus {
    box-shadow: none;
    border: 1px solid #3bb77e;
}

.input-item-wrapper textarea:focus {
    box-shadow: none;
    border: 1px solid #3bb77e;
}

.return-process-btn-outer {
    text-align: center;
    margin-top: 20px;
}

.return-process-btn-inner {
    background: #8fc742;
    color: #fff;
    border: 1px solid #8fc742;
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.return-process-btn-inner:hover {
    background: transparent;
    color: #8fc742;
}
/*Return Process section css End*/

/*Thank you page css start*/
@keyframes confetti-slow {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
    }
}
@keyframes confetti-medium {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
    }
}
@keyframes confetti-fast {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
    }
}
.confetti-container {
    perspective: 700px;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.confetti {
    position: absolute;
    z-index: 1;
    top: -10px;
    border-radius: 0%;
}
.confetti--animation-slow {
    animation: confetti-slow 2.25s linear 1 forwards;
}
.confetti--animation-medium {
    animation: confetti-medium 1.75s linear 1 forwards;
}
.confetti--animation-fast {
    animation: confetti-fast 1.25s linear 1 forwards;
}
/* Checkmark */
.checkmark-circle {
    width: 150px;
    height: 150px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: auto;
    margin-right: auto;
}
.checkmark-circle .background {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #8fc742;
    position: absolute;
}
.checkmark-circle .checkmark {
    border-radius: 5px;
}
.checkmark-circle .checkmark.draw:after {
    -webkit-animation-delay: 100ms;
    -moz-animation-delay: 100ms;
    animation-delay: 100ms;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-name: checkmark;
    -moz-animation-name: checkmark;
    animation-name: checkmark;
    -webkit-transform: scaleX(-1) rotate(135deg);
    -moz-transform: scaleX(-1) rotate(135deg);
    -ms-transform: scaleX(-1) rotate(135deg);
    -o-transform: scaleX(-1) rotate(135deg);
    transform: scaleX(-1) rotate(135deg);
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.checkmark-circle .checkmark:after {
    opacity: 1;
    height: 75px;
    width: 37.5px;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
    border-right: 15px solid white;
    border-top: 15px solid white;
    border-radius: 2.5px !important;
    content: "";
    left: 37px;
    top: 80px;
    position: absolute;
}
@-webkit-keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }
    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}
@-moz-keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }
    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}
@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }
    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}
.thank-you-message {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #8fc742;
}

.thank-you-btn-inner {
    background: #8fc742;
    padding: 10px 20px;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
    border: 1px solid #8fc742;
}

.thank-you-btn-inner:hover {
    background: transparent;
    color: #8fc742;
}
/*Thank you page css End*/

.cat-name {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: sans-serif;
    margin-bottom: 0;
}
