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

@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: 'Bahij-Janna';
    src: url('../fonts/bahij/BahijJanna.eot');
    src: url('../fonts/bahij/BahijJanna.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bahij/BahijJanna.woff2') format('woff2'),
    url('../fonts/bahij/BahijJanna.woff') format('woff'),
    url('../fonts/bahij/BahijJanna.ttf') format('truetype'),
    url('../fonts/bahij/BahijJanna.svg#BahijJanna') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Acumin-Variable';
    src: url('../fonts/Acumin-Variable-Concept.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald-Bold';
    src: url('../fonts/Oswald-Bold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/******************************/
:root {
    --main: #338DCC;
    --sec: #0F73B8;
    --text: #a8bdd0;
    --href: #00A3E0;
    --btm: #0F73B8;
    --tit: #22368B;
    --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;
      font-family: 'Acumin-Variable', serif !important;
}
 



body {
    font-family: 'Bahij-Janna', serif !important;
    color: var(--white);
    background: var(--black) !important;
    font-size: 16px;
}
html[dir="rtl"] body {
    font-family: 'Tajawal' !important;
    direction: rtl !important;
    text-align: right !important;
}
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;
}

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

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

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

.form-control {
    direction: ltr;
    text-align: left;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--gray);
}
html[dir="rtl"] .form-control{
    direction: rtl;
    text-align: right;
}
.form-control:focus {
    border-color: var(--main);
}

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

.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(--sec);
    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;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    line-height: 40px;*/
/*    background: var(--sec);*/
/*    border-radius: 50%;*/
/*}*/

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

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

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

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

@media (max-width: 500px) {

    .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(--white) !important;
    background-color: transparent;
    font-weight: bold;
    padding: 0;
    font-size: 18px;
    text-align: center;
    transition: all .35s ease-in-out;
}

.open-search:hover {
    color: var(--primary) !important;
    transform: translateY(-10px);
}

#search-header input[type="search"] {
    font-size: 44px;
    color: #fff;
    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 .search-submit {
    color: transparent;
}

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


/******************************/
/******************************/
header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 2px solid var(--white);
}

header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    top: 0;
    left: 0;
    right: 0;
    background: url("../images/header-bg.png");
    z-index: 0;
}

header.head-inside {
    position: relative;
    margin-bottom: 50px;
    background-color: var(--black);
}


.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.header-links {
    display: flex;
    align-items: center;
}

.header-links a {
    color: var(--white);
    margin-inline-end: 10px;
    padding-inline-end: 10px;
}

.header-links a.open-search:last-of-type {
    margin-inline-end: 0;
    padding-inline-end: 0;
}

.header-links .contact-header {
    color: var(--href);
    margin-inline-end: 50px;
    border-inline-end: 2px solid #C0C0C0;
}

.header-links .language {
   
}

.header-links .language .lang {
    color: var(--white);
}

.header-links .language .lang:first-of-type{
    border-inline-end: 2px solid #C0C0C0;
}

.header-links .language .lang.active-lang {
    color: var(--href);
}

@media (min-width: 768px) {
.language{
    display :block;
}
.open-search.open-search-mob{
      display :none;
}

}


@media (max-width: 768px) {
.language{
    display :none;
}
.language.mob-lang{
                       display: flex
;
        flex-direction: column;
        color: var(--main);
        font-size: 20px;
        margin-top: 10px;
}
 .open-search{
          display :none;
}
.open-search.open-search-mob{
                 display: block;
}
}


@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 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-inline-start: 50px;
    }

    .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(--white);
        font-size: 16px;
        font-weight: bold;
        position: relative;
        text-align: start;
        padding: 10px 12px;
        transition: all 0.5s ease-in-out;
    }

    /*.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", serif;
        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;
                justify-content: space-between;
        width: 100%;
    }
    .head-logo-mob {
                display: flex;
        align-items: center;
    }
     .head-logo-mob a{
            margin-inline-end: 10px;
     }

    .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) {

}

/*************************************/
/********* home-strategy   ***********/
/*************************************/
.slider-video{
    position: relative;
}
.slider-video:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background-color: rgba(0, 0, 0, .4);
}
.slider-video .about-header-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}
.about-header-title {
    color: #338DCC;
    font-size: 64px;
    font-weight: 900;
 }

.home-strategy {
    position: relative;
    top: -70px;
    right: 0;
    left: 0;
    width: 100%;
}

.home-strategy-items {
    background: var(--white);
    padding: 50px 100px;
    counter-reset: step;
}

.home-strategy-item .tit {
    position: relative;
    display: flex;
    align-items: center;
}
.home-strategy-item .tit i{
        color: #0F73B8;
    font-size: 34px;
}
.home-strategy-item .tit::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    color: #0F73B8;
    font-size: 34px;
    display:none;
}

.home-strategy-item .tit h2 {
    display: inline-block;
    font-size: 24px;
    color: #191514;
    padding-inline-start: 10px;
}

.home-strategy-item .description {
    color: #000;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 30px;
}

/******************************/
/********* about    ***********/
/******************************/
.about {
    padding: 50px 0;
}
.gallery-item-image a{
    width:100%;
}
.about .main-tit {
    color: var(--white);
    font-size: 32px;
    position: relative;
    padding-inline-start: 50px;
    font-weight: 500;
    font-weight:bold;
}

.about .main-tit:before {
    content: "";
    width: 30px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    background: var(--white);
}
html[dir="rtl"] .about .main-tit:before{
    left: unset;
    right: 0;
}

.about-description {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 50px;
}

.about-images-exp-upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.about-images-exp-upper .image img {
    width: 100%;
}

.about-images-exp-lower {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.about-images-exp-lower .about-experience {
    width: 210px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 8px solid var(--white);
}

.about-images-exp-lower .about-experience-content {
    background: var(--black);
    margin-inline-start: -8px;
    padding: 10px 0;
    position: relative;
}

.about-images-exp-lower .about-experience-content:before {
    content: "";
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 10%;
    background: #0F73B8;
    z-index: 0;
}

.about-images-exp-lower .about-experience-content .number {
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.about-images-exp-lower .about-experience-content .text {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

/******************************/
/********* services ***********/
/******************************/
.services {
    padding: 50px 0;
    background: var(--black);
}

.services .services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    flex: 1;
    width: 100%;
}

.services .services-header .title {
    margin-inline-end: 50px;
    border-inline-end: 3px solid #0F73B8;
    padding-inline-end: 20px;
    flex: .3;
}

.services .services-header .description {
    display: flex;
    flex: .7;
}

.services .services-header .title .main-tit {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.services .services-header .title .services-heder-title {
    color: var(--black);
    font-size: 42px;
    font-weight: bold;
}

.services .services-header .description .services-heder-description {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.services-items {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 20px 15px;
    transition: all .35s ease-in-out;
}
.services-items::before {
    content: attr(data-letter);
    position: absolute;
    right: 0;
    bottom: -42%;
    opacity: .02;
    z-index: 0;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
    font-size: 330px;
    color: transparent;
    -webkit-text-stroke: 3px #000;
    text-stroke: 3px #000;
}
html[dir="rtl"] .services-items::before{
    right: 0;
    left:  -8%;
}
.services-items .content .tit {
    font-size: 16px;
    color: var(--black);
    font-weight: bold;
    margin-bottom: 10px;
    transition: all .35s ease-in-out;
}
.services-items:hover .content .tit{
    color: var(--main);
    transition: all .35s ease-in-out;
}
.services-items .content .services-items-content-hr .description{
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--black);
}
.services-items .content .services-items-content-hr .url{
    margin-bottom: 10px;
}
.services-items .content .services-items-content-hr .url .btn-url{
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    transition: all .35s ease-in-out;
}
.services-items:hover .content .services-items-content-hr .url .btn-url{
    color: var(--main);
    transition: all .35s ease-in-out;
}
.services-items .content .services-items-content-hr .icon{
    margin: 20px 0;
}
.services-items .content .services-items-content-hr .icon img{
    transition: all .35s ease-in-out;
}
.services-items:hover .content .services-items-content-hr .icon img{
    transform: scale(1.1);
    transition: all .35s ease-in-out;
}

/******************************/
/********* projects   ***********/
/******************************/
.projects {
    padding: 50px 0;
    counter-reset: project-counter;
}
.projects-slider {

}
.projects-slider.owl-carousel .owl-stage-outer{
    padding: 30px 0;
}
.projects-items{
    border: 1px solid #FFFFFF;
    margin-bottom: 40px;
    margin-inline-end: 50px;
    margin-inline-start: 20px;
}
.projects-items img{
    width: 100%;
    height: 200px;
}
.projects-items-text{
    padding:0 30px;
}

.projects-items .number::before {
    counter-increment: project-counter;
    content: counter(project-counter, decimal-leading-zero);
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 100px;
    opacity: .35;
}

.projects .projects-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    flex: 1;
    width: 100%;
}

.projects .projects-header .title {
    margin-inline-end: 50px;
    border-inline-end: 3px solid #0F73B8;
    padding-inline-end: 20px;
    flex: .3;
}

.projects .projects-header .description {
    display: flex;
    flex: .7;
}

.projects .projects-header .title .main-tit {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.projects .projects-header .title .projects-heder-title {
    color: var(--white);
    font-size: 42px;
    font-weight: bold;
}

.projects .projects-header .description .projects-heder-description {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}
.projects-items .title{
    color: var(--main);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}
.projects-items .description{
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}
.projects-items .image{
position: relative;
    right: unset;
    bottom: unset;
    padding: 30px;
    display: table;
    width: 100%;
}
.projects-slider .owl-nav{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    z-index: 2;
}
.projects-slider .owl-nav button{
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: var(--white);
    background-color: var(--btm);
    transition: all .35s ease-in-out;
}
.projects-slider .owl-nav button:hover{
    background-color: var(--sec);
    transition: all .35s ease-in-out;

}
.archive .projects-items { 
    margin-inline-end: 0;
    margin-inline-start: 0;
}
.special-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
}

/* صورة 1 - أول صورة صغيرة */
.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* صورة 2 - تاني صورة صغيرة تحت 1 */
.item-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* صورة 3 - الصورة الكبيرة جنبهم بطول 1 و 2 */
.item-3 {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
}

/* صورة 4 - الصورة العريضة في المساحة الباقية */
.item-4 {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
}

/* صورة 5 - أول صورة تحت الصورة العريضة */
.item-5 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* صورة 6 - تاني صورة تحت الصورة العريضة */
.item-6 {
    grid-column: 5 / 7;
    grid-row: 2 / 3;
}

/* باقي الصور - كلها نفس الحجم */
.special-gallery .gallery-item:nth-child(n+7) {
    grid-column: span 1;
    grid-row: span 1;
}

/* تنسيق الصور */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* الموبايل - صورتين في الصف */
@media (max-width: 768px) {
    .special-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 8px;
    }
    
    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6 {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .special-gallery .gallery-item:nth-child(n+7) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/******************************/
/********* blogs   ***********/
/******************************/
.blogs{
    padding: 50px 0;
}
.blogs-title{
        color: #0F73B8;
    font-size: 16px;
}
.blog-items .blog-img img{
    width: 100%;
}
.blog-items .blog-content{
    width: 90%;
    margin: -30px auto 0;
    display: table;
    background: #242424;
    padding: 30px ;
    text-align: center;
    position: relative;
    z-index: 2;
}
.blog-content-author-date{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #9B9B9B;
    font-size: 14px;
    margin-bottom: 20px;
}
.blog-content .tit{
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}
.blog-content .url a{
    border-bottom: 1px solid #0F73B8;
    color: #0F73B8;
    font-size: 14px;
    font-weight: 400;
}
/******************************/
/********* clients   ***********/
/******************************/
.clients{
    padding: 50px 0 150px;
}
.clients .item {
    background: transparent;
    padding: 20px;
    height: 200px;
    display: flex
;
    align-items: center;
}
.clients .item img{
    max-height: 100px;
    object-fit: contain;
}
/******************************/
/********* footer   ***********/
/******************************/
footer {
    position: relative;
    padding: 200px 0 0;
}
.footer-logo-desc{
    font-size: 14px;
    font-weight: 400;
}

.footer-hed {
    padding-bottom: 75px;
}

footer:before {
    content: " ";
    background-image: url("../images/footer map.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.footer-list ul li {
    float: right;
    width: 50%;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
}
.footer-list.ukwi ul li {
    width: 100%;
}
body:not(.rtl) .footer-list ul li{
    float:left;
}
.footer-list ul li a {
    color: var(--white);
font-size: 14px;
    font-weight: bold;
}

.footer-list ul li::before {
    content: "\f560";
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    margin-inline-end: 8px;
    color: var(--white);
}

.footer-tit{
    font-size: 24px;
    font-weight: bold;
}
.end-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}

.end-footer-items {
    background: #1F1F1F;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}
.social-menu {
    display: flex;
    align-items: center;
}
.social-menu .footer-list-end {
    margin: 0 10px;
}
.social-menu .footer-list-end ul {
    display: flex;
    align-items: center;
}
.social-menu .footer-list-end ul li a {
    color: var(--white);
    font-weight: 500;
}

.footer-logo-desc {
    color: var(--white);
}
.map iframe {
    border-radius: 25px;
    width: 100%;
}

.social {
    display: flex;
    align-items: center;
    z-index: 2;
}

.social a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social a {
    margin-inline-start: 5px;
}

.social a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #0A0A0A;
    color: #fff;
    transition: all .35s ease-in-out;
}
.social a:hover i{
    background: #0F73B8;
    transition: all .35s ease-in-out;

}
.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;
    position: relative;
    z-index: 999;
}

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

.info .icon {
    color: var(--main);
    font-size: 24px;
    padding-inline-end: 10px;

}


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

.video-item iframe{
    width: 100%;
}
.page-thumb{
    margin-bottom: 20px !important;
}
.map{
    margin-top: 30px;
}
.map iframe{
    height: 300px;

}
.uploadBox input {
    display: none;
}

.uploadBox label {
    border: 1px solid #000;
    background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5px 20px;
    font-size: 17px;
    color: #000;
    margin: 0;
    transition: all .4s ease-in-out;
    cursor: pointer;
}

.upload-icon {
    margin-inline-start: 30px;

    transition: all .4s ease-in-out;
}

.uploadBox label:hover {
    background: #65b13f;
    color: #fff;
}

.uploadBox label:hover .upload-icon {
    /*filter: brightness(0) invert(1);*/
}

.uploadBox label:hover {
    background: var(--main) !important;
    color: #fff;
}
.main-logo img{
    max-width: 150px;
}
.gallery-item-image img{
    height: 150px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .home-strategy-items{
        padding: 20px 10px;
    }
    .home-strategy-item {
        text-align: center;
    }
    .about-header-title{
        font-size: 24px;
    }
    .about-description{
        font-size: 12px;
    }
    .services .services-header .title .main-tit{
        font-size: 18px;
    }
    .services-items .content .services-items-content-hr .icon img{
        max-width: 60px;
    }
    .services .services-header .description .services-heder-description{
        font-size: 14px;
    }
    .services-items .content .tit{
        font-size: 16px;
    }
    .services-items{
        padding: 20px 10px;
    }
    .projects .projects-header .description .projects-heder-description{
        font-size: 14px;
    }
    .projects-items .image{
            margin: 15px ;
    }
    .blog-content .tit{
        font-size: 18px;
    }
    .services .services-header .title .services-heder-title{
        font-size: 26px;
    }
    .clients .item{
        padding: 15px;
        height: 175px;
    }
    .footer-logo{
        display: table;
        margin: 0 auto 30px;
    }
    .footer-logo-desc{
        margin-bottom: 20px;
    }
    .clients .item img{
        max-height: 60px;
    }
    .projects .projects-header .title .main-tit{
        font-size: 18px;
    }
    .projects .projects-header .title .projects-heder-title{
        font-size: 24px;
    }
    .footer-logo-desc {
        font-size: 14px;
    }

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

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

@media (max-width: 500px) {
    .home-strategy {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        margin-top: 30px;
    }
    .main-logo img{
        max-width: 120px;
    }
    .about-images-exp-lower .image{
        display: flex
    ;
        flex: 0.75;
    }
    .about-images-exp-lower{
        margin-bottom: 30px;
    }
    .about-images-exp-lower .about-experience{
        width: 140px;
        display: flex
    ;
        flex: 0.22;
    }
    .about .row{
        flex-direction: column-reverse;
    }
    .contact-header{
        display: none;
    }
    .social-menu {
        flex-direction: column;
    }

    .social-menu .footer-list-end {
        margin: 10px 0;
    }
    .services .services-header .title .services-heder-title,
    .projects .projects-header .title .projects-heder-title{
        margin-bottom: 20px;
    }
    .services-header ,.projects .projects-header{
        flex-direction: column;
        align-items: flex-start !important;
    }
    .services .services-header .title ,.projects .projects-header .title{
        flex: 1;
        margin-inline-end: 0;
        border-inline-end: none;
        padding-inline-end: 0;
    }
}
