:root {
    --mainColor: #000050;
    --Color: #713800;
    --grayColor: #F0EDE9;
    --bgColor: #FCFBF8;
    --textColor: #000;
    --yellow: #FFDB59;
}

@font-face {
    font-family: "Almarai";
    src: url("../webfonts/Almarai-Regular.ttf") format("opentype");
}

@font-face {
    font-family: "NotoSansArabic";
    src: url("../webfonts/NotoSansArabic-Regular.ttf") format("opentype");
}

@font-face {
    font-family: "NotoSansArabic-ExtraBold";
    src: url("../webfonts/NotoSansArabic-ExtraBold.ttf") format("opentype");
}

@font-face {
    font-family: "ExtraBold_Almarai";
    src: url("../webfonts/Almarai-ExtraBold.ttf") format("opentype");
}

.p-0 {
    padding: 0 !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

body {
    font-family: "Almarai";
    color: var(--textColor);
    overflow-x: hidden;
    background-color: #FCFBF8;
    padding-top: 99px;
}

* {
    margin: 0;
    padding: 0;
}

a,
a:hover {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

input,
select,
textarea,
button {
    box-shadow: none !important;
    outline: none !important;
}

.top-background {
    height: 400px;
    padding-top: 200px;
    position: relative;
    z-index: 0;
    /*    background-image: url(../../images/about/top.jpg);*/
    background-position: center;
    background-size: cover;
}

.top-background:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background-color: rgba(0, 0, 0, 0.5);
}

.top-background h3 {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px
}

.top-background ul {
    list-style: none;
    text-align: center;
    margin-top: 15px;
}

.top-background ul li {
    display: inline-block;
    padding: 2px 6px;
}

.top-background ul li,
.top-background ul li a {
    color: #fff;
}

@media (max-width: 992px) {
    .top-background .container {
        max-width: 100%;
    }
    .top-background h3 {
        font-size: 40px
    }
}


/*button */

.btn-color {
    color: #fff !important;
    font-size: 15px;
    padding: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: var(--mainColor);
    box-shadow: none !important;
    outline: none !important;
}

.btn-color:hover {
    background-color: #B84A3D;
    /* color: var(--mainColor) !important; */
}

.btn-color1 {
    color: var(--Color);
    font-size: 15px;
    padding: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
    box-shadow: none !important;
    outline: none !important;
}

.btn-color1:hover {
    background-color: #B84A3D !important;
    /* color: var(--mainColor) !important; */
}

.form-group {
    margin-bottom: 12px;
}

.form-control {
    background-color: #fff;
    box-shadow: none !important;
    outline: none !important;
    border: 0;
    color: #000;
    border-radius: 4px;
    text-align: right;
    font-size: 15px;
}

.form-group .form-control::placeholder {
    color: #FFF1C0;
    opacity: .5
}


/*  end button */

.title {
    color: var(--mainColor) !important;
    position: relative;
    font-size: 38px;
    font-weight: bold;
    /*    font-family: "ExtraBold_Almarai";*/
}


/* navbar */

.navbar-home {
    background-color: #FCFBF8;
    box-shadow: 0px 4px 4px 0px #0000000A;
}

.navbar-inner-wrap {
    background-color: #FCFBF8;
}

.navbar-inner {
    height: 99px;
    gap: 0;
}

.navbar .navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar .navbar-brand .logo {
    height: 60px;
    width: auto;
}

/* Auth buttons */
.navbar .sps .navbar-nav .navbar-auth .nav-item a.btn-navbar-login,
.btn-navbar-login {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF !important;
    background-color: #000050;
    border: none !important;
    border-bottom: none !important;
    border-radius: 8px;
    padding: 12px 16px !important;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.navbar .sps .navbar-nav .navbar-auth .nav-item a.btn-navbar-login:hover,
.btn-navbar-login:hover {
    background-color: #000080;
    color: #FFFFFF !important;
    border-bottom: none !important;
}

.navbar .sps .navbar-nav .navbar-auth .nav-item a.btn-navbar-register,
.btn-navbar-register {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000050 !important;
    background-color: transparent;
    border: 1px solid #000050 !important;
    border-bottom: 1px solid #000050 !important;
    border-radius: 8px;
    padding: 12px 16px !important;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 300ms ease-out, color 300ms ease-out;
}

.navbar .sps .navbar-nav .navbar-auth .nav-item a.btn-navbar-register:hover,
.btn-navbar-register:hover {
    background-color: #000050;
    color: #FFFFFF !important;
    border-bottom: 1px solid #000050 !important;
}

/* User dropdown */
.navbar-user-trigger {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000050 !important;
    border-bottom: none !important;
    padding: 0 !important;
    gap: 8px;
    text-decoration: none;
}

.navbar-user-trigger:hover {
    border-bottom: none !important;
    color: #000050 !important;
}

.navbar-user-name {
    color: #000050;
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.navbar-user-menu {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0px 4px 12px 0px rgba(0,0,0,0.08);
    min-width: 160px;
    padding: 4px 0;
}

.navbar-logout-btn {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #000050;
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    padding: 10px 16px;
}

.navbar-logout-btn:hover {
    background-color: #f5f5f5;
    color: #000050;
}

/* Auth + lang section */
.navbar-auth {
    flex-direction: row;
    gap: 10px;
    flex-shrink: 0;
}

.navbar-lang a {
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.navbar-lang a img {
    display: block;
}

.navbar .sps {
    position: fixed;
    top: 0px;
    right: 0;
    transition: all 0.5s ease;
    width: 100%;
    z-index: 10;
    padding: 0;
    background-color: #FCFBF8;
    box-shadow: 0px 4px 4px 0px #0000000A;
}

@media (max-width: 1200px) {
    .navbar .sps .container {
        max-width: 100% !important;
    }
}

@media (max-width: 992px) {
    .navbar .sps .container {
        max-width: 100% !important;
        padding: 0;
    }
    .navbar .sps {
        padding: 0 !important;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
    }
    .navbar-inner {
        height: 72px !important;
        justify-content: space-between;
        padding: 8px 16px;
        gap: 8px;
        flex-wrap: nowrap;
        align-items: center;
        position: relative;
    }
    body {
        padding-top: 72px;
    }
    /* Logo */
    .navbar .navbar-brand .logo {
        width: 87px;
        height: 56px;
        object-fit: contain;
        border: 1px solid #FFFFFF;
        border-radius: 4px;
    }
    /* Toggler button */
    .navbar .navbar-toggler {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 8px !important;
        background: #F0EDE9 !important;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Full-screen collapse overlay */
    .navbar-inner .navbar-collapse {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 72px) !important;
        background-color: #FCFBF8;
        padding: 24px 24px 24px;
        border-top: 1px solid #e8e8e8;
        z-index: 100;
        box-shadow: none;
    }
    .navbar-inner .navbar-collapse.show {
        display: flex !important;
        flex-direction: column;
    }
    /* Nav center takes available space */
    .navbar-nav-center {
        flex: 1;
        overflow-y: auto;
        margin: 0 !important;
        width: 100%;
    }
    /* Nav links */
    .navbar .sps .navbar-nav {
        width: 100%;
        flex-direction: column !important;
    }
    .navbar .sps .navbar-nav .nav-item {
        width: 100%;
        text-align: right;
    }
    .navbar .sps .navbar-nav .nav-item {
        text-align: right !important;
    }
    .navbar .sps .navbar-nav .nav-item a {
        font-family: Almarai, sans-serif !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        font-style: normal !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
        padding: 10px !important;
        height: 40px !important;
        box-sizing: border-box !important;
        border-bottom: 4px solid transparent !important;
        display: inline-block !important;
        width: auto !important;
        color: #000050 !important;
    }
    .navbar .sps .navbar-nav .nav-item a.active {
        border-bottom: 4px solid #000050 !important;
    }
    /* Mobile menu footer */
    .mobile-menu-footer {
        flex-shrink: 0;
        margin-top: 16px;
        border-top: 1px solid #e8e8e8;
        padding-top: 20px;
        padding-bottom: 8px;
    }
    .mobile-bottom-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .mobile-lang-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #000050;
        text-decoration: none;
        font-family: Almarai, sans-serif;
        font-size: 15px;
        font-weight: 600;
    }
    .mobile-lang-link:hover {
        color: #000050;
        text-decoration: none;
    }
    .mobile-user-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #000050;
        font-family: Almarai, sans-serif;
        font-weight: 700;
        font-size: 16px;
    }
    .mobile-user-name {
        color: #000050;
        font-family: Almarai, sans-serif;
        font-weight: 700;
        font-size: 16px;
    }
    .mobile-auth-wrap {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .mobile-auth-wrap .btn-navbar-login,
    .mobile-auth-wrap .btn-navbar-register {
        min-width: 90px;
        height: 42px;
        padding: 10px 16px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box;
    }
    .mobile-logout-wrap {
        display: flex;
        justify-content: flex-end;
        margin-top: 12px;
    }
    .mobile-logout-btn {
        background: none;
        border: none;
        color: #E85921;
        font-family: Almarai, sans-serif;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        padding: 0;
        text-align: right;
    }
    .mobile-logout-btn:hover {
        opacity: 0.8;
    }
    /* Mobile top-bar user button */
    .mobile-topbar-user-btn {
        background: none;
        border: none;
        border-radius: 4px;
        width: 40px;
        height: 40px;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .mobile-topbar-user-btn:focus {
        outline: none;
        box-shadow: none;
    }
    .mobile-topbar-user-menu {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0px 4px 12px 0px rgba(0,0,0,0.08);
        min-width: 140px;
        padding: 4px 0;
    }
    .mobile-topbar-logout-btn {
        font-family: Almarai, sans-serif;
        font-weight: 700;
        font-size: 15px;
        color: #E85921;
        width: 100%;
        text-align: right;
        background: none;
        border: none;
        padding: 10px 16px;
    }
    .mobile-topbar-logout-btn:hover {
        background-color: #f5f5f5;
        color: #E85921;
    }
}

.navbar .sps .navbar-nav .nav-item {
    padding: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
}

.navbar .sps .navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.navbar .sps .navbar-nav .nav-item:nth-child(1):before {
    background-color: #22b9d7;
}

.navbar .sps .navbar-nav .nav-item:nth-child(2):before {
    background-color: #ea8968;
}

.navbar .sps .navbar-nav .nav-item:nth-child(3):before {
    background-color: var(--mainColor);
}

.navbar .sps .navbar-nav .nav-item:nth-child(4):before {
    background-color: #dc5b98;
}

.navbar .sps .navbar-nav .nav-item:nth-child(5):before {
    background-color: #8855b5;
}

.navbar .sps .navbar-nav .nav-item:nth-child(6):before {
    background-color: #f7f766;
}

.navbar .sps .navbar-nav .nav-item:nth-child(7):before {
    background-color: #e64f4f;
}

.navbar .sps .navbar-nav .nav-item:last-child:before {
    display: none;
}

.navbar .sps .navbar-nav .nav-item a {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000050;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    padding: 27px 15px;
    border-bottom: 4px solid transparent;
}

.navbar .sps .navbar-nav .nav-item a:after {
    content: none;
}

.navbar .sps .navbar-nav .nav-item a:hover,
.navbar .sps .navbar-nav .nav-item a.active {
    color: #000050;
}

.navbar .sps .navbar-nav .nav-item a.active,
.navbar .sps .navbar-nav .nav-item a:hover {
    border-bottom: 4px solid #000050;
}

.navbar .sps .navbar-nav .nav-item .dropdown-toggle:after {
    content: "\f107";
    font-weight: 100;
    font-family: "Font Awesome 5 Pro";
    border: 0;
    line-height: 0;
    position: relative;
    top: 5px;
    left: -1px;
}

.navbar .sps .navbar-nav .nav-item .dropdown-menu {
    margin-top: -2px;
    border: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    box-shadow: 0 0 3px #c8c8c8;
}

.navbar .sps .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 14px;
    border-bottom: 1px solid #eee;
    color: var(--mainColor)
}

.navbar .sps .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    color: var(--Color)
}

.navbar .sps .navbar-nav .nav-item .dropdown-menu .dropdown-item:last-child {
    border-bottom: 0 !important;
}

.navbar .sps .navbar-nav .nav-item .dropdown-menu .dropdown-item:active,
.navbar .sps .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
    background-color: #f5f5f5;
    outline: none;
    box-shadow: none;
}

.navbar .sps.sps--abv .navbar-toggler {
    top: 18px
}

.navbar .sps.sps--blw .navbar-toggler {
    top: 7px;
}

.navbar .sps--abv {
    top: 0px;
    transition: all 0.5s ease;
}

.navbar .sps .container {
    position: relative;
}

.navbar .sps--blw .logo {
    transition: .5s
}

.navbar .sps--abv .logo {
    transition: .5s
}

.navbar .sps--abv .logo {
    /*    width: 110px !important;*/
    transition: all 0.5s ease;
    height: 64px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.navbar .sps--blw {
    z-index: 30;
    top: 0px;
    transition: all 0.5s ease;
}

.navbar .sps--blw .logo {
    height: 55px !important;
    transition: all 0.5s ease;
}

.navbar .navbar-toggler {
    background: transparent;
    border: none;
    box-shadow: none !important;
    padding: 4px;
    margin: 0;
    position: static;
    transition: .5s;
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar .navbar-toggler .navbar-toggler-icon {
    display: none;
}

.navbar.nav-pages .sps--abv,
.navbar.nav-pages .sps--blw {
    background-color: #fff !important;
}

.navbar.nav-pages .sps--abv .logo,
.navbar.nav-pages .sps--blw .logo {
    padding: 0 !important;
}

.navbar.nav-pages .sps .navbar-nav {
    margin-top: 8px;
}

.navbar.nav-pages .sps .navbar-toggler {
    top: 0;
}

.navbar .sps .navbar-collapse {
    justify-content: space-between
}

.search_form .input-group {
    border: 1px solid #000050;
    border-radius: 4px;
    overflow: hidden;
}

.search_form .form-control {
    background-color: #fff;
}

.search_form .input-group .btn {
    background-color: #fff;
}

@media(max-width:992px) {
    .navbar .sps .navbar-nav .nav-item {
        padding: 12px 5px
    }
    .navbar .sps .navbar-nav .nav-item a {
        font-size: 15px;
        padding: 10px
    }
    .navbar .sps .navbar-nav .nav-item a:after {
        height: 2px
    }
}

@media (max-width: 992px) {
    .navbar .sps .navbar-nav {
        margin-top: 0;
    }
    .navbar .sps .navbar-nav .nav-item .dropdown-menu {
        box-shadow: none;
        background-color: #f9f9f9;
    }
    .navbar .sps .navbar-nav .nav-item:last-child:before {
        display: block;
    }
    .navbar .sps--abv {
        top: 0px !important;
        min-height: 60px;
        z-index: 50;
    }
    .navbar .sps--blw .logo {
        width: 78px !important;
    }
    .navbar .sps .navbar-nav .nav-item {
        padding: 4px 8px !important;
    }
    .search_form {
        display: none;
    }
    /*
    .navbar-home {
        height: auto;
    }
*/
}


/* footer */

footer {
    position: relative;
    padding-bottom: 15px;
    padding-top: 15px;
    background-color: var(--mainColor);
    position: relative;
    z-index: 3;
    background-position: center;
    background-size: cover;
}

footer:after {
    content: "";
    width: 100%;
    height: 50px;
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    background-image: url(../../images/Vector%201.png);
    background-size: contain;
    z-index: -1;
    background-repeat: no-repeat;
}

footer .box p {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: #dadada;
    padding-left: 20px;
    max-width: 450px
}

footer h4 {
    font-size: 16px;
    color: var(--bgColor);
    margin-left: 16px;
    margin-bottom: 0;
}

footer .box ul {
    list-style: none;
    margin-top: 20px;
    padding-right: 0;
    margin-bottom: 0;
}

footer .box ul.social-icon {
    padding: 0;
}

footer .box ul.social-icon li:after {
    display: none !important;
}

footer .box ul.social-icon li i {
    padding-left: 10px;
    color: var(--Color);
    text-align: center;
    width: 30px;
    padding-top: 4px;
    font-size: 14px;
}

footer .box ul li {
    color: #dadada;
    font-size: 15px;
    padding: 10px;
    position: relative;
    display: inline-block
}

footer .box ul li a {
    color: var(--bgColor);
    font-size: 16px;
    transition: .5s;
}

footer .box ul li a:hover {
    color: var(--yellow)
}

footer .list-social {
    padding: 0;
    display: flex;
    align-items: center
}

footer .list-social li {
    display: inline-block;
    padding: 7px;
}

footer .list-social li.icon {
    background-color: #fff;
    text-align: center;
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin: 10px 0px 10px 9px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
}

footer .list-social li.icon:hover {
    background-color: var(--yellow);
}

footer .list-social li.icon a {
    color: var(--mainColor);
    transition: .5s;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_footer p {
    font-size: 16px;
    line-height: 32px;
    max-width: 260px;
    color: #fff;
    text-align: justify;
    margin-right: 40px;
    margin-bottom: 0
}

@media(max-width:992px) {
    .logo_footer {
        text-align: center;
        margin-bottom: 20px;
    }
    .logo_footer p {
        text-align: center;
        margin: 20px auto;
    }
    footer .social {
        justify-content: center
    }
}

@media(max-width:768px) {
    footer {
        text-align: center;
    }
    footer .list-social {
        justify-content: center;
    }
    footer:after {
        background-size: cover;
        height: 25px;
    }
    footer .box.text-end {
        text-align: center !important;
        margin-top: 20px
    }
    .d-text-footer {
        display: block !important;
    }
}


/* copy-right*/

.copy-right {
    color: #fff;
    border-top: 1px solid #fef8e780;
    opacity: .7;
    padding: 2px 0;
    padding-top: 14px;
    margin-top: 20px !important;
}

.copy-right a {
    color: #ffdb59;
    padding: 0 4px;
}

.copy-right span {
    padding-top: 2px;
    display: block;
    font-size: 14px;
}

.modal .close {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    z-index: 5;
    opacity: 1;
}

.services_details.projects .gallery-item {
    display: block;
}


/* image-vedio*/

.image-vedio {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}

.image-vedio .video {
    border: 2px dashed #BC6358;
    padding: 10px;
    border-radius: 4px;
    height: 370px;
    object-fit: cover;
    width: 100%;
    max-width: 600px;
}

.image-vedio a {
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    display: flex;
    align-items: center;
}

.image-vedio a img {
    width: 150px;
}

.slider-text a {
    font-size: 26px;
    background-color: #BC6358;
    border-radius: 4px;
    min-width: 200px;
    display: inline-block;
    text-align: center;
    margin-top: 40px !important;
    margin-bottom: 10px;
}

.text_video {
    font-size: 18px;
    color: #BC6358;
    font-weight: bold;
    margin: 20px 0 !important;
    text-align: center;
}


/* time_down */

.time_down {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time_down li {
    font-size: 12px;
    padding: 0 5px;
    color: #000050;
    line-height: 10px;
    text-align: center;
}

.time_down li span {
    font-size: 24px;
    text-align: center;
    background-color: #000050;
    color: #fff;
    width: 34px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*  search  */

.search {
    z-index: 5;
    position: relative;
    background-color: #D8E9ED;
}

.search .pattern-bg {
    position: relative;
    background-image: url(../../images/home/Year_Filter.png);
    background-position: left top;
}

.search .pattern-bg:after {
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #D8E9ED;
    z-index: 0;
}

.search .search_image {
    z-index: 5;
    position: relative;
}

.search:after {
    content: "";
    background-image: url(../../images/home/arrow.png);
    position: absolute;
    left: 0;
    top: -4px;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 102%;
    width: 35px;
    z-index: 20;
    margin: auto;
}

.search .search_image {
    text-align: left;
    position: relative;
    padding-right: 70px;
    padding-top: 30px;
    padding-bottom: 50px;
    position: relative;
    z-index: 5;
    background-image: url(../../images/home/Year_Filter.png);
    background-position: center;
    background-size: cover
}

.search .search_image:after {
    content: '';
    background-image: url(../../images/home/Tape.png);
    position: absolute;
    /*    left: 0;*/
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90px;
    width: 36px;
    z-index: 0;
    margin-right: -15px;
}

.search .search_image img {
    max-width: 400px;
}

.search .text_box {
    position: relative;
    padding-left: 60px;
    padding-bottom: 20px;
    z-index: 5;
}

.search .text_box:after {
    content: '';
    background-image: url(../../images/home/Tape.png);
    position: absolute;
    /*    right: 0;*/
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90px;
    width: 36px;
    z-index: 0
}

.search .search_image h3 {
    font-size: 38px;
    line-height: 51px;
    text-align: right;
    color: #FFFFFF;
    position: absolute;
    top: 26%;
    font-weight: bold;
    text-shadow: 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.search .title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #29606C !important;
    text-align: right;
    margin-top: 110px;
    font-weight: bold;
}

.search .input-group {
    background: #FFFFFF;
    border: #93B9C1 1px solid;
    box-shadow: inset 0px 5px 10px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

.search .input-group .form-control,
.search .input-group .form-control::placeholder {
    /* color: #93B9C1; */
    min-height: 50px;
    opacity: 1;
}

.search .input-group i {
    color: #93B9C1;
    font-size: 20px;
    margin-top: 4px;
}

.search .advanced_link {
    color: #29606C;
    font-size: 16px;
    margin-top: 15px;
    display: block;
    font-weight: bold;
}

.search .input-group .btn {
    background: #fff;
    border-radius: 4px 0 0 4px
}

@media(max-width:992px) {
    .search .text_box {
        padding-left: 30px;
        padding-right: 30px;
    }
    .search .container {
        max-width: 100%
    }
}

@media(max-width:768px) {
    .search .title {
        font-size: 22px
    }
    .search:after {
        display: none;
    }
    .search .search_image {
        padding-left: 0px;
        padding-right: 20px;
    }
    .search .search_image h3 {
        font-size: 30px;
        line-height: 44px;
    }
}

@media(max-width:400px) {
    /* .search .search_image h3 {
        font-size: 20px;
        line-height: 30px;
    } */
    .search .search_image:after {
        margin-right: -30px;
    }
    .search .container {
        padding: 0;
    }
    .title {
        font-size: 25px;
    }
}


/* gallary */

.gallary {
    background-color: #FCFBF8
}

.gallary .gallary_grid img {
    width: 100%;
    height: 260px;
    object-fit: contain;
}

.gallary .gallary_grid .text {
    background-color: #F2F0E6;
    text-align: center;
    height: 100%;
    min-height: 260px;
    border: 20px solid #F2F0E6;
    box-shadow: inset 0 0 0 3px #D1C29B;
    position: relative;
    padding: 25px 24px;
}

.gallary .gallary_grid .text:after {
    content: "";
    border-left: 3px solid #D1C29B;
    border-top: 3px solid #D1C29B;
    position: absolute;
    top: 22px;
    left: 20px;
    width: 100px;
    height: 100px;
}

.gallary .gallary_grid .text h4 {
    color: #6E6755;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.gallary .gallary_grid .text p {
    color: #6E6755;
    font-size: 18px;
}

.gallary .gallary_grid .text.color {
    background-color: #B3A684;
    border: 20px solid #B3A684;
    box-shadow: inset 0 0 0 3px #E8D6A8;
}

.gallary .gallary_grid .text.color:after {
    border-left: 3px solid #E8D6A8;
    border-top: 3px solid #E8D6A8;
}

.gallary .gallary_grid .text.color h4,
.gallary .gallary_grid .text.color p {
    color: #F2F0E6
}


/*  testimonal_sec  */

.testimonal_sec {
    background-size: cover;
    background-position: center;
    /*    min-height: 600px;*/
    display: flex;
    align-items: center;
    background-color: #1b3430;
}

.testimonal_sec .container {
    position: relative;
    padding: 70px 0 20px;
}

.testimonal_sec .container:after {
    content: "";
    background-size: contain;
    width: 178px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    margin: auto;
    background-image: url(../../images/arrow.png);
}

.testimonal_sec .container:before {
    content: "";
    background-size: contain;
    width: 178px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    margin: auto;
    background-image: url(../../images/arrow.png);
    transform: rotate(180deg);
}

.testimonal_sec .container {
    position: relative;
}

.testimonal_sec .title {
    color: var(--yellow) !important;
}

.testimonal_sec .item {
    position: relative;
    padding: 30px 50px 25px;
}

.testimonal_sec .item p {
    color: #fff;
    font-family: "NotoSansArabic";
    font-size: 26px;
    line-height: 67px;
    text-align: justify;
    direction: rtl;
    position: relative;
}

.testimonal_sec .item h3 {
    color: var(--yellow) !important;
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 16px;
}

.testimonal_sec .item h4 {
    color: var(--yellow) !important;
    font-size: 14px;
    opacity: .5;
    text-align: center
}

.testimonal_sec .owl-carousel {
    max-width: 93%;
    margin: auto;
    position: unset;
}

.testimonal_sec .item p:after {
    content: '\f10d';
    font-family: "Font Awesome 5 Pro";
    font-size: 143px;
    color: #283e3b;
    position: absolute;
    top: -2px;
    left: -20px;
    font-weight: bold;
    z-index: -1;
}

.testimonal_sec .item p:before {
    content: '\f10d';
    font-family: "Font Awesome 5 Pro";
    font-size: 143px;
    color: #283e3b;
    position: absolute;
    bottom: -2px;
    right: -20px;
    font-weight: bold;
    z-index: -1;
    transform: rotateY(180deg)
}

.testimonal_sec .owl-nav {
    margin: 0
}

.testimonal_sec .owl-nav button {
    position: absolute;
    top: 45%;
    opacity: 1 !important;
    color: #fff !important;
    font-size: 35px !important;
    background-color: rgba(255, 255, 255, 0.24) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    line-height: 0 !important;
    transition: .5s;
}

.testimonal_sec .owl-nav .owl-prev {
    left: 0
}

.testimonal_sec .owl-nav .owl-next {
    right: 0
}

.owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--yellow) !important
}

.testimonal_sec .owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 14px;
    margin: 5px;
}

@media(max-width:992px) {
    .testimonal_sec .item p {
        font-size: 22px;
        line-height: 55px;
    }
}

@media(max-width:768px) {
    .testimonal_sec .owl-nav {
        display: none;
    }
    .testimonal_sec .item {
        padding: 50px 0px 25px;
    }
    .testimonal_sec .item p:before {
        font-size: 100px;
        right: 0;
    }
    .testimonal_sec .item p:after {
        font-size: 100px;
        left: 0;
    }
}


/*   products  */

.Products .product_div {
    background-color: var(--grayColor);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    position: relative;
    padding-bottom: 45px;
}

.Products .product_div img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}

.Products .product_div h3 {
    color: #000;
    font-size: 18px;
    margin-top: 6px;
    padding: 0 15px;
    line-height: 25px;
    font-weight: bold;
    margin-bottom: 7px;
    font-family: "ExtraBold_Almarai";
}

.Products .product_div p {
    font-size: 16px;
    color: #121212;
    padding: 0 15px;
    font-weight: bold;
}

.Products .product_div h5 {
    color: #434547;
    font-size: 17px;
    padding: 10px 15px;
    position: absolute;
    bottom: 0;
}

.Products .product_div .like {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
}

.Products .product_div .like i {
    color: #BC6358;
    font-size: 26px;
}

.Products .product_div .like.active i {
    font-weight: bold
}

.top_link {
    float: left;
    margin-top: -60px;
    color: var(--mainColor);
    font-size: 17px;
    font-weight: 600;
    transition: .5s;
    position: relative;
}

.top_link:hover {
    color: var(--Color);
}

.top_link i {
    padding-right: 10px
}


/* @media(max-width:500px) {
    .top_link {
        margin-top: 0px
    }
} */


/*   Blogs  */

.Blogs .blog_div {
    height: 100%;
    position: relative;
}

.Blogs .blog_div img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 10px;
}

.Blogs .blog_div h3 {
    color: #000;
    font-size: 20px;
    padding: 0;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    text-decoration: underline;
}

.Blogs .blog_div h5 {
    color: #434547;
    font-size: 13px;
    padding: 10px 0px;
    margin-bottom: 3px;
}

.Blogs .blog_div .link_a {
    font-size: 14px;
    color: #4B8687;
    padding: 0px 0px;
    transition: .5s;
    font-family: 'NotoSansArabic';
}

.Blogs .blog_div .link_a i {
    padding-right: 10px
}

.Blogs .blog_div .link_a :hover {
    color: var(--Color)
}

@media(max-width:768px) {
    .Blogs .container,
    .Products .container {
        max-width: 100%;
    }
    .response_high {
        margin-top: 20px !important;
    }
}


/* team */

.Products.team .product_div {
    padding-bottom: 30px;
    max-width: 300px;
    margin: auto
}

.Products.team .product_div h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 24px;
}

.Products.team .product_div p {
    font-size: 18px;
}

.Products.team .product_div img {
    height: 350px
}


/*  messages  */

.messages_sec {
    padding: 70px 0 40px;
    /*    min-height: 600px;*/
    display: flex;
    align-items: center;
    background-image: linear-gradient(66deg, #53A4B8 30%, #D6E9EE)
}

.messages_sec .title {
    color: var(--mainColor) !important;
    font-size: 25px;
}

.messages_sec .item {
    position: relative;
    direction: rtl;
}

.messages_sec .item p {
    color: #000000;
    font-family: "NotoSansArabic";
    font-size: 18px;
    text-align: justify;
    position: relative;
}

.messages_sec .item h3 {
    color: var(--mainColor) !important;
    font-size: 22px;
    margin-top: 5px;
    font-weight: bold;
    margin-bottom: 35px;
}

.messages_sec .owl-nav {
    display: none
}

.messages_sec .owl-theme .owl-dots .owl-dot {
    margin-top: 35px;
}

.messages_sec .owl-theme .owl-dots .owl-dot.active span {
    background-color: #29797A !important
}

.messages_sec .item img {
    max-width: 490px;
    max-height: 320px;
    margin-right: auto;
    border: 5px solid #fff;
    border-radius: 4px;
    object-fit: cover;
}

.messages_sec .owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 14px;
    margin: 5px;
}

.al_message .image_text {
    /* border: 1px solid #D1C29B; */
    border-radius: 4px;
    height: 100%;
    overflow: hidden;
    background-color: #f2f0e6;
}

.al_message .image_text img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.al_message .image_text h3 {
    color: #000000;
    font-size: 15px;
    padding: 15px;
    font-weight: bold;
    min-height: 90px;
    line-height: 26px;
}

.al_message .btn {
    min-width: 165px;
    border: 1px solid #000;
    color: #000 !important;
    margin: 10px;
    border-radius: 4px
}

.al_message .btn-color {
    background-color: #FFDB59;
    border-color: #FFDB59;
}

.al_message .btn-color:hover {
    background-color: var(--mainColor);
    color: #fff !important
}

.al_message .btn-color1 {
    background-color: #BC6358;
    color: #fff !important;
    border: 0;
    font-weight: bold;
}

.al_message .btn-color1:hover {
    background-color: #B84A3D;
    /* color: var(--mainColor) !important */
}

@media(max-width:992px) {
    .messages_sec .container {
        max-width: 100%
    }
}

@media(max-width:768px) {
    .messages_sec {
        padding-top: 50px;
    }
    .messages_sec .item {
        padding: 10px;
    }
    .messages_sec .item img {
        margin: 15px auto 0
    }
    .al_message .container {
        max-width: 100%
    }
}


/*  banner */

.banner {
    background-position: center;
    background-size: cover;
    min-height: 200px;
    position: relative
}

.banner .text {
    padding: 85px 15px 50px
}

.banner .text h3 {
    font-size: 24px;
    color: #FFD740;
    margin-bottom: 18px;
}

.banner .text h4 {
    font-size: 14px;
    color: #fff;
    opacity: .7;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.banner .text p {
    font-size: 16px;
    color: #fff;
    opacity: .7;
    text-align: justify;
    margin-bottom: 10px;
    Line-height: 36px
}

@media(max-width:768px) {
    .banner .text h3 {
        font-size: 18px;
    }
    .banner .text p {
        font-size: 14px;
    }
}


/* messages_details */

.messages_details .details {
    background-color: #f5f5f5;
    padding: 20px
}

.messages_details .details h3 {
    font-size: 20px;
    color: #292D32
}

.messages_details .details h4 {
    font-size: 14px;
    color: #000;
    margin-bottom: 11px;
}

.messages_details .details h5 {
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.messages_details h2 {
    font-size: 20px;
    color: #292D32;
    font-family: "NotoSansArabic";
}

.messages_details p {
    font-size: 18px;
    color: #000;
    font-family: "NotoSansArabic";
    text-align: justify;
    line-height: normal;
}

.center_banner.messages_details {
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}

.center_banner.messages_details p {
    color: #fff
}

.soical .list-social {
    padding: 0
}

.soical .list-social li {
    display: inline-block;
    padding: 10px;
}

.soical .list-social li.icon {
    background-color: #569495;
    text-align: center;
    width: 25px;
    height: 25px;
    font-size: 16px;
    margin: 10px 0px 10px 9px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
    padding: 6px
}

.soical .list-social li.icon:hover {
    background-color: var(--mainColor);
}

.soical .list-social li.icon a {
    color: #fff;
    transition: .5s;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*   blog_details   */

.blog_details h3 {
    font-size: 25px;
    color: var(--mainColor);
    text-decoration: underline;
    font-weight: bold;
    line-height: inherit
}

.blog_details .table_date {
    border: 1px solid #D4D4D4;
    border-collapse: collapse;
    padding: 15px;
    border-left: 0
}

.blog_details .table_date:first-child {
    border-right: 0
}

.blog_details .table_date:last-child {
    border-left: 0
}

.blog_details .table_date h4 {
    color: #000;
    font-size: 13px;
    font-weight: bold
}

.blog_details .table_date h5 {
    color: #434547;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 15px
}

.blog_details .soical .list-social li.icon {
    margin-bottom: 0;
    margin-top: 0
}

.blog_details p {
    font-size: 18px;
    color: #000;
    text-align: justify;
    line-height: 29px;
}

.blog_details .writer h5 {
    font-size: 15px;
    color: #000;
    margin-bottom: 15px;
    font-weight: bold;
    margin-top: 20px;
}

.blog_details .writer h6 {
    font-size: 15px;
    color: #434547;
    margin-bottom: 24px;
    line-height: inherit;
}

@media(max-width:768px) {
    .blog_details .table_date {
        border: 1px solid #D4D4D4 !important;
        margin-bottom: 8px
    }
}


/*  family */

.family img {
    max-width: 260px;
    margin: auto;
    padding: 10px;
    margin-bottom: 25px;
}

.family h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #000;
    font-family: "ExtraBold_Almarai";
}

.family p {
    font-size: 23px;
    margin-bottom: 25px;
    color: #000
}

.family .form-control,
.family .btn {
    background-color: #F0EDE9
}

.family .form-group .form-control::placeholder {
    color: #292D32;
}

.family .btn-color1 {
    background-color: #BC6358;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.family .btn-color1:hover {
    background-color: #B84A3D;
}


/*  gallary   */

.gallary img {
    width: 100%;
}


/*  market */

.market .Products .product_div .text {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    padding-top: 7px;
}

.market .Products .product_div .text:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
    backdrop-filter: blur(32px);
}

.market .Products .product_div .text h5 {
    position: relative;
    display: inline-block;
    background-color: var(--yellow);
    padding: 7px 18px;
    margin-top: 4px;
    margin-right: 15px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 11px;
}

.market .Products .product_div {
    padding-bottom: 0;
}

.market .Products .product_div img {
    margin-bottom: 0;
    min-height: 500px;
}

.market .Products .product_div h3 {
    margin-bottom: 4px;
    color: var(--mainColor);
}

.market_all .nav-tabs {
    background-color: #F8FEFF;
    padding: 7px 4px;
    border-bottom: 1px solid #4B8687
}

.market_all .nav-tabs .nav-link {
    border: 0 !important;
    color: #4B8687;
    font-size: 15px;
}

.market_all .nav-tabs .nav-link.active {
    font-weight: bold;
    background-color: transparent;
    font-size: 18px;
    margin-top: -4px;
}

@media(max-width:500px) {
    .market_all .nav-tabs .nav-item {
        width: 50%;
    }
}

@media(max-width:300px) {
    .market_all .nav-tabs .nav-item {
        width: 100%;
    }
}


/*  product_slider */

.product_slider #big .item {
    background: #fff;
    margin: 2px;
    color: #FFF;
    border-radius: 4px;
    text-align: center;
    height: 525px;
    border: 1px solid #eee;
}

.product_slider #thumbs .item {
    background: #C9C9C9;
    height: 70px;
    line-height: 70px;
    padding: 0px;
    margin: 6px;
    color: #FFF;
    border-radius: 1px;
    text-align: center;
    cursor: pointer;
    opacity: .5
}

.product_slider #thumbs .item img {
    object-fit: cover;
}

.product_slider #thumbs .current .item {
    background: #eee;
    opacity: 1
}

.product_slider .owl-carousel .owl-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product_slider .owl-theme .owl-nav [class*='owl-'] {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.product_slider .owl-theme .owl-nav [class*='owl-'].disabled:hover {
    background-color: #D6D6D6;
}

.product_slider #big.owl-theme {
    position: relative;
}

.product_slider #big.owl-theme .owl-next,
.product_slider #big.owl-theme .owl-prev {
    position: absolute;
    text-align: center;
    top: 50%;
    color: #888
}

.product_slider #big.owl-theme .owl-prev {
    left: 10px;
}

.product_slider #big.owl-theme .owl-next {
    right: 10px;
}

.product_slider #thumbs.owl-theme .owl-next,
.product_slider #thumbs.owl-theme .owl-prev {
    background: #333;
}

@media(max-width:768px) {
    .product_slider #big .item {
        height: 400px;
    }
}

@media(max-width:500px) {
    .product_slider #big .item {
        height: 300px;
    }
}


/* product details */

.product_slider .inner_details .bredcrumb_list {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0
}

.product_slider .inner_details .bredcrumb_list li {
    padding: 0 5px;
    font-size: 14px;
    color: #434547
}

.product_slider .inner_details h4 {
    font-size: 22px;
    color: #BC6358;
    margin-top: 25px;
    margin-bottom: 25px;
}

.product_slider .inner_details h3 {
    font-size: 22px;
    color: var(--mainColor);
    margin-top: 25px;
    margin-bottom: 25px;
    font-weight: bold;
}

.product_slider .inner_details p {
    font-size: 15px;
    color: #26265E;
    margin-bottom: 14px;
}

.product_slider .inner_details h5 {
    font-size: 15px;
    color: #000;
    margin-bottom: 14px;
}

.product_slider .inner_details label {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product_slider .inner_details .form-control {
    border: 1px solid #000050;
    border-radius: 4px;
    color: #000;
}

.product_slider .btn {
    min-width: 165px;
    border: 1px solid #000;
    color: #000 !important;
    border-radius: 4px;
    background-color: #FFDB59;
}

.product_slider .btn:hover {
    background-color: var(--mainColor);
    color: #fff !important
}

.product_slider .description_text {
    list-style: none;
    color: #26265E;
    padding: 0
}

.product_slider .description_text li {
    color: #26265E;
    font-size: 15px;
    margin-bottom: 2px;
}

.product_slider .description_text li:before {
    content: ".:";
    color: #26265E;
    font-size: 19px;
    font-weight: bold;
    margin-left: 10px;
}

.product_slider .inner_details .form-control::placeholder {
    color: #000;
}


/*   about_us   */

.about_us img {
    width: 170px;
    margin: auto;
    margin-bottom: 40px;
}

.about_us h3 {
    text-align: center;
    font-size: 30px;
    color: #000;
    margin-bottom: 50px;
    font-weight: bold
}

.about_us h4 {
    text-align: center;
    font-size: 21px;
    color: #000;
    margin-bottom: 12px;
    font-weight: bold;
}

.about_us p {
    text-align: justify;
    font-size: 21px;
    color: #000;
    margin-bottom: 50px;
}

.about_us ul {
    padding: 0;
    text-align: right;
}

.about_us ul li {
    list-style: disc;
    font-size: 21px;
    color: #000;
    margin-bottom: 8px;
}

@media(max-width:768px) {
    .about_us h3 {
        font-size: 25px;
    }
}


/*  contact  */

.contact_sec {
    background-color: #FCFBF8;
    padding-bottom: 110px
}

.contact_sec h3 {
    font-size: 32px;
    font-family: "ExtraBold_Almarai";
    margin-bottom: 20px;
}

.contact_sec p {
    font-size: 21px;
    color: #000;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 450px;
    line-height: 40px
}

.contact_sec .form-control {
    border: 1px solid #B3D5DD;
    color: #000;
    min-height: 48px;
}

.contact_sec .form-control::placeholder {
    color: #B3D5DD;
    opacity: 1 !important;
}

.contact_sec .btn {
    background: #BC6358;
    border-radius: 4px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}

@media(max-width:768px) {
    .contact_sec h3 {
        font-size: 28px;
    }
    .contact_sec p {
        font-size: 15px;
    }
}


/* advances_search   */

.advances_search h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.advances_search .form-group {
    display: flex;
    align-items: center
}

.advances_search .form-control,
.advances_search .form-select {
    background-color: #fff;
    border: 1px solid #D1C29B;
    border-radius: 4px;
    min-height: 48px;
}

.advances_search .form-group label {
    color: #292D32;
    font-size: 14px;
    min-width: 90px;
    font-weight: bold;
}

.advances_search .form-group label span {
    display: inline-block;
    min-width: 50px;
}

.advances_search .form-group label i {
    padding-right: 5px;
}

.advances_search .form-group .form-control::placeholder {
    color: #D1C29B;
    opacity: 1 !important
}

.advances_search .btn {
    background-color: #BC6358;
    border-radius: 4px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}

.advances_search .btn a {
    color: #fff;
}

.advances_search .btn:hover {
    background-color: #B84A3D;
}

@media(max-width:575px) {
    .advances_search .form-group {
        display: block;
    }
    .advances_search .form-group label {
        margin-bottom: 10px;
    }
}


/* search_result */

.search_result .head h3 {
    font-size: 22px;
    color: #292D32;
    font-weight: bold;
    margin-bottom: 10px
}

.search_result .head h3 span {
    color: #BC6358;
    padding: 0 3px
}

.search_result .head p {
    font-size: 18px;
    color: #000;
}

.search_result .dropdown-toggle {
    background-color: #fff;
    border: 1px solid #D1C29B;
    border-radius: 4px;
}

.search_result .dropdown a {
    font-size: 15px;
    color: #322504;
    min-width: 170px;
    text-align: right;
}

.search_result .dropdown-toggle::after {
    margin-right: 17px;
    border-top: 7px solid #292D32;
    border-left: 7px solid transparent;
    border-bottom: 0;
    border-right: 7px solid transparent;
    position: relative;
    top: 3px;
    z-index: 0
}

.search_result .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 7px solid #fff;
    border-left: 7px solid transparent;
    border-bottom: 0;
    border-right: 7px solid transparent;
    position: absolute;
    top: 14px;
    left: 13px;
    z-index: 2;
}

.search_result .filter {
    background: #FFFFFF;
    border: 1px solid #D1C29B;
    border-radius: 4px;
    padding: 20px;
    position: relative;
}

.search_result .filter h3 {
    font-size: 19px;
    font-family: "ExtraBold_Almarai";
    color: #263238;
    margin-bottom: 20px;
}

.search_result .filter h3 i {
    display: none;
    position: absolute;
    left: 20px;
    top: 20px;
}

.search_result .filter h4 {
    font-size: 18px;
    color: #263238;
    font-weight: 800;
    margin-bottom: 11px;
    margin-top: 25px;
}

.search_result .search_sec {
    background: #FFFFFF;
    border: 1px solid #D1C29B;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 2px;
}

.search_result .search_sec h6 a {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin-bottom: 6px;
}

.search_result .search_sec ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0
}

.search_result .search_sec ul li {
    font-size: 14px;
    color: #292D32;
    padding-left: 30px;
    margin-top: 15px;
}

.search_result .search_sec ul li span {
    font-weight: bold;
}

@media(max-width:768px) {
    .search_result .filter {
        max-height: 65px;
        overflow: hidden
    }
    .search_result .filter h3 {
        cursor: pointer;
    }
    .search_result .filter h3 i {
        display: block;
    }
    .search_result .filter.active {
        height: auto;
        max-height: initial;
    }
}


/* checkbox */

.radiobtn input[type=checkbox] {
    position: relative;
    border: 2px solid #292D32;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin-left: 7px;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    border-radius: 4px;
}

.radiobtn input[type=checkbox]:hover {
    opacity: 1;
}

.radiobtn input[type=checkbox]:checked {
    background-color: #292D32;
    opacity: 1;
}

.radiobtn input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 11px;
    border: solid #d3d3d3;
    border-width: 0 2px 2px 0;
    margin: -1px -2px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.radiobtn input[type=checkbox]:checked:before {
    border-color: #fff
}

.radiobtn label {
    font-size: 15px;
    color: #000
}


/* gallary_popup */

.gallary_popup .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border-color: #fff;
    opacity: 1;
    padding: 8px;
    font-size: 11px;
    border-radius: 4px;
}

img[data-bs-toggle] {
    cursor: pointer
}

.gallary_popup img {
    width: 100%;
    height: auto;
}

.gallary_popup h3 {
    font-size: 18px;
    color: var(--mainColor);
    padding: 12px 18px;
    font-weight: bold;
}

.text_box_popup {
    background: #F2F0E6;
    border-radius: 4px;
    padding: 7px 14px;
}

.gallary_popup p {
    font-size: 16px;
    color: #4E4E4E;
    padding: 0px 18px;
    margin-bottom: 15px;
}

.gallary_popup p span {
    font-weight: bold;
}

.title.new {
    font-size: 20px !important;
    color: #000 !important
}

.top-bar {
    background: #BC6358;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 15px 15px;
}

@media(max-width:768px) {
    .top-bar {
        text-align: center;
    }
}


/*   article   */

.article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 450px;
}

.article .article_text {
    max-width: 550px
}

.article .article_text .link_text {
    font-weight: 800;
    font-size: 24px;
    line-height: 40px;
    text-decoration-line: underline;
    color: #000000;
}

.article .article_text h4 {
    font-size: 23px;
    line-height: 40px;
    position: relative;
    padding-right: 27px;
    margin-top: 15px;
    margin-bottom: 23px;
}

.article .article_text h4:before {
    content: "";
    border-width: 17px;
    border-style: solid;
    border-color: transparent #BC6358 transparent transparent;
    width: 44px;
    height: 34px;
    position: absolute;
    top: 7px;
    right: 0
}

.article .article_text p {
    font-size: 20px;
    line-height: 38px;
    text-align: justify;
    color: #000000;
    margin-bottom: 30px;
}

.article .article_text .btn {
    font-size: 22px;
    line-height: 27px;
    background-color: #fff;
    border: 2px solid #BC6358;
    border-radius: 4px;
    transition: .5s;
    color: #BC6358;
    min-width: 136px;
    padding: 10px;
}

.article .article_text .btn:hover {
    background-color: #B84A3D;
    color: #fff
}


/*  sound  */

.sound {
    background-color: #D8E9ED;
    position: relative;
    overflow: hidden
}

.sound:after {
    content: "";
    width: 553px;
    height: 553px;
    background-color: rgba(255, 255, 255, 0.16);
    position: absolute;
    top: -20px;
    left: -250px;
    border-radius: 50%
}

.sound .text {
    text-align: right;
}

.sound .text {
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid #B3D5DD;
    border-radius: 4px;
    padding: 30px 20px;
    max-width: 550px;
}

.sound .text h5 {
    font-size: 24px;
    color: var(--mainColor);
    line-height: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.sound .text p {
    font-size: 16px;
    line-height: 16px;
    color: #322504;
}

.sound .owl-dots {
    display: none;
}

.sound .owl-theme .owl-nav {
    text-align: left;
    margin-left: 9px;
    font-size: 24px;
    margin-top: 20px;
}

.sound .owl-theme .owl-nav button {
    transition: .5s;
    color: rgba(41, 45, 50, 0.5);
    padding-right: 17px !important;
}

.sound .owl-theme .owl-nav button i {
    height: 30px !important;
    transition: .5s;
    overflow: hidden;
    position: relative;
    top: 0
}

.sound .owl-theme .owl-nav .owl-prev:hover i,
.sound .owl-theme .owl-nav .owl-next:hover i {
    font-size: 35px;
    color: rgba(41, 45, 50);
    top: -6px;
}


/************/

.wrapper .gallery-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrapper .gallery-container ul li img {
    display: block;
    height: auto;
    max-width: 100%;
}

.gallery-container ul.masonry-gallery {
    columns: 16rem;
    column-gap: 20px;
}

.gallery-container ul.masonry-gallery li {
    break-inside: avoid;
    margin: 0 0 20px;
}


/*  filter */

.filter {
    background-color: #F2F0E6;
    padding: 24px 0 15px;
}

.filter .form-group {
    margin-bottom: 0
}

.filter .form-select {
    border: 1px solid #D1C29B;
    border-radius: 4px;
    color: #322504;
    font-size: 15px;
}

.filter .clear_filter {
    align-items: center;
    display: flex;
    justify-content: end;
}

.filter a {
    font-size: 14px;
    color: #B3A684;
    margin-bottom: 0;
    cursor: pointer;
}

.filter i {
    padding-right: 8px;
    font-size: 18px;
    position: relative;
    top: 3px;
}

@media(max-width:1200px) {
    .filter .container {
        max-width: 100%;
    }
}


/* termes_condition */

.termes_condition h3 {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
}

.termes_condition p {
    font-size: 16px;
    text-align: justify;
    line-height: 32px;
    color: #000;
}

.termes_condition p a {
    text-decoration: underline !important;
    font-weight: bold;
    color: #000;
}

.termes_condition h4 {
    font-size: 24px;
    line-height: 27px;
    font-weight: bold;
    color: #000;
    position: relative;
    padding-right: 27px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.termes_condition h4:before {
    content: "";
    border-width: 16px;
    border-style: solid;
    border-color: transparent #BC6358 transparent transparent;
    width: 29px;
    height: 22px;
    position: absolute;
    top: 1px;
    right: 0;
}


/*  add_blog  */

.add_blog img {
    width: 130px
}

.add_blog h3 {
    font-size: 32px;
    font-family: "ExtraBold_Almarai";
}

.add_blog p {
    font-size: 24px;
}

.add_blog h4 {
    font-size: 16px;
    line-height: 29px;
}

.add_blog .btn-color1 {
    font-weight: bold
}

.text_link {
    font-size: 14px;
    line-height: 32px;
    color: #000;
    font-family: "ExtraBold_Almarai";
}

.add_blog .detail_add h6 {
    font-size: 20px;
    line-height: 32px;
    color: #000;
}

.add_blog .detail_add p {
    font-size: 24px;
    line-height: 27px;
    color: #000;
    font-weight: bold;
    margin-top: 20px;
}

.share_linked a span {
    background-color: #569495 !important;
    text-align: center;
    width: 25px;
    height: 25px;
    margin: 10px 0px 10px 9px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50% !important;
    padding: 2px;
}

.share_linked.a2a_default_style:not(.a2a_flex_style) a {
    padding: 0;
}

.share_linked.a2a_default_style:not(.a2a_flex_style) a,
.share_linked.a2a_default_style .a2a_svg {
    float: right !important;
}

.letter_image {
    max-width: 450px;
    float: right;
    width: 100%;
    padding: 8px 0px 8px 30px;
}

.letter_banner {
    min-height: 300px;
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
}

.letter_banner:after {
    content: "";
    background-color: #F2F0E6;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
}

.banner.letter_banner .text h3 {
    color: var(--mainColor) !important;
    font-weight: bold;
}

.banner.letter_banner .text p {
    color: #000 !important;
    opacity: 1;
    line-height: 32px;
}

.banner.letter_banner .text h4 {
    color: #000 !important;
    font-weight: bold;
    opacity: 1;
    margin-bottom: 25px;
    margin-top: 25px;
}

.banner.letter_banner .text {
    padding: 30px 0px;
}

.details_letter {
    background-color: #D1C29B;
    padding: 10px 0;
}

.details_letter .text {
    display: flex;
    justify-content: space-between;
}

.details_letter .text h4 {
    font-size: 16px;
    line-height: 23px;
    color: #000;
    margin: 10px 0;
}

.details_letter .text h4 span {
    font-size: 18px;
    line-height: 23px;
    color: #000;
    font-weight: bold;
    padding: 0 7px;
}

.al_message .title {
    font-size: 24px;
    color: #000 !important;
    margin-bottom: 5px !important;
}

@media(max-width:1200px) {
    .details_letter .text {
        display: block;
    }
    .details_letter .text h4 {
        display: inline-block;
        width: 49%;
    }
}

@media(max-width:500px) {
    .details_letter .text h4 {
        width: 100%;
    }
}


/*news_ticker */

.news_ticker {
    position: relative;
    background-color: #FFDB59;
}

.news_ticker .container {
    max-width: 1500px;
}

.news_ticker .ticker {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    min-height: 56px;
}

.news_ticker .news-title {
    /* position: absolute; */
    z-index: 10;
    min-height: 56px;
    display: flex;
    align-items: center;
    background-color: #ffdb59;
    border-left: 2px solid #fff;
    padding-left: 20px;
    justify-content: end;
}

.news_ticker .news-title h5 {
    font-size: 22px;
    margin: 0;
    font-weight: bold;
    color: #000;
    padding: 0px 5px;
    text-align: center;
}

.news_ticker .rightTI {
    white-space: nowrap;
    overflow: hidden;
    animation: marquee 25s linear infinite;
    /* width: 100%; */
    margin-top: 11px;
}

.news_ticker .rightTI span {
    font-size: 18px;
    color: #000;
    padding: 0 14px;
}

.news_ticker .rightTI:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        text-indent: 100%;
    }
    100% {
        text-indent: -100%;
    }
}

@media(max-width:786px) {
    .news_ticker .news-title h5 {
        font-size: 14px;
    }
    .news_ticker .rightTI span {
        font-size: 14px;
    }
    .news_ticker .news-title {
        padding-left: 14px;
    }
    .news_ticker .rightTI {
        margin-top: 15px;
    }
}


/* new  pages */

.text_color {
    color: var(--mainColor) !important
}

.text_white {
    color: #fff !important;
}

.blog_link {
    min-width: 185px;
    background-color: #fff;
    border: 1px solid var(--mainColor);
    border-radius: 4px;
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    color: var(--mainColor) !important;
    padding: 12px 15px;
    text-align: center;
}

.blog_link:hover {
    color: #fff !important;
    border-color: #B84A3D;
}

.participant_div {
    background-color: #F2F0E6;
}

.participant_div h3 {
    margin-bottom: 8px !important;
    text-decoration: none !important;
}

.participant_div p {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    margin-bottom: 30px;
}

.participant_div img {
    height: 203px !important;
}

.participant_detials h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--mainColor);
    margin-top: 30px;
}

.participant_detials h4 {
    font-weight: bold;
    color: #000;
    font-size: 30px !important;
    margin-top: 0 !important;
}

.article.participant_detials .article_text {
    max-width: inherit !important;
}

.participant_detials img {
    height: 300px;
}

.participant_detials .article_text p {
    line-height: 34px !important;
    margin-bottom: 80px;
}

.participant_detials {
    position: relative;
}

.participant_detials .blog_link {
    position: absolute;
    bottom: 20px;
}

.new_family img {
    max-width: 276px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.new_family {
    border: 1px dashed #BC6358;
    padding: 60px;
    border-radius: 4px;
}

.new_family p {
    font-size: 18px !important;
    line-height: 30px;
    margin-bottom: 0 !important;
}

.login_family h5 {
    color: #000;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 25px;
}

.form .form-control {
    min-height: 48px;
    color: #000
}

.list_family {
    padding: 0;
}

.list_family li {
    display: inline-block;
    border: 1px solid #BC6358;
    border-radius: 4px;
    min-height: 52px;
    min-width: 28%;
    list-style: none;
    text-align: center;
    margin-left: 15px;
    margin-bottom: 15px;
}

.list_family li a {
    font-size: 20px;
    text-align: center;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
    font-weight: bold;
    min-width: 100px;
}

.new_account a {
    font-size: 16px;
    color: #292D32;
}

.new_account_form p {
    font-size: 20px !important;
}

.new_account_form h4 {
    font-size: 20px !important;
}

.form .radiobtn label,
.form .radiobtn label a {
    font-size: 14px !important;
    color: #000 !important;
}

.top_text {
    background-color: #F2F0E6;
    padding: 8px 0;
}

.top_text .title {
    font-size: 32px !important;
}

.top_text .btn-color {
    background-color: #BC6358;
    min-height: 54px;
    color: #fff !important;
    transition: .5s;
    display: inline-flex;
    font-size: 20px;
    line-height: 22px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 4px;
    min-width: 175px;
}

.top_text .btn-color:hover {
    background-color: var(--mainColor);
}

.top_text .btn-color i {
    color: #fff;
    position: relative;
    left: 10px;
}

.account_profile.search_result .dropdown a {
    position: relative;
    width: 100%;
    min-width: 140px !important;
}

.account_profile.search_result .dropdown a:after {
    top: 14px;
    left: 13px;
    position: absolute;
}

.account_profile.search_result .dropdown a:before {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 1;
}

.account_profile .remove {
    color: #B3A684;
}

.account_profile .remove i {
    position: relative;
    top: 3px;
    padding: 0 8px;
}

.side_account {
    background: #FFFFFF;
    border: 1px solid #D1C29B;
    border-radius: 0px;
    padding: 20px 10px;
    position: relative;
    padding-bottom: 80px;
}

.side_account .avatar-upload {
    position: relative;
    width: 120px;
}

.side_account .avatar-upload .avatar-edit {
    position: absolute;
    right: 0px;
    z-index: 1;
    bottom: 10px;
}

.side_account .avatar-upload .avatar-edit input {
    display: none;
}

.side_account .avatar-upload .avatar-edit input+label {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #D9D9D9;
    border: 1px solid transparent;
    cursor: pointer;
}

.side_account .avatar-upload .avatar-edit input+label:hover {
    background: #D9D9D9;
    border-color: #d6d6d6;
}

.side_account .avatar-upload .avatar-edit input+label:after {
    content: "\f044";
    font-family: 'Font Awesome 5 Pro';
    color: #000;
    padding-right: 0;
    position: relative;
    top: 2px;
    right: 4px;
}

.side_account .avatar-upload .avatar-preview {
    width: 104px;
    height: 104px;
    position: relative;
    border-radius: 100%;
    border: 2px solid #F8F8F8;
    margin: auto;
}

.side_account .avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.side_account .data_profile {
    color: #808080;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    margin-top: 40px;
}

.side_account .account_details {
    font-size: 16px;
    color: #000;
    margin: 20px 0;
}

.side_account .account_details span {
    min-width: 65px;
    display: inline-block;
}

.side_account .btn_edit {
    border: 1px solid #5F4D1E;
    border-radius: 4px;
    min-height: 48px;
    font-size: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #5F4D1E;
    margin-top: 50px;
}

.side_account .logout {
    min-height: 48px;
    font-size: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #5F4D1E;
    margin-top: 10px;
}

.center_content img {
    width: 138px;
    margin-bottom: 20px;
}

.center_content p {
    color: #4A4948;
    font-weight: bold;
    font-size: 16px;
}

.center_content h4 {
    color: #292D32;
    font-size: 20px;
}

.form .btn-color1.cancle {
    background-color: #fff;
    border: 1px solid #BC6358;
    color: #BC6358;
}

.form .btn-color1.cancle:hover {
    background-color: var(--mainColor) !important;
    color: #fff !important;
    border-color: var(--mainColor) !important;
}

@media(max-width:1200px) {
    .account_profile .container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .account_profile.response_high {
        margin-top: 0px !important;
    }
}

#drop-area {
    position: relative;
    border: 2px dashed #BC6358;
    width: 100%;
    height: 150px !important;
    overflow: hidden;
    margin-bottom: 15px;
}

#drop-area .controll-panel {
    position: absolute;
    bottom: 0;
    right: 0;
}

#drop-area .controll-panel .item {
    display: inline-block;
    padding: 3px 12px;
    cursor: pointer;
    background-color: #0000004f;
    border-radius: 4px 0 0 0;
}

#drop-area .controll-panel .item i {
    color: #fff;
    font-size: 12px;
}

#drop-area label {
    margin-bottom: 0;
    height: 100%;
    width: 100%;
    display: block;
}

#drop-area .uploadIcon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#drop-area .uploadIcon i {
    margin: 0 auto;
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    text-align: center;
    top: 44%;
    font-size: 20px;
    color: #BC6358;
}

#fileElem {
    display: none;
}

#drop-area #gallary {
    display: flex;
    align-items: center;
}

#gallery {
    text-align: center;
}

#gallery img {
    width: 100%;
    height: 140px;
    margin: auto;
    object-fit: contain;
}

.form .form-group select.form-control {
    appearance: auto;
}

#drop-area .controll-panel {
    display: none;
}

.image_delet .controll-panel {
    display: block !important;
}

.account_profile .center_content .dropdown .action {
    width: 0 !important;
    min-width: initial !important;
    border: 0;
    font-size: 20px;
}

.center_content .action:after,
.center_content .action:before {
    display: none;
}

.action_detail h5 {
    font-size: 15px;
    color: #292D32;
    background-color: #F5F0E1;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
    border-radius: 4px;
}

@media(max-width:992px) {
    .account_profile.search_result .search_sec ul {
        display: block;
    }
}

.image_details_ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.image_details_ul li {
    padding-left: 40px;
    font-size: 19px;
}

.image_details_ul li strong {
    padding-left: 15px;
}

.see_more img {
    height: 383px;
    object-fit: cover;
    border-radius: 4px;
}

@media(max-width:768px) {
    .image_details_ul {
        display: block;
    }
    .image_details_ul li {
        margin-bottom: 8px;
    }
}

.search_title {
    padding-left: 335px;
}

@media (max-width: 550px) {
    .search_title {
        padding-left: 10%;
    }
}

.letter-filter {
    background-color: transparent !important;
    padding-bottom: 0;
}

.letter-filter .clear_filter {
    justify-content: unset;
}

.top_bg {
    background-image: url(../../images/bannerAR.png);
    background-size: cover;
    min-height: 200px
}

.text_ghaza {
    position: relative;
    z-index: 1;
    padding-top: 46px;
    padding-right: 75px;
}

.text_ghaza:after {
    content: "";
    background-image: url(../../images/shape.png);
    background-position: left;
    background-size: cover;
    width: 100%;
    max-width: 35%;
    min-width: 450px;
    height: 200px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.text_ghaza h3 {
    margin-top: 10px;
    font-size: 40px;
    color: #fff;
    font-weight: bold
}

.text_ghaza h4 {
    font-size: 20px;
    color: #fff;
}

.text_title {
    font-size: 24px;
    color: #000050;
    font-weight: bold;
}

.filter_gallary {
    background-color: transparent
}

.gaza_privet {
    background-image: url(../../images/home/gaza_banner.png);
    background-size: cover;
    background-position: center;
    position: relative;
    border: 20px solid transparent;
    box-shadow: inset 0 0 0 3px #FFF8E5;
    position: relative;
    padding: 25px 24px;
    min-height: 330px
}

.gaza_privet .image {
    width: 100%;
    margin-bottom: -50px;
    margin-top: 30px;
}

.gaza_privet .image:after {
    content: "";
    border-left: 3px solid #FFF8E5;
    border-top: 3px solid #FFF8E5;
    position: absolute;
    top: 22px;
    left: 20px;
    width: 100px;
    height: 100px;
}

.gaza_privet .text h3 {
    font-size: 72px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0
}

.gaza_privet .btn-ghaza {
    background-color: #569495;
    color: #fff;
    font-size: 24px;
    padding: 10px 18px;
    margin-top: 22px;
    transition: .5s
}

.gaza_privet .btn-ghaza:hover {
    background-color: var(--mainColor)
}

@media(max-width:1200px) {
    .gaza_section .container {
        max-width: 100%
    }
    .gaza_privet .image {
        margin-bottom: -45px;
    }
}

@media(max-width:992px) {
    .gaza_privet .image img {
        max-width: 350px;
    }
}

@media(max-width:500px) {
    .text_ghaza:after {
        min-width: 95%;
    }
    .text_ghaza {
        padding-top: 60px;
        padding-right: 25px;
    }
    .text_ghaza h3 {
        font-size: 30px;
    }
    .text_ghaza h4 {
        font-size: 15px;
    }
}

.text_color_alt {
    color: #B84A3D !important
}

.border-style-1 {
    color: #000;
    background-color: #fff;
    border: 1px solid #D1C29B;
}

.color-1 {
    color: #D1C29B;
}


/* ============================================
   Families Page
   ============================================ */
.families-page {
    padding: 80px 0 100px;
    background-color: #FCFBF8;
}

.families-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.families-form-col {
    flex: 0 0 489px;
    max-width: 489px;
}

.families-title-block {
    margin-bottom: 32px;
}

.families-main-title {
    font-family: Almarai, sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 56px;
    letter-spacing: 0;
    text-align: right;
    color: #000050;
    margin-bottom: 12px;
}

.families-subtitle {
    font-family: Almarai, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: right;
    color: #121212;
    margin-bottom: 0;
}

.families-login-block {
    margin-bottom: 52px;
}

.families-login-heading {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    text-align: right;
    color: #000050;
    margin-bottom: 16px;
}

.families-input-group {
    position: relative;
    margin-bottom: 12px;
}

.families-input {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    background: #F0EDE9;
    border: none;
    outline: none;
    padding: 0 16px;
    font-family: Almarai, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-align: right;
    color: #292D32;
    direction: rtl;
    box-shadow: none;
}

.families-input::placeholder {
    font-family: Almarai, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #292D32;
    opacity: 1;
}

.families-input:focus {
    background: #F0EDE9;
    box-shadow: none;
    outline: none;
}

.families-password-group {
    margin-bottom: 32px;
}

.families-password-input {
    padding-left: 48px;
}

.families-eye-btn {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.families-eye-btn:focus {
    outline: none;
    box-shadow: none;
}

.families-login-btn {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    background: #BC6358;
    border: none;
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 16px;
    display: block;
}

.families-login-btn:hover {
    background: #a85448;
    color: #FFFFFF;
}

.families-form-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.families-forgot {
    font-family: Almarai, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #292D32;
    text-decoration: none;
}
.families-forgot:hover {
    color: #292D32;
    text-decoration: underline;
}

.families-new-account {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #292D32;
    text-decoration: none;
}

.families-new-account:hover {
    color: #292D32;
    text-decoration: underline;
}

.families-registered-heading {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: right;
    color: #000050;
    margin-bottom: 16px;
}

.families-tags-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.families-tag {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: #000000;
    height: 32px;
    padding: 8px 12px;
    border-radius: 4px;
    background: #FFFFFF;
    border: 1px solid #BC6358;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s;
}

.families-tag:hover {
    background: #BC6358;
    color: #FFFFFF;
}

.families-image-col {
    flex: 0 0 594px;
    max-width: 594px;
}

.families-image-wrap {
    position: relative;
    width: 594px;
    height: 850px;
    border-radius: 24px;
    overflow: hidden;
}

.families-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.families-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(111, 121, 58, 0) 0%, #6F793A 74.94%);
    padding: 60px 32px 40px;
}

.families-overlay-title {
    font-family: Almarai, sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1;
    text-align: right;
    color: #F9F9F9;
    margin-bottom: 10px;
}

.families-overlay-text {
    font-family: Almarai, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: right;
    color: #F9F9F9;
    margin-bottom: 0;
}

.families-overlay-text strong {
    font-weight: 700;
}

/* Families Page - Mobile */
@media (max-width: 992px) {
    .families-page {
        padding: 24px 0 60px;
    }
    .families-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    /* Image moves to top */
    .families-image-col {
        order: -1;
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    .families-image-wrap {
        width: 100%;
        height: 400px;
        border-radius: 24px;
    }
    .families-img-overlay {
        padding: 40px 20px 24px;
    }
    .families-overlay-title {
        font-size: 24px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .families-overlay-text {
        font-size: 14px;
        line-height: 20px;
    }
    /* Form column full width */
    .families-form-col {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    /* Title block */
    .families-main-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
    }
    .families-subtitle {
        font-size: 18px;
        line-height: 30px;
    }
    /* Inputs full width */
    .families-input {
        width: 100%;
    }
}

/* Families Register extras */
.families-icon-input {
    padding-left: 48px;
}

.families-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.families-register-back {
    text-align: left;
    margin-top: 12px;
}

.families-login-back-link {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #292D32;
    text-decoration: none;
}

.families-login-back-link:hover {
    color: #292D32;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .families-register-back {
        text-align: center;
    }
}


/* ===========================
   Families - Logged In Page
   =========================== */

/* Profile Header */
.fam-profile-header {
    background: #E4E8C8;
    padding: 40px 0;
}

.fam-profile-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 110px;
}

.fam-profile-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.fam-profile-avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.fam-avatar-edit-icon {
    position: absolute;
    bottom: 4px;
    left: 4px;
    width: 28px;
    height: 28px;
    background: #BC6358;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fam-profile-name {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000050;
    line-height: 1.3;
}

.fam-profile-email {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #121212;
    margin-top: 6px;
    text-align: right;
}

.fam-profile-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
}

.fam-profile-edit-btn {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #BC6358;
    border: 1.5px solid #BC6358;
    border-radius: 8px;
    padding: 8px 18px;
    text-decoration: none;
    background: transparent;
    display: inline-block;
}

.fam-profile-edit-btn:hover {
    background: #BC6358;
    color: #fff;
}

.fam-profile-password-link {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #BC6358;
    text-decoration: none;
}

.fam-profile-password-link:hover {
    text-decoration: underline;
    color: #BC6358;
}

/* Stats Section */
.fam-stats-section {
    padding: 40px 0 24px;
}

.fam-stats-grid {
    display: flex;
    gap: 16px;
}

.fam-stat-card {
    flex: 1;
    border: 1px solid #6F793A;
    background: #E4E8C8;
    border-radius: 24px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    min-height: 100px;
}

.fam-stat-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fam-stat-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.fam-stat-label {
    font-family: Almarai, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #121212;
}

.fam-stat-count {
    font-family: Almarai, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #6F793A;
    text-align: left;
    line-height: 1;
}

/* Archive Section */
.fam-archive-section {
    padding-bottom: 60px;
}

.fam-archive-title {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #121212;
    margin-bottom: 24px;
    padding-top: 8px;
}

.fam-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fam-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fam-materials-title {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #121212;
    margin: 0;
}

.fam-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #BC6358;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}

.fam-add-btn:hover {
    background: #a8564b;
    color: #fff;
}

/* Filter Dropdowns */
.fam-filter-dropdowns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.fam-filter-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.fam-filter-select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #D1C29B;
    border-radius: 8px;
    padding: 6px 10px;
    padding-inline-end: 28px;
    font-family: Almarai, sans-serif;
    font-size: 13px;
    color: #121212;
    background: #fff;
    cursor: pointer;
    min-width: 0;
    outline: none;
    text-align: right;
    direction: rtl;
}

.fam-filter-select:focus {
    border-color: #B3A684;
}

.fam-select-arrow {
    position: absolute;
    inset-inline-end: 10px;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.fam-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #B3A684;
    font-family: Almarai, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.fam-clear-btn:hover {
    color: #8a7a5a;
}

/* Archive Table */
.fam-archive-table {
    border-top: 1px solid #D1C29B;
}

.fam-archive-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #D1C29B;
    gap: 16px;
}

.fam-archive-info {
    flex: 1;
    min-width: 0;
}

.fam-archive-entry-title a {
    font-family: Almarai, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #121212;
    text-decoration: none;
}

.fam-archive-entry-title a:hover {
    text-decoration: underline;
    color: #000050;
}

.fam-archive-meta {
    display: flex;
    gap: 24px;
    font-family: Almarai, sans-serif;
    font-size: 14px;
    color: #121212;
    margin-top: 8px;
    flex-wrap: wrap;
}

.fam-meta-label {
    font-weight: 400;
    color: #121212;
}

.fam-archive-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.fam-archive-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Desktop: show badge+dots in actions, hide mobile duplicates */
.fam-dots-mobile,
.fam-archive-badge-mobile {
    display: none;
}

.fam-badge-desktop,
.fam-dots-desktop {
    display: flex;
    align-items: center;
}

/* Status Badges */
.fam-status-badge {
    font-family: Almarai, sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 8px;
    white-space: nowrap;
    display: inline-block;
}

.fam-status-review {
    background: #F0EBE0;
    color: #121212;
}

.fam-status-published {
    background: #2D6A3F;
    color: #fff;
}

.fam-status-rejected {
    background: #BC6358;
    color: #fff;
}

.fam-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.fam-action-btn:hover {
    background: #f0f0f0;
}

.fam-action-btn:hover {
    background: #f5f5f5;
}

.fam-archive-empty {
    text-align: center;
    padding: 60px 0;
}

.fam-archive-empty img {
    max-width: 120px;
    margin-bottom: 16px;
}

/* Responsive */
/* ── Tablet ── */
@media (max-width: 992px) {
    .fam-profile-inner {
        padding-right: 0;
    }

    .fam-stats-grid {
        flex-wrap: wrap;
        gap: 12px;
    }

    .fam-stat-card {
        flex: 1 1 calc(33.33% - 12px);
    }
}

/* ── Mobile ── */
@media (max-width: 576px) {
    .fam-profile-header {
        padding: 20px;
        width: 100%;
        min-height: 184px;
        box-sizing: border-box;
    }

    .fam-profile-inner {
        gap: 16px;
        padding-right: 0;
        align-items: flex-start;
    }

    .fam-profile-avatar {
        width: 82px;
        height: 92px;
        border-radius: 50%;
        object-fit: cover;
    }

    .fam-profile-name {
        font-size: 20px;
        line-height: 1;
        text-align: right;
        color: #000050;
    }

    .fam-profile-email {
        font-size: 16px;
        line-height: 1;
        color: #121212;
        text-align: right;
        margin-top: 6px;
        margin-bottom: 16px;
    }

    .fam-profile-btns {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-top: 0;
        flex-wrap: wrap;
    }

    .fam-profile-edit-btn {
        width: auto;
        height: 36px;
        border-radius: 4px;
        border: 2px solid #BC6358;
        padding: 10px 14px;
        font-size: 14px;
        font-family: Almarai, sans-serif;
        font-weight: 700;
        color: #BC6358;
        background: transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: right;
        white-space: nowrap;
        box-sizing: border-box;
    }

    .fam-profile-password-link {
        width: auto;
        height: 36px;
        border-radius: 4px;
        padding: 10px 14px;
        font-size: 14px;
        font-family: Almarai, sans-serif;
        font-weight: 700;
        color: #fff;
        background: #BC6358;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: right;
        text-decoration: none;
        white-space: nowrap;
        box-sizing: border-box;
    }

    .fam-profile-password-link:hover {
        text-decoration: none;
        color: #fff;
        background: #a8544a;
    }

    .fam-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .fam-stat-card {
        flex: unset;
        min-height: 90px;
    }

    .fam-archive-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .fam-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }

    .fam-toolbar-actions {
        width: 100%;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
    }

    .fam-filter-dropdowns {
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .fam-filter-select-wrap {
        flex: 1;
        min-width: 100px;
    }

    .fam-filter-select {
        width: 100%;
        margin: 4px;
        appearance: none;
        -webkit-appearance: none;
        border: 1px solid #D1C29B;
        border-radius: 8px;
        padding: 4px;
        padding-inline-end: 36px;
        font-family: Almarai, sans-serif;
        font-size: 14px;
        color: #121212;
        background: #fff;
        cursor: pointer;
        min-width: 100px;
        outline: none;
        text-align: right;
        direction: rtl;
    }

    .fam-select-arrow {
        inset-inline-end: 6px;
    }

    .fam-clear-btn {
        font-size: 12px;
    }

    .fam-add-btn {
        width: 100%;
        justify-content: center;
        padding: 8px 14px;
        font-size: 13px;
    }

    /* Archive rows — stack */
    .fam-archive-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 16px 0;
    }

    .fam-archive-info {
        width: 100%;
    }

    .fam-archive-title-row {
        width: 100%;
        justify-content: space-between;
    }

    .fam-archive-entry-title a {
        font-size: 16px;
    }

    .fam-archive-meta {
        gap: 8px 12px;
        font-size: 13px;
        margin-top: 6px;
    }

    /* Mobile: show dots+badge in info section, hide desktop duplicates */
    .fam-dots-mobile {
        display: flex;
        align-items: center;
    }

    .fam-archive-badge-mobile {
        display: block;
        margin-top: 8px;
    }

    .fam-badge-desktop,
    .fam-dots-desktop {
        display: none;
    }

    .fam-archive-actions {
        display: none;
    }
}

/* ── Tablet ── */
@media (max-width: 768px) {
    .fam-filter-select {
        width: 100%;
        margin: 4px;
        appearance: none;
        -webkit-appearance: none;
        border: 1px solid #D1C29B;
        border-radius: 8px;
        padding: 4px;
        padding-inline-end: 36px;
        font-family: Almarai, sans-serif;
        font-size: 14px;
        color: #121212;
        background: #fff;
        cursor: pointer;
        min-width: 100px;
        outline: none;
        text-align: right;
        direction: rtl;
    }
}
