/*common css start*/
:root{
    --primary: #38a538;
    --category-bg: #217e24;
}
* {
    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;
  }
  
  .categoris-slider-section {
      padding: 30px 0;
  }
  
  .section-title-outer {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
  
  .section-title-outer .title {
      font-size: 25px;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 0;
      text-transform: capitalize;
  }

  .product-view-all-btn {
    display: inline-block;
    background: #00668d;
    padding: 5px 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
}

.product-view-all-btn:hover {
    color: #FFF;
}
  /*common css End*/
  
/*Top Header section css start*/
.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px;
}

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

.brand-logo-outer img {
    max-width: 180px;
}

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

.search-form-outer .search-form input {
    width: 600px;
    height: 50px;
    border: 2px solid #00668d;
    border-radius: 5px;
}

.search-form-outer .search-form button {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 17px;
color: #7e7e7e;
height: 100%;
right: 0;
padding: 10px;
border: none;
background: transparent;
}

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

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

.header-top-right-outer .res-search {
    margin-right: 10px;
    display: none;
}

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

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

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

.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:hover .cart-items-wrapper {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

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

.shopping-cart-total {
    border-top: 2px solid var(--primary);
    margin: 25px 0;
    padding-top: 17px;
}

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

.shopping-cart-total h4 span {
    font-size: 20px;
    float: right;
    color: var(--primary);
}

.shopping-cart-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.shopping-cart-button .view-cart-link {
    background-color: transparent;
    border: 2px solid #00668d;
    color: var(--primary);
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
}

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

.view-cart-link:hover {
    background: #00668d;
    color: #fff;
}

.checkout-link:hover {
    background: transparent;
    color: var(--primary);
}

.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: 5px 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;
}

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

.cart-item-outer {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-around;
}

.cart-item-outer:last-child {
    margin-bottom: 0;
}

.cart-product-image img {
    width: 50px;
}

.header-top-right-item-link {
    display: inline-block;
    color: #7E7E7E;
    text-align: center;
}

.header-top-right-item-link:hover {
    color: var(--primary);
}

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

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

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

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

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

.cart-product-name-price .product-name {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
}

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

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

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

.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;
}

.account-list-item:hover .account-list-item-link,
.account-list-item:hover .account-list-item-link i {
    color: #3bb77e;
}

.responsive-header-search-outer {
    padding: 10px;
    display: none;
}

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

.responsive-header-search-outer .search-form input {
    width: 100%;
    margin: auto;
    height: 50px;
    border: 2px solid #BCE3C9;
    border-radius: 5px;
    position: relative;
}

.responsive-header-search-outer .search-form i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 17px;
    color: #7e7e7e;
}
/*Top Header section css End*/

/* Header bootom section css start */
.header__bottom-wrapper {
    background: #00668d;
}

.header__bottom-outer {
    display: flex;
    align-items: center;
}

.header__category-outer {
    width: 270px;
    position: relative;
}

.header__category-icon-outer {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #00668d;
    cursor: pointer;
}

.header__category-icon-outer span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.header__category-icon-outer i {
    font-size: 15px;
    color: #fff;
}

.header__dynamic-page-wrapper {
    width: calc( 100% - 500px );
    overflow: auto;
}

.header__dynamic-page-wrapper.menu-visible {
    right: 0;
}

.dynamic-page-list {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
}

.dynamic-page-list-item-link {
    display: inline-block;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.dynamic-page-list-item-link:hover {
    color: var(--secondary);
}

.header__category-items-outer {
    position: absolute;
    background: #fff;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
    width: 100%;
    height: 0px;
    left: 0;
    top: 40px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.header__category-items-outer.show {
    visibility: visible;
    opacity: 1;
    top: 100%;
    height: 400px;
}

.header__category-list {
    padding: 0;
    margin-bottom: 0;
    height: 100%;
}

.header__category-list-item.item-has-submenu {
    /* position: relative; */
    border-bottom: 1px solid #96969b9e;
    border-left: 1px solid #ededf2;
}
.header__category-list-item.item-has-submenu:last-child {
    border-bottom: none;
  
}
.header__category-list-item-link {
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 10px;
}

.header__category-list-item-link img {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin-right: 5px;
}

.header__category-list-item-link:hover {
    color: #fff;
    background-color: var(--primary);
}

.header__category-list-item.item-has-submenu:hover .header__category-list-item-link {
    background: #00668d;
    color: #fff;
}

.header__nav-item-category-submenu {
    padding-left: 0px;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: none;
    width: 80%;
    height: 100%;
    transition: all .5s ease;
    position: absolute;
    right: -80%;
    top: 0;
    background: #00668d;
    box-shadow: rgb(0 0 0 / 24%) 0px 8px 8px;
    z-index: 9;
    border-radius: 10px;
}

.header__category-list-item.item-has-submenu:hover .header__nav-item-category-submenu {
    visibility: visible;
    opacity: 1;
    display: block;
}

.header__category-submenu-item {
    border-bottom: 1px solid #f4f4f4;
}
.header__category-submenu-item:last-child {
    border-bottom: none;
}

.header__category-submenu-item-link {
    color: #fff8f8;
    display: block;
    font-size: 14px;
    padding: 8px 10px;
    text-transform: capitalize;
    transition: all 0.15s linear;
    font-weight: 500;
}

.header__category-submenu-item-link:hover{
    color: var(--primary);
}
/* Header bootom section css End */

/*small btn css*/
.nav-toggle-btn .btn-inner {
    width: 26px;
    border-bottom: 1px solid #fff;
    position: relative;
    transition: all .4s ease;
}

.nav-toggle-btn {
    height: 30px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 5px;
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

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

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

/*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;
    background-color: #fff;
}

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

    100% {
        transform: translateY(0px);
    }
}
/*fixed header*/
  
  
/*Home Slider section css start*/
.home__slider-sec-wrap {
    display: flex;
}

.home__slider-items-wrapper {
    width: calc( 100% - 270px );
}

.home__category-outer {
    width: 235px;
    position: relative;
    box-shadow: 2px 1px 16px rgb(48 48 48 / 48%);
    border: 2px solid #bdbaba;
    border-radius: 10px;
    margin-top: 10px;
    height: 344px;
}

.home__slider-item-outer {
    height: 400px;
}

.home__slider-item-image {
    height: 90%;
    padding: 10px;
    border-radius: 20px;
}
/*Home Slider section css End*/

/*Categoris section css start*/
.categoris-items-wrapper {
    position: relative;
}

.categoris-item img {
    width: 90px !important;
    margin: auto;
    margin-bottom: 22px;
}

.categoris-item .categoris-name {
    font-size: 16px;
    font-weight: 700;
    color: #253D4E;
    margin-bottom: 0px;
}

.categoris-item .items-number {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.categoris-item {
    display: block;
    margin: 0px 10px 15px;
    text-align: center;
    background: #e3e3e3;
    padding: 15px 0;
    border-radius: 10px;
    border-bottom: 2px solid #087c27;
    box-shadow: 1px 2px 1px 1px #3d3c3e8f;
    height: 153px;
}

.categoris-items-wrapper .owl-nav {
    position: absolute;
    top: -68px;
    right: 0;
}

.categoris-items-wrapper .owl-nav .owl-prev {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    line-height: 34px!important;
    background: #F2F3F4!important;
    border-radius: 50%;
}

.categoris-items-wrapper .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    line-height: 34px!important;
    background: #F2F3F4!important;
    border-radius: 50%;
}

.categoris-items-wrapper .owl-nav .owl-prev span {
    color: #7E7E7E;
    font-size: 30px;
}

.categoris-items-wrapper .owl-nav .owl-next span {
    color: #7E7E7E;
    font-size: 30px;
}

.categoris-items-wrapper .owl-nav .owl-next:hover {
    background: #3BB77E!important;
}

.categoris-items-wrapper .owl-nav .owl-prev:hover {
    background: #3BB77E!important;
}

.categoris-items-wrapper .owl-nav .owl-prev:hover span {
    color: #fff;
}

.categoris-items-wrapper .owl-nav .owl-next:hover span {
    color: #fff;
}
/*Categoris section css End*/
  
/*Banner section css start*/
.banner-item-outer {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
}

.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: var(--primary);
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all .3s ease;
}

.banner-item-outer .banner-content .shop-now-btn:hover {
    background: var(--primary);
}

.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 .3s ease;
}
/*Banner section css end*/
  
/* Product section css start */
.product-section {
    padding: 40px 0;
}

.product__item-outer {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    padding: 10px 10px;
    margin-bottom: 15px;
}

.product__type-badge-outer {
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 9;
    background: #cc162d;
    border-radius: 0 20px 20px 0;
}
.product__type-badge-inner {
    display: block;
    padding: 2px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

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

.product__item-image-inner {
    display: block;
}

.product__item-action-btns-outer {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 11;
}

.product__item-action-inner {
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    margin-top: 5px;
    margin-right: 5px;
    color: #333;
    font-size: 16px;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 15%);
    transform: translateX(calc(100% + 20px));
    -webkit-transform: translateX(calc(100% + 20px));
}

.product__item-action-inner i {
    color: var(--secondary);
    font-size: 16px;
}

.product__item-action-inner:hover {
    background: var(--primary);
}

.product__item-action-inner:hover i {
    color: #fff;
}

.product__item-outer:hover .product__item-action-inner {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.product__item-action-inner:last-child {
    transition-delay: 0.05s;
    -webkit-transition-delay: 0.05s;
}

.product__item-add-cart-btn-outer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: #000;
    opacity: 0.7;
    transform: translateY(100%);
    transition: 0.3s;
    overflow: hidden;
    z-index: 11;
}

.product__item-add-cart-btn-inner {
    display: block;
    padding: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.product__item-outer:hover .product__item-add-cart-btn-outer {
    transform: translateY(0);
    opacity: 1;
    background: #00668D;
}

.product__item-add-cart-btn-inner:hover {
    color: var(--secondary);
}

.product__item-info-outer {
    padding: 5px;
    text-align: center;
}

.product__item-name {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    min-height: 45px;
}

.product__item-name:hover{
    color: var(--primary);
}

.product__item-price-outer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.product__item-discount-price {
    margin-right: -37%;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.product__item-discount-price del {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
    margin-right: 5px;
}

.product__item-regular-price {
    font-size: 15px;
    font-weight: 700;
    color: #00668d;
}

.product__item-outer:hover .product__item-discount-price {
    margin-right: 0;
    opacity: 1;
}

.product-items-wrapper .slick-track {margin-left: 0;}

.product-items-wrapper .slick-prev.slick-arrow {
    right: -10px;
}

.product-items-wrapper .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50em;
    border: 0;
    box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
    font-size: 14px;
    line-height: 30px;
    padding: 0;
    text-align: center;
    transition: all .5s ease;
}

.product-items-wrapper .slick-next.slick-arrow {
    left: -10px;
}

.product-items-wrapper .slick-arrow:hover {
    background-color: var(--primary);
}

.product-items-wrapper .slick-arrow:hover i{
    color: #fff;
}
/* Product section css End */
  
  /*Offer Product css start*/
  .offer-product-section {
      padding: 40px 0;
  }
  
  .offer-product-title {
      position: relative;
      border-bottom: 1px solid #ececec;
      padding-bottom: 20px;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 30px;
      text-transform: capitalize;
      color: #253D4E;
  }
  
  .offer-product-title:after {
      content: "";
      width: 80px;
      height: 2px;
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: #BCE3C9;
  }
  
  .offer-product-item-outer {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      transition: all .3s ease;
  }
  
  .offer-product-item-image img {
      width: 130px;
      border-radius: 10px;
  }
  
  .offer-item-ratting {
      display: inline-flex;
      padding-left: 0;
      margin-bottom: 0;
  }
  
  .offer-product-item-content {
      margin-left: 20px;
  }
  
  .offer-product-name {
      display: block;
      font-size: 16px;
      font-weight: 700;
      color: #253D4E;
      margin-bottom: 0;
  }
  
  .offer-item-ratting li i {
      color: #fdc040;
      font-size: 12px;
  }
  
  .offer-product-price {
      margin-top: 5px;
  }
  
  .offer-product-price span {
      font-size: 18px;
      font-weight: bold;
      color: #3BB77E;
  }
  
  .offer-product-price .old-price {
      font-size: 14px;
      color: #adadad;
      margin-left: 5px;
  }
  .offer-product-item-outer: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);
  }
  
  .offer-product-item-outer:hover .offer-product-name {
      color: #3BB77E;
  }
  /*Offer Product css End*/
  
 /*Footer section css start*/
.footer-section {
    background: #00668d;
}

.footer__top-wrapper {
    padding-top: 20px;
}

.footer__brand-logo-outer {
    display: inline-block;
    margin-bottom: 10px;
}

.footer__brand-logo-inner {
    max-width: 120px;
}

.footer__social-list {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
}

.footer__social-list-item {
    margin-right: 10px;
}

.footer__social-list-item-lisk {
    width: 35px;
    height: 35px;
    background: #00668d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

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

.footer__social-list-item-lisk i {
    font-size: 16px;
    color: #fff;
}

.footer__main-wrapper {
    padding: 20px 0;
}

.footer__item-wrap {
    margin-bottom: 20px;
}

.footer__item-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #919199;
    margin-bottom: 10px;
}

.footer__list {
    padding-left: 0;
    margin-bottom: 0;
}

.footer__list-item {
    margin-bottom: 8px;
}

.footer__list-item-link {
    font-size: 13px;
    color: #dfdfe6;
    font-weight: 500;
}

.footer__list-item:last-child {
    margin-bottom: 0;
}

.footer__contact-info-list {
    padding-left: 0;
    margin-bottom: 0;
}

.footer__contact-info-list-item {
    margin-bottom: 10px;
}

.footer__contact-info-list-item:last-child {
    margin-bottom: 0;
}

.footer__contact-info-list-item-label {
    font-size: 14px;
    font-weight: 500;
    color: #919199;
    margin-bottom: 3px;
}

.footer__contact-info-list-item-value {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    margin-bottom: 0;
    transition: all .5s ease;
}

.footer__contact-info-list-item-value:hover {
    color: var(--primary);
}

.footer__list-item-link:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer__bottom-wrapper {
    padding: 20px 0;
    border-top: 1px solid #3d3d46;
}

.footer__bottom-text {
    text-align: center;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.footer__bottom-text .text-brand {
    display: inline-block;
    margin-left: 5px;
    color: #00668d;
}
/*Footer section css End*/
  
  
  /*Product Details page css start*/
  .product-details-section {
      padding: 40px 0;
  }
  
  .product-images-slider-outer .slick-track {
      display: inline-block;
      width: 100%;
  }
  
  .product-images-slider-outer .slick-track .slider-banner-image img {
      border: 1px solid #ddd;
      border-radius: 5px;
  }
  
  .product-images-slider-outer .slider-nav {
      margin-top: 20px;
  }
  
  .product-images-slider-outer .slider-nav .thumbImg {
      margin: 0 10px;
  }
  
  .product-images-slider-outer .slider-nav .thumbImg img {
      width: 100%;
      height: 100px;
      border-radius: 10px;
  }
  
  .product-images-slider-outer .slider-single img {
      width: 100%;
      height: 400px;
      object-fit: contain;
  }
  
  .product-images-slider-outer .slider-single {
      border: 1px solid #3bb77e;
      border-radius: 10px;
  }
  
  .product-images-slider-outer .slider.slider-nav img {
      width: 100%;
      max-width: 90px;
      height: 90px;
      border: 1px solid #3bb77e;
      border-radius: 5px;
      padding: 5px;
      margin: auto;
  }
  
  .product-images-slider-outer .slider.slider-nav .slick-current img {
      max-width: 100px;
      height: 100px;
      transition: all .3s ease;
      padding: 5px;
  }

  .product-images-slider-outer .slider.slider-thumb {
    text-align: center;
  }
  
  .product-details-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
}
  
  .product-details-content .product-name {
      font-size: 22px;
      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: #00668d;
  }
  
  .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 #00668d !important;
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      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: #00668d;
      color: #fff;
      margin-top: 10px;
      width: 100%;
  }
  
  .product-details-info {
      border: 1px solid #00668d;
      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: #00668d;
      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;
  }
  
  .product-details-categoris {
      padding: 30px;
      border: 1px solid #ececec;
      background: #fff;
      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;
      height: 435px;
      overflow-y: scroll;
  }
  
  .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: var(--category-bg);
  }
  
  .product-details-categoris .category-item-outer:hover {
      color: var(--primary);
      border: 1px solid var(--category-bg);
      -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
      box-shadow: 5px 5px 15px rgb(0 0 0 / 5%);
      transition: all .3s ease;
      -moz-transition: all .3s ease;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
  }
  
  .product-details-sidebar .banner-item-outer.side-banner img {
      height: auto;
  }
  
  .releted-product-section {
      padding: 40px 0;
  }
  
  .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: #3BB77E;
    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: 0px;
  }
  
  .stock-number-outer {
      margin-bottom: 15px;
  }
  
  .stock-number-outer h6 {
      font-size: 16px;
      font-weight: 600;
  }
  
  .stock-number-outer h6 strong {
      color: #3bb77e;
  }

  .product-details-hot-line {
    margin-top: 20px;
    background: #00668d;
    border: 1px solid #00668d;
    padding: 8px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    width: 100%;
}

.decrement-btn,.increment-btn {
    background: transparent;
    border: 2px solid #00668d;
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 28px;
    color: #00668d;
    display: inline-block;
    text-align: center;
}

.decrement-btn:hover, .increment-btn:hover {
    background: #00668d;
    color: #fff;
}

.purchase-info-outer .out-stock {
    margin-top: 20px;
    background: #f68821;
    border: 1px solid #f68821;
    padding: 8px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
}
  
  
  /*===========*/
  .product-item-outer img {
      border: 1px solid #3bb77e;
      border-radius: 8px;
      max-width: 500px;
      margin: auto;
      padding: 20px;
  }
  
  .product-items-wrap .owl-nav {
      text-align: center;
      margin-top: 10px;
  }
  
  .product-items-wrap .owl-nav .owl-prev {
      -webkit-transition: all 0.4s ease-out;
      transition: all 0.4s ease-out;
      border: 1px solid #3bb77e!important;
      width: 40px;
      height: 40px;
      display: inline-block;
      border-radius: 50%;
      margin-right: 10px;
  }
  
  .product-items-wrap .owl-nav .owl-prev span,.product-items-wrap .owl-nav .owl-next span {
      font-size: 26px;
      line-height: 26px;
      color: #3bb77e;
      transition: all 0.4s ease-out;
  }
  
  .product-items-wrap .owl-nav .owl-next {
      -webkit-transition: all 0.4s ease-out;
      transition: all 0.4s ease-out;
      border: 1px solid #3bb77e!important;
      width: 40px;
      height: 40px;
      display: inline-block;
      border-radius: 50%;
  }
  /*===========*/
  
  .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: var(--primary);
      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-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 .3s ease;
  }
  
  .product-images-slider-outer .slider-content i.fas.fa-chevron-left {
      position: absolute;
      background: #00668d;
      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: #00668d;
      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;
  }

.related-product-items-wrap .slick-prev.slick-arrow {
    right: -10px;
}

.related-product-items-wrap .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50em;
    border: 0;
    box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), 0 3px 1px 0 rgba(20, 23, 28, 0.1);
    font-size: 14px;
    line-height: 30px;
    padding: 0;
    text-align: center;
    transition: all .5s ease;
}

.related-product-items-wrap .slick-next.slick-arrow {
    left: -10px;
}

.related-product-items-wrap .slick-arrow:hover {
    background-color: var(--primary);
}

.related-product-items-wrap .slick-arrow:hover i{
    color: #fff;
}  
/*Product Details page css End*/
  
/*Cart page css start*/
.cart-products-section {
    padding: 40px 0;
}

.cart-products-wrapper {
    overflow-x: auto;
}

.cart-products-wrapper table thead tr th {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
}

.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;
}

.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: var(--primary);
    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-product-name-outer {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.cart-product-price-outer {
    font-size: 16px;
    font-weight: 600;
}

.qty-increment-decrement-outer input[type="number"] {
    width: 70px;
    height: 35px;
    border: 2px solid var(--primary);
    margin: 0 5px;
    padding: 5px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
}

.remove-product {
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: navajowhite;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.remove-product:hover {
    color: #fff;
}

.cart-product-total-outer {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.cart-products-wrapper table tbody tr td {
    vertical-align: middle;
}

.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: var(--primary);
    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: 40px 0;
}

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

.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 var(--primary);
    background-color: var(--primary);
    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: var(--primary);
}

.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: var(--primary);
    margin-bottom: 0;
}

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

.checkout-item-right .delete-btn {
    background: var(--primary);
    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;
    background: #fff;
}

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

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

.checkout-item-left .checkout-product-incre-decre input {
    background: #fff;
    border: 1px solid var(--primary)!important;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    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: #f68821;
    color: #fff;
    border: 1px solid #f68821;
    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 #f68821 !important;
    font-size: 18px;
    font-weight: 700;
    color: #f68821;
    border-radius: 5px;
    padding: 5px;
    max-width: 60px;
    line-height: 30px;
    height: 30px;
}

.cart-responsive-product-total .item-remove-btn .remove-product {
    background: #f68821;
    color: #fff;
    border: 1px solid #f68821;
    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 .3s ease;
}

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

.section-heading-inner:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 70px;
    background: #154360;
    bottom: 0;
    left: 50%;
    transition: all .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 {
    font-size: 14px;
    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: 40px 0;
}

.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: #154360;
}

.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 {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins';
    line-height: 26px;
    color: #4d5154;
}


/*Term & Conditions section css End*/

/*Contact section css start*/
.contact-info-item {
    text-align: center;
    position: relative;
    z-index: 0;
    padding: 30px 0;
    transition: all .3s ease;
    margin-bottom: 20px;
    background: #fff;
}

.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: var(--primary);
    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: #f68821;
}

.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;
    background: #fff;
}

.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: var(--primary);
    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 .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 .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 .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: #f68821;
    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: #f68821;
    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: #f68821;
    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 #f68821;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 600;
    color: #f68821;
}

.future-program-section-content .apply-btn {
    display: inline-block;
    background: #f68821;
    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-section{
    padding: 40px 0;
}
.product-page-banner-section {
    position: relative;
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.product-page-banner-section .breadcrumb {
    margin-bottom: 0;
}
.product-page-banner-section .breadcrumb li a i {
    font-size: 16px;
    color: var(--primary);
}
.product-page-banner-section .breadcrumb li a {
    position: relative;
    margin-right: 20px;
    display: inline-block;
    position: relative;
    margin-right: 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    padding-right: 5px;
}
.product-page-banner-section .breadcrumb li a:after {
    position: absolute;
    content: "/";
    color: var(--primary);
    left: 100%;
}
.product-page-banner-section .breadcrumb li {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.res-fil-icon-outer {display: none;}

.res-fil-icon-outer i {
    font-size: 34px;
}

.res_filter-items-top-outer {
    display: none;
    align-items: center;
    justify-content: space-between;
    color: #111;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding: 10px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 10px;
}

.res_filter-items-top-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}

.res_filter-items-top-close-btn {
    text-align: center;
    width: 20px;
    height: 100%;
    cursor: pointer;
}

.filter-items-wrapper.open {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.filter-items-outer {
    background: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 10px;
}
.filter-items-outer .label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #111;
    font-size: 17px;
    border-bottom: 1px solid #eee;
    padding: 10px;
    text-transform: capitalize;
    font-weight: 600;
}
.filter-items .item-label {
    padding: 6px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: all .5s ease;
}
.filter-items .item-label .checkbox{
    margin-right: 5px;
}
.filter-items .item-label:hover {
    background: #f2f4f8;
}

.filter-items-outer form.filter-items {
    max-height: 300px;
    overflow-y: auto;
}

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

.left-side-box .title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.right-side-box .product-qty {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.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-section .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 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.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 var(--primary);
}

.input-item-wrapper textarea:focus {
    box-shadow: none;
    border: 1px solid var(--primary);
}

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

.return-process-btn-inner {
    background: #00668d;
    color: #fff;
    border: 1px solid #00668d;
    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: var(--primary);
}
/*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: var(--primary);
    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: var(--primary);
}

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

.thank-you-btn-inner:hover {
    background: transparent;
    color: var(--primary);
}
/*Thank you page css End*/