html {
    scroll-behavior: smooth;
    }
    /* #bd9b60 */
    body {
    text-transform: capitalize;
    font-family: var(--font-family);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    transition: .3s;
    
    }
    h1,h2,h3 {
        color: var(--title-color);
        font-weight: var(--font-semi-bold);
    }
    
    .container {
        max-width: 1024px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    }
    .grid {
        display: grid;
        
    }
    .section {
        padding: 4.5rem 0 2rem;
    }
    .section-title {
        font-size: var(--h2-font-size);
        /* margin-bottom: 1rem; */
        direction: rtl;
        color: var(--dardashat-main-color);
    
    }
    .section-title span {
        color: var(--dardashat-second-color);
        direction: rtl;
    }
    .dark-theme .section-title span {
        color: var(--max-second-color);
    }
    .section-subtitle {
        display: block;
        font-size: var(--small-font-size);
        color: var(--second-color);
        direction: rtl;
    }
    .main {
        overflow: hidden;
        margin-top: 60px;
    }
    img {
        max-width: 100%;
        height: auto;
      aspect-ratio: 1;
    }
    input,button {
        font-family: var(--body-font);
        outline: none;
        border: none;
    }
    /* start global rules  */
    /* ======================theme====================== */
    .change-theme {
        font-size: 1.25rem;
        color:white;
        cursor: pointer;
        transition: .3s;
    }
    .dark-theme .change-theme {
        color: var(--max-main-color);
    
    }
    /* .change-theme:hover {
        color: var(--first-color);
    } */
    /* vars for dark thme  */
    body.dark-theme {
    --first-color:#F9E0BB;
    --second-color:#cc7f47;
    --title-color:hsl(228,8%, 95%);
    --text-color:hsl(228,8%, 70%);
    --border-color:hsl(228,16%, 14%);
    --body-color:hsl(228,12%, 8%);
    --container-color:hsl(228,16%, 12%);
    }
    /* vars for dark thme  */
    /* some change in color for some part of website  */
    .dark-theme .home-search,
    .dark-theme .swiper-button-next,
    .dark-theme .swiper-button-prev {
        border: 3px solid var(--border-color);
    }
    .dark-theme .nav-menu,
    .dark-theme .home-img,
    .dark-theme .popular-card:hover,
    .dark-theme .accordion-open,
    .dark-theme .accordion-open .value-accordion-icon,
    .dark-theme .value-accordion-arrow,
    .dark-theme .contact-card-box:hover,
    .dark-theme .scrollup  {
        box-shadow: none;
    }
    .dark-theme .value-orbe,
    .dark-theme .contact-orbe,
    .dark-theme .contact-card i,
    .dark-theme .contact-card-button,
    .dark-theme .subscribe-container {
        background-color: var(--container-color);
    }
    .dark-theme .subscribe-container {
        border: 6px solid var(--border-color);
    }
    .dark-theme .subscribe-description {
        color: var(--text-color);
    }
    .dark-theme::-webkit-scrollbar {
        background-color: hsl(228,4%, 15%);
    }
    .dark-theme::-webkit-scrollbar-thumb {
        background-color: hsl(228,4%, 25%);
    }
    .dark-theme::-webkit-scrollbar-thumb {
        background-color: hsl(228,4%, 35%);
    }
    /* some change in color for some part of website  */
    /* ======================theme====================== */
    
    
    
    * {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none; 
    box-sizing: border-box;
    }
    :root {
    /* --mz-main-color:#ffd900b0; */
    /* --twixi-main-color:#E70000; */
    --dardashat-main-color:#283993;
    --dardashat-second-color:#BE9E6D;
    /* --max-main-color:#804096;
    --velvet-second-color:#58595d; */
    /* --max-main-color:#F6821F;
    --max-second-color:#62432E; */
    /* --delcious-main-color:#ef1923;
    --delcious-second-color:#ffea00;
    --twixi-black-color:black; */
    --cb-main-color:#73BCA8;
    --cb-brown-color:#563F2D;
    --cb-offwhite-color:#ece6c2;
    --cb-yellow-color:#efbd66;
    --eng-font: 'Poppins', sans-serif;
    /* colors  */
    --font-family:'El Messiri', sans-serif;
    --header-height:3.5rem;    
    --first-color:#8E3200;
    --first-color-alt:hsl(228,66%, 47%);
    --first-color-light:hsl(228,62%, 59%);
    --first-color-lighten:hsl(228,100%, 97%);
    --second-color:hsl(25,83%, 53%);
    --title-color:hsl(228,57%, 28%);
    --text-color:hsl(228,15%, 50%);
    --text-color-light:hsl(228,12%, 75%);
    --border-color:hsl(228,99%, 98%);
    --body-color:#fff;
    --container-color:#fff;
    /* colors  */
    /* font and tyography */
    --biggest-font-size:2.25rem;
    --h1-font-size:1.5rem;
    --h2-font-size:1.25rem;
    --h3-font-size:1rem;
    --normal-font-size:.938rem;
    --small-font-size:.813rem;
    --smaller-font-size:.75rem;
    /* font and tyography */
    /* font weights */
    --font-medium:500;
    --font-semi-bold:600;
    /* font weights */
    /* z-index  */
    --z-tooltip:10;
    --z-fixed:100;
    /* z-index  */
    
    }
    /* end global rules  */
    @media screen and (min-width:1024px) {
        :root {
            --biggest-font-size:4rem;
            --h1-font-size:2.25rem;
            --h2-font-size:1.5rem;
            --h3-font-size:1.25rem;
            --normal-font-size:1rem;
            --small-font-size:.875rem;
    --smaller-font-size:.813rem;
    }
    }
    /* start coding */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: transparent;
        z-index: var(--z-fixed);
        transition: .3s;
        font-family: 'Poppins', sans-serif;
    }
    /* nav  */
    /* nav  */
    .nav {
        height: var(--header-height);
        display:flex;
        justify-content: space-between;
        align-items: center;
    
    }
    .nav-logo {
        /* color: #C38154; */
        color: #c38054c8;
        display: inline-flex;
        align-items: center;
        column-gap: .25rem;
        font-weight: var(--font-medium);
        transition: .3s;
    }
    .dark-theme .nav-logo {
        color: #fff;
    
    }
    .nav-logo i {
        font-size:1rem ;
    }
    .nav-logo:hover {
        color: var(--first-color);
    }
    @media screen and (max-width:1023px) {
        .nav-menu {
            position: fixed;
            bottom: 1rem;
            background-color: var(--container-color);
            box-shadow: 0 8px 24px hsla(228, 66%, 45%, .15);
            width: 90%;
            left: 0;
            right: 0;
            margin: 0 auto;
            /* padding: 1.30rem 3rem; */
            padding: 0.80rem 1.40rem;
            border-radius: 1.25rem;
            transition: .4s;
        }
        .nav-list {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-link {
            color:var(--text-color) ;
            display: flex;
            padding: .5rem;
            border-radius: 50%;
    
        }
        .nav-link i {
            font-size: 1.25rem;
        }
        /* .nav-link i.special {
            font-size: 1.50rem;
        } */
        .nav-link span {
            display: none;
            
        }
    }
    /* .scroll-header {
        background-color: var(--body-color);
        box-shadow:0 1px 4px hsla(228, 4%, 15%, .1) ;
    } */
    .scroll-header .nav-logo {
        color: var(--first-color);
        font-family: var(--eng-font);
    }
    /* .scroll-header .change-theme {
        color: var(--first-color);
    } */
    /* active link  */
    .active-link {
        background:#8E3200;
        color: #fff;
        box-shadow: 0 4bx 8px hsla(228, 66%, 45%, .25);
        transition: .3s;
    }
    .dark-theme .active-link {
        background-color: #C38154;
    }
    /* active link  */
    /* nav  */
    /* home section  */
    .home {
        /* background-color: beige; */
        background-color: var(--dardashat-main-color);
        
        padding-bottom: 0;
        height: 80vh;
    }
    .dark-theme .home {
        
        background: linear-gradient(170deg,
        hsl(0,0%,22%)0%,
        hsl(0,0%,6%)30%);
    }
    .home-container {
        /* padding-top: 2rem; */
        padding-top: 1rem;
        /* row-gap: 3.5rem; */
    }
    .home-title,
    .home-value-number{
    color: #fff;
    }
    .home-title {
        font-size: var(--biggest-font-size);
        line-height: 120%;
        margin-bottom:1rem ;
        direction: rtl;
        color: white;
    
    }
    .dark-theme .home-title {
        color: white;
    }
    .home-description {
        direction: rtl;
        margin-bottom: 30px;
        color: white;
    }
    /* .home-description:nth-child(2) {
        margin-bottom: 0.5rem;
    
    } */
    .home-description:nth-child(3) {
        margin-bottom: 1rem;
        font-size: 12px;
    }
    .home-description  span {
        font-family: var(--eng-font);
        direction: rtl;
    }
    .dark-theme .home-description {
        color: white;
    
    }
    .home-images {
        position: relative;
        display: flex;
        justify-content: center;
    }
    .home-orbe {
    
    border-radius: 135px 135px 0 0;
    width: 240px;
    height: 264px;
    }
    .home-img {
        position: absolute;
        width: 275px;
        height: 300px;
        overflow: hidden;
        /* border-radius: 125px 125px 12px 12px; */
        /* border-radius: 50%; */
        display: inline-flex;
        align-items: center;
        bottom: 0.5rem;
        /* box-shadow: 0 16px 32px var(--dardashat-main-color); */
        /* box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25); */
    }
    /* home section  */
    /* ################## */
    /* home button  */
    .button {
        display: inline-block;
    background-color: #956c50;
        color: #fff;
        padding: 14px 28px;
        border-radius: .5rem;
        font-size: var(--normal-font-size);
        font-weight: var(--font-medium);
        box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
        transition: .3s;
        cursor: pointer;
    }
    
    .nav-boutton {
        display: none;
    }
    /* home button  */
    /* ###################### */
    /* subscribe section  */
    .subscribe {
        padding: 2.5rem 0;
    }
    .subscribe-container {
        background-color: white;
        padding: 3rem 2rem;
        border-radius: 1.25rem;
        text-align: right;
        border: 6px solid var(--border-color);
    }
    .subscribe-title {
        font-size: var(--h2-font-size);
        color: var(--title-color);
        margin-bottom: 1rem;
    }
    .subscribe-description {
        font-size: 0.90rem;
        color: var(--text-color);
        margin-bottom: .25rem;
    }
    .subscribe-description  span {
        color: var(--second-color);
    }
    .subscribe-button {
        border: 2px solid #fff;
        background: var(--first-color-alt);
        font-size: var(--small-font-size);
    }
    
    /* subscribe section  */
    
    /* popular section  */
    .popular-container {
         padding: 1rem 0 1rem;
        direction: rtl;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        row-gap: 10px;
        
    }
    .popular-card {
        /* width: 290px; */
        background-color: var(--container-color);
        /* padding: .5rem .5rem 1.5rem ; */
        border-radius: 1rem;
        /* margin: 15px auto; */
        transition: .4s;
        direction: rtl;
        box-shadow: 0px 0px 8px #444343;
        /* special edits for dardachat */
        width: 140px;
        height: fit-content;
        padding: .2rem .5rem .1rem;
        margin: 5px auto;
        /* special edits for dardachat */
    }
    .dark-theme .popular-card {
        box-shadow: none;
    }
    .popular-img {
        border-radius: 1rem;
        margin-bottom: 1rem;
    }
    .popular-data {
        padding: 0 1rem 0 .5rem;
    }
    .popular-price {
        /* font-size: var(--h2-font-size); */
        /* font-size: 0.90rem; */
            color: var(--dardashat-main-color);
        margin-bottom: .25rem;
        font-family: var(--eng-font);
        /* special edits for dardachat */
        font-size: 14px;
        /* special edits for dardachat */
    }
    .dark-theme .popular-price {
        color: white;
    }
    .popular-price span {
        color: var(--text-color);
        font-family: var(--font-family);
    }
    .popular-title {
        /* font-size: var(--h3-font-size); */
        margin-bottom: .75rem;
        color: var(--dardashat-second-color);
        /* special edits for dardachat */
        font-size: 16px;
        /* special edits for dardachat */
    }
    .dark-theme .popular-title {
        color: var(--dardashat-main-color);
    }
    .popular-description {
            /* font-size: var(--small-font-size); */
        /* special edits for dardachat */
        font-size: 12px;
        /* special edits for dardachat */
    }
    
    /* swiperrrr
    .swiper-button-prev::after, 
    .swiper-button-next::after{
    content: '';
    
    }
    .swiper-button-prev,
    .swiper-button-next {
        top: initial;
        bottom: 0;
        width: initial;
        height: initial;
        background-color: var(--container-color);
        border: 2px solid var(--text-color-light);
        padding: 6px;
        border-radius: .5rem;
        font-size: 1.5rem;
        color: var(--first-color);
    }
    .swiper-button-prev {
        left: calc(50% - 3rem);
    }
    .swiper-button-next {
        right: calc(50% - 3rem);
    } */
    /* swiperrrr */
    /* popular section  */
    /* ################################ */
    
    /* ############## */
    /* fooooter section  */
    /* .footer-container {
        row-gap: 2.5rem;
        font-family: var(--eng-font);
    }
    .footer-logo {
        color: var(--first-color);
        font-size: var(--h3-font-size);
        font-weight: var(--font-semi-bold);
        display: inline-flex;
        align-items: center;
        column-gap: .25rem;
        margin-bottom: .75rem;
    }
    .footer-logo i {
        font-size: var(--small-font-size);
    }
    .footer-description,
    .footer-link {
        font-size: var(--small-font-size);
        font-weight: var(--font-medium);
    }
    .footer-content,
    .footer-link {
        display: grid;
    }
    .footer-content {
        grid-template-columns: repeat(2,max-content);
        gap: 2.5rem 4rem;
    }
    .footer-title {
        font-size: var(--h3-font-size);
        margin-bottom: 1rem;
    
    }
    .footer-links {
        row-gap: .5rem;
    }
    .footer-link {
        color: var(--text-color);
    transition: .3s;
    }
    .footer-link:hover {
        color: var(--title-color);
    }
    .footer-social {
        display: flex;
        column-gap: 1rem;
    }
    .footer-social-link {
        font-size: 1.25rem;
        color: var(--text-color);
        transition: .3s;
    }
    .footer-social-link:hover {
        color: var(--title-color);
    }
    .footer-info,
    .footer-privacy {
        display: flex;
    }
    .footer-info {
        padding-bottom: 6rem;
        margin-top: 5.5rem;
        flex-direction: column;
        text-align: center;
        row-gap: 1.5rem;
    }
    .footer-copy,
    .footer-privacy a {
        color: var(--text-color);
        font-size: var(--smaller-font-size);
        font-weight: var(--font-medium);
    }
    .footer-privacy {
        justify-content: center;
        column-gap: 1.25rem;
    } */
    /* fooooter section  */
    /* scroll bar   */
    ::-webkit-scrollbar {
        width: 0;
        border-radius: .5rem;
        background-color: hsl(228,8%, 96%);
    }
    ::-webkit-scrollbar-thumb {
        border-radius: .5rem;
        background-color: hsl(228,8%, 64%);
    
    }
    ::-webkit-scrollbar-thumb:hover {
        background-color: hsl(228,8%, 54%);
    }

    /* scroll bar   */
    /* scroll up  */
    .scrollup {
        position: fixed;
        right: 1rem;
        bottom: -30%;
        background-color: var(--container-color);
        box-shadow: 0 8px 12px hsla(228, 66%, 45%, .1);
        display: inline-flex;
        padding: .35rem;
        border-radius: .25rem;
        color: var(--dardashat-main-color);
        font-size: 1.25rem;
        z-index: var(--z-tooltip);
        transition: .3s;
    }
    
    /* show scroll  */
    .show-scroll {
    bottom:8rem ;
    }
    /* show scroll  */
    /* scroll up  */
    /* start coding */
    /* ============= BREAK POINTS ================ */
    /* for small devices */
    @media screen and (max-width:350px) {
        .container {
            margin-left: 1rem;
            margin-right: 1rem;
        }
        .section {
            padding: 3.5rem 0 1rem;
        }
        .home {
            padding-bottom: 0;
        }
        .contact-card {
            grid-template-columns: repeat(1,100px);
            justify-content: center;
    
        }
    }
    @media screen and (max-width:320px) {
    .nav-menu {
        padding: 1.3rem 1.5rem;
    }
    .home-value {
        column-gap: 1rem;
    }
    .home-img {
        width: 220px;
        height: 280px;
    }
    .home-orbe {
        width: 240px;
        height: 264px;
    }
    .logos-container {
        gap: 2rem 1rem;
    }
    .popular-card {
        width: 230px;
        padding: .5rem .5rem .75rem;
    }
    .value-img,
    .contact-img {
        width: 220px;
        height: 260px;
    }
    .value-orbe,
    .contact-orbe {
        width: 236px;
        height: 280px;
    }
    .subscribe-container {
        padding: 2rem 1rem;
    }
    /* .footer-content {
        gap: 2.5rem ;
    } */
    }
    
    /* for medium devices */
    @media screen and (min-width:576px) {
        .nav-menu {
            width: 342px;
        }
        .home-search {
            width: 412px;
        }
        .contact-card {
            grid-template-columns: repeat(2,192px);
            justify-content: center;
        }
        /* .footer-content {
            grid-template-columns: repeat(3,max-content);
        } */
    }
    @media screen and (min-width:767px) {
        .home-container {
            grid-template-columns: repeat(2,1fr);
            padding-top: 2rem;
        }
        .home-orbe {
            align-self: flex-end;
        }
        .home-data {
            padding-bottom: 2rem;
        }
        .logos-container {
            grid-template-columns: repeat(4,max-content);
            justify-content: center;
        }
        .value-container,
        .contact-container {
            grid-template-columns: repeat(2,1fr);
            align-items: center;
        }
        .contact-images {
            order: 1;
        }
        .contact-card {
            justify-content: initial;
        }
        .subscribe-container {
            padding: 3rem 13rem;
        }
        /* .footer-container {
            grid-template-columns: repeat(2,max-content);
            justify-content: space-between;
        } */
    }
    /* for large devices */
    @media screen and (min-width:1023px) {
        .section {
            padding: 7.5rem 0 1rem;
        }
        .section-title {
            font-size: 2.25rem;
        }
        .section-subtitle {
            font-size: var(--normal-font-size);
        }
        .nav {
            height: calc(var(--header-height) + 1.5rem);
        }
        .nav-menu {
            width: initial;
            margin-left: auto;
        }
        .nav-list {
            display: flex;
            column-gap: 3rem;
        }
        .nav-link {
            color: var(--text-color-light);
        }
        .nav-link i {
            display: none;
        }
        .nav-boutton {
            display: block;
        }
        .active-link {
            background: none;
            box-shadow: none;
            color: var(--first-color);
            font-weight: var(--font-medium);
        }
        .change-theme {
            margin: 0 3rem;
            color: var(--text-color-light);
        }
        .scroll-header .nav-link,
        .scroll-header .change-theme {
            color: var(--text-color);
        }
        .scroll-header .active-link {
            color: var(--first-color);
        }
        .home {
            padding-bottom: 0;
        }
        .home-container {
            padding-top: 5rem;
            column-gap: 2rem;
        }
        .home-data {
            padding-bottom: 4rem;
        }
        .home-title {
            margin-bottom: 2rem;
        }
        .home-description,
        .home-search {
            margin-bottom: 3rem;
        }
        .home-value {
            column-gap: 3.5rem;
        }
        .home-orbe {
            width: 504px;
            height: 611px;
            border-radius: 256px 256px 0 0;
        }
        .home-img {
            width: 472px;
            height: 634px;
            border-radius: 236px 236px 12px 12px;
            bottom: -2.5rem;
        }
        .logos-img img {
            height: 100px;
        }
        .popular-container {
            padding-top: 3rem;
        }
        .popular-card {
            width: 320px;
            padding: .75rem .75rem 2rem;
        }
        .popular-data {
            padding: 0 .25rem 0 .75rem;
        }
        .value-container,
        .contact-container {
            align-items: flex-start;
            column-gap: 5rem;
        }
        .value-orbe,
        .contact-orbe {
            width: 501px;
            height: 641px;
            border-radius: 258px 258px 16px 16px;
        }
        .value-img,
        .contact-img {
            width: 461px;
            height: 601px;
            border-radius: 238px 238px 12px 12px;   
        }
        .value-img img,
        .contact-img img {
            max-width: initial;
            width: 490px;
        }
        .value-description,
        .contact-description {
            font-size: var(--normal-font-size);
            margin-bottom: 2.5rem;
        }
        .value-accordion-title {
            font-size: var(--normal-font-size);
        }
        .value-accordion-item {
            padding: 1.25rem 1.25rem 1.25rem 1rem;
        }
        .value-accordion-description {
            padding-bottom: 1rem;
            font-size: var(--small-font-size);
        }
        .contact-card {
            grid-template-columns: repeat(2,200px);
        }
        .contact-card-box {
            padding: 28px 1.5rem 1.5rem;
        }
        .subscribe-container {
            padding: 4rem 10rem 4.5rem;
            border-radius: 2rem;
            border: 12px solid var(--first-color-light);
        }
        .subscribe-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        .subscribe-description {
            font-size: var(--normal-font-size);
            padding: 0 8rem;
        }
        .subscribe-button {
            font-size: var(--normal-font-size);
        }
        /* .footer-content {
            grid-template-columns: repeat(4,max-content);
        }
        .footer-title {
            margin-bottom: 1.5rem;
        }
        .footer-links {
            row-gap: 1rem;
        }
        .footer-info {
            flex-direction: row;
            justify-content: space-between;
            padding-bottom: 2rem;
        } */
        .show-scroll {
            bottom: 3rem;
            right: 3rem;
        }
    }
    @media screen and (min-width:1040px) {
        .container {
            margin-left: auto;
            margin-right: auto;
        }
        .home-container {
            column-gap: 4rem;
        }
    }
    /* for 2K & 4K resolitions  */
    @media screen and (min-width:2048px) {
        body {
            zoom: 1.5;
        }
    } 
    @media screen and (min-width:3840px) {
        body {
            zoom: 2;
        }
    }
    /* ============= BREAK POINTS ================ */
    /* footer-z  */
    .footer {
        /* background-color: rgb(255, 255, 255); */
        /* background-color: #f5f5dc96; */
        background-color: #44434308;
        padding: 70px  0 0;
        text-align: center;
        font-family: var(--font-family);
        direction: rtl;
        }
        .dark-theme .footer {
        
            background: linear-gradient(170deg,
            hsl(0,0%,22%)0%,
            hsl(0,0%,6%)30%);
        }
        .footer .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        }
        .footer .box h3 {
        color: #C38154;
        font-size: 40px;
        margin: 0 0 10px;
        align-self: center;
        text-align: center;
        letter-spacing: 1px;
        }
        .dark-theme .footer .box h3 {
            color: white;
        }
        .footer .box h3 i {
        margin-left: 4px;
        }
        .dark-theme  .footer .box h3 i {
            color: white;
        }
        .footer .box .social {
        display: flex;
        justify-content: center;
        
        }
        
        .footer .box .social li {
        margin-right: 10px;
        }
        .footer .box .social li a {
        justify-content: center;
        align-items: center;
        display: inline-flex;
        color: white;
        font-size: 20px;
        width: 35px;
        height: 35px;
        transition: 0.3s;
        border-radius: 12px;
        }
        .dark-theme .footer .box .social .facebook {
            background-color:var(--dardashat-main-color) ;
        }
        .footer .box .social .facebook {
        /* background-color: #1877f2; */
        color: white;
        background-color:var(--dardashat-main-color) ;
    }
        .dark-theme .footer .box .social .instagram {
            background-color:var(--dardashat-main-color) ;
        }
        .footer .box .social .instagram {
            color: white;
            background-color:var(--dardashat-main-color) ;
        }
        
        .footer .box .text {
        margin-top: 15px;
        margin-bottom: 15px;
        line-height: 1.6;
        color: #777;
        }
        .dark-theme .footer .box .text  {
            color: white;
        }
        .footer .box .text i {
            color:var(--mz-main-color);
            font-size: 20px;
        }
        .dark-theme .footer .box .text i {
            color: var(--text-color);
        }
        .footer .box .line {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        margin-top: 10px;
        color:#777;
        flex-direction: column;
        }
        .dark-theme .footer .box .line {
            color: white;
        }
        .footer .box .line:last-child {
        margin-bottom: 0;
        }
        .dark-theme .footer .box .line i {
            color: var(--dardashat-main-color);
        } 
        .footer .box .line i {
        margin-right: 10px;
        color: var(--dardashat-main-color);
        font-size: 40px;
        margin-bottom: 15px;
        }
        /* .dark-theme .footer .box .line i {
            color: var(--text-color);
        } */
        .footer .box .line .info {
        line-height: 1.7;
        font-size: 16px;
        }
        .footer .box .line .info span {
        display: block;
        font-family: var(--eng-font);
        direction: ltr;
        }
        .whatsapp-contact {
            font-family: var(--font-family) !important;
            direction: ltr;
        }
        .footer .copyright {
        padding: 25px 0;
        text-align: center;
        color: #777;
        margin: 20px 0  0;
        border-top: 1px solid #777;
        font-size: 16px;
        padding-bottom: 100px;
        font-family: var(--eng-font);
        }
        .dark-theme .footer .copyright {
            color: white;
            border-color: white;
        }
        .footer .copyright  i {
            color: var(--dardashat-main-color);
        margin: 0 3px;
        }
        .dark-theme .footer .copyright  i  {
            color: var(--dardashat-main-color);
        }
        .footer .ziad-info {
        color: #777;
        border-top: 1px solid #777;
        padding: 25px 0;
        text-align: center;
        line-height: 1.6;
        font-size: 16px;
        }
        .dark-theme  .footer .ziad-info {
            color: white;
            border-color: white;
        }
        .footer .ziad-info i {
        color: var(--first-color);
        margin-left: 3px;
        }
        
    /* footer-z  */
    .x-scroller {
        overflow-x: scroll; 
        overflow-y: hidden; 
        height: 50px; 
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        white-space:nowrap;
        scrollbar-width:thin;
        font-family: var(--font-family);
        background-color: var(--body-color);
    }
    .dark-theme .x-scroller a {
        background-color: #000;
        color: white;
        border-left: 1px solid #7f7f7f;
        border-right: 1px solid #7f7f7f;
    }
    .x-scroller a {
        font-size: 16px;
        background-color:  white;
        border-radius: 2px;
        padding: 10px 15px;
        border-left: 1px solid #7777771f;
        border-right: 1px solid #7777771f;
        color: black;
        
    }
    .header-logo {
        width: 50px;
    }