@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-Regular.eot');
    src: url('../fonts/tajawal/Tajawal-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/tajawal/Tajawal-Regular.woff2') format('woff2'),
    url('../fonts/tajawal/Tajawal-Regular.woff') format('woff'),
    url('../fonts/tajawal/Tajawal-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ping';
    src: url('../fonts/PingAR+LT-Regular.otf');

}

/******************************/
:root {
    --main: #565656;

    --black: #000000;
    --white: #ffffff;
}

/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}

html[dir="ltr"] body {
    direction: ltr !important;
    text-align: left !important;
}

html[dir="rtl"] body {
    direction: rtl !important;
    text-align: right !important;
}

body {
    font-family: 'Ping', serif !important;
    color: var(--black);
    background: var(--white) !important;
    font-size: 16px;
}

p:last-of-type {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: bold;
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type=submit],
a {
    transition: all 0.5s linear;
}

img, iframe, video {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
}

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

.form-group, form {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] .form-group,
html[dir="ltr"] form {
    direction: ltr;
    text-align: left;
}

.form-control {
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--main);
}

.main-btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    text-align: center;
    border-radius: 35px;
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all .35s ease-in-out;
}

.header-order .main-btn:hover {
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
}
.main-btn:hover {
    color: var(--white);
    background: transparent;
    border: 1px solid transparent;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--main);
    border: 1px solid var(--main);
    z-index: -1;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
}

html[dir="ltr"] .main-btn::before {
    left: unset;
    right: 100%;
}

.main-btn:hover::before {
    transform: translateX(-100%);
}

html[dir="ltr"] .main-btn:hover::before {
    transform: translateX(100%);
}


.main-btn::after {
    font-family: "Font Awesome 6 Free", serif;
    content: "\f060";
    font-weight: 900;
    font-size: 16px;
    color: var(--white);
    transition: transform 0.5s ease-in-out, color 0.35s ease-in-out;
}

html[dir="ltr"] .main-btn::after {
    content: "\f061";
}

.main-btn:hover::after {
    transform: rotate(45deg);
    color: var(--white);
}

html[dir="ltr"] .main-btn:hover::after {
    transform: rotate(-45deg);
}

.main-tit {
    font-weight: bold; /* أو أي نمط خط آخر */
    font-size: 34px;
    color: var(--black);
    position: relative;
}

.main-tit:before {
    content: " ";
    position: absolute;
    top: -10px;
    right: -30px;
    transform: translate(0);
    background-image: url(../images/tit-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 66px;
    z-index: -1;
}


@media (max-width: 768px) {
    .main-tit {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .main-tit {
        font-size: 18px;
    }
    .main-btn{
        width: 120px;
        height: 35px;
        line-height: 35px;
        font-size: 10px;
    }
}
/******************************/
/*#######- search -#######*/
/******************************/
#header-search {
    display: inline-block;
}

#search-header.open {
    background: rgba(0, 0, 0, 0.8);
}

#search-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    transform: translate(0px, 0px) scale(0.7, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#search-header.open {
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

#search-header .search-form {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

.open-search {
    color: var(--black);
    background-color: transparent;
    font-weight: bold;
    padding: 0;
    font-size: 24px;
    text-align: center;
    transition: all .35s ease-in-out;
}

.open-search:hover {
    color: var(--sec);
}

#search-header input[type="search"] {
    font-size: 44px;
    color: var(--main);
    font-weight: 300;
    border: 0;
    outline: none;
    width: 70%;
    height: 90px;
    line-height: normal;
    border-bottom: 1px solid;
}

#search-header .search-submit {
    z-index: 10;
    border: none !important;
}

#search-header .search-submit,
.search-icon {
    background: none;
    border: none;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 20px;
}

.search-icon:before {
    font-family: 'Font Awesome 5 Brands', serif;
    content: "\f3eb";
    display: inline-block;
    width: 70px;
    height: 70px;
    font-size: 24px;
    padding-top: 20px;
    color: #fff;
}

#search-header .close {
    background: none;
    border: none;
    position: fixed;
    top: 45px;
    right: 45px;
    opacity: 1;
    cursor: pointer;
    color: #fff;
    text-align: center;
    transition: all 0.2s ease-out;
}

#search-header .close:hover {
    opacity: 0.8;
}

#search-header .close i {
    display: none;
}

#search-header .close:after {
    font-family: 'Font Awesome 5 Free', serif;
    content: "\f057";
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 29px;
    left: 0;
}

#search-header button.close {
    border: 2px solid #fff;
    height: 37px;
    width: 37px;
    border-radius: 200em;
}

#search-header input[type="search"] {
    background: rgba(0, 0, 0, 0);
    border-color: #5f5f5f;
}

#search-header input[type="search"],
#search-header .search-submit {
    color: #fff;
}

@media (max-width: 500px) {

}

/******************************/
/******************************/
header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

header.head-inside {
    position: relative;
    margin-bottom: 50px;

}



.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-logo .main-logo {
    position: relative;
    z-index: 2;
}

.head-logo .main-logo img {
    max-width: 150px;
}
.header-order{
    display: flex;
    align-items: center;
}
.lang {
    color: var(--main);
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    margin-inline-start: 10px;
    margin-inline-end: 10px;
    transition: all .35s ease-in-out;
}


@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .head-home {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 2;
    }
}

/******************************/
/********* nav     ***********/
/******************************/


@media (min-width: 992px) {
    .main-nav-with-order {
        background: var(--white);
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
        width: 82%;
        border-radius: 35px;
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0;
        position: relative;
    }

    .nav-list > .menu-item {
        position: relative;
    }

    html[dir="ltr"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-end: 5px;
    }

    html[dir="rtl"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-start: 5px;
    }

    .nav-list > .menu-item > a {
        display: block;
        color: var(--black);
        font-size: 18px;
        font-weight: bold;
        position: relative;
        text-align: start;
        transition: all 0.5s ease-in-out;
    }

    html[dir="rtl"] .nav-list > .menu-item > a {
        padding: 10px 0 10px 10px;

    }

    html[dir="ltr"] .nav-list > .menu-item > a {
        padding: 10px 10px 10px 0;

    }

    /*.nav-list > .menu-item > a:before, .nav-list > .menu-item.active a:before {*/
    /*    content: '';*/
    /*    width: 0;*/
    /*    height: 3px;*/
    /*    background-color: var(--main);*/
    /*    position: absolute;*/
    /*    bottom: 0;*/
    /*    right: 0;*/
    /*    left: 0;*/
    /*    opacity: 0;*/
    /*    visibility: hidden;*/
    /*    transform: scale(0);*/
    /*    transition: all .5s ease-in-out;*/
    /*}*/
    /*.nav-list > .menu-item:hover > a:before, .nav-list > .menu-item.active a:before {*/
    /*    opacity: 1;*/
    /*    width: 100%;*/
    /*    visibility: visible;*/
    /*    transform: scale(1);*/
    /*}*/
    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f0d7";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-inline-start: 10px;
        color: var(--main);
        background: transparent;
        transition: all .35s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--main);


    }

    .nav-list > .menu-item:hover > a:before,
    .nav-list > .menu-item.active a:before {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-list > .menu-item-has-children:hover a:after {
        transform: rotateX(-180deg);
        color: var(--black);
    }

    html[dir="rtl"].sub-menu {
        left: 0;
    }

    html[dir="ltr"].sub-menu {
        right: 0;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 4;
        min-width: 350px;
        background-color: rgba(220, 220, 220, 1);
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
        transition: all 0.2s ease-in-out;
    }

    .sub-menu li {
        position: relative;
        padding: 0 20px;
    }

    .sub-menu li:not(:last-of-type) a {
        margin-bottom: 10px;
    }

    .sub-menu li a {
        display: block;
        width: 100%;
        position: relative;
        color: var(--black);
        padding-bottom: 10px;
        transition: all 0.5s ease-in-out;
    }


    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        left: 0;
        content: "\f324";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        right: 0;
        content: "\f323";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--black);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

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

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: var(--main);
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children .sub-menu {
        left: 100%;
    }

    .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        left: 100%;
    }


    html[dir="rtl"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f100";
    }

    html[dir="ltr"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f101";
    }

    .nav-list > .menu-item-has-children > .sub-menu a:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        display: inline-block;
        margin-inline-start: 10px;
        color: var(--black);
        font-size: 14px;
        transition: all .35s ease-in-out;
    }

    .nav-list > .menu-item-has-children > .sub-menu a:hover:before {
        color: var(--main);
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--main);
    }

    .nav-btn,
    .mobile-nav-list,
    .dd-trigger {
        display: none;
    }
}

@media (max-width: 992px) {
    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: block;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .head-logo {
        display: flex;
        align-items: center;
    }

    .menu-icons a:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    .nav-list > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--white);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        color: var(--white);
        background-color: var(--main);
        margin-inline-end: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }

    html[dir="ltr"] .mobile-nav-list {
        left: 0;
        transform: translateX(-100%);
    }

    html[dir="rtl"] .mobile-nav-list {
        transform: translateX(100%);
        right: 0;
    }

    .mobile-nav-list {
        width: 300px;
        height: 100%;
        padding: 15px;
        background-color: rgba(255, 255, 255, 1);
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 999;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        overflow-y: scroll;
        transition: all .5s linear;
    }

    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid var(--main);
    }

    .mobile-nav-list .menu-item > a {
        display: block;
        color: var(--black);
        padding: 15px;
    }

    .mobile-nav-list .menu-item.menu-item-has-children > a {
        width: calc(100% - 34px);
        display: inline-block;
    }

    .mobile-nav-list .menu-item > a:hover,
    .mobile-nav-list .menu-item.active > a {
        color: var(--main);
    }

    html[dir="ltr"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-left: 1px solid var(--black);
    }

    html[dir="rtl"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-right: 1px solid var(--black);
    }

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: var(--black);
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .menu-item i.open {
        color: var(--main);
    }

    .sub-menu {
        list-style: none;
        background-color: var(--main);
    }

    .mobile-nav-list .sub-menu a {
        display: block;
        padding: 15px 25px;
        color: var(--white);
        transition: all .3s linear;
    }

    .mobile-nav-list .sub-menu a:hover {
        color: #393839;
    }

    .trans-none {
        transform: none !important;
    }

    html[dir="ltr"] .nav-overlay {
        right: 0;
        transform: translateX(100%);
    }

    html[dir="rtl"] .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 5;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .35s ease-in-out;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

/******************************/
/*********slideshow***********/
/******************************/
.slideshow {
    position: relative;
    counter-reset: itemCounter;
}

.main-slider .swiper-slide .main-slider-image {
    text-align: left;
}

html[dir="ltr"] .main-slider .swiper-slide .main-slider-image {
    text-align: right;
}

.main-slider .swiper-slide img {
    width: 1004px;
}

.main-slider .main-slider-items {
    position: relative;
}

.main-slider .main-slider-items .main-slider-content {
    position: absolute;
    top: 40%;
    right: 12%;
    transform: translate(0, -50%);
    z-index: 3;
    color: var(--black);
}
html[dir="ltr"] .main-slider .main-slider-items .main-slider-content{
    right: unset;
    left: 10%;
}
.main-slider .main-slider-items .main-slider-content .tit {
    font-size: 42px;
    font-weight: bold;
}

.main-slider .main-slider-items .main-slider-content .description {
    font-size: 24px;
    margin: 10px 0 20px;
}

.slideshow .main-slider-child {
    position: absolute;
    transform: translate(0, 0);
    bottom: 0;
    right: 0;
    width: 400px;
    height: 280px;
}

html[dir="ltr"] .slideshow .main-slider-child{
    right: unset;
    left: 0;
}
.slideshow .main-slider-child .swiper-slide img {
    width: 400px;
    height: 280px;
}

@media (max-width: 768px) {
    .slideshow .main-slider-child {
        width: 300px;
        height: 180px;
    }
    .slideshow .main-slider-child .swiper-slide img{
        width: 300px;
        height: 180px;
    }
}

@media (max-width: 500px) {
    .slideshow .main-slider-child {
        width: 150px;
        height: 75px;
    }
    .slideshow .main-slider-child .swiper-slide img{
        width: 150px;
        height: 75px;
    }
}

/******************************/
/***********about**************/
/******************************/
.about {
    padding: 100px 0;
    background-image: url("../images/about-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.about .about-description {
    margin-top: 20px;
    font-size: 14px;
}


.about-exp {
    margin-top: 50px;
    border-inline-start: 1px solid #431752;
    padding-inline-start: 10px;
}

.about-exp-tit {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

/******************************/
/******************************/
.services {
    padding: 50px 0;
}

.services-item {
    position: relative;
    overflow: hidden;
}

.services-item .services-image img {
    height: 500px;
}

.services-item:before{
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .25);
    z-index: 0;
    transition: all linear .35s;
}

.services-item:hover:before {
    background: rgba(0, 0, 0, .9);
}

.services-item .services-link {
    position: absolute;
    top: -30px;
    right: 15px;
    z-index: 2;
    opacity: 0;
    color: var(--white);
    transition: all linear .35s;
}

.services-item .services-link a {
    color: var(--white);
    font-size: 24px;
}

.services-item:hover .services-link {
    opacity: 1;
    top: 15px;
    transition: all linear .35s;
}

.services-item .services-description {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    color: var(--white);
    transition: all linear .35s;
}
html[dir="ltr"] .services-item .services-description{
    left: 0;
    right: unset;
}
.services-item:hover .services-description {
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    text-align: center;
    padding: 0 10px;
    width: 100%;
    transition: all linear .35s;
}
html[dir="ltr"] .services-item:hover .services-description{
    left: 50%;
    transform: translate(-50%, 50%);
    right: unset;
}
html[dir="ltr"] .services-description .services-title h4{
    font-size: 18px;
}
@media (max-width: 768px) {
    .services-item .services-image img{
        height: 450px;
    }
}

@media (max-width: 500px) {
    .services-item .services-image img{
        height: 300px;
    }
    html[dir="ltr"] .services-description .services-title h4{
        font-size: 16px;
    }
    html[dir="ltr"] .services-description .services-cat .post-category{
        font-size: 12px;
    }
}

/******************************/
/******************************/
.projects {
    padding: 50px 0;
}

.projects-desc-main-tit {
    font-size: 24px;
}

.projects-items {
    position: relative;
    margin-bottom: 30px;
}

.projects-items .projects-image {
    position: relative;
    margin-bottom: 20px;
}

.projects-items .projects-image:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .25);
    z-index: 0;
    transition: all linear .35s;
}

.projects-items .projects-image:hover:before {
    background: rgba(0, 0, 0, .9);
}

.projects-items .services-link {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    color: var(--white);
    transition: all linear .35s;
}

.projects-items .services-link a {
    color: var(--white);
    font-size: 24px;
}

.projects-items:hover .services-link {
    opacity: 1;
    top: 40%;
    transition: all linear .35s;
}

.projects-items .tit {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--black);
}

.projects-items .description {
    font-size: 14px;
}

@media (max-width: 768px) {
    .projects-items .tit{
        font-size: 14px;
    }
}

@media (max-width: 500px) {

}

/******************************/
/******************************/
.counters {
    padding: 100px 0;
    background-image: url("../images/counter.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.counters .counter-items {
    text-align: center;
    color: var(--white);
}

.counters .all-count {
    margin-top: 100px;
}

.counter-items .icon img {
    max-width: 75px;
}

.counter-items .icon {
    margin-bottom: 10px;
}

.counter-items .content .count {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 10px;
}

.counter-items .content .text {
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .counters{
        padding: 50px 0;
    }
}

@media (max-width: 500px) {

}

/******************************/
/******************************/
.steps {
    padding: 50px 0;
}

.steps .steps-items-content {
    text-align: center;
}

.steps-items {
    position: relative;
    overflow: hidden;
    transition: all linear .35s;

}

.steps-items .content {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: all linear .35s;

}

.steps-items:hover .content {
    top: 50%;
    opacity: 1;
    transition: all linear .35s;

}

.steps-items .content .tit {
    font-size: 24px;
    font-weight: bold;
}

.steps-items .content .desc {

    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.steps .steps-items-content .tit {
    color: var(--black);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.steps .steps-items-content .desc {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .steps-items .content .desc{
        width: 80%;
    }
    .steps .steps-items-content .desc{
        font-size: 14px;
        width: 80%;
    }
}

@media (max-width: 500px) {
    .steps .steps-items-content{
        margin-top: 20px;
    }
}

/******************************/
/******************************/
.partners {
    padding: 50px 0;
    background: rgba(227, 227, 227, .25);
}

.col-partners .partners-items {
    margin-bottom: 20px;
}

.col-partners .partners-items img {
    width: 100%;
}

@media (min-width: 992px) {
    .col-partners {
        flex: 0 0 16.5% !important;
        max-width: 16.5% !important;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

/******************************/
/******************************/
.contact-us {
    padding: 0 0 50px;
}

form .form-control {
    background: #FAFAFA;
    padding: 5px 10px;
    border-radius: 20px;
}

form .form-control:focus {
    border: 1px solid var(--main);
    outline: 1px solid var(--main);
    box-shadow: none;
}

form .form-control {
    height: 55px;
    line-height: 50px;
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] form .form-control {
    direction: ltr;
    text-align: left;

}

form textarea.form-control {
    height: 250px;
}

/******************************/
/******************************/
footer {
    position: relative;
    padding: 100px 0 0;
    background: #0D0D0D;

}

.footer-hed-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-hed-top .newsletter {
    width: 60%;
}

.newsletter form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.form-newsletter input {
    background: transparent;
    border: 1px solid var(--white);
    height: 40px;
    border-radius: 35px;
    color: var(--white);
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    width: 68%;
}

.input-newsletterEmail {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
    border-radius: 25px;
    outline: none;
}

.input-newsletterSubmit {
    padding: 8px 20px;
    font-size: 16px;
    border: none;
    background-color: var(--white);
    color: black;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    margin-inline-start: -90px;
}
html[dir="ltr"] .newsletter-wrapper{
    width: 60%;
}
html[dir="ltr"] .input-newsletterSubmit{
    margin-inline-start: -140px;
}
.newsletter-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
    margin-inline-end: 20px;
}

.fixed-social-media {
       position: fixed;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index:5;
}

.fixed-social-media a {
       width: 30px;
    height: 30px;
    font-size: 12px;
    color: #FFF;
    border-radius: 50%;
    background: #565656;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-hed {
    padding-bottom: 75px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.5);
}

.footer-logo-desc {
    font-size: 14px;
}
.footer-logo-desc iframe{
    display: block;
    height: 160px;
    border-radius: 25px;
}
.newsletter-social {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.5);
}

.footer-list ul li {
    float: right;
    width: 50%;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-list ul li a {
    color: var(--white);
}

.footer-list ul li::before {
    content: "-";
    margin-inline-end: 5px; /* إضافة مسافة بين النقطة والـ li */
    color: var(--white);

}

.end-footer {
    display: flex;
    align-items: center;
    justify-content: center;

}

.end-footer-items {

    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;

}

.footer-logo-desc {
    color: var(--white);
}

.map iframe {
    border-radius: 25px;
    width: 100%;
}


.copy-write {
    color: var(--white);
}

.copy-write a {
    color: var(--main);
}

@media (max-width: 500px) {
    .footer-logo {
        margin-top: 30px;
    }
}

.breadcrumb-area {
    margin-bottom: 30px;
    background-image: url("../images/about-bg.png");
    background-repeat: no-repeat;
    padding: 50px 0;
}
.breadcrumb-area a{
    color: var(--main);
}



.info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info .icon {
    color: var(--white);
    font-size: 20px;
    padding-inline-end: 10px;
}

.info-content .value {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 5px;
}

.info-content .value a {
    text-decoration: none;
    transition: color 0.3s ease;
}


@media (max-width: 768px) {
    .footer-logo{
        margin: 20px auto;
        display: table;
    }
    .newsletter-title{
        font-size: 12px;
    }

    .footer-logo-desc {
        font-size: 14px;
        margin-bottom: 20px;

    }

    .end-footer {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .social-menu {
        margin-bottom: 10px;
    }
}

@media (max-width: 500px) {
    .newsletter-wrapper{
        margin: 10px 0;
        width: 95%;
    }
    .newsletter form{
        flex-direction: column;
        align-items: center;
    }
    .social-media{
        text-align: center;
        margin: 10px 0;
    }
    .footer-logo-desc{
        font-size: 12px;
    }
    .social-menu {
        flex-direction: column;
    }

    .social-menu .footer-list-end {
        margin: 10px 0;
    }
}

.map {
    margin-bottom: 30px;
}

.map iframe {
    width: 100%;
    height: 250px;
    border-radius: 20px;

}

.about-page:after {
    content: none;
}

.single-gallery a {
    display: inline-block;
    margin-bottom: 10px;
}

.single-gallery img {
    width: 100%;
    height: 200px;
    border-radius: 15px;
}

.archive-item.projects-item .img {
    margin-bottom: 10px;
}

.archive-item.projects-item .img img {
    height: 250px;
    width: 100%;
}

.archive-item.projects-item .tit {
    font-size: 24px;
    font-weight: bold;
    color: var(--main);
}

.archive-clients-item, .archive-partners-item {
    border: 1px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 30px;
}


.customer-items {
    text-align: center;
    padding: 30px 10px;
    transition: all .35s ease-in-out;
    margin-bottom: 30px;

}

.customer-items:hover {
    transition: all .35s ease-in-out;
    box-shadow: 0px 3px 3px 0px rgba(23, 39, 47, 0.31);
    border-radius: 0 0 15px 15px;

}

.customer-items .customer-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}

.customer-items .customer-img::before {
    content: " ";
    width: 95px;
    height: 95px;
    position: absolute;
    border-radius: 100%;
    top: 50%;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .35s ease-in-out;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
}

.customer-items:hover .customer-img::before {
    opacity: 1;
    transition: all .35s ease-in-out;
}

.customer-items:hover .customer-img {
    transition: all .35s ease-in-out;

}

.customer-items .customer-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--black);
}

.customer-items .customer-description {
    font-size: 20px;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, .5);
}

.customer-links {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.customer-links .phone, .customer-links .whats {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background: rgba(213, 227, 235, 1);
    color: var(--sec);
}
#scrollToTop {
        position: fixed;
    bottom: 20px;
    right: 20px;
    background: #565656;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

#scrollToTop.show {
    opacity: 1;
    pointer-events: auto;
}

#scrollToTop:hover {
    background: #0056b3;
}
.search-item img{
    max-height: 250px;
}
.soon-content-page .main-nav-with-order{
            justify-content: flex-end;
}
.soon-content-page .main-nav{
    display : none;
}
