@import url(bootstrap.min.css);
@import url(bootstrap-grid.min.css);
@import url(animate.css);
@import url(all.css);
@import url(line-awesome.min.css);
@import url(owl.carousel.css);
@import url(jquery.mCustomScrollbar.min.css);
@import url(jquery.fancybox.css);
@import url(intlTelInput.css);
@import url(slick.css);
@import url(slick-theme.css);
@import url(odometer.css);
@import url(ion.rangeSlider.min.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;900&display=swap');

/* End Fonts */

:root {

    /* Primary Colors */
    --main-color: #9E7473;      /* اللون الأساسي – Buttons / Highlights */
    --dark-color: #4D3636;      /* داكن – Footer / Headers */

    /* Backgrounds */
    --bg-color: #F6F1F0;        /* خلفية عامة فاتحة جدًا */
    --bg-alt-color: #E7D7D6;    /* خلفية ثانوية */

    /* Text Colors */
    --text-color: #3A2A2A;      /* نص أساسي */
    --text-light: #7C5B5A;      /* نص ثانوي */

    /* Borders & Lines */
    --border-color: #D6C1BF;

    /* Accent & Hover */
    --accent-color: #B88987;    /* Hover / Active */
    --accent-dark: #755251;     /* Hover داكن */

    /* Status */
    --success-color: #6B8E7D;
    --error-color: #A54A4A;

}
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--main-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    color: inherit;
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: #fff;
    text-align: start;
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
    direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Cairo', sans-serif;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

section {
    position: relative;
}

p {
    margin: 0;
    color: #626262;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

.owl-carousel {
    direction: ltr;
}

html,
body {
    overflow-x: hidden;
}


/*** 

====================================================================
	Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    background-image: url(../images/waves-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}


/*** 

====================================================================
	Start Search Popup
====================================================================

***/


/*** 

====================================================================
	Start Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    line-height: 50px;
    cursor: pointer;
    color: #ffffff;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-inline-end: 30px;
    max-width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 20px 20px;
    /* text-align: left; */
}

.mobile-menu .nav-logo img {
    max-width: 200px;
    max-height: 55px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    width: 100%;
    visibility: visible;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: absolute;
    right: -400px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    border-radius: 0px;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    right: 0px;
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.mobile-menu .close-btn {
    position: absolute;
    left: 15px;
    top: 32px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 20px;
    color: #202020;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.mobile-menu .close-btn:hover {
    opacity: 0.50;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 15px;
    color: #404040;
    text-transform: capitalize;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: #111111;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #404040;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: block;
    background: var(--bg-color);
    height: 0;
    transition: all .5s;
    overflow: hidden;
}

.sticky-header .navbar-header {
    display: none;
}

.sticky-header .outer-box .nav-btn {
    position: relative;
    top: 4px;
    float: right;
    font-size: 22px;
    color: #000000;
    cursor: pointer;
    margin-top: 0px;
    margin-left: 30px;
}

.sticky-header .outer-box .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 28px;
    color: #000000;
    cursor: pointer;
    margin-left: 30px;
}

.sticky-header .outer-box .search-box-btn {
    color: #000000;
}

.sticky-header .outer-box {
    padding: 22px 0px;
}

.nav-outer2 .mobile-nav-toggler2 {
    position: relative;
    float: right;
    font-size: 30px;
    line-height: 50px;
    cursor: pointer;
    color: #ffffff;
    display: none;
}

.mobile-menu2 {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-inline-end: 30px;
    max-width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu2 .nav-logo2 {
    position: relative;
    padding: 20px 20px;
    /* text-align: left; */
}

.mobile-menu2 .nav-logo2 img {
    max-width: 200px;
    max-height: 55px;
}

.mobile-menu-visible2 {
    overflow: hidden;
}

.mobile-menu-visible2 .mobile-menu2 {
    visibility: visible;
}

.mobile-menu2 .menu-backdrop2 {
    position: fixed;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.mobile-menu-visible2 .mobile-menu2 .menu-backdrop2 {
    opacity: 1;
    width: 100%;
    visibility: visible;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu2 .menu-box2 {
    position: absolute;
    right: -400px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    border-radius: 0px;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu-visible2 .mobile-menu2 .menu-box2 {
    right: 0px;
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.mobile-menu2 .close-btn2 {
    position: absolute;
    left: 15px;
    top: 32px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 20px;
    color: #202020;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible2 .mobile-menu2 .close-btn2 {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.mobile-menu2 .close-btn2:hover {
    opacity: 0.50;
}

.mobile-menu2 .navigation2 {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu2 .navigation2 li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu2 .navigation2 li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu2 .navigation2 li>ul>li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu2 .navigation2 li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 15px;
    color: #404040;
    text-transform: capitalize;
}

.mobile-menu2 .navigation2 li:hover>a,
.mobile-menu2 .navigation2 li.current>a {
    color: #111111;
}

.mobile-menu2 .navigation2 li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #404040;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu2 .navigation2 li.dropdown .dropdown-btn:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu2 .navigation2 li>ul,
.mobile-menu2 .navigation2 li>ul>li>ul {
    display: block;
    background: var(--bg-color);
    height: 0;
    transition: all .5s;
    overflow: hidden;
}

.sticky-header2 .navbar-header2 {
    display: none;
}

.sticky-header2 .outer-box2 .nav-btn2 {
    position: relative;
    top: 4px;
    float: right;
    font-size: 22px;
    color: #000000;
    cursor: pointer;
    margin-top: 0px;
    margin-left: 30px;
}

.sticky-header2 .outer-box2 .mobile-nav-toggler2 {
    position: relative;
    float: right;
    font-size: 28px;
    color: #000000;
    cursor: pointer;
    margin-left: 30px;
}

.sticky-header2 .outer-box2 .search-box-btn2 {
    color: #000000;
}

.sticky-header2 .outer-box2 {
    padding: 22px 0px;
}


/*** 

====================================================================
	End Sidebar style
====================================================================

***/


/* Start Header-res */

.logo {
    display: flex;
    max-width: 155px;
    max-height: 65px;
}

.logo .icon-logo img {
    max-height: 100%;
}

.logo .text-logo {
    padding-inline-start: 15px;
}

.logo .text-logo h1 {
    margin: 0;
    font-size: 40px;
    font-family: 'neoBold';
    color: var(--main-color);
}

.logo-res {
    text-align: center;
    padding: 10px 0;
}
.logo-res .logo{
    margin: auto;
    display: block;
}
.menu-res {
    margin-right: -15px;
    margin-left: -15px;
    background: var(--main-color);
    display: flex;
    flex: 0 1;
    /*position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99;*/
    display: none;
}
/**********************************/
.header-res.sticky{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    background: rgb(255 255 255 / 90%);
}
.header-res.sticky .header-res-m{
    position: absolute;
}
.header-res.sticky .logo-res {
    padding: 0;
}
.header-res.sticky .logo {
    max-width: 144px;
    max-height: inherit;
}

/**********************************/
.menu-res .item {
    display: inline-flex;
    flex: auto;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    text-align: center;
}

.menu-res .item a,
.menu-res .item .search-box-btn.search-box-outer,
.menu-res .item .icon.flaticon-menu {
    font-size: 25px;
    padding: 10px;
    color: #fff;
    position: relative;
    display: table;
    margin: auto;
}

.menu-res .item .total-c {
    position: absolute;
    right: 0;
    top: 15px;
    width: 18px;
    height: 18px;
    background: var(--dark-color);
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 18px;
    -webkit-box-align: center;
}

.header-res {
    display: none;
}

.mobile-nav-toggler {
    display: flex;
    justify-content: center;
}

.mobile-nav-toggler .icon.flaticon-menu {
    width: 45px;
    height: 45px;
    background: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-size: 25px;
}

.header-res .row {
    align-items: center;
}

.menu-res ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* flex: 0 1; */
}

.menu-res ul li {
    flex: auto;
    width: 20%;
    display: inline-block;
    justify-content: center;
    text-align: center;
}
.menu-res ul li a.lang{
    color: #fff;
}
.menu-res .bg-menu {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.menu-res .bg-menu svg {
    width: 100%;
}

.menu-res .bg-menu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-res ul li.goHome a {
    width: 75px;
    height: 75px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
    transform: translateY(-4px);
}


/* End Header-res */


/* Start Header-top */

.header-top {
    padding: 20px 0;
    border-bottom: 1px #EFEFEF solid;
}

.header-top p {
    color: #3F4448;
    font-size: 14px;
}

.header-top p i {
    margin-inline-end: 5px;
    position: relative;
    top: 2px;
}

.menu-left-top {
    display: flex;
    justify-content: flex-end;
}

.menu-left-top ul {
    display: flex;
}

.menu-left-top ul li {
    margin-inline-start: 20px;
    position: relative;
}

.menu-left-top ul li a {
    color: #000000;
    font-size: 14px;
}

.menu-left-top ul li a i {
    margin-inline-end: 5px;
}

.menu-left-top ul li.menu-item-has-children::after {
    content: "\f107";
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    left: -19px;
    top: 2px;
}

.menu-left-top ul li .sub-menu {
    position: absolute;
    top: 100%;
    width: 100%;
    display: none;
    min-width: 100px;
    z-index: 999;
}

.menu-left-top ul li .sub-menu li {
    margin: 0;
    opacity: 0;
    transform-origin: bottom;
    animation: enter 0.2s ease forwards;
}

.menu-left-top ul li .sub-menu li a {
    padding: 5px 10px;
    display: block;
    background: var(--bg-color);
}

.menu-left-top ul li:hover .sub-menu {
    display: block;
}

.menu-left-top ul li .sub-menu li:nth-child(1) {
    animation-duration: 0.2s;
    animation-delay: 0s;
}

.menu-left-top ul li .sub-menu li:nth-child(2) {
    animation-duration: 0.3s;
    animation-delay: 0.1s;
}

.menu-left-top ul li .sub-menu li:nth-child(3) {
    animation-duration: 0.4s;
    animation-delay: 0.2s;
}

.menu-left-top ul li a:hover,
.menu-left-top ul li .sub-menu li a:hover {
    color: var(--main-color);
}

@keyframes enter {
    from {
        opacity: 0;
        transform: scaleY(0.98) translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.menu-right-t ul {
    display: flex;
    align-items: center;
}

.menu-right-t ul li {
    margin-inline-end: 20px;
}

.menu-right-t ul li a {
    color: #343332;
    font-size: 16px;
}

.menu-right-t ul li a:hover,
.menu-right-t ul li a:focus {
    color: var(--main-color);
}

.menu-left-top ul li a.lang {
    letter-spacing: 0.48px;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.links-left .item a .details h3 {
    letter-spacing: 0.42px;
    color: #000000;
    font-size: 14px;
    transition: all .5s;
}

.links-left .item .icon .total-c {
    width: 17px;
    height: 17px;
    background: var(--main-color);
    display: flex;
    border-radius: 50%;
    position: absolute;
    right: -5px;
    top: -2px;
    letter-spacing: 0.36px;
    color: #FFFFFF;
    font-size: 12px;
    justify-content: center;
    align-items: center;
}


/* End Header-top */

/* Start Header-med */

.header-med {
    padding: 12px 0;
    position: relative;
    z-index: 6;
}

/* Form */
.header-med .form-t form {
    position: relative;
    max-width: 220px; /* تحكم في عرض مربع البحث */
}

/* Input */
.header-med .form-t form input {
    width: 100%;
    height: 40px; /* تصغير المستطيل */
    padding: 0 12px;
    padding-inline-end: 38px; /* مساحة للأيقونة */
    font-size: 13px;
    background: #FBFBFB;
    border: 1px solid #EFEFEF;
    border-radius: 6px;
}

/* Button (Icon) */
.header-med .form-t form button {
    position: absolute;
    left: 6px; /* داخل المربع */
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 18px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/* Header Med */
.header-med {
    padding: 12px 0;
    position: relative;
    z-index: 6;
}

/* Search + Language wrapper */
.search-lang-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Search form */
.header-med .form-t {
    flex: 1;
}

.header-med .form-t form {
    position: relative;
    width: 100%;
}

/* Input */
.header-med .form-t form input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    padding-inline-end: 38px;
    font-size: 13px;
    background: #FBFBFB;
    border: 1px solid #EFEFEF;
    border-radius: 6px;
}

/* Search Icon */
.header-med .form-t form button {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Language */
.lang-switch .lang {
    font-size: 14px;
    color: var(--dark-color);
    font-weight: 500;
    white-space: nowrap;
    transition: .3s;
}

.lang-switch .lang:hover {
    color: var(--main-color);
}

/* Mobile */
@media (max-width: 768px) {
    .search-lang-wrap {
        flex-direction: column;
        gap: 8px;
    }

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

.links-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.links-left .item {
    margin-inline-start: 16px;
    position: relative;
}

.links-left .item a {
    display: flex;
    letter-spacing: 0.42px;
    color: #000000;
    align-items: center;
    font-size: 14px;
}

.links-left .item .icon {
    font-size: 20px;
    position: relative;
}

.links-left .item .details {
    width: calc(100% - 20px);
    padding-inline-start: 8px;
}

.links-left .item .details h3 {
    color: #3F4448;
    font-size: 16px;
    margin: 0;
}

.links-left .item .details span {
    color: #B3B8BE;
    font-size: 14px;
}

.header-med .row {
    align-items: center;
}

.links-left .item a:hover .icon {
    /* background: var(--main-color); */
    animation: 1s swing;
}

.links-left .item.user-group::after {
    content: "\f0d7";
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    left: 0;
    position: absolute;
    top: 6px;
}

.links-left .item.user-group .sub-menu {
    position: absolute;
    z-index: 6;
    min-width: 130px;
    top: 100%;
    display: none;
}

.links-left .item a.btn-user {
    padding-inline-end: 22px;
}

.links-left .item.user-group .sub-menu li {
    display: block;
    opacity: 0;
    transform-origin: bottom;
    animation: enter 0.2s ease forwards;
}

.links-left .item.user-group .sub-menu li a {
    padding: 8px 10px;
    display: block;
    font-size: 12px;
    background: var(--bg-color);
}

.links-left .item.user-group .sub-menu li:nth-child(1) {
    animation-duration: 1s;
    animation-delay: 0s;
}

.links-left .item.user-group .sub-menu li:nth-child(2) {
    animation-duration: 0.3s;
    animation-delay: 0.1s;
}

.links-left .item.user-group .sub-menu li:nth-child(3) {
    animation-duration: 0.4s;
    animation-delay: 0.2s;
}

.links-left .item.user-group:hover .sub-menu {
    display: block;
}

.links-left .item.user-group .sub-menu li a:hover,
.links-left .item.user-group .sub-menu li a:focus {
    color: var(--main-color);
    background: #fff;
}

.links-left .item a:hover .details h3 {
    color: var(--main-color);
}


/* End Header-med */


/* Start Header-bottom */

.header-bottom {
    background: var(--bg-color);
}

.header-bottom .nav-menu ul {
    display: flex;
    justify-content: center;
    flex: 0 1;
}

.header-bottom .nav-menu ul li {
    flex: auto;
    display: inline-flex;
    padding: 0 5px;
}

.header-bottom .nav-menu ul li a {
    padding: 15px 0;
    color: var(--dark-color);
    font-size: 16px;
}

.header-bottom .nav-menu ul li:first-child {
    padding-inline-start: 0;
}

.header-bottom .nav-menu ul li:last-child {
    padding-inline-end: 0;
}

.header-bottom .nav-menu ul li a:hover {
    color: var(--main-color);
    animation: 1s rubberBand;
}

.header-bottom .nav-menu ul li.current-menu-item a {
    color: var(--main-color);
}


/* End Header-bottom */


/* Start Home-slider */

.banner-home,
.banner-home .home-slider,
.banner-home .home-slider .row {
    min-height: 516px;
}

.home-slider .img-overlay {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.home-slider .img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 40s ease;
}

.home-slider .active .img-overlay img {
    transform: scale(1.5) translate(20px, 20px);
}

.home-slider .owl-item {
    overflow: hidden;
}

.banner-home .home-slider .row {
    align-items: center;
}

.banner-home .home-slider .text-banner {
    max-width: 540px;
    margin: 0;
}

.banner-home .home-slider .text-banner h1 {
    opacity: 0;
    font-size: 39px;
    color: #fff;
    line-height: 59px;
    transition: all .5s;
    font-weight: bold;
    margin: 0;
}

.banner-home .home-slider .active .text-banner h1 {
    opacity: 1;
    animation-name: flipInX;
    animation-delay: 0.2s;
    animation-duration: .5s;
}

.home-slider.owl-carousel .owl-nav {
    position: absolute;
    z-index: 5;
    bottom: 0;
    right: auto;
    left: 0 !important;
    margin: 0 !important;
    display: flex;
    top: auto;
}

.home-slider.owl-carousel .owl-nav .owl-prev,
.home-slider.owl-carousel .owl-nav .owl-next {
    font-size: 24px;
    position: relative;
    background: #fff !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: 82px;
    height: 61px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 39px;
    transition: all .5s;
}

.home-slider.owl-carousel .owl-nav .owl-prev {
    left: 0;
    border-inline-end: 1px #eee solid !important;
}

.home-slider.owl-carousel .owl-nav .owl-next {
    right: 0;
}

.home-slider .owl-dots {
    position: absolute;
    z-index: 5;
    right: 0;
    left: 0;
    bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-slider .owl-dots .owl-dot span {
    display: block;
    transition: all .5s;
    width: 28px;
    height: 6px;
    background: #707070;
}

.home-slider .owl-dots .owl-dot {
    margin: 0 3px;
}

.home-slider .owl-dots .owl-dot.active span {
    width: 53px;
    height: 6px;
    background: #FFFFFF;
}

.home-slider .container {
    direction: rtl;
}

.banner-home .home-slider .text-banner p {
    margin: 30px 0;
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    opacity: 0;
    transition: all .5s;
    right: -150%;
    position: relative;
}

.banner-home .home-slider .text-banner .btn {
    transition: all .5s;
    min-width: 168px;
    min-height: 64px;
    background: var(--main-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    font-size: 17px;
    color: #fff;
    opacity: 0;
    font-weight: bold;
    right: -150%;
    position: relative;
}

.text-banner .btn:hover,
.text-banner .btn:focus {
    background: var(--dark-color) !important;
    color: #fff !important;
    outline: none !important;
}

.banner-home .home-slider .active .text-banner p {
    animation: slideRight 0.75s 1s ease 1 forwards;
    opacity: 1;
    transform: none;
}

.banner-home .home-slider .active .text-banner .btn {
    animation: slideRight 0.75s 1.5s ease 1 forwards;
    opacity: 1;
    transform: none;
}

@keyframes slideRight {
    0% {
        opacity: 0;
        right: -150%;
    }
    100% {
        opacity: 1;
        right: 0;
    }
}

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


/* End Home-slider */


/* Start Categories-h */

.categories-h {
    padding: 60px 0;
}

.title {
    /* display: flex; */
    margin: 0 0 40px;
}

.title h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.title h3::after {
    content: "";
    width: 82%;
    border-bottom: 1px #eee solid;
    display: flex;
    margin-inline-start: auto;
}

a.cat-block.block-big {
    height: 602px;
}

.cat-block {
    box-shadow: 0px 5px 46px #FFFFFF;
    height: 293px;
    overflow: hidden;
    position: relative;
    display: block;
    margin: 16px 0;
}

.cat-block .img-block {
    width: 100%;
    height: 100%;
    position: relative;
}

.cat-block .img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cat-block .img-block::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(359deg, #5E5C5A 0%, #77767600 100%) 0% 0% no-repeat padding-box;
}

.cat-block .details {
    position: absolute;
    bottom: 0;
    z-index: 2;
    right: 0;
    left: 0;
    padding: 30px;
}

.cat-block .details .name {
    font-size: 25px;
    letter-spacing: 0.75px;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0;
}

.cat-block .details p {
    letter-spacing: 0.48px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    margin: 15px 0;
    max-height: 30px;
    overflow: hidden;
    height: 0;
    transform: translateY(100%);
}

.btn {
    min-width: 132px;
    min-height: 48px;
    background: var(--main-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    outline: none !important;
    box-shadow: none !important;
    transition: all .5s;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}

.btn:hover,
.btn:focus {
    background: var(--dark-color) !important;
    color: #fff !important;
}

.cat-block .details .hover-box {
    opacity: 0;
    height: 0;
    transition: all .5s;
}

.cat-block:hover .details .hover-box {
    transform: none;
    height: 100px;
    opacity: 1;
}

.cat-block .details .hover-box .btn {
    height: 0;
    transform: translateY(100%);
    opacity: 0;
    min-height: 0;
    margin: 0;
}

.cat-block:hover .details p {
    height: auto;
    transform: none;
}

.cat-block:hover .details .hover-box .btn {
    min-height: 48px;
    height: auto;
    transform: none;
    opacity: 1;
}

.cat-block.block-big .details .hover-box p {
    height: 30px;
    transform: none;
}

.cat-block.block-big .details .hover-box .btn {
    transform: none;
    opacity: 1;
    min-height: 48px;
}


/* End Categories-h */


/* Start Best-seller */

.big-banner {
    height: 413px;
    position: relative;
}

.big-banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.big-banner a .img {
    width: 100%;
    height: 100%;
    position: relative;
}

.big-banner a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.big-banner .details {
    position: absolute;
    z-index: 3;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    height: 50%;
    text-align: center;
}

.big-banner a .img::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgb(13 14 16 / 40%), transparent);
}

.big-banner .details a {
    height: auto;
    display: inline-flex;
    width: auto;
}

.big-banner .details h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.btn.btn-sec {
    min-width: 104px;
    min-height: 35px;
    background: #fff;
    color: var(--main-color);
}

.big-banner .details .btn.btn-sec {
    margin: 25px 0 0;
    color: var(--main-color);
    font-size: 14px;
}

.big-banner .details .btn.btn-sec {
    color: var(--main-color);
    font-size: 14px;
}

.seller-slider .item {
    padding: 0 10px;
    direction: rtl;
    height: 365px;
}

.pro-block {
    margin: 15px 0;
    box-shadow: 0px 3px 16px #F0F0F0;
    background: #fff;
    height: 283px;
    text-align: center;
    transition: all .5s;
        border: 1px solid #e2e2e2;
}

.pro-block .img-block {
    height: 164px;
    position: relative;
}

.pro-block .img-block .img {
    display: block;
    width: 100%;
    height: 100%;
}

.pro-block .img-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pro-block .img-block .fav-btn {
    /* position: absolute; */
    left: 0;
    top: 0;
    margin: 10px;
    width: 26px;
    height: 26px;
    background: #fff;
    box-shadow: 0px 0px 2px #FFD39C;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 26px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 50%;
    color: var(--main-color);
    font-size: 16px;
    cursor: pointer;
}

.pro-block .img-block .fav-btn:hover,
.pro-block .img-block .fav-btn:focus {
    background: var(--main-color);
    color: #fff;
}

.pro-block .img-block .cart-btn {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 54px;
    height: 54px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 25px;
    color: #fff;
    margin-bottom: -27px;
    cursor: pointer;
}

.pro-block .img-block .cart-btn:hover,
.pro-block .img-block .cart-btn:focus {
    background: var(--dark-color);
    color: #fff;
}

.pro-block:hover .img-block .cart-btn {
    animation: 1s bounce;
}

.pro-block .details {
    padding: 35px 16px 20px;
    transition: all .5s;
    overflow: hidden;
}

.pro-block .details .name {
    letter-spacing: 0.48px;
    color: #000000;
    font-size: 16px;
    line-height: 30px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro-block .details .price-h {
    margin: 5px 0 14px;
}

.pro-block .details .price-h span {
    /* letter-spacing: 0.48px; */
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

.pro-block .details .btn-car-in {
    transform: translateY(100%);
    height: 0;
    opacity: 0;
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-block:hover .details .btn-car-in {
    height: 35px;
    transform: none;
    opacity: 1;
}

.pro-block .details .btn-car-in .btn {
    min-width: 84px;
    min-height: 35px;
    font-size: 14px;
}

.pro-block:hover {
    height: auto;
}

.pro-block:hover .details {
    /* height: 221px; */
}

.owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    top: 162px;
    left: 0;
    right: 0;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    width: 24px;
    height: 33px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #95919129;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: var(--main-color);
    position: absolute;
    transition: all .5s;
}

.owl-carousel .owl-nav .owl-prev {
    left: 0;
}

.owl-carousel .owl-nav .owl-next {
    right: 0;
}

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


/* End Best-seller */


/* Start Clients-say */

.best-offer {
    padding: 60px 0;
}

.overlay-img {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay-img::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.85;
}

.client-say {
    padding: 80px 0 100px;
}

.clientSay-block {
    display: flex;
    direction: rtl;
    border: 5px solid rgb(112 112 112 / 30%);
    padding: 45px;
    align-items: center;
}

.clientSay-block .img-block {
    width: 100px;
    text-align: center;
}

.clientSay-block .img-block .img {
    width: 84px;
    height: 84px;
    border: 1px solid #707070;
    border-radius: 50%;
    overflow: hidden;
}

.clientSay-block .img-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.clientSay-block .img-block h3 {
    letter-spacing: 0.54px;
    font-size: 18px;
    color: #fff;
}

.clientSay-block .comment-c {
    width: calc(100% - 150px);
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.clientSay-block .comment-c p {
    color: #C8BEBE;
    font-size: 16px;
    line-height: 30px;
}

.clientSay-block .comment-c p::before,
.clientSay-block .comment-c p::after {
    content: "\f10e";
    position: absolute;
    right: -40px;
    top: -20px;
    font-family: 'Line Awesome Free';
    font-weight: bold;
    font-size: 55px;
    color: var(--main-color);
    letter-spacing: 1.65px;
}

.clientSay-block .comment-c p::after {
    right: auto;
    left: -40px;
    top: auto;
    bottom: -20px;
    transform: scale(-1);
}

.clientSay-slider .owl-dots {
    position: absolute;
    bottom: -50px;
    right: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clientSay-slider .owl-dots .owl-dot {
    margin: 0 2px;
}

.owl-dots .owl-dot span {
    width: 28px;
    height: 6px;
    background: #7A7878;
    transition: all .5s;
    display: block;
}

.owl-dots .owl-dot.active span {
    width: 53px;
    background: var(--main-color);
}


/* End Clients-say */


/* Start Selected-items */

.selected-items {
    padding: 80px 0 30px;
}

.selected-slider .item {
    height: 334px;
    padding: 0 10px;
    direction: rtl;
}


/* End Selected-items */


/* Start Banners-h */

.banners-h {
    padding: 0 0 60px;
}

.banner-block {
    height: 297px;
    overflow: hidden;
    position: relative;
    margin: 15px 0;
}

.banner-block a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-block a .img {
    width: 100%;
    height: 100%;
}

.banner-block a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-block .details {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    display: flex;
    padding: 20px;
    align-items: flex-start;
}

.banner-block a .img::after {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(294deg, #7B7B7B, #80808008);
    right: 0;
    position: absolute;
    opacity: .4;
}

.banner-block .details .title-b {
    width: 225px;
    min-height: 46px;
    background: #FFFFFF;
    letter-spacing: 0.54px;
    color: #060303;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 0;
}

.banner-block .details .disc-h {
    display: flex;
    margin-inline-start: auto;
    box-shadow: 0px 3px 6px #00000029;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    border-radius: 50%;
    letter-spacing: 0.96px;
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    transition: all .5s;
}

.banner-block:hover .details .disc-h {
    background: #343332;
}

.selected-slider .item .pro-block {
    margin: 0;
}


/* End Banners-h */


/* Start Footer */

footer {
    background: #4D3636;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-top .logo img {
    filter: brightness(0) invert(1);
}

.footer-top .footer-col p {
    color: #D1D1D1;
    font-size: 14px;
    line-height: 25px;
    max-height: 77px;
    overflow: hidden;
    margin: 30px 0 0;
}

.footer-col h3 {
    margin: 0 0 20px;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 37px;
}

.footer-col ul li a {
    display: block;
    margin: 10px 0;
    color: #D1D1D1;
    font-size: 15px;
    line-height: 29px;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus {
    color: var(--main-color);
}

.footer-col ul li a i {
    font-size: 16px;
    width: 16px;
    margin-inline-end: 5px;
}

.footer-col ul li a u {
    text-decoration: none;
    direction: ltr;
    display: inline-block;
}

.footer-col ul li a b {
    font-weight: normal;
}

.footer-col .social-f {
    display: flex;
    margin: 20px 0 0;
}

.footer-col .social-f a {
    margin-inline-end: 20px;
    font-size: 16px;
}

.footer-col .social-f a i {
    color: #E8E5E5;
    transition: all .5s;
}

.footer-col .social-f a:hover i {
    color: var(--main-color);
}

.footer-col .social-f a:hover i.fab.fa-facebook-f {
    color: #4064ac;
}

.footer-col .social-f a:hover i.fab.fa-youtube {
    color: #f00;
}

.footer-col .social-f a:hover i.fab.fa-twitter {
    color: #16BDD8;
}

.footer-bottom .container {
    border-top: 1px solid rgb(209 209 209 / 20%);
}

.footer-bottom .row {
    align-items: center;
}

.copy-right p {
    color: #D1D1D1;
    font-size: 14px;
}

.footer-bottom .ryad-logo {
    float: left;
}


/* End Footer */


/* Start About-page */

.breadcrumb {
    padding: 0;
    margin: 0;
    min-height: 179px;
}

.breadcrumb .overlay-img::after {
    opacity: 0;
}

.container {
    position: relative;
    z-index: 2;
}

.breadcrumb .row {
    height: 100%;
    align-items: center;
}

.breadcrumb h3 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.body-inner {
    padding: 80px 0;
}

.about-page .col-md-7.col-sm-12 {
    padding-inline-end: 0;
}

.about-page .col-md-5.col-sm-12 {
    padding-inline-start: 0;
}

.text-about {
    min-height: 321px;
    background: #fff;
    box-shadow: 0px 3px 26px #A4A0A029;
    padding: 30px;
}

.text-about h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin: 0;
}

.text-about p {
    margin: 20px 0 0;
    color: #707070;
    font-size: 16px;
    line-height: 26px;
}

.img-about {
    height: 399px;
    position: relative;
}

.img-about .img {
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 2;
}

.img-about .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-about::after {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 382px;
    height: 305px;
    background: var(--main-color);
}

.img-about::before {
    content: "";
    position: absolute;
    left: -65px;
    bottom: -65px;
    width: 180px;
    height: 180px;
    background: url(../images/after.png);
}

.about-page .row:nth-child(even) {
    margin-top: 70px;
    margin-bottom: 70px;
    flex-direction: row-reverse;
}

.about-page .row:nth-child(even) .col-md-5.col-sm-12 {
    padding-inline-start: 15px;
    padding-inline-end: 0;
}

.about-page .row:nth-child(even) .img-about::before {
    left: auto;
    right: -65px;
}

.about-page .row:nth-child(even) .img-about::after {
    left: auto;
    right: -20px;
}

.about-page .row:nth-child(even) .col-md-7.col-sm-12 {
    padding-inline-end: 15px;
    padding-inline-start: 0;
}

.about-page .row {
    align-items: center;
}

.text-about ul li {
    margin: 10px 0;
    padding-inline-start: 25px;
    position: relative;
    color: #707070;
    font-size: 16px;
    line-height: 26px;
}

.text-about ul li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    background: #343332;
    border-radius: 50%;
}

.vision-h {
    padding: 80px 0;
}

.vis-block {
    margin: 15px 0;
}

.vis-block .icon {
    display: flex;
    align-items: center;
}

.vis-block .icon .img {
    width: 52px;
    height: 52px;
}

.vis-block .icon .title-block {
    width: calc(100% - 52px);
    padding-inline-start: 20px;
}

.vis-block .icon .img img {
    max-height: 100%;
    filter: invert(69%) sepia(34%) saturate(3733%) hue-rotate(344deg) brightness(103%) contrast(103%);
}

.vis-block .icon .title-block h3 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.vis-block .details {
    padding: 25px 0 0;
}

.vis-block .details p {
    color: #B9B8B8;
    font-size: 16px;
    line-height: 26px;
}

.partners-inner {
    padding: 80px 0;
}

.title-part {
    margin: 0 0 50px;
}

.title-part h3 {
    margin: 0;
    color: #343332;
    font-size: 20px;
    font-weight: bold;
}

.part-block {
    margin: 15px 0;
}

.part-block .img img {
    max-height: 63px;
    max-width: 112px;
}

.part-block .img {
    display: flex;
    align-items: center;
}


/* End About-page */


/* Start Archive-page */

.checkBox input[type="checkbox"] {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkBox label {
    position: relative;
    cursor: pointer;
}

.checkBox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid var(--main-color);
    border: 1px solid #707070;
    padding: 0px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-inline-end: 5px;
    width: 14px;
    height: 14px;
}

.checkBox input[type="checkbox"]:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    right: 5px;
    width: 4px;
    height: 9px;
    border: solid var(--main-color);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.side-archive .card {
    border: none;
}

.side-archive .card .card-header {
    padding: 0;
    background: transparent;
    border: none;
}

.side-archive .card .card-header .btn.btn-link {
    width: 100%;
    text-align: start;
    justify-content: start;
    border-radius: 0;
    padding: 0;
    position: relative;
    min-height: auto;
    background: transparent !important;
    color: #343332 !important;
    font-size: 16px;
    font-weight: bold;
    padding: 0 20px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

.side-archive .card .card-header .btn.btn-link::before {
    content: "\f107";
    position: absolute;
    right: 0;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 20px;
    color: var(--main-color);
    top: 0;
}

.side-archive .card .card-header .btn.btn-link::after {
    content: "\f00d";
    position: absolute;
    left: 0;
    top: 4px;
    font-family: 'Line Awesome Free';
    color: #A8A8A8;
    font-size: 13px;
}

.side-archive .card .card-body {
    padding: 15px 0;
}

.side-archive .card .card-body ul li a {
    display: block;
    color: #343332;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 0;
    border-bottom: 1px #eee solid;
}

.side-archive .card .card-body ul li:last-child a {
    border: none;
    padding-bottom: 0;
}

.side-archive .card .card-body ul li a:hover,
.side-archive .card .card-body ul li.active a,
.side-archive .card .card-body ul li a.active {
    color: var(--main-color);
}

.checkBox .form-group {
    margin: 10px 0;
}

.checkBox .form-group label {
    width: 100%;
    margin: 0;
    font-size: 16px;
    color: #343332;
}

.checkBox .form-group:nth-child(1) {
    margin-top: 0;
}

.checkBox .form-group:last-child {
    margin-bottom: 0;
}

.side-archive .card .card-body ul li:nth-child(1) a {
    padding-top: 0;
}

.irs--round .irs-grid {
    display: none;
}

.irs--round .irs-line {
    background: var(--bg-color);
}

.irs--round .irs-handle {
    width: 10px;
    height: 10px;
    background: #fff;
    box-shadow: 0px 3px 10px #00000029;
    border: none;
    top: 32px;
}

.rangeInput {
    direction: ltr;
}

.irs--round .irs-bar {
    background: var(--main-color);
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    background: transparent;
    color: #343332;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
    opacity: 0;
}


/* End Archive-page */


/* Start Products-page */

.products-page .pro-archive .item-col {
    max-width: 20%;
    flex: 0 0 20%;
    padding: 0 15px 0;
}


/* End Products-page */


/* Start Faq-page */

.faq-text {
    max-width: 1088px;
}

.faq-text h3 {
    margin: 0;
    font-size: 23px;
    color: #000000;
    font-weight: 600;
}

.faq-text p {
    color: #707070;
    font-size: 16px;
    margin: 25px 0;
    line-height: 30px;
    font-weight: 300;
}


/* End Faq-page */


/* Start Contact-page */

.contact-block {
    max-width: 292px;
    height: 181px;
    background: #FFF;
    box-shadow: 2px 3px 36px #CCCCCC29;
    display: flex;
    flex-direction: column;
    padding: 35px;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    transition: all .5s;
}

.head-contact {
    margin-bottom: 50px;
}

.head-contact .col-md-4.col-sm-12:nth-child(1) .contact-block {
    margin-inline-end: auto;
}

.head-contact .col-md-4.col-sm-12:nth-child(2) .contact-block {
    margin: 15px auto;
}

.head-contact .col-md-4.col-sm-12:nth-child(3) .contact-block {
    margin-inline-start: auto;
}

.contact-block .icon {
    height: 30px;
}

.contact-block .icon i {
    font-size: 30px;
    color: var(--main-color);
    transition: all .5s;
}

.contact-block .details {
    padding: 20px 0 0;
}

.contact-block .details h3 {
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    transition: all .5s;
}

.contact-block .details p {
    color: #7E7E7E;
    font-size: 16px;
    line-height: 30px;
    transition: all .5s;
}

.contact-block .details p span {
    display: block;
    direction: ltr;
}

.contact-block:hover {
    background: var(--main-color);
}

.contact-block:hover .icon i,
.contact-block:hover .details h3,
.contact-block:hover .details p {
    color: #fff;
}

.map-cont {
    height: 641px;
}

.form-contact .form-group {
    margin: 0 0 20px;
}

.form-group label {
    margin: 0 0 12px;
    color: #333333;
    font-size: 16px;
}

.form-group .form-control {
    width: 100%;
    height: 54px;
    background: #EFEFEF;
    border: 1px transparent solid;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0;
    padding: 0 20px;
    transition: all .5s;
    font-size: 16px;
}

.form-group .iti {
    display: block;
}

.form-group .iti .iti__selected-flag {
    background: none;
    color: #7E7E7E;
    font-size: 16px;
    font-weight: 300;
}

.form-group .iti .iti__selected-flag .iti__flag.iti__sa {
    display: none;
}

.form-group .iti .iti__selected-flag .iti__arrow {
    border-top-color: #7E7E7E;
}

.iti__country-list {
    right: auto;
    left: 0;
}

.form-group textarea.form-control {
    height: 201px;
    padding: 20px;
}

.btn-form {
    cursor: pointer;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 2px;
    min-width: 168px;
    min-height: 48px;
    background: var(--main-color);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.btn-form:hover,
.btn-form:focus {
    background: var(--dark-color);
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel],
.iti--allow-dropdown input[type=text],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=tel],
.iti--separate-dial-code input[type=text] {
    padding-inline-start: 20px;
}

.form-group .form-control:focus {
    border-color: var(--main-color);
    background: #fff;
}

.form-group .form-control::placeholder {
    color: #7E7E7E;
    transition: all .5s;
}

.form-group .form-control:focus::placeholder {
    transform: translateX(-15px);
    opacity: 0;
}

.contact-block {
    margin: 15px auto !important;
}

.head-contact {
    margin-bottom: 30px;
}

.form-group .form-control {
    font-size: 13px;
}

.contact-page .map-cont {
    height: 100%;
}


/* End Contact-page */

.woocommerce-product-gallery__image {
    max-height: 400px;
    height: 400px;
}

.woocommerce-product-gallery__image a {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.woocommerce-product-gallery__image a img {
    max-height: 100%;
}

.woocommerce div.product .product_title {
    font-size: 30px;
    /*font-family: 'neoMed';*/
}

.woocommerce div.product div.summary .price-container {
    display: flex;
    align-items: center;
}

.woocommerce div.product div.summary .price-container .price {
    font-size: 16px;
    margin-inline-end: 10px;
    color: var(--main-color) !important;
}

.woocommerce div.product div.summary .price-container .price del {
    color: #999;
    font-size: 14px;
}

.woocommerce div.product div.summary .price-container .price ins {
    text-decoration: none;
}

.woocommerce div.product div.summary .stock.in-stock {
    margin: 10px 0;
    color: #666;
    font-size: 16px;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background: var(--main-color) !important;
    color: #fff !important;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background: var(--dark-color) !important;
    color: #fff !important;
}

.woocommerce div.product .woocommerce-product-rating .star-rating span, .woocommerce .star-rating span, .woocommerce p.stars:hover a::before {color: #efcb0a;}

.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
    color: #666;
    font-size: 13px;
    margin-inline-start: 5px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    border: none !important;
    padding: 0;
    margin: 0;
}


.woocommerce div.product .woocommerce-tabs ul.tabs li{
    border: 0;
    background-color: #fff;
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 0;
    margin: 0;
    padding: 0 1em;
    color: #000;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{
   color: #666; 
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border: none;
    background: var(--main-color);
    border-radius: 0 !important;
    border: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0 !important;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px #f1f1f1 solid;
    border-top-right-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 20px;
    /*font-family: 'neoBold';*/
    color: var(--main-color);
    margin: 20px 0;
}

.woocommerce div.product .woocommerce-tabs .panel p {
    font-size: 18px;
    color: #666;
    line-height: 28px;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.comment-respond span {
    font-size: 16px;
    margin: 10px 0 0px;
    display: inline-block;
}

.comment-respond .nice-select, .comment-respond input, .comment-respond select, .comment-respond textarea {
    display: block;
    width: 100%;
    height: 50px;
    border: 1px #ccc solid;
    line-height: normal;
    color: #333;
    padding: 0 20px;
    border-radius: 8px;
}

.comment-respond .nice-select {
    line-height: 50px;
}

.comment-respond .nice-select .current {
    margin: 0;
}

.woocommerce #review_form #respond p.comment-form-author, .woocommerce #review_form #respond p.comment-form-email {
    /* display: inline-flex; */
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 10px;
}

#commentform {
    display: flex;
    flex-wrap: wrap;
}

#commentform p, .woocommerce #review_form #respond .comment-form-rating {
    max-width: 100%;
    flex: 0 0 100%;
}

.woocommerce #review_form #respond p.comment-form-author {
    padding-inline-start: 0;
}

.woocommerce #review_form #respond p.comment-form-email {
    padding-inline-end: 0;
}

.woocommerce #review_form #respond p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.woocommerce #review_form #respond label {
    display: block;
    font-size: 15px;
}

.woocommerce #review_form #respond .comment-form-cookies-consent input {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.woocommerce #review_form #respond .comment-form-cookies-consent label {
    display: inline-block;
    margin: 0;
    margin-inline-start: 10px;
}

.woocommerce #review_form #respond .comment-form-cookies-consent {
    display: flex;
    align-items: center;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    width: auto;
    background: var(--main-color);
    padding: 0 20px;
    line-height: 40px;
    height: 40px;
    color: #fff !important;
    min-width: 120px;
    transition: all .5s;
    padding: 0 20px !important;
    font-size: 16px !important;
    text-align: center;
}

.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
    background: var(--dark-color);
    color: #fff;
}

.related-pro {
    padding: 50px 0;
}

.woocommerce #reviews #comments ol.commentlist {
    padding: 0;
}

.menu-res .item a .total-cart {
    top: 0;
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    background: var(--dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-top: 15px;
}

.woocommerce-info {
    border-color: var(--main-color);
}

.woocommerce-info::before {
    color: var(--main-color);
}

.pro-block .details .added_to_cart.wc-forward {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--dark-color);
    border-radius: 4px;
    min-height: 35px;
    padding: 0 7px;
    color: #fff;
    font-size: 12px;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    margin-top: 0;
    margin-inline-start: 5px;
}

.category-page.body-inner {
    background: #fff;
}

#add_payment_method table.cart th, .woocommerce-cart table.cart th, .woocommerce-checkout table.cart th {color: var(--main-color);text-align: center;padding: 12px;font-size: 17px;}

#add_payment_method table.cart td, .woocommerce-cart table.cart td, .woocommerce-checkout table.cart td, #add_payment_method table.cart td a, .woocommerce-cart table.cart td a, .woocommerce-checkout table.cart td a {
    text-align: center;
    font-size: 16px;
    color: #888;
}

.woocommerce .quantity .qty {
    min-width: 100px;
    text-align: center;
    border: 1px #ccc solid;
    border-radius: 5px;
    min-height: 35px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    min-width: 60%;
    padding: 0 20px;
    line-height: normal;
    border-radius: 5px;
    border: 1px #ccc solid;
}

.woocommerce table.cart td.actions .coupon {
    width: 50%;
    display: flex;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    margin: 30px 0 0;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals h2 {
    font-size: 20px;
    color: var(--main-color);
    margin: 0 0 20px;
}

.woocommerce-page .cart-collaterals .cart_totals .shop_table.shop_table_responsive {border-color: #eee;}

.woocommerce-page .cart-collaterals .cart_totals .shop_table.shop_table_responsive tr th, .woocommerce-page .cart-collaterals .cart_totals .shop_table.shop_table_responsive tr td {
    font-size: 15px;
    color: #333;
}

#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    max-width: 50% !important;
    width: 100%;
}

.woocommerce-billing-fields, .woocommerce-additional-fields {
    border: 1px #f1f1f1 solid;
    padding: 25px;
}

.woocommerce-billing-fields h3, .woocommerce-additional-fields h3 {
    font-size: 24px;
    color: var(--main-color);
    margin: 0 0 20px;
}

span.woocommerce-input-wrapper {
    width: 100%;
}

.woocommerce form .form-row {
    margin: 15px 0;
}

.woocommerce form .form-row label {
    font-size: 15px;
    color: #777;
    text-decoration-skip-ink: none;
}

.woocommerce form .form-row input, .woocommerce form .form-row select, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single {
    width: 100% !important;
    display: block !important;
    height: 40px !important;
    border: 1px #eee solid !important;
    border-radius: 5px;
    padding: 0 20px !important;
}

#billing_country {
    display: block !important;
}

.nice-select.country_to_state.country_select {
    display: none;
}

.woocommerce form .form-row textarea {
    height: 200px;
    padding: 20px;
}

#order_review_heading {
    margin: 30px 0;
    font-size: 24px;
    color: var(--main-color);
    font-family: 'neoMed';
}

.woocommerce table.shop_table th {
    color: var(--main-color);
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: var(--bg-color);
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    background: rgb(239 239 239);
}

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
    border: 1em solid #efefef;
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
}

.woocommerce-checkout #payment div.form-row {
    display: block;
    text-align: center;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: none;
    margin: 20px 0 0;
}

.select2-container--default .select2-selection--single {}

.woocommerce form .form-row .select2-container {
    line-height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
}

.select2-dropdown {
    border-color: #eee;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
    background: var(--main-color) !important;
    color: #fff !important;
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    margin: 0 0 23px;
    font-size: 18px;
    color: green;
}

.woocommerce ul.order_details li {
    font-size: 12px;
    font-weight: normal;
    color: #888;
}

.woocommerce ul.order_details li strong {
    margin: 5px 0 0;
    font-size: 13px;
    color: var(--dark-color);
}

.woocommerce-order p {
    font-size: 16px;
    margin: 0 0 20px;
}

.woocommerce-order-details__title {
    color: var(--main-color);
    font-size: 22px;
    margin: 0 0 20px;
    font-family: 'neoMed';
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody tr th, table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot tr th {
    color: var(--dark-color);
}

.xoo-el-form-container ul.xoo-el-tabs li {
    background: var(--main-color)!important;
    color: #fff !important;
}

.xoo-el-form-container ul.xoo-el-tabs li.xoo-el-active {
    background: var(--dark-color) !important;
}

.xoo-aff-input-group .xoo-aff-input-icon {
    display: none;
}

.xoo-aff-group input[type="text"], .xoo-aff-group input[type="password"], .xoo-aff-group input[type="email"], .xoo-aff-group input[type="number"], .xoo-aff-group select {
    border: 1px #eee solid !important;
    box-shadow: none !important;
    padding: 0 20px !important;
}

.xoo-el-login-btm-fields label {
    margin: 0;
    margin-inline-end: auto;
}

a.xoo-el-lostpw-tgr {
    margin: 0;
    margin-inline-start: auto;
}

.xoo-el-form-container button.button.btn.xoo-el-action-btn {
    width: 100%;
    margin: 10px 0 0;
}

.xoo-aff-group {
    width: 100%;
}

.xoo-el-section {
    padding: 0;
}

.xoo-el-header {
    padding: 0;
    margin: 0 0 25px !important;
}

.xoo-el-form-container.xoo-el-form-inline {
    max-width: 600px;
}

.xoo-el-form-container button.btn.button.xoo-el-action-btn {
    background: var(--dark-color);
}

.xoo-aff-group.onehalf {
    margin: 0 0 30px;
    margin-inline-end: 10px;
    width: calc(50% - 10px);
}

.xoo-aff-group {
    float: right;
}

.xoo-aff-group.xoo-aff-cont-text.onehalf.xoo-aff-cont-required.xoo_el_reg_lname_cont {
    width: calc(50% - 10px);
    margin-inline-end: 0;
    margin-inline-start: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    border: 1px #eee solid;
    border-radius: 5px;
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 15px 20px;
    display: block;
    border-bottom: 1px #eee solid;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--main-color);
    color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    line-height: 30px;
    font-size: 16px;
    display: block;
}

.woocommerce-Address {
    border-inline-end: 1px #eee solid;
    margin: 30px 0 0;
}

.woocommerce-Address .title h3 {
    font-size: 16px;
    width: 50%;
    /* display: flex; */
    white-space: nowrap;
}

.woocommerce-account .addresses .title .edit {
    color: var(--main-color);
    text-decoration: underline;
}

.woocommerce-account .addresses .title {
    margin: 0 0 15px;
ÙŠ: Ø¨;
}

address {
    font-size: 15px;
    color: #555;
    line-height: 25px;
}

.u-column1.col-1.woocommerce-Address {
    border: none;
}

fieldset legend {
    color: var(--main-color);
    font-size: 20px;
}

.select-side form.woocommerce-ordering {
    float: none !important;
    margin: 0;
}

address p::before {
    color: var(--main-color);
}

.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
    text-align: right;
}

.mobile-menu .navigation li a a {
    padding: 0;
}

.mobile-menu .navigation li>a li {
    border: none;
}

.page-link {
    width: 35px;
    color: var(--main-color);
    margin: 0 2px !important;
    border-radius: 5px !important;
    height: 35px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Start Select Nice */

select {
    display: none;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: none;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    /* float: right; */
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    line-height: 50px;
    outline: none;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    color: #E2DDDD;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #707070;
    padding: 0 20px;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    content: "\f107";
    display: block;
    margin-top: 0;
    pointer-events: none;
    position: absolute;
    left: 12px;
    top: 4px;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    transition: all 0.15s ease-in-out;
    color: #3F4448;
    font-family: 'Font Awesome 5 Pro';
}

.nice-select.open:after {
    content: "\f106";
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    /* text-align: left; */
    transition: all 0.2s;
    color: var(--main-color);
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--main-color);
    color: var(--white);
}


/* End Select Nice */

.bapf_head h3 {
    color: #343332;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.bapf_body {
    padding: 20px 0;
}

.bapf_sfilter.bapf_ckbox input[type=checkbox] {
    margin: 0;
    margin-inline-end: 5px;
    top: 0;
    border: 1px solid #707070;
    border-radius: 1px;
}

.bapf_sfilter ul li {
    display: block;
    color: #343332;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 0 !important;
    border-bottom: 1px #eee solid;
    height: auto !important;
}

.bapf_sfilter ul li label {
    margin: 0;
}

.bapf_radio_chck ul li input[type=checkbox]:checked:after {
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    right: 4px;
    width: 4px;
    height: 9px;
    border: solid var(--main-color);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.irs--sharp .irs-handle {
    background: var(--main-color);
    width: 10px;
    height: 10px;
    background: #fff;
    box-shadow: 0px 3px 10px #00000029;
    border: none;
    top: 25px;
    border-radius: 50%;
}

.irs--sharp .irs-line {
    background: #B5B5B5;
    height: 3px;
}

.irs--sharp .irs-min, .irs--sharp .irs-max, .irs--sharp .irs-from, .irs--sharp .irs-to, .irs--sharp .irs-single {
    background: transparent;
    color: #343332;
    direction: rtl;
    display: flex;
    font-family: 'Cairo';
}

.irs--sharp .irs-bar {
    background: var(--main-color);
}

.irs--sharp .irs-handle>i:first-child {
    opacity: 0;
}

.irs--sharp .irs-from:before, .irs--sharp .irs-to:before, .irs--sharp .irs-single:before {
    opacity: 0;
}

.products-page .pro-archive .item-col .cart-btn {
    opacity: 0;
}

.products-page .pro-archive .item-col:hover .cart-btn {
    opacity: 1;
}

.products-page .pro-archive .item-col .details {
    padding-top: 25px;
}

.bapf_slidr_ion {
    margin: 0;
    background: #F9F9F9;
    padding: 20px;
    border-radius: 1px;
}

div#bapf_2 {
    margin: 0;
}

.archive-page .pro-block .details {
}

.archive-page .pro-block {
    min-height: 368px;
}

.archive-page .pro-block .img-block {
    height: 205px;
}

.archive-page .pro-block .img-block .cart-btn {
    opacity: 0;
}

.archive-page .pro-block:hover .img-block .cart-btn {
    opacity: 1;
}

.archive-page .pro-block .details .name {
    font-size: 18px;
}

.archive-page .pro-block .details .price-h span {
    letter-spacing: 0.54px;
    font-size: 18px;
    margin-top: 20px;
}

.archive-page .pro-block .details .price-h {
    margin-top: 20px;
}

.pro-block .img-block .added_to_cart.wc-forward {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 54px;
    height: 54px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: var(--dark-color);
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    margin-bottom: -27px;
    cursor: pointer;
    padding-top: 9px;
    line-height: 17px;
    z-index: 2;
}
/********************************************************************************************************/
/*
.whatsapp-icon{
  position: fixed;
  right: 10px;
  top: 50%;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  color: #fff;
  z-index: 5;
}
*/
.whatsapp-icon {
    position: fixed;
    left: 0;
    bottom: 0;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    color: #fff;
    z-index: 5;
    margin: 20px 15px;
}

.whatsapp-icon img{
    width: 48px;
  position: relative;
  top: 0;
  	animation: image-top 1.2s infinite linear;
	-webkit-animation: image-top 1.2s infinite linear;
}

@keyframes image-top {

	0%,
	100% {
		transform: translateY(-5px)
	}

	50% {
		transform: translateY(5px)
	}
}


.h-map{
    height: 400px;
}
.h-map iframe{
    height: 100%;
    width: 100%;
}

.q-product.btn {
    min-width: 130px;
    min-height: 41px;
    margin: 0 5px;
}

@media(max-width: 767px){
    .woocommerce div.product .product_title {
        font-size: 22px;
    }
    .single-product.woocommerce div.product div.summary{
        text-align: center;
        margin: auto;
    }
    .single-product.woocommerce div.product .product_title,
    .single-product.woocommerce div.product div.summary .price-container{
        text-align: center;
        display: block;
    }
    .single-product.woocommerce div.product div.summary .price-container .price,
    .single-product.woocommerce .price-container h5{
        display: inline-block;
    }
    .single-product.woocommerce div.product form.cart .button {
        float: unset;
    }


}

@media(max-width: 500px){
    .whatsapp-icon{
        margin: 18px 15px !important;
    }
    .whatsapp-icon img{
        width: 40px !important;
    }
    .whatsapp-icon{
        opacity: 0.78 !important;
    }
    .h-map{
        height: 300px !important;
    }
}
