@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: 'Bahij-Janna-bold';
    src: url('../fonts/bahij/BahijJanna-Bold.eot');
    src: url('../fonts/bahij/BahijJanna-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bahij/BahijJanna-Bold.woff2') format('woff2'),
    url('../fonts/bahij/BahijJanna-Bold.woff') format('woff'),
    url('../fonts/bahij/BahijJanna-Bold.ttf') format('truetype'),
    url('../fonts/bahij/BahijJanna-Bold.svg#BahijJanna-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeoSansArabic';
    src: url('../fonts/NeoSansArabic.ttf');

}

/******************************/
/******************************/
:root {
    --primary: #739dab;
    --secondary: #15509c;
    --gray: #bebebe;
    --black: #000;
    --white: #ffffff;
}

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

.wrap {
    overflow: hidden;
}

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

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

body {
    font-family: 'Bahij-Janna';
    color: var(--black);
    background: var(--white);
    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 {
    color: var(--primary);
    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;
}

ul li {
}

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

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

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

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
    color: var(--primary);
}

.main-btn {
    position: relative;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: all .35s ease-in-out;
}

.main-btn:hover {
    background: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--white) !important;
    transform: translateY(-5px);
}
.mainItem-overlay{
        position: relative;

}
.mainItem-overlay:before{
        content: '';

    background-color: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.main-title {
    position: relative;
    color: var(--primary);
    font-size: 36px;
    font-weight: bold;
}
.main-title:before,
.main-title:after{
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.main-title:before{
    content: "\f054";
    padding-inline-end: 10px;
}
html[dir="ltr"] .main-title:before{
    content: "\f053";
}
.main-title:after{
    content: "\f053";
    padding-inline-start: 10px;
}
html[dir="ltr"] .main-title:after{
    content: "\f054";
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .main-btn {
        font-size: 12px;
        width: 100px;
        height: 35px;
        line-height: 35px;
    }

    .main-title {
        font-size: 28px;
        margin: 10px 0;
    }
}


/******************************/
/* && header &&*/
/******************************/
.head-home{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.head-inside {
    background-color: var(--white)
}

.top-header-main {
    background: #15509c;
    padding: 10px 0;
}

.information-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0;
}

.top-header-main .text {
    font-size: 18px;
    color: var(--white);
}

.information-header-contact .head-info {
    display: flex;
    align-items: center;
}

.information-header-contact .head-info .item {
    margin-inline-end: 15px;
}

.information-header-contact .head-info .item span {
    color: var(--white);
    font-size: 18px;
    margin-inline-end: 5px;
}

.information-header-social a {
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
    margin-inline-start: 10px;
}

.lang img {
    margin-inline-start: 5px
}

.top-header {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-inline-start: 2px dashed var(--primary);
}

.phone-icon .img {
width: 50px;
    height: 50px;
    text-align: center;
    background: #2496ad;
    border-radius: 50%;
    margin-inline-end: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-icon .img img {
    max-height: 100%;
    object-fit: contain;
    max-width: 100%;
}
.phone-icon-content {
    display: flex;
    flex-direction: column;
    flex: .8;
    color: var(--white);
}

.phone-icon-content a {
    color: var(--white);
}

.head-inside .phone-icon-content,
.head-inside .phone-icon-content a {
    color: var(--black);
}

.main-header {
    margin-top: 30px;
}
.head-inside .main-header{
    margin-bottom: 30px;
}
.main-logo img{
    width: 200px;

}
@media (min-width: 992px) {
    .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.home i {
        font-size: 26px;
        color: var(--white);

    }

    .nav-list > .menu-item > a {
        display: flex;
        color: var(--white);
        font-size: 18px;
        position: relative;
        padding: 15px 6px;
        transition: all 0.5s ease-in-out;
    }
    .head-inside .nav-list > .menu-item > a {
         color: var(--black);
    }
    html[dir="ltr"] .nav-list > .menu-item > a{
        font-size: 16px;
        padding: 15px 4px;
    }
    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--secondary);

    }

    .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(--white);

        transition: all .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(--white);
    }

    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: 250px;
        background-color: rgba(255, 255, 255, 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(--secondary);
        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(--secondary);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

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

    }

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

    }

    .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: "\f104";
    }

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

    .nav-list > .menu-item-has-children > .sub-menu a:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        display: inline-block;
        margin-inline-end: 10px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 50%;
        background: var(--primary);
        color: var(--white);
        font-size: 14px;
        transition: all .35s ease-in-out;
    }

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

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

    }

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

@media (max-width: 992px) {
    .menu-item-has-children {
        display: flex;
        width: 100%;
        align-items: center;

    }

    .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: 100%;
        color: var(--white);
        background-color: var(--primary);
        margin-inline-end: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }

    html[dir="rtl"] .nav-btn {
        margin-inline-end: 10px;
    }

    html[dir="ltr"] .nav-btn {
        margin-inline-start: 10px;
    }

    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: 6;
        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(--secondary);
    }

    .mobile-nav-list .menu-item:not(:last-of-type) a {
    }

    .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(--secondary);
    }

    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(--secondary);
    }

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

    .sub-menu.open {
    }

    .sub-menu li {
    }

    .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) {
    header{
        position: relative;
        background: #15509c;
        padding-bottom: 10px;

    }
    .main-header {
        margin-top: 0px;
    }
    .main-header .main-header-col:nth-of-type(2){
        order: 3;
    }
    .phone-icon{
        justify-content: flex-end;
    }
    .phone-icon-content{
        flex: none;
    }
}
@media (max-width: 500px) {
    .information-header-contact{
        display: none;
    }
    .information-header-social{
        margin: 0 auto;
        display: table;
    }
    .phone-icon{
        display: none;
    }
    .top-header-main .text{
        font-size: 14px;
    }
    .head-logo{
        justify-content: center;
    }
}

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

.main-slider .mainItem {
    background: #f2faff;
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 3;
}


.main-slider .slider-img img {
    width: 100%;
    height: 750px;
}

.main-slider .slid-tit {
    position: absolute;
    inset: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    color: var(--black);
    z-index: 11;
}

.main-slider .slid-tit .tit {
    font-size: 72px;
    line-height: 100px;

    font-weight: bold;
    position: relative;
    color: var(--white);
}

.main-slider .slid-tit .main-btn {
    margin: 30px auto;
    display: table;
}



.main-slider .owl-nav div {
    position: absolute;
    top: 50%;
    /*margin-bottom: 10px;*/
    color: var(--white);
    background-color: var(--primary);
    border: 1px solid var(--primary);
    font-weight: bold;
    padding: 0;
    width: 60px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 28px;
    transition: all .35s ease-in-out;
}
.main-slider .owl-nav div.owl-prev {
inset-inline-start: 0;
}
.main-slider .owl-nav div.owl-next {
    inset-inline-end: 0;
}
.main-slider .owl-nav div:hover {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.main-slider .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider .owl-dot {
    width: 22px;
    height: 22px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .5);
    transition: all .35s ease-in-out;
}

.main-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    transition: all .35s ease-in-out;
}

.main-slider .owl-dots .owl-dot.active {
    border-right: 1px solid #2496b1;
    border-left: 1px solid #2496b1;
    background: transparent;
    transition: all .35s ease-in-out;
}

.main-slider .owl-dots .owl-dot.active span {
    background: #2496b1;
    transition: all .35s ease-in-out;
}

@media (max-width: 768px) {
    .main-slider .slid-tit{
        top: 40%;
    }
    .main-slider .slid-tit .tit{
        font-size: 36px;
        line-height: 50px;
    }

    .main-slider .slider-img img {
        height: 650px;
    }
}

@media (max-width: 500px) {
    .main-slider .slid-tit .tit {
        font-size: 18px;
        line-height: 22px;
        font-weight: bold;
        position: relative;
        color: var(--white);
    }
    .main-slider .slider-img img {
        height: 500px;
    }



}

/******************************/
/* && about &&*/
/******************************/
.about {
    position: relative;
    padding: 50px 0 75px;
}

.about-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 50px;
}

.about-image .img {
    text-align: end;
}

.about-image .about-vid {
    margin-top: -100px;
    margin-inline-start: 25px;
    padding: 15px;
    position: relative;
}

.about-image .about-vid .text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-image .about-vid .text i {
    margin-bottom: 10px;
    font-size: 48px;
    color: var(--white);
}

.about-image .about-vid .text span {
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
}

.about-description {
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
}


.about-url a {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary);
}

.arrow-rotate {
    transform: rotate(-30deg);
    margin-inline-end: 10px;
}

@media (max-width: 768px) {
    .about-image .about-vid{
        margin-inline-start: 0;

    }
}

@media (max-width: 500px) {
    .about-title{
        font-size: 22px;
    }
}

/******************************/
/* && services &&*/

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

.services:before {
    content: " ";
    background-image: url("../images/serv-bg.png");
    width: 100%;
    height: 500px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.services .main-title {
    color: var(--white);
}

.services-title {
    color: var(--white);
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: bold;

}

.serItem-img img {
    width: 100%;
}

.serItem-body {
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%, 0);
}

.serItem-exp {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 10px;
    transition: all .35s ease-in-out;
}

.serItem:hover .serItem-exp {
    color: var(--secondary);
}

.serItem-tit {
    font-size: 26px;
    color: var(--white);
    font-weight: bold;
}

.services-slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    background: #fff;
    position: relative;
    z-index: 1;
}
html[dir="ltr"] .services-slider .owl-nav{
    flex-direction: row-reverse;
}
.services-slider .owl-nav:before {
    content: " ";
    background: var(--white);
    width: 120px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.services-slider .owl-nav:after {
    content: " ";
    background: var(--primary);
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.services-slider .owl-nav div {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: #fff;
    position: relative;
    z-index: 9999;
    transition: all .35s ease-in-out;
}

.services-slider .owl-nav div:hover {
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

/******************************/
/* && brief &&*/
/******************************/
.brief {
    padding: 50px 0;
}

.brief-items {
    margin-top: 100px;
    margin-left: -170px;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 50px 30px;
}

.brief-btn {
    display: inline-block;
}

.brief-url {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.brief-url:before {
    content: " ";
    background: var(--primary);
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.brief-content {
    text-align: center;
}

.brief-body .tit {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--black);
}

.brief-body .desc {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gray);
}

.brief-url .main-btn .arrow-rotate {
    margin-inline-start: 10px;
    margin-inline-end: 0;

}

.brief-btn .main-btn {
    width: 130px;
    font-size: 16px;
    background: var(--white);
    color: var(--secondary) !important;
    border: 1px solid var(--secondary) !important;
}

.brief-btn .main-btn.collapsed {
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;

}

.brief-url .main-btn .arrow-rotate {
    transform: rotate(-90deg);
}

.brief-url .main-btn.collapsed .arrow-rotate {
    transform: rotate(-30deg);
    margin-inline-end: 10px;
}

@media (max-width: 768px) {
    .brief-col img{
        width: 100%;
    }
.brief-col:nth-of-type(2){
    display: flex;
    order: -1;
}
    .brief-items {
        width: 90%;
        margin: -110px auto 0;
        display: table;

        padding: 25px 15px;
    }
}

@media (max-width: 500px) {
    .brief-btn .main-btn{
        width: 90px;
    }
}

/******************************/
/* && why-us &&*/
/******************************/
.why-us {
    position: relative;
    padding: 50px 0;
    counter-reset: section;
}

.why-us-title {
    color: var(--white);
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: bold;
}

.why-us:before {
    content: " ";
    background-image: url("../images/why-bg.png");
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.why-us-items {
    text-align: center;
    margin-bottom: 30px;
    transition: all .35s ease-in-out;
}

.why-us-items .number {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    border: 2px dashed var(--primary);
    color: var(--primary);
    transition: all .35s ease-in-out;

}

.why-us-items:hover .number {
    border: 2px dashed var(--secondary);
    color: var(--white);
    background: var(--secondary);
}

.why-us-items .number::before {
    counter-increment: section;
    content: counter(section, decimal-leading-zero);
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    font-size: 26px;
}

.why-us-items:hover .img img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(96%) saturate(1148%) hue-rotate(189deg) brightness(92%) contrast(95%);
}

.why-us-items .img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    margin-bottom: 10px;

}

.why-us-items .img:after {
    content: "";
    background: var(--white);
    display: inline-block;
    border: 2px solid var(--primary);
    left: 50%;
    position: absolute;
    top: 20%;
    width: 125px;
    height: 112px;
    z-index: -1;
    transform: translate(-50%, 0);
    transition: all .35s ease-in-out;
}

.why-us-items:hover .img:after {
    border: 2px solid var(--secondary);
}

.why-us-items .img:before {
    border-bottom: 32px solid var(--white);
    border-left: 32px solid transparent;
    border-right: 32px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 2px;
    width: 0;
    z-index: 0;
    transform: translate(-50%, 0);
}

.why-us-items .tit {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--black);
    transition: all .35s ease-in-out;
}

.why-us-items:hover .tit {
    color: var(--secondary);
}

.why-us-items .desc {
    font-size: 14px;
    font-weight: bold;
    color: var(--gray);
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .why-us-title{
        font-size: 24px;
    }
    .why-us:before{
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
    }
    .why-us-items .tit{
        color: var(--white);
    }
    .why-us-items .desc {
        font-size: 14px;
        font-weight: bold;
        color: #cecece;
    }
}

/******************************/
/* && news &&*/
/******************************/
.news {
    padding: 50px 0;
}

.news .news-slider .items {
    text-align: center;
}

.news .news-slider .items img {
    width: 100%;
    height: 350px;
}

.news .news-slider .items .desc {
    margin: 20px 0;
}

.news-slider .news-url a {
    font-size: 18px;
    font-weight: bold;
}

.news-slider .news-url i {
    margin-inline-end: 0;
    margin-inline-start: 10px;
}

.news-slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}
html[dir="ltr"] .news-slider .owl-nav{
    flex-direction: row-reverse;
}
.news-slider .owl-nav div {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50%;
    text-align: center;
    transition: all .35s ease-in-out;
    margin: 0 5px;
}

.news-slider .owl-nav div:hover {
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

@media (max-width: 768px) {
    .news .news-slider .items img{
        height: 250px;
    }
}

@media (max-width: 500px) {
    .news .news-slider .items img{
        height: 200px;
    }
}

/******************************/
/* && footer &&*/
/******************************/
@media (max-width: 768px) {

}

@media (max-width: 500px) {

}
/******************************/
/* && contact-us &&*/
/******************************/
.contact-us{
    padding: 50px 0;
}
.contact-us-title{
    color: var(--black);
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: bold;
}
.contact-us-dessc{
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: bold;
}
.contact-us .contact-form form input {
    width: 100%;
    overflow: visible;
}

.contact-us-content {
    margin-top: 50px;
}

.contact-us .form-control {
    height: 45px;
    background: transparent;
    color: var(--gray);
    border: none;
    border: 1px solid var(--gray);
    margin-bottom: 40px;

}

.contact-us .form-control:focus {
    border-bottom: 1px solid var(--gray);
    box-shadow: none;

}

.contact-us textarea.form-control {
    height: 80px;
    border-bottom: 1px solid var(--gray);

}
.contact-us .main-btn{
    display: table;
    margin: 20px auto;
    width: 150px;
    line-height: 40px;
    font-size: 18px;
    height: 40px;
}
.contact-us .main-btn i{
    margin-inline-start: 10px;
    margin-inline-end: 0 ;
}
.form-focused {
    position: relative;
    margin-bottom: 30px;
}

.form-focused label {
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 12px;
    left: 50%;
    transform: translate(-50% , 0);
    font-size: 14px;
    color: var(--gray);
    font-family: 'NeoSansArabic';
    transition: all .5s ease-in-out;
}

.focused label {
    top: -30px;

    font-size: 16px;
    color: var(--secondary);
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .contact-us{
        padding: 0 0 30px;
    }
}

/******************************/
/* && map &&*/
/******************************/
.map iframe {
    height: 330px;
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .map iframe{
        height: 280px;

    }
}

@media (max-width: 500px) {
    .map iframe{
        height: 200px;

    }
}

/******************************/
/* && fly-icons &&*/
/******************************/
.fly-icons{
    position: fixed;
    top: 50%;
    left: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    z-index: 99;
}
.fly-icons a{
    margin: 2px 0;
}
.fly-icons a img{
    width: 50px;
    height: 50px;
}
@media (max-width: 500px) {
    .fly-icons{
        left: 5px;
    }
    .fly-icons a img{
        width: 35px;
        height: 35px;
    }
}
/******************************/
/* && footer &&*/
/******************************/
footer {
    position: relative;
    background-image: url("../images/footer-bg.png");
    background-size: cover;

}
.main-footer{
    padding: 50px 0
}
.footer-desc{
    color: var(--white);
    margin-top: 20px;
}
.footer-list li {
    padding-bottom: 10px;
    width: 50%;
    float: right;
}
.footer-list li a{
    color: var(--white) !important;
    font-size: 18px;
    font-weight: bold;
}
.footer-list li:before {
    content: "\2b";
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    font-size: 14px;
    margin-inline-end: 10px;
    text-align: center;
    display: inline-block;
    color: var(--white);
    border-radius: 50%;
    transition: all .35s ease-in-out;
}
.footer-tittle{
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}
.footer-tittle:before{
    content: " ";
    background: var(--secondary);
    width: 75%;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: 0;
}
html[dir="ltr"] .footer-tittle:before{
    left: 0;
    right: unset;
}
.info{
    margin-bottom: 15px;
}
.info .icon {

    font-size: 24px;
    text-align: center;
    background: transparent;
    margin-inline-end: 10px;
    color: var(--white);
    transform: translateY(0);
    transition: all .35s ease-in-out;
}
.info .info-content .kay {
    color: var(--secondary);
    font-size: 18px;
    font-weight: bold;
}
.info .info-content .value {
    display: block;
    color: var(--white);
}
.powerd{
    background: #0f3563;

}
.powerd-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 18px;
 }
.powerd-content span{
    color: var(--white);
}
.powerd-content a{
    color: var(--primary);
}
@media (max-width: 992px) {

}

@media (max-width: 768px) {
    footer {
        padding: 30px 0 0;

    }
  .col-footer{
      margin: 30px 0;
  }

}

@media (max-width: 500px) {


    .main-footer .nav-list a {
        margin: 0 5px;
    }
}

.breadcrumb-area{
    background: #0f3563;
    padding: 10px 0;
}
.breadcrumb-area .page-tit{
    color: var(--white) ;
}
.breadcrumb-area span{
    color: var(--primary);
}
.content .page-main{
    margin: 50px 0;
}
.content .services-items a{
    display: block;

    font-size: 18px;
    font-weight: bold;
}
.content .services-items a .tit{
    color: var(--secondary);
    margin-bottom: 10px;
}
.content .services-items a .desc{
    color: var(--primary);
}
.content .main-tit{
    margin: 30px 0  ;
}
.news-item-img img{
    height: 250px;
}
.news-item-body{
    margin-top: 20px;
}
.news-item-exp{
    margin-bottom: 10px;
}
.page-form .form form .row{
    justify-content: center;
}
.page-form .form form .row .arrow-rotate{
    margin-inline-start: 10px;
}
.page-form .form form {
    margin-bottom: 30px ;
}
.content .slid-thumb img{
    height: 350px;
}
.content .serItem .serItem-body{
    padding: 0 15px;
}
.content .serItem img{
    width: 100%;
}