@import url('https://fonts.googleapis.com/css?family=Cairo:300,400,500,600,700,800,900&display=swap');

:root {
    --main-color: #5d7f80;
    --main-color-shadow: rgba(82, 152, 159, 0.3);
    --second-color: #715621;
    --dark-color: #474a4b;
    --light-color: #a0a0a0;
    --background-color: rgba(236, 0, 140, .9);
}

body {
    font-family: 'Cairo', sans-serif;
    font-style: normal;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #474a4b;
    overflow-x: hidden;
    background-color: #fff;
}

.page-wrapper {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.5;
}

h1,
.h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
}

h2,
.h2 {
    font-size: 40px;
    line-height: 50px;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 40px;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 34px;
}

h5,
.h5 {
    font-size: 20px;
    line-height: 30px;
}

h6,
.h6 {
    font-size: 18px;
    line-height: 28px;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500;
}

p {
    color: #474a4b;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

section {
    padding: 1.5rem 0
}

ul {
    margin: 0px;
    padding: 0px;
}

.text-large {
    font-size: 3rem;
    line-height: 3.5rem
}

.text-small {
    font-size: 0.9rem;
}

.text-mini-small {
    font-size: 0.7rem;
}

.text-extra-small {
    font-size: 0.4rem;
}

a {
    color: var(--main-color);
    text-decoration: none;
}

a:hover {
    color: var(--main-color);
    text-decoration: none;
}

/* ------------------------
Transition
------------------------*/
a,
i,
.btn,
button,
img,
span,
.dropdown-item,
.dropdown-toggle:after,
.dropdown-menu a:before,
.hover-translate,
.btn-animated:before,
.product-card,
.card-body,
.product-link,
.insta-icon,
.accordion .card-header a:before {
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.hover-zoom:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.site-header i:hover,
.product-card .product-link .btn:hover i {
    -moz-transition: all 600ms cubic-bezier(0.99, 0, 0.57, 0.94);
    -o-transition: all 600ms cubic-bezier(0.99, 0, 0.57, 0.94);
    -webkit-transition: all 600ms cubic-bezier(0.99, 0, 0.57, 0.94);
    transition: all 600ms cubic-bezier(0.99, 0, 0.57, 0.94);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}


.font-w-3 {
    font-weight: 300;
}

.font-w-4 {
    font-weight: 400;
}

.font-w-5 {
    font-weight: 500;
}

.font-w-6 {
    font-weight: 600;
}

.font-w-7 {
    font-weight: 700;
}

.font-w-8 {
    font-weight: 800;
}

.font-w-9 {
    font-weight: 900;
}

.line-h-1 {
    line-height: 1.5;
}

.line-h-2 {
    line-height: 1.6;
}

.line-h-3 {
    line-height: 1.7;
}

.line-h-4 {
    line-height: 1.8;
}

.line-h-5 {
    line-height: 1.9;
}

.letter-space-1 {
    letter-spacing: 5px;
}

.letter-space-2 {
    letter-spacing: 10px;
}

.letter-space-3 {
    letter-spacing: 15px;
}


/* ------------------------
Pre Loader
------------------------*/
#ht-preloader {
    background: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden !important;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 99999;
}

.clear-loader {
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    z-index: 999;
    box-sizing: border-box;
    display: inline-block;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    text-align: center;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
}

.loader span {
    width: 20px;
    height: 20px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: inline-block;
    animation: motion 3s ease-in-out infinite;
}

.loader p {
    color: var(--main-color);
    margin-top: 5px;
    font-size: 30px;
    animation: shake 5s ease-in-out infinite;
}

/* ------------------------
Button
------------------------*/
.btn {
    font-weight: 500;
    padding: 0.75rem 1rem;
    position: relative;
    overflow: hidden;
    z-index: 9
}

.btn-sm {
    padding: .25rem .5rem;
}

.btn-primary {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-outline-primary {
    color: var(--main-color);
    border-color: var(--main-color);
}

.btn-outline-primary:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-dark {
    background-color: #474a4b;
    border-color: #474a4b;
}

.btn-dark:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn.focus,
.btn:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-animated:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    z-index: -1
}

.btn-animated:hover:before {
    background: #474a4b;
    width: 50px;
    left: -20px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.btn-animated.btn-dark:before {
    background: #474a4b;
}

.btn-animated.btn-dark:hover:before {
    background: #474a4b;
}

button:focus {
    outline: none;
}

.btn i {
    font-size: 24px;
    margin-top: -.1875rem;
    vertical-align: middle;
}

.btn.btn-sm i {
    font-size: 18px;
}

.btn-block {
    width: 100%;
    display: block;
}


/* ------------------------
text 
------------------------*/
.text-dark {
    color: #474a4b !important;
}

.text-primary {
    color: var(--main-color) !important;
}

.text-muted {
    color: #a0a0a0 !important
}

.text-white {
    color: #fff !important
}

.text-brown {
    color: #715621 !important
}

.text-beige {
    color: #d7d7d7 !important
}

.border-brown {
    border-color: #715621 !important
}

/* ------------------------
Background 
------------------------*/
.bg-primary {
    background-color: var(--main-color) !important;
}

.bg-light {
    background-color: #f0f0f0 !important;
}

.bg-dark {
    background-color: var(--second-color) !important;
}

/* ------------------------
Badge
------------------------*/
.badge-dark {
    background-color: #474a4b !important;
}

.badge-primary {
    background-color: var(--main-color) !important;
}

.badge-primary-soft {
    color: var(--main-color);
}

.badge-primary-soft {
    background-color: rgba(254, 76, 28, .1);
    color: var(--main-color);
}

/* ------------------------
Icon
------------------------*/
.ic-1x {
    font-size: 1rem;
}

.ic-2x {
    font-size: 2rem;
}

.ic-3x {
    font-size: 3rem;
}

.ic-5x {
    font-size: 5rem;
}

.ic-7x {
    font-size: 7rem;
}

/* ------------------------
Shadow
------------------------*/
.shadow-primary {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(140, 201, 103, .15) !important;
    box-shadow: 0 0.5rem 1rem rgba(140, 201, 103, .15) !important;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.shadow {
    box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

/* ------------------------
  Header
------------------------*/
.site-header.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
}

.site-header.navbar-dark .navbar-nav .nav-link:focus,
.site-header.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--main-color);
}

#header-wrap {
    padding: 15px 0;
    position: relative;
}

.header-2 #header-wrap {
    padding: 20px 0;
}

#header-wrap.fixed-header {
    padding: 10px 0;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999 !important;
    background: #3a635f !important;
    box-shadow: 0 0px 0px 2px rgba(140, 201, 103, .15) !important;
    animation: smoothScroll 1s forwards;
}

/*--navigation--*/
.navbar {
    padding: 0;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
    min-width: 16rem;
    background: #ffffff;
    padding: 15px;
    border: none;
    margin-top: 0;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(140, 201, 103, .15) !important;
    box-shadow: 0 0.5rem 1rem rgba(140, 201, 103, .15) !important;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    height: 110px;
}

header .navbar-nav .nav-item {
    margin: 0 15px
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 400;
    padding: 0 !important;
    border-radius: 0;
    text-transform: capitalize;
    position: relative;
    font-size: 15px;
}

.navbar-dark #header-wrap.fixed-header {
    background: var(--main-color) !important
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .show>.nav-link,
.dropdown-menu a:focus,
.dropdown-menu a:hover {
    color: #a9c3c4;
}

.navbar .dropdown-menu a:focus,
.navbar .dropdown-menu a:hover {
    color: var(--main-color);
}

.navbar .dropdown-menu li {
    margin: 5px 0
}

.navbar .dropdown-menu a {
    font-weight: 400;
    color: #474a4b;
    font-size: 0.9rem;
    position: relative;
}

.navbar .dropdown-menu a:hover {
    padding-right: 20px;
}

.navbar .dropdown-menu a:before {
    content: "";
    background: var(--main-color);
    border-radius: .25rem;
    height: 3px;
    width: 0;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1.5px;
    z-index: -1;
}

.navbar .dropdown-menu a:hover:before {
    width: 10px;
}

.nav-link.dropdown-toggle::after {
    font-size: 0.9rem;
    margin-right: .355em;
    border: none;
    content: '\f107';
    vertical-align: inherit;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    float: inline-end;
}

.nav-link.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}


input[type="search"]::placeholder {
    color: #e0e0e0;
    opacity: 1;
}


@media (max-width:991.98px) {

    /*Header*/
    #header-wrap {
        padding: 15px 0;
    }

    #header-wrap.fixed-header {
        padding: 15px 0;
    }

    .navbar {
        justify-content: flex-end;
        width: 100%;
        position: relative !important;
    }

    .navbar-brand {

    }

    .navbar-toggler {
        background: none;
        height: 40px;
        width: 40px;
        padding: 0;
        border-radius: 0;
        margin-left: 15px;
    }

    .home-menu {
        margin-right: 29px !important;
        margin-left: -7px;
    }

    .site-header .navbar-nav ul {
        position: static;
    }

    .site-header .navbar-nav .nav-item {
        margin: 0;
    }

    .site-header .navbar-nav .nav-link {
        padding: 10px !important;
        border-radius: 0;
    }

    .navbar-collapse {
        border-radius: 0px;
        background: #3a635f;
        max-height: 400px;
        right: 0;
        padding: 10px;
        position: absolute;
        z-index: 99;
        top: 50px;
        width: 100%;
        overflow: auto;
        border: medium none;
        -webkit-box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15);
        -moz-box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15);
        box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15);
    }

    .navbar-nav .dropdown-toggle::after {
        float: left;
    }

    .site-header.navbar-dark .navbar-nav .nav-link {
        color: rgba(0, 0, 0, .5)
    }

    .site-header.navbar-dark .navbar-nav .nav-link.active,
    .site-header.navbar-dark .navbar-nav .nav-link:focus,
    .site-header.navbar-dark .navbar-nav .nav-link:hover {
        color: var(--main-color);
    }
}

@media (min-width:992.98px) {
    .custom-drop {
        width: 750px;
    }

    .navbar-nav.mx-auto .custom-drop.dropdown-menu[data-bs-popper] {
        right: 50%;
        margin-right: -375px;
    }
}

.categories .navbar-toggler {
    background: var(--main-color);
    height: auto;
}

.categories .navbar-toggler i,
.categories .cat-btn i {
    font-size: 2rem;
}

.categories .cat-btn {
    background: var(--main-color);
    font-size: 1.25rem;
    line-height: 1;
}

.categories .navbar-nav .nav-link {
    background: #f5f9fc;
    padding: 10px !important;
}

.categories .navbar-nav .nav-link {
    background: #ffffff;
    padding: 10px 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.tab-content {
    padding: 30px;
}

.right-nav a i {
    font-size: 26px;
    color: #474a4b
}

#header-cart-btn {
    margin-right: .75rem
}

[data-cart-items] {
    position: relative;
    display: inline-block;
}

[data-cart-items]::before {
    content: attr(data-cart-items);
    position: absolute;
    top: -.5rem;
    left: -.75rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 50%;
    background-color: var(--main-color);
    color: #fff;
}


.banner-slider .owl-carousel,
.banner-slider .owl-stage-outer,
.banner-slider .owl-stage,
.banner-slider .owl-item,
.banner-slider .item {
    height: 100%;
}

.hero-circle {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 400px;
    height: 400px;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 50%;
    background-color: #f5f9fc;
    z-index: -1
}


/* ------------------------
Contact
------------------------*/
.form-control {
    height: 3rem;
    font-size: 0.8rem;
}

.input-1 {
    border: 1px solid #d0d7e7;
}

.input-2 {
    border: none;
    background: none;
    box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15) !important;
}

.form-control:focus {
    color: #495057;
    background-color: none;
    border-color: var(--main-color);
    outline: 0;
    box-shadow: none;
}

.form-group {
    margin-bottom: 1.3rem;
    position: relative;
}

.help-block.with-errors {
    position: absolute;
    color: red;
    right: 15px;
    font-size: 10px;
    line-height: 14px;
}

/* ------------------------
Tab
------------------------*/
.nav-tabs .nav-item.nav-link {
    display: inline-block;
    padding: 0 0.7rem 0.3rem;
    color: #474a4b;
    border-radius: 0;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color)
}

@media (max-width:575.98px) {
    .nav-tabs .nav-item.nav-link {
        padding: .5rem 1rem;
        width: 100%;
    }
}

/* -------------------------------
 Background Position & Size
-------------------------------*/
[data-bg-img] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-pos-l {
    background-position: left;
}

.bg-pos-r {
    background-position: right;
}

.bg-pos-rt {
    background-position: right top;
}

.bg-pos-lt {
    background-position: left top;
}

.bg-pos-rb {
    background-position: right bottom;
}

.bg-pos-lb {
    background-position: left bottom;
}

.bg-repeat {
    background-repeat: repeat;
}

.bg-pos-b {
    background-position: bottom;
}


.owl-carousel .product-card {
    margin: 7px;
}

.owl-carousel .product-card:hover {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.product-card {
    border: none;
    padding-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(140, 201, 103, 0.3);
}

.product-card:hover {
    box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15) !important;
}

.product-card .btn-wishlist {
    position: absolute;
    top: .75rem;
    left: .75rem;
    z-index: 5;
    width: 2rem;
    height: 2rem;
    padding: 0 !important;
    border: 0;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--main-color);
    text-align: center;
    box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15) !important;
}

.product-card .btn-wishlist i {
    animation: heartBeat 1.3s infinite running;
}

.product-card .card-footer {
    bottom: 0;
    width: 100%;
    position: absolute;
    display: none;
    padding: 0;
}

.product-link .btn {
    padding: 0.50rem 0.75rem;
}

.product-card:hover .card-footer {
    display: block;
}

.product-card:hover .product-link .btn {
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.2s;
}

.product-card:hover .product-link .btn.btn-cart {
    animation-delay: 0.5s;
}

.product-card:hover .product-link .btn.btn-view {
    animation-delay: 0.7s;
}

.product-card img {
    max-width: 100%
}

.product-card:hover .card-info {
    position: relative;
    background: #fff
}

.product-card:hover .card-body {
    transform: translateY(-50px);
}

.card-img-hover>* {
    float: left;
}

.product-list .product-link {
    position: relative;
    left: inherit;
    top: inherit !important;
    opacity: 1;
}

.product-link .btn-view,
.product-link .btn-compare {
    background: #fff;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.product-link button i,
.product-link a i {
    display: inline-block;
    font-size: 24px;
    line-height: 24px;
    vertical-align: bottom;
}

.product-list.product-card:hover .card-body {
    transform: inherit;
}

.product-list.product-card {
    padding: 30px;
}

.product-list.product-card .btn-wishlist {
    left: inherit;
    right: .75rem
}

.product-list.product-card .card-body {
    padding: 0;
    text-align: right;
}

.product-list.product-card .card-footer {
    bottom: inherit;
    position: relative;
    display: block;
}

.card-img-hover .card-img-front {
    margin-left: -100%;
}

.card-img-hover .card-img-top {
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}

.card-img-hover .card-img-front {
    opacity: 1;
}

/* .product-card:hover .card-img-hover .card-img-front { opacity: 1; }
.product-card:hover .card-img-hover .card-img-back { opacity: 0; } */
.product-card .card-body {
    padding: 20px;
    position: relative;
    text-align: center;
    background: #fff
}

.product-price {
    color: var(--main-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.product-price del {
    font-size: 0.8rem
}

/* .product-card .product-title {min-height: 100px;} */
.star-rating {
    color: #FDCC0D
}

.widget-size input[type="radio"] {
    visibility: hidden;
    position: absolute;
}

.widget-size label {
    background: #f5f9fc;
    margin-bottom: 0;
    display: inline-block;
    height: 40px;
    min-width: 40px;
    text-align: center;
    font-size: 14px;
    color: #474a4b;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0.25rem;
    line-height: 40px;
}

.widget-size input[type="radio"]:checked+label {
    background: var(--main-color);
    color: #fff;
}

.widget-color li {
    list-style-type: none;
    display: inline-block;
    margin-right: 1%;
    margin-bottom: 20px;
    width: 22%;
    text-align: center;
}

.widget-color li:nth-child(4n+4) {
    margin-right: 0;
}

.widget-size li {
    list-style-type: none;
    display: inline-block;
    margin-bottom: 20px;
    width: 20%;
    text-align: center;
    float: left;
}

.widget-size li:nth-child(4n+4) {
    margin-right: 0;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    transform: scale(1.5);
    margin-left: 12px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--second-color);
    border-color: var(--main-color);
}

.widget-color .form-check-label {
    width: 26px;
    height: 26px !important;
    border-radius: 0.25rem;
    padding: 0 !important;
}

/* .form-check-input[type="radio"]:checked+label,
.form-check-input[type="radio"]:not(:checked)+label,
label.btn input[type="radio"]:checked+label,
label.btn input[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    height: 1.5625rem;
    line-height: 1.5625rem;
    transition: .28s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */
/* 
.form-check-input[type="radio"]+label::after,
.form-check-input[type="radio"]+label::before,
label.btn input[type="radio"]+label::after,
label.btn input[type="radio"]+label::before {
    content: '';
    position: absolute;
    right: -2px;
    top: -2px;
    width: 30px;
    height: 30px;
    z-index: 0;
    transition: .28s ease;
    border-radius: 0.25rem;
} */

/* .form-check-input[type="radio"]:checked+label::after,
label.btn input[type="radio"]:checked+label::after {
    transform: scale(2);
} */
/* 
.form-check-input[type="radio"]:checked+label::after {
    background-color: var(--main-color);
} */

input.form-product {
    -moz-appearance: textfield;
    height: 40px;
    border: none;
    background: #ffffff;
    text-align: center;
    width: 50px;
    border-top: 1px solid #eeeff7;
    border-bottom: 1px solid #eeeff7;
    color: #474a4b;
    vertical-align: middle;
}

.btn-product {
    background: none;
    color: #474a4b;
    border: 1px solid #eeeff7;
    height: 40px;
    width: auto;
    padding: 0 10px;
    font-size: 13px;
    cursor: pointer;
}

.view-filter a.active {
    color: var(--main-color);
}

.view-filter a {
    color: #474a4b;
    padding-right: 8px;
    display: inline-block;
    vertical-align: middle;
    font-size: 30px;
}

.cart-table thead th {
    padding: 20px;
    text-align: center;
    border: none;
    vertical-align: middle;
    color: #474a4b;
    font-size: 18px;
    font-weight: 500;
}

.cart-table td {
    padding: 10px;
    color: #474a4b;
    vertical-align: middle;
}

.cart-table img {
    height: 54px;
}

/* ------------------------
Countdown
------------------------*/
.countdown {
    width: 100%;
}

.countdown>li {
    font-weight: 600;
    list-style-type: none;
    display: flex;
    align-items: flex-end;
    margin-right: 20px;
}

.countdown>li span {
    font-family: 'Cairo', sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 34px;
    display: inline-block;
    color: #474a4b;
}

.countdown>li p {
    font-family: 'Cairo', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    display: block;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--main-color);
}

.countdown.text-white>li span {
    color: #ffffff
}

.coming-soon .countdown>li {
    background: #eeeff7;
    padding: 15px 20px 10px;
    border-radius: .25rem;
    align-items: center;
}

/* ------------------------
Other
------------------------*/
.clients-logo {
    background: #fff;
    /* border-left: 1px solid #ebebeb; */
    /* border-bottom: 1px solid #ebebeb; */
    padding: 0px 0px;
    width: calc(100% / 5);
}

.clients-logo:nth-child(4n+4) {
    border-left: none;
}

.clients-logo:nth-child(n+5) {
    border-bottom: none;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    color: var(--main-color);
    background-color: inherit;
}

.page-link {
    color: #474a4b
}

.page-item.active .page-link {
    background-color: var(--main-color);
}

.page-item a.page-link:hover {
    color: #ffffff !important;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.link-title {
    color: #474a4b
}

.link-title:hover {
    color: var(--main-color)
}

.line-h-0 {
    line-height: 0;
}

.la {
    line-height: inherit
}

.bg-dark hr,
.bg-primary hr {
    border-top-color: #eee7cd;
}


/* ------------------------
Insta
------------------------*/
.insta-item {
    position: relative;
    display: inline-block;
    height: 100%
}

.insta-item::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    content: "";
    opacity: 0;
    -webkit-transition: all .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.insta-item:hover::before {
    opacity: 1;
}

.insta-icon {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: auto;
    border-radius: 50%;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    opacity: 0;
    text-align: center;
    font-size: 30px;
    transform: scale(0);
    color: #ffffff
}

.insta-item:hover .insta-icon {
    opacity: 1;
    transform: scale(1);
}


/* ------------------------
Modal Popup
------------------------*/
.modal.cart-modal {
    padding-right: 0 !important;
}

.modal.cart-modal .modal-dialog {
    margin: 0 0 0 auto;
    height: 100%;
    max-width: 450px;
}

.modal.cart-modal .modal-content {
    border: none;
    border-radius: 0;
    height: inherit;
    overflow-y: auto;
}

.modal.cart-modal.fade .modal-dialog {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.modal.cart-modal.show .modal-dialog {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.modal.view-modal .modal-dialog {
    max-width: 1200px;
}

.modal.view-modal .modal-body {
    z-index: 9
}

#mailchimpModal.show {
    display: flex !important;
    align-items: center;
}

#mailchimpModal .modal-dialog {
    width: 700px;
    max-width: inherit;
}

#mailchimpModal .modal-body {
    padding: 3rem
}


/* ------------------------
    Accordion
------------------------*/
.accordion .card-header {
    background: none;
    border: none;
    position: relative;
    padding: 0;
}

.accordion .card-header a {
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    width: 100%;
}

.accordion .card-header a:before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    background: #f5f9fc;
    content: "\f107";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 0.7rem;
    top: 50%;
    position: absolute;
    left: 0;
    margin-top: -10px;
}

.sidebar .accordion .noSubmenue a:before {
    content: "";
    background: none;
}

.accordion .card .card-header a[aria-expanded="true"] {
    color: var(--main-color);
}

.sidebar .accordion .noSubmenue a[lnk-active="true"] {
    color: var(--main-color);
}

.accordion .card .card-header a[aria-expanded="true"]:before {
    background: var(--main-color);
    color: #ffffff;
    transform: rotate(180deg);
}

.accordion .card-body {
    padding: 15px;
    line-height: 2;
}

.accordion .card-body li a {
    font-size: 0.9rem;
    color: #474a4b
}

.green {
    color: var(--main-color);
}

footer .navbar-nav .nav-link {
    color: #ffffff;
}

footer .navbar-nav .nav-link:hover {
    color: #a9c3c4;
}

/* ------------------------
    Scroll to Top
------------------------*/
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 600;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -webkit-transform: translate3d(0, 200%, 0);
    -ms-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0);
}

.scroll-top a,
.scroll-top a:visited {
    font-size: 24px;
    color: #ffffff;
    background: var(--main-color);
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15);
    -moz-box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15);
    box-shadow: 0 10px 55px 5px rgba(140, 201, 103, .15);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.scroll-top a:hover,
.scroll-top a:focus {
    color: var(--main-color);
    background: #ffffff;
}

.scroll-top.scroll-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media (max-width:991.98px) {

    h1,
    .h1 {
        font-size: 50px;
        line-height: 60px;
    }

    h2,
    .h2 {
        font-size: 34px;
        line-height: 44px;
    }

    h3,
    .h3 {
        font-size: 26px;
        line-height: 36px;
    }

    h4,
    .h4 {
        font-size: 22px;
        line-height: 32px;
    }

    .cart-table .media {
        display: block;
    }

    .clients-logo {
        padding: 0px 0px;
    }

    .navbar-brand img {
        height: 100px;
    }
}

@media (max-width:767.98px) {

    h1,
    .h1 {
        font-size: 40px;
        line-height: 50px;
    }

    h2,
    .h2 {
        font-size: 30px;
        line-height: 40px;
    }

    h3,
    .h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .parallaxie {
        background-position: center center !important;
    }

    .bg-sm-none {
        background-image: none !important;
    }
}

@media (max-width:575.98px) {

    h1,
    .h1 {
        font-size: 36px;
        line-height: 46px;
    }

    h3,
    .h3 {
        font-size: 22px;
        line-height: 28px;
    }

    h4,
    .h4 {
        font-size: 20px;
        line-height: 26px;
    }

    h6,
    .h6 {
        font-size: 17px;
        line-height: 24px;
    }

    .navbar-brand img {
        height: 100px;
    }

    .right-nav a i {
        font-size: 20px;
    }

    .hero-circle {
        width: 270px;
        height: 270px;
    }

    .clients-logo {
        width: calc(100% / 2);
        /* border-bottom: 1px solid #ebebeb !important; */
    }

    .clients-logo:nth-child(n+7) {
        border-bottom: none !important;
    }

    .tab.mt-n15 {
        margin-top: 0 !important
    }

    .coming-soon .countdown>li {
        padding: 15px 10px 10px;
        margin-right: 10px;
    }

    .coming-soon .countdown>li span {
        font-size: 20px;
    }

    .bg-xs-none {
        background-image: none !important;
    }

    .pos-sm-r {
        position: relative;
        top: inherit;
        transform: inherit;
    }

    #mailchimpModal .modal-body {
        padding: 1rem;
    }
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--main-color);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    webkit-box-shadow: 0 0.5rem 1rem var(--main-color-shadow) !important;
    box-shadow: 0 0.5rem 1rem var(--main-color-shadow) !important;
}

#nav-tabContent .owl-carousel .owl-stage,
#product-slider .owl-carousel .owl-stage,
.testimonial .owl-carousel .owl-stage {
    display: flex;
}

#nav-tabContent .product-items,
#product-slider .product-items {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

#nav-tabContent .product-card,
#product-slider .product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#nav-tabContent .owl-carousel.owl-2 .owl-nav,
.testimonial .owl-carousel.owl-2 .owl-nav {
    top: inherit;
    bottom: -60px;
}

#product-slider .owl-carousel.owl-2 .owl-nav,
.testimonial .owl-carousel.owl-2 .owl-nav {
    top: inherit;
    bottom: -40px;
}

#nav-tabContent .owl-carousel.owl-2 .owl-nav button.owl-next,
#product-slider .owl-carousel.owl-2 .owl-nav button.owl-next,
.testimonial .owl-carousel.owl-2 .owl-nav button.owl-next {
    right: 50%;
}

#nav-tabContent .owl-carousel.owl-2 .owl-nav button.owl-prev,
#product-slider .owl-carousel.owl-2 .owl-nav button.owl-prev,
.testimonial .owl-carousel.owl-2 .owl-nav button.owl-prev {
    left: 50%;
}

#nav-tabContent .btn-all-prod,
#product-slider .btn-all-prod {
    margin-top: 39px;
    left: 88px;
    position: absolute;
}

#nav-tabContent .btn-all-prod .btn,
#product-slider .btn-all-prod .btn {
    padding: 0.25rem 1rem;
}

.footerLogo {
    height: 100px;
}

@media (max-width:575.98px) {

    #nav-tabContent .owl-carousel.owl-2 .owl-nav,
    #product-slider .owl-carousel.owl-2 .owl-nav {
        top: inherit;
        bottom: -20px;
    }

    #nav-tabContent .owl-carousel.owl-2 .owl-nav button.owl-next {
        right: 13%;
    }

    #nav-tabContent .owl-carousel.owl-2 .owl-nav button.owl-prev {
        left: 87%;
    }

    #nav-tabContent .btn-all-prod,
    #product-slider .btn-all-prod {
        margin-top: -1px;
        left: 30px;
        position: absolute;
    }

    .footerLogo {
        height: 100px;
    }
}

.payment i {
    color: #d7d7d7;
    font-size: 54px;
}

/* .owl-carousel.owl-2 .owl-nav button.owl-next{
    left: 17px;
    right: inherit;
}
.owl-carousel.owl-2 .owl-nav{
    top: -113px;
} */
.sidebar .active {
    /* background-color: rgba(140, 201, 103, .15); */
    padding-right: 8px;
}

.sidebar li .active a {
    color: var(--second-color);
}

.float {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #e9e9e9; */
    z-index: 100;
}

.float:hover {
    color: #fff;
}

.my-float {
    margin-top: 5px;
    position: absolute;
    left: 5px;
}

.cartpop img {
    height: 60px;
    padding: 0;
    margin: 0;
}

.cartpop a {
    font-size: 14px;
}

.cartpop button {
    border-radius: 50px;
    height: 27px;
    width: 27px;
    padding-right: 4px;
    padding-top: 3px;
}

.cartpop button:hover i {
    color: #000;
}

.cart-item :hover {
    background-color: #fafafa;
}

#suggestionsContainer {
    z-index: 100;
    background-color: #ffff;
    margin-top: 53px;
    width: 100%;
    max-height: 500px;
    overflow-y: scroll;
    box-shadow: 0 0.125rem 0.45rem rgba(0, 0, 0, .075) !important;
}

#suggestionsContainer a {
    margin-right: 10px;
    border-bottom: 1px solid #f1f1f1;
    line-height: 25px;
    font-size: 14px;
}

#suggestionsContainer a:hover {
    color: #000;
    background-color: #fafafa;
}

#suggestionsContainer img {
    border-radius: 9px;
    margin-left: 6px;
}

#suggestionsContainer span2 {
    line-height: 20px;
    background-color: #474a4b;
    color: #fff;
    border-radius: 6px;
    padding-left: 6px;
    padding-right: 6px;
    float: left;
    padding-bottom: 3px;
    font-weight: 700;
    margin-left: 13px;
    margin-top: 5px;
}

@media (min-width: 992px) {
    .sidebar .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: static;
    }
}

.sidebar .navbar-nav .nav-item.dropdown .dropdown-menu {
    min-width: auto;
}

.record-item {
    display: none;
}

/* .owl-carousel .center .card{
    background-color: rgba(140, 201, 103,0.1);
} */

.testimonial img {
    width: 38px;
    height: 38px;
    border: 1px solid #666666;
}

.testimonial p {
    font-size: 13px;
}

.asd button {
    border: 1px solid rgba(140, 201, 103, .15);
}

.dropdown-toggle::after {
    font-size: 0.9rem;
    margin-right: 0.355em;
    border: none;
    content: '';
}

@media all and (min-width: 992px) {
    #header-wrap .navbar .nav-item .dropdown-menu {
        display: none;
    }

    #header-wrap .navbar .nav-item:hover .nav-link {}

    #header-wrap .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    #header-wrap .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

input[type="checkbox"] {
    transform: scale(1.5);
    /* Adjust the scale as needed */
    -webkit-transform: scale(1.5);
    /* For Safari */
    -moz-transform: scale(1.5);
    /* For Firefox */
    -ms-transform: scale(1.5);
    /* For Internet Explorer */
    -o-transform: scale(1.5);
    /* For Opera */
    margin: 5px;
    /* Adjust the margin as needed */
}

.owl-carousel .owl-item.center {
    border-bottom: 1px solid var(--main-color);
}

.owl-carousel .owl-stage-outer {
    padding-bottom: 0;
}

.owl-carousel.owl-center .cloned {
    opacity: 0.1234;
}

.fade-image {
    object-fit: cover;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.5) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.5) 100%);
}

.px-xxl-10 {
    padding-left: 20rem;
    /* example for left padding */
    padding-right: 20rem;
    /* example for right padding */
}

.cs-border {
    border: 2px solid transparent;
    /* border-image: linear-gradient(45deg, #ec008c, #662e8e) 1;      */
    border-radius: 17px;
}

.gradient-text {
    background-image: linear-gradient(45deg, var(--main-color), var(--second-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    /* For non-webkit browsers */
}

.chCrr {
    font-size: 14px;
}

.products-panel {
    background-color: #a9c7bf;
    padding: 20px;
    border-radius: 25px;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.products-panel-details {
    background-color: #fff;
    padding: 10px;
    border-radius: 25px;
}

.products-panel-details img {
    border-radius: 20px;
    aspect-ratio: 3 / 4;
}


.products {
    padding: 60px 20px;
    background: #f8f9fb;
    font-family: Droid, Droid Arabic Kufi, sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
}



.section-products {
    padding: 20px 0 54px;
    background-color: #ebe6e0;
}

.section-products .header {
    margin-bottom: 50px;
    text-align: center;

}

.section-products .header h3 {
    font-size: 1rem;
    color: #5d7f80;
    font-weight: 500;
    text-align: center;
}

.section-products .header h2 {
    font-size: 1.5rem !important;
    font-weight: 400;
    color: #39635f;
    text-align: center;
}

.section-products .single-product {
    margin-bottom: 0px;


}

.section-products .single-product .part-1 {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.section-products .single-product .part-1::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s;
}

.section-products .single-product:hover .part-1::before {
    transform: scale(1.2, 1.2) rotate(5deg);
}

.section-products #product-1 .part-1::before {

    background-size: cover;
    transition: all 0.3s;
}


.section-products .single-product .part-1 .discount,
.section-products .single-product .part-1 .new {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #ffffff;
    background-color: #fe302f;
    padding: 2px 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.section-products .single-product .part-1 .new {
    left: 0;
    background-color: #444444;
}

.section-products .single-product .part-1 ul {
    position: absolute;
    bottom: -41px;
    left: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    transition: bottom 0.5s, opacity 0.5s;
}

.section-products .single-product:hover .part-1 ul {
    bottom: 30px;
    opacity: 1;
}

/* center action list inside product image */
.section-products .single-product .part-1 ul {
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
}
.section-products .single-product .part-1 ul li {
    margin-right: 0;
    padding: 0 4px;
}

.section-products .single-product .part-1 ul li {
    display: inline-block;
    margin-right: 4px;
}

.section-products .single-product .part-1 ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #ffffff;
    color: #444444;
    text-align: center;
    box-shadow: 0 2px 20px rgb(50 50 50 / 10%);
    transition: color 0.2s;
}

.section-products .single-product .part-1 ul li a:hover {
    color: #fe302f;
}
.part-2{
    padding-left: 10px;
    padding-right: 10px;
}

.section-products .single-product .part-2 .product-title {
    font-size: 14px !important;
    color: #3a635f;
    line-height: 1.5 !important;
    max-height: 3em; /* 2 lines x 1.5em */
    min-height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.section-products .single-product .part-2 h4 {
    display: inline-block;
    font-size: 1rem;
}

.section-products .fa {
    color: #8c2d1a;
    font-size: 1.8rem;
}


.section-products .single-product .part-2 .product-price {
    position: relative;
    padding: 0 0px;
    margin-right: 2px;
    color: #fff;
    background-color: #3a635f;
    border-radius: 25px;
    font-size: 1rem !important;
    padding: 1px;
    padding-right: 10px;
    padding-left: 10px;
}




.section-products .single-product .part-2 .product-discount {

    color: #8c2d1a;
    font-size: 13px !important;
    padding-right: 10px;

}

.section-products .single-product .part-2 .product-n-price {
    color: #3a635f;
    font-size: 1rem !important;
    font-weight: bold;
    text-decoration: line-through;
}

.img-responsive {
    display: block;
    height: auto;
    max-width: 100%;
}

.navbar-toggler:focus{
    box-shadow: none !important;
}
.icon-bar{
    display:block;width:22px;height:2px;background-color:#fff;margin:5px 0;
}

@media (max-width: 576px) {
    .products-panel {
        padding: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.page-content .nav-link{
    color: #3a635f;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-content .nav-link{
    color: #3a635f;
    text-decoration: none;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover{
    border-radius: 0px !important;
}