/******************************/
/*&&&&& Fonts &&&&&&&&*/
/******************************/
@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: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans-Regular.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'alfont_com_PingARLT';
    src: url('../fonts/alfont_com_PingARLT-Regular.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/******************************/
/*&&&&& color &&&&&&&&*/
/******************************/
:root {
    --main: rgba(80, 100, 66, 1);
    --sec: rgba(203, 188, 124, 1);
    --text: rgba(80, 73, 73, 1);
    --black: #000000;
    --white: #ffffff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--main);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--sec);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sec);
}
#site-loader{
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:  var(--main);
}
#site-loader:before{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 0;
}
#site-loader .loader-logo img{
    max-width: 180px;
    animation: pulseLogo 1.2s infinite ease-in-out;
}

/* حركة خفيفة للّوجو */
@keyframes pulseLogo{
    0%{ transform: scale(1); opacity: .8; }
    50%{ transform: scale(1.05); opacity: 1; }
    100%{ transform: scale(1); opacity: .8; }
}

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

.wrap {
    overflow: hidden;
}


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

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

html[dir="rtl"] body {
    direction: rtl !important;
    text-align: right !important;
    font-family: 'Bahij-Janna', serif !important;
}
section {
    height: 100vh !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;

}
@media (max-width: 991px) {
    section{
        height: auto !important;
    }
}

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

h1, h2, h3, h4, h5, h6 {
    margin-top: 0 !important;
    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: 150px;
}

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

.form-control {
    direction: rtl;
    text-align: right;
    height: 50px;
     border: 1px solid rgba(243, 241, 241, 0.1);
    background: rgba(255, 255, 255, 0.1);

}

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

.form-control:focus {
    border-color: var(--main);
}
.hdr-info{
        display: flex;
    align-items: center;
    gap: 30px;
}
.hdr-info a{
    font-size: 30px;
    color: #fff;
    display: flex;
}
.hdr-info a:hover{
    color: var(--main);
    transition: all 0.35s ease-in-out;
}
/******************************/
/*&&&&& Main Button &&&&&&&&*/
/******************************/
.main-btn {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
    text-decoration: none;
    overflow: hidden;
    transition: color .4s ease;
}

.main-btn .text {
    position: relative;
    z-index: 2;
}

.main-btn .overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sec);
    border: 1px solid var(--sec);
    transition: .4s ease;
    z-index: 1;
}

.main-btn:hover {
    color: #1a1a1a;
}

.main-btn:hover .overlay {
    left: 0;
}


@media (max-width: 500px) {
    .main-btn {
        width: 120px;
        font-size: 14px;
    }
}

/******************************/
/*&&&&& main-tittle &&&&&&&&*/
/******************************/
.main-tit {
    font-weight: bold;
    font-size: 48px;
    color: var(--white);
    position: relative;
}

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

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

/******************************/
/*&&&&& header &&&&&&&&*/
/******************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 0;
}
header.scrolled{
    background: rgba(80, 100, 66, .3);
}
/* حركة نزول ناعمة */
@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.head-home .main-logo{
    display: none;
}
.head-inside .main-logo{
    display: block;
}
.head-inside .main-logo img{
    max-width: 100px;
}
header.head-inside {
    position: relative;
     background-image: url("../images/Bg-Image.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
header.head-inside:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: 0;
}

.header-main-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.header-main-content .language button{
    background: transparent;
    color: var(--white);
    display:flex;
}
.language .dropdown-menu.show{
    text-align: center;
    color: var(--white);
    background: var(--main);
}
.language button i{
    color: var(--white);
    font-size: 24px;
}
.language button:hover i {
    color: var(--main);
}
.language button.dropdown-toggle::after{
    content: none;
}

    .language a {
    display: block;
    color: var(--white);
    font-size: 18px;
    position: relative;
    text-align: center;
    padding: 5px 15px;
    transition: all 0.35s ease-in-out;
}
.language li {
    text-align: center;
}

.head-logo .main-logo {
    position: relative;
    z-index: 2;
}
.main-logo img{
    max-width: 180px;
}


@media (max-width: 768px) {
    .main-nav-with-order {
        display: flex;
        align-items: center;
    }

    .header-main-content .main-logo{
        margin-inline-start: 50px;
    }
    .mobile-logo img{
        max-width: 100px;
    }

}

@media (max-width: 500px) {

}


/******************************/
/*&&&&& nav &&&&&&&&*/
/******************************/

@media (min-width: 992px) {
    .main-nav-with-order {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .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: 18px;
        position: relative;
        text-align: start;
        padding: 10px 15px;
        transition: all 0.35s 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);
        font-weight: 700;
        transition: all 0.35s ease-in-out;
    }

    .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", serif;
        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", serif;
        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) {
    .mobile-contact{
        margin-top: 30px;
    }
    .mobile-contact-item {
        color: var(--main);
        margin-bottom: 10px;
    }
    .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", serif;
        font-weight: 900;
        color: var(--white);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: var(--main);
        border: 1px solid var(--main);
        background-color: transparent;
        margin-inline-start: 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: 250px;
        height: 100%;
        padding: 15px;
        background-color: rgba(255, 255, 255, 1);
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 99999;
        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;
    }
}

/******************************/
/*&&&&& Intro Section &&&&&&&&*/
/******************************/
.intro {
    position: relative;
}

.intro:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    z-index: 0;
}

.intro-content {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.intro-content .head-logo {
    margin-bottom: 20px;
}

.intro-content .intro-url {
    margin-bottom: 20px;
}

.intro-content .intro-title {
    font-size: 48px;
    color: var(--white);
    font-weight: 400;
    text-align: center;
}

@media (max-width: 1280px) {
    .intro-content .intro-title{
        font-size: 38px;
    }
    .main-logo img{
        max-width: 180px;
    }
}

@media (max-width: 1024px) {
    .intro-content .intro-title{
        font-size: 34px;
    }
    .main-logo img{
        max-width: 160px;
    }
}

@media (max-width: 991px) {
    .main-logo img{
        max-width: 150px;
    }
    
    
    
    .units .main-tit , .services .main-tit , .gallery .main-tit{
        top: 40px;
    width: 100%;
    justify-content: center;
    display: flex;
    }
    
    
}

@media (max-width: 768px) {
    .intro-content .intro-title{
        font-size: 28px;
    }
    .main-logo img{
        max-width: 130px;
    }
}

@media (max-width: 576px) {
    .intro-content .intro-title{
        font-size: 24px;
    }
}
@media (max-width: 992px) {

}

@media (max-width: 768px) {
    .intro{
        height: 100vh !important;
    }
    .intro-content{
        width: 100%;
        top: 15%;
    }
}

@media (max-width: 500px) {
    .intro-content .intro-title{
        font-size: 24px ;
    }
}

/******************************/
/*&&&&& video_home  &&&&&&&&*/
/******************************/
.video_home {
    position: relative;
}

.video_home:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    z-index: 1;
}

.video-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-wrap .video {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: initial;
}

.video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-decoration: none;
    z-index: 2;
}

@media (max-width: 992px) {

}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
.video-play img{
    max-width: 75px;
}
}


/******************************/
/*&&&&& About Section &&&&&&&&*/
/******************************/
.about {
    position: relative;
    overflow: hidden;
}

.about:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -75px;
    width: 100%;
    height: 130px;
    z-index: 1;
    background-image: url("../images/Frame.png");
    background-repeat: repeat-x;
    background-size: 1250px 130px;
    animation: wave-ltr 8.5s linear infinite;
    will-change: background-position;
}

@keyframes wave-ltr {
    from {
        background-position: 0 100%;
    }
    to {
        background-position: 1250px 100%;
    }
}

html[dir="rtl"] .about::before {
    animation-name: wave-rtl;
}

@keyframes wave-rtl {
    from {
        background-position: 0 100%;
    }
    to {
        background-position: calc(1250px * -1) 100%;
    }
}

.about .main-tit {
    color: var(--sec);
    margin-bottom: 30px;
}
@media (min-width: 992px) {
    .about .main-tit{
       margin-top: 80px !important;
    }
}
.about .about-desc {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 30px;
}
.about-images{
    text-align: end;
}
@media (max-width: 1280px) {
    .about-images img{
        max-width: 550px;
    }
}
@media (max-width: 992px) {

}

@media (max-width: 768px) {
    .about{
        text-align: center;
        padding: 50px 0 100px;
    }
    .about .row{
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}
}

@media (max-width: 500px) {
    .about .about-desc{
        padding: 0 15px ;
    }
}
.banner-images img{
    width: 100%;}
/******************************/
/*&&&&& units Section &&&&&&&&*/
/******************************/
.units {
    position: relative;
}

.units .main-tit {
    color: var(--white);
    position: absolute;
     left: 50%;
    transform: translateX(-50%) !important;
    z-index: 1;
}
@media (min-width: 992px) {
    .units  .main-tit{
        top: 15%;
    }
}
.units-item {
    position: relative;
}

.units-item:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
    transition: background-color .35s ease-in-out, opacity .35s ease-in-out;
    opacity: 1;
    z-index: 0;
}
.units-item:hover:after{
    background: rgba(203, 188, 124, .15);
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.units .units-item .image img {
    width: 100%;
    height: 100vh;
    object-fit: inherit;
    object-position: center;
}

.units-item .units-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 50px;
    z-index: 2;
}
.units-item .units-content .units-title{
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
.units-item .units-content .units-description{
    color: var(--white);
    font-size: 14px;
    margin-bottom: 10px;
}
.units-item .units-content .units-url{
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}
.units-item .units-content .units-url i {
    padding-inline-start: 10px;
}
html[dir="rtl"] .units-item .units-content .units-url i ,
html[dir="rtl"] .services-item .services-content .services-url i{
    padding-inline-end: 10px;
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .units .units-item .image img{
        height: 65vh;
    }
}
    /******************************/
/*&&&&& gallery Section &&&&&&&&*/
/******************************/
.gallery {
    position: relative;
}

.gallery .main-tit {
    color: var(--white);
    position: absolute;

    left: 50%;
    transform: translateX(-50%) !important;
    z-index: 3;
}
@media (min-width: 992px) {
    .gallery .main-tit{
        top: 15%;
    }
}

.gallery-item {
    position: relative;
}


 .gallery .gallery-item .image{
     position: relative;
     z-index: 2;
 }
.gallery-item .image a:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
    transition: background-color .35s ease-in-out, opacity .35s ease-in-out;
    opacity: 1;
    z-index: 0;
}
.gallery-item:hover .image a:after{
    background: rgba(203, 188, 124, .15);
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
    opacity: 1;
}
 .gallery .gallery-item .image img {
    width: 100%;
    height: 50vh;
    object-fit: inherit;
    object-position: center;
}

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

 .gallery-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
     z-index: 2;
}

 .gallery-content .gallery-url{
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}
 .gallery-content .gallery-url i {
    padding-inline-start: 10px;
}
/******************************/
/*&&&&& counter Section &&&&&&&&*/
/******************************/

.counter {
    position: relative;
}

.counter:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    z-index: 0;
}
.counter-items-wrap{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

}
.counter-items{
    background: rgba(80, 100, 66, 0.6);
    flex: 0 0 48%;
    max-width: 48%;
    padding: 15px;
    border-radius: 20px;
    height: 150px;
    margin-bottom: 50px;
}
.counter-items-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.counter-items-head .tit {
    color: var(--white);
    font-size: 20px;
}
.counter-items-head .url{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sec);

}
html[dir="rtl"] .counter-items-head .url{
    transform: rotateY(180deg);
}
.counter-items-body{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.counter-items-body .number{
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
}
@media (min-width: 992px) {
    .counter .container ,.counter .row{
        height: 100vh;
    }

}

@media (max-width: 992px) {

}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .counter-items{
         flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;

    }
}
/******************************/
/*&&&&& services Section &&&&&&&&*/
/******************************/
.services {
    position: relative;
}

.services .main-tit {
    color: var(--white);
    position: absolute;
     left: 50%;
    transform: translateX(-50%) !important;
    z-index: 1;
}
@media (min-width: 992px) {
    .services .main-tit{
        top: 10%;
    }
}
.services-item {
    position: relative;
}

.services-item:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
    transition: background-color .35s ease-in-out, opacity .35s ease-in-out;
    opacity: 1;
    z-index: 0;
}
.services-item:hover:after{
    background: rgba(203, 188, 124, .15);
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
    opacity: 1;
}
.services .services-item .image img {
    width: 100%;
    height: 100vh;
    object-fit: inherit;
    object-position: center;
}

.services-item .services-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 50px;
    z-index: 2;
}
.services-item .services-content .services-title{
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
.services-item .services-content .services-description{
    color: var(--white);
    font-size: 14px;
    margin-bottom: 10px;
}
.services-item .services-content .services-url{
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}
.services-item .services-content .services-url i {
    padding-inline-start: 10px;
}
@media (max-width: 768px) {
    .services .services-item .image img {
        height: 65vh;
    }
}
/******************************/
/*&&&&& contactus &&&&&&&&*/
/******************************/
.contactus{
    position: relative;
    padding: 50px 0;

}
.form-focused {
    position: relative;
    margin-bottom: 30px;
     z-index: 2;
}
.contactus:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    z-index: 0;
}
.form-focused label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #fff;
    font-size: 16px;
    pointer-events: none;
    transition: all .4s ease-in-out;
}
html[dir="rtl"] .form-focused label{
    right: 20px;
    left: unset;
}
.form-focused.focused label,
.form-focused:hover label {
    top: -22px;
    left: 10px;
    font-size: 13px;
}
html[dir="rtl"] .form-focused.focused label, html[dir="rtl"] .form-focused:hover label{
    right: 10px;
    left: unset;
}


input[type="date"].form-control{
    text-align: left;
    color: var(--white);
}

 form .main-btn{
    margin: 20px auto;
    display: table;
}
/******************************/
/*&&&&& footer &&&&&&&&*/
/******************************/
footer {
    height: 100vh;
    background: var(--black);
    padding: 50px 0 ;
    position: relative;
}
footer:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    z-index: 0;
}
footer:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -75px;
    width: 100%;
    height: 130px;
    z-index: 1;
    background-image: url("../images/Frame.png");
    background-repeat: repeat-x;
    background-size: 1250px 130px;
    animation: wave-ltr 8.5s linear infinite;
    will-change: background-position;
}

html[dir="rtl"] footer::before {
    animation-name: wave-rtl;
}
footer .main-logo{
    margin-bottom: 20px;
}
.main-footer-content{
    position: relative;
    z-index: 2;
    text-align: center;
}
.main-footer-content .main-logo{
    max-width: 150px;
}
.main-information{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.main-information .info{
    margin: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.main-information .info .text .tit{
    color: var(--sec);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.info-val-link ,.info-val{
    color: var(--white);
}
.info-val-link:hover ,.info-val:hover{
    color: var(--sec);
}
.main-information .info .text{
    text-align: start;
    margin-inline-start: 10px;
}
.main-information .info .icon{
    color: var(--sec);
    font-size: 28px;
}
.social-media{
    margin-bottom: 50px;
}
.social-media .social-item{
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin: 0 5px;
}
.social-media .social-item:hover{
    color: var(--sec);
    transition: all .35s ease-in-out;
}

.main-footer-list ul ,.footer-list-pages ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-list-pages ul li:last-of-type{
    border-inline-start: 2px solid var(--white);
    padding-inline-start: 10px;
}
.main-footer-list ul li{
    margin: 0 20px;
    font-size: 18px;
}
.footer-list li {
   margin: 0 5px;
}

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


.copy-write {
    padding: 30px 0;
}

.copy-write-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

 }

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

.copy-write-items a {
    color: var(--sec);
}
.map{
    height: 100vh;
}
.map iframe {
    width: 100%;
    height: 100vh;
    filter: invert(90%) grayscale(1);
}
@media (max-width: 992px) {

}

@media (max-width: 768px) {
    footer{
        height: auto !important;
        padding: 50px 0 100px !important;
    }
}

@media (max-width: 500px) {
    .main-information{
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
        gap: 20px;
    }
    .main-footer-list ul li{
        font-size: 14px;
        margin: 0 10px;
    }
    .main-footer-list ul, .footer-list-pages ul{
        flex-wrap: wrap;
    }
}
.page-tit{
    color: var(--sec) !important;
}
 .our_vision_mission{
     position: relative;
     overflow: hidden;
 }
.our_vision_mission:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    z-index: 0;
}
.our_vision_mission:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -75px;
    width: 100%;
    height: 130px;
    z-index: 1;
    background-image: url("../images/Frame.png");
    background-repeat: repeat-x;
    background-size: 1250px 130px;
    animation: wave-ltr 8.5s linear infinite;
    will-change: background-position;
}

 .our_vision_mission .row{
     height: 100%;
 }
html[dir="rtl"] .our_vision_mission::before {
    animation-name: wave-rtl;
}



.our_vision_mission-items-content {
    position: relative;
    z-index: 2;
}
.our_vision_mission-items .our_vision_mission-tit{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--white);
}
.our_vision_mission-items .our_vision_mission-description{
    font-size: 16px;
    color: var(--white);
}
.map iframe{
    width: 100%;
    height: 100vh;
}

.units-tax .units-item .image img{
    height: 600px;
}
.thumb-or-video{
    margin-bottom: 20px ;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--sec);
}
.information-units{
    margin-bottom: 30px;
}
.information-units-content{
    display: flex;
    align-items: center;
    justify-content: flex-start;

}
.information-units-content .icon{
    margin-inline-end: 10px;
}
.information-units-content .text{
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}
.unit-gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows:240px;
    gap: 20px;
    grid-auto-flow: dense;
}
.unit-gallery-grid .gitem{
    margin:0;
    overflow:hidden;
}
.unit-gallery-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.unit-gallery-grid .gitem:nth-child(7n + 3){
    grid-row: span 2;
}
.unit-gallery-grid .gitem:nth-child(7n + 4){
    grid-row: span 2;
}
.unit-gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
     gap: 14px;
}
.unit-gallery-grid a{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
}
@media (max-width: 768px){
    .unit-gallery-grid{
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }
}
.single-units-matches .matches-title{
    font-size: 34px;
    font-weight: bold;
    color: var(--sec);
}
.single-units-matches .matches-content{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.single-units-matches .matches-content-items{
    flex: 0 0 48%;
    max-width: 48%;
}
.single-units-matches .matches-content-items .title{
    font-size: 28px;
    font-weight: 500;
     color: var(--white);
}
.single-units-matches .matches-content-items .subtitle{
    font-size: 34px;
    font-weight: 500;
     color: var(--sec);
}
.matches-more-description{
    text-align: center;
    padding: 30px 50px;
    border-radius: 10px;
    margin-top: 30px;
    background-color: rgba(0, 0, 0, 0.65);
}
.matches-more-description .tit{
    color: var(--sec);
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 10px;
}
.matches-more-description .description{
    color: var(--white);
    font-size: 20px;
}
.home-features-tit{
    color: var(--sec);
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 10px;
}

.home-features-list{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.home-features-list .home-features-list-item{
    flex: 0 0 38%;
    max-width: 38%;
    color: var(--white);
    position: relative;
    padding-inline-start: 15px;
    margin-bottom: 8px;
font-size: 18px;
}

.home-features-list .home-features-list-item:before
{
    content: "";
    width: 4px;
    height: 4px;
    background: var(--white); /* نفس لون النص */
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
html[dir="rtl"] .home-features-list .home-features-list-item:before{
    right: 0;
    left: unset;
}
.unites-tabs-single{
    margin-top: 30px;
}
.unites-tabs-single .nav-tabs{
    border: none;
}
.unites-tabs-single .nav-link {
    background: transparent;
    font-size: 34px;
    border: none;
    color: rgba(203, 188, 124, 0.49);
    padding: 0;
    margin-inline-end: 30px;
}
.unites-tabs-single .nav-link.active{
    color: var(--sec);
    border: none;
    background: transparent;
}
.specifications-items-contant{
    background-color: var(--sec);
    padding: 15px 5px;
    text-align: center;
    width: 100%;
    height: 100%;
}
.specifications-items-contant img{
    max-width: 25px;
    margin-bottom: 5px;
}
.specifications-items-contant h5{
    font-size: 13px;
    font-weight: 500;
}
.unites-tabs-single .tab-pane iframe{
    width: 100%;
    border-radius: 15px;
}
.unites-tabs-single #units img{
    width: 100%;
    border-radius: 15px;
}
@media (min-width: 992px) {
    .unites-tabs-single .col-tab-1{
        flex: 0 0 16.5% !important;
        max-width: 16.5% !important;
    }
}

.archive-services .services-item img{
    height: 550px;
}
.archive-gallery .gallery-item img{
    height: 550px;
}
.site-map-image img{
    width: 100%;
    height: 100vh;
}
@media (max-width: 768px) {
    .single-units-matches .matches-content{
        flex-wrap: wrap;
        padding: 0 15px;
    }
    .home-features-list .home-features-list-item{
        flex: 0 0 48%;
        max-width: 48%;

    }
    .site-map-image img{
        width: 100%;
        height: 60vh;
    }
}
@media (max-width: 500px) {
    
    
    .intro-content .intro-url{
            display: flex;
    gap: 10px;
    }
    
    
    .matches-more-description{
        padding: 30px 10px;
    }
    .matches-more-description .tit{
        font-size: 22px;
    }
    .home-features-list{
        padding: 10px 15px;
    }
    .matches-more-description .description{
        font-size: 14px;
    }
}
.services-carousel--facilities{
    direction: ltr;
}
html[dir="ltr"] .services-carousel--facilities{
    direction: rtl;
}
.services-archive .services-block .services-item .image img{
    height: 550px;
}

.services-archive .main-tit{
    position: relative;
    background-image: url(../images/Bg-Image.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--sec) !important;
    text-align: center;
    z-index: 9;
    margin-bottom: 0;
}

.services-archive .main-tit:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: -1;
}
.single-units .units-item.services-item .image img{
width: 100%;
    height: 400px;
}
.single-services .services-item .image img{
width: 100%;
    height: 400px;
}
.map-about iframe{
    width: 100%;
    display: block;
filter: invert(90%) grayscale(1);
}