@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: 'Shekari-Font';
    src: url('../fonts/BShekari.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: clip;
}

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

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

body {
    font-family: 'Bahij-Janna';
    color: #000;
    font-size: 16px;
}

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

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

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

a {
    display: inline-block;
}

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

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

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

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

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

ul li {
}

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

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

.form-control:focus {
    border-color: #0048a2;
    box-shadow: 0 0 0 0.2rem rgba(228, 11, 24, .25);
}

.main-btn {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 35px;
    overflow: hidden;
    background-color: #559ff8;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.main-btn:after {
    content: "\f061";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    position: relative;
    background: #0048a2;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    opacity: 1;
    transition: all .3s linear;
}
html[dir="rtl"] .main-btn:after{
    content: "\f060";
}
.main-btn:hover {
    color: #fff;
    background-color: #0048a2;
}

.main-btn:hover:after {
    transform: scale(1.35);
    transition: all .3s linear;

}


/******************************/

#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: #fff;
    background-color: #559ff8;
    font-weight: bold;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}

.open-search:hover {
    color: #fff;
    background-color: #0048a2;
    border-color: #0048a2;
}

#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';
    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';
    content: "\f057";
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 29px;
    left: 0;
}

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

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

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

/******************************/
header {
    padding: 20px 0;
}

/******************************/

.lang {
    color: #fff;
    background-color: #559ff8;
    font-weight: bold;
    padding: 0;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}

.lang:hover {
    color: #fff;
    background-color: #0048a2;
    border-color: #0048a2;
}

@media (min-width: 992px) {
    .menu-logo img {
        max-height: 105px;
    }

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

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

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

    html[lang="en-US"] .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: flex;
    color: #393939;
    padding: 20px 5px;
    margin: 0 10px;
    position: relative;
    font-family: Bahij-Janna-bold;
    padding-inline-start: 0;
    transition: all 0.5s ease-in-out;
    }
    .nav-list > .menu-item > a:before{
        content: '';
        position: absolute;
        height: 6px;
        bottom: 0;
        width: 0;
        left: 0;
        transition: all 0.5s ease-in-out;
        border-radius: 10px;
        background-color: #0048a2;
    }
    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-inline-start: 10px;
        color: #393939;
        border-bottom: 1px solid transparent;
        transition: all .5s ease-in-out;
    }
    html[dir="rtl"] .nav-list > .menu-item > a:before{
        right: 0;
        left: unset;
    }
    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: #0048a2;

        transition: all 0.5s ease-in-out;
    }

    .nav-list > .menu-item:hover > a:before,
    .nav-list > .menu-item.active a:before {
        width: 26px;
        transition: all 0.5s ease-in-out;
    }

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

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

    html[lang="en-US"] .sub-menu {
        right: 0;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 4;
        min-width: 250px;
        background-color: rgba(85, 159, 248, .6);
        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.6s ease;
    }

    .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: #fff;
        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[lang="en-US"] .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: #fff;
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .sub-menu li a:hover {
        color: #0048a2;
    }

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: #0048a2;
    }

    .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[lang="en-US"] .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[lang="en-US"] .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[lang="en-US"] .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-end: 10px;
        color: #fff;
        font-size: 14px;
        transition: all .5s ease-in-out;
    }

    .nav-list > .menu-item-has-children > .sub-menu a:hover:before {
        color: #0048a2;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: #0048a2;
    }

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

@media (max-width: 992px) {
    .menu-logo img {
        max-height: 65px;
    }

    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: block;
    }

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

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

    .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: #fff;
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        color: #fff;
        background-color: #0048a2;
        margin-inline-start: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }

    html[lang="en-US"] .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(85, 159, 248, 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 #0048a2;
    }

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

    .mobile-nav-list .menu-item > a {
        display: block;
        color: #fff;
        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: #0048a2;
    }

    html[lang="en-US"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-left: 1px solid #fff;
    }

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

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: #fff;
        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: #0048a2;
    }

    .sub-menu {
        list-style: none;
        background-color: #0048a2;
    }

    .sub-menu.open {
    }

    .sub-menu li {
    }

    .mobile-nav-list .sub-menu a {
        display: block;
        padding: 15px 25px;
        color: #fff;

        transition: all .3s linear;
    }

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

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

    html[lang="en-US"] .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 .5s ease-in-out;
    }
}

/******************************/
.main-nav h4{
        font-family: 'Shekari-Font';
    color:#559ff8;
    font-size: 56px;
}
/******************************/
.slider {
    position: relative;
}

.mainItem {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mainItem img.slid-thumb {
    width: 100%;
    position: relative;
    transition: all 25s ease;
    transform-style: preserve-3d;
}

.main-slider .active img {
    transform: scale(1.3);
}

.mainItem-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    color: #000;
    background-color: rgba(255, 255, 255, .2);
}
html[dir="rtl"] .mainItem-overlay .row.justify-content-end{
    justify-content: flex-start !important;
}
html[dir="rtl"] .mainItem-overlay .row.justify-content-end .slid-body.text-left{
    text-align: right !important;
}
.slid-tit {
    margin-bottom: 30px;
}
.slid-body{
        width: 40%;
    position: absolute;
    bottom: 10%;
    left: 7%;
}
.main-slider .owl-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.main-slider .owl-nav div {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #559ff8;
    color: #fff;
    border-radius: 0px;
    transition: all .5s ease-in-out;
}

.main-slider .owl-nav div:hover {
    background-color: #0048a2;
    color: #fff;
    transition: all .5s ease-in-out;
}

html[dir="rtl"] .main-slider .owl-dots {
    right:unset;
    left:30px;
        align-items: center;
}

html[lang="en-US"] .main-slider .owl-dots {
    align-items: flex-start;
}

.main-slider .owl-dots {
    position: absolute;
    display: flex;
}

.main-slider .owl-dots .owl-dot {
    width: 50px;
    height: 10px;
    background-color: #559ff8;
    border-radius: 15px;
    transition: all .5s ease-in-out;
}

.main-slider .owl-dots .owl-dot.active {
    width: 60px;
    background-color: #0048a2;
}

.main-slider .owl-nav div i {
    font-size: 18px;
}

html[dir="rtl"] .fly-icons {
    right: 30px;
}

html[lang="en-US"] .fly-icons {
    left: 30px;
}

.fly-icons {
    position: fixed;
    top: 50%;
    z-index: 2;
}

@media (min-width: 992px) {

    .slid-tit,
    .slid-des {
        font-size: 45px;
    }

    .main-slider .owl-dots {
        top: 50%;
        transform: translateY(-50%);
        right: 30px;
        flex-direction: column;
    }

    .main-slider .owl-dots .owl-dot:not(:last-of-type) {
        margin-bottom: 7px;
    }
}

@media (max-width: 992px) {
    .mainItem img.slid-thumb {
        height: 500px;
    }

    .slid-body {
        padding: 0 35px;
    }

    .slid-tit,
    .slid-des {
        font-size: 22px;
    }

    .main-slider .owl-dots {
        bottom: 30px;
        width: 100%;
        justify-content: center;
    }

    .main-slider .owl-dots .owl-dot {
        margin: 0 5px;
    }
}

@media (max-width: 460px) {
    .slid-body {
        padding: 0;
    }

    .slid-body {
        text-align: center !important;
    }

    .slid-url {
        display: table;
        margin: 0 auto;
    }

    .slid-url .main-btn {
        justify-content: center;
    }

}


/******************************/
/******************************/

.about {
    padding: 60px 0;
}

.about .main-tit {
    font-size: 48px;
}

.about-items {
    position: relative;
    padding: 50px;
}

.about-items:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    border: 1px solid #559ff8;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    z-index: 0;
}

html[dir="rtl"] .about-img-content {
    right: -50px;
    margin-inline-start: 30px;
}

html[lang="en-US"] .about-img-content {
    left: -50px;
    margin-inline-end: 30px;
}

.about-img-content {
    position: relative;
    padding: 100px 0 105px;
    background: #fff;
}

html[dir="rtl"] .about-img-content:before {
    right: -50px;
}

html[lang="en-US"] .about-img-content:before {
    left: -50px;
}

.about-img-content:before {
    content: " ";
    width: 445px;
    height: 500px;
    position: absolute;
    border: 3px solid #0048a2;
    border-radius: 30px;
    top: 0;
    z-index: 0;
}

.about-img-content .img img {
    width: 100%;
}

html[dir="rtl"] .about-content {
    border-right: 1px solid #515966;
    padding-inline-start: 15px;
}

html[lang="en-US"] .about-content {
    border-left: 1px solid #515966;
    padding-inline-start: 15px;
}

.about-content {
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.about-content .about-paragraph {
    color: #939393;
    font-size: 16px;
    line-height: 23px;
    text-align: justify;
}

.about-content .main-btn {
    margin: 25px 0 0;
}

html[dir="rtl"] .vision-header {

}

html[lang="en-US"] .vision-header {
    justify-content: flex-start;
}

.vision-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.vision-header .icon {
    padding-inline-end: 15px;
}

.vision-header .icon i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    background: #559ff8;
    color: #fff;
    font-size: 28px;
}

.vision-header .tittle {
    color: #0048a2;
    font-size: 24px;
    font-weight: bold;
}

.vision-paragraph {
    color: #939393;
    font-size: 16px;
    line-height: 23px;
    text-align: justify;
}

html[dir="rtl"] .about-vedio {
    right: 0;
}

html[lang="en-US"] .about-vedio {
    right: 0;
}

.about-vedio {
    position: absolute;
    bottom: 85px;
}

.about-vedio a i {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 10px;
    text-align: center;
    background: #559ff8;
    color: #fff;
    font-size: 75px;
}


@media (max-width: 992px) {

}

@media (max-width: 768px) {
    html[dir="rtl"] .about-img-content:before {
        right: -20px;
    }

    html[lang="en-US"] .about-img-content:before {
        left: -20px;
    }

    .about-img-content:before {
        width: 300px;
        height: 340px;

    }

    .about-vedio a i {
        width: 75px;
        height: 75px;
        line-height: 75px;
        font-size: 50px;
    }

    html[dir="rtl"] .about-vedio {
        left: -25px;
    }

    html[lang="en-US"] .about-vedio {
        right: -25px;
    }

    .about-vedio {
        bottom: 85px;
    }
}

@media (max-width: 460px) {
    html[dir="rtl"] .about-img-content {
        right: 0;
        margin-inline-start: 0px;
    }

    html[lang="en-US"] .about-img-content {
        left: 0;
        margin-inline-end: 0px;
    }

    .about-img-content {
        padding: 50px 0;
    }

    .about-img-content:before {
        height: 260px;
    }

    html[lang="en-US"] .about-vedio {
        right: -25px;
    }

    html[dir="rtl"] .about-vedio {
        left: -25px;
    }

    .about-vedio {
        bottom: 72px;
    }

    html[dir="rtl"] .about-vedio {
        left: 0;
    }

    html[lang="en-US"] .about-vedio {
        right: 0;
    }

    html[dir="rtl"] .about-content {
        border-right: none;
    }

    html[dir="rtl"] .about-content {
        border-left: none;
    }

    .about-content {
        padding-inline-start: 0px;
    }
}

/******************************/
/******************************/
.categories {
    background: #dfedff;
    padding: 50px 0;
}

.categories .main-tit {
    padding: 25px 0 25px;
    font-size: 48px;
    font-weight: bold;
}

.categories-items {
    margin-top: 75px;
    margin-bottom: 50px;
}

.container-items {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    transition: all .5s ease-in-out;
}

.container-items:hover {
    box-shadow: 0 0 21px rgba(0, 0, 0, .25);
    transform: scale(1.05);
}

.container-icon i {
    font-size: 48px;
    color: #559ff8;
}
container-icon img{
    max-width: 60px;
    max-height: 60px;
}
html[dir="rtl"] .container-title {
    text-align: right;
}

html[lang="en-US"] .container-title {
    text-align: left;
}

.container-title {
    white-space: pre-line;
    font-size: 28px;
    margin-top: -20px;
    padding-bottom: 15px;
    color: #000;
    transition: all .5s ease-in-out;
}

.container-items:hover .container-title {
    color: #0048a2;
}

.container-link {
    position: absolute;
    bottom: -20px;
}

.container-link i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background: #559ff8;
    color: #fff;
    font-size: 16px;
    transition: all .5s ease-in-out;
}
html[dir='rtl'] .container-link i{
    transform: scale(-1);
}
.container-items:hover .container-link i {
    background: #0048a2;
}

.categories .col-md-3:nth-of-type(odd) .container-items {
    margin-top: -50px;
}

@media (max-width: 992px) {

}

@media (max-width: 768px) {
    .container-title {
        margin-top: 10px;
        white-space: normal;
        font-size: 16px;
    }

    .container-icon i {
        font-size: 35px;
    }

    .project {
        padding: 50px 0;
    }
}

@media (max-width: 460px) {
    .categories {
        padding: 25px 0 15px;
    }

    .categories .col-md-3:nth-of-type(odd) .container-items {
        margin-top: 0px;

    }

    .categories-items {
        margin-top: 25px;
    }

    .container-items {
        min-height: 150px;
        padding: 10px;
        margin-bottom: 35px;

    }
}

/******************************/
/******************************/

.project {
    padding: 70px 0;
}

.project .main-tit {
    margin-bottom: 25px;
}

.project .main-header {
    display: flex;
    justify-content: center;
}

.products-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.products-buttons button {
    border: 0;
    border-radius: 35px;
    padding: 10px 30px;
    margin-inline-end: 10px;
    font-size: 16px;
    color: #fff;
    background: #559ff8;
}

.products-buttons button.mixitup-control-active {
    color: #FFFFFF;
    background-color: #0048a2;
}

.new-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1em;
}

.new-row .products-item {
    position: relative;
}

.new-row .products-item img {
    width: 100%;
    border-radius: 10px;
}

.new-row .products-item img:hover {
    transform: scale(1.02);
}

.new-row .products-item:nth-of-type(6n + 1) {
    grid-column: span 3;
    grid-row: span 1;
}

.new-row .products-item:nth-of-type(6n + 2) {
    grid-column: span 5;
    grid-row: span 1;
}

.new-row .products-item:nth-of-type(6n + 3) {
    grid-column: span 4;
    grid-row: span 1;
}

.new-row .products-item:nth-of-type(6n + 4) {
    grid-column: span 4;
    grid-row: span 1;
}

.new-row .products-item:nth-of-type(6n + 5) {
    grid-column: span 5;
    grid-row: span 1;
}

.new-row .products-item:nth-of-type(6n + 6) {
    grid-column: span 3;
    grid-row: span 1;
}

. .new-row .products-item .project-item {
    position: relative;
}

.products-item img {
    width: 100%;
    height: 100%;
}

.products-item {
    position: relative;
    border-radius: 10px;
}

.products-item .products-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.products-item:hover .products-content {
    opacity: 1;
    transition: all .5s ease-in-out;
}

html[lang="en-US"] .products-icon {
    right: 25px;
}
.wpcf7-form,.connect-us .main-form input, .connect-us .main-form select{
    direction: rtl;
}
html[lang="en-US"] .wpcf7-form ,html[lang="en-US"] .connect-us .main-form input,html[lang="en-US"] .connect-us .main-form select{
    direction: ltr;
}
html[dir="rtl"] .products-icon {
    left: 25px;
}

.products-icon {
    position: absolute;
    top: 25px;
}

html[dir="rtl"] .products-title {
    right: 25px;
}

html[lang="en-US"] .products-title {
    left: 25px;
}

.products-title {
    position: absolute;
    bottom: 25px;
}

.products-item:before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba(25, 25, 25, .75);
    opacity: 0;
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.products-item:hover:before {
    transition: all .5s ease-in-out;
    opacity: 1;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.products-icon i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    background: #559ff8;
    color: #fff;
    transition: all .5s ease-in-out;

}

.products-icon i:hover {
    background: #0048a2;
    color: #fff;
    transition: all .5s ease-in-out;

}

.products-title {
    display: inline-block;
    color: #fff;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.products-item:hover .products-title {
    color: #fff;
}

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

}

@media (max-width: 460px) {
    .products-buttons {
        display: inline-block;
        text-align: center;
    }

    .products-buttons button {
        flex: 0 0 50%;
        max-width: 50%;
        margin: 15px 10px;
    }

    .new-row .products-item:nth-of-type(6n + 1) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .new-row .products-item:nth-of-type(6n + 2) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .new-row .products-item:nth-of-type(6n + 3) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .new-row .products-item:nth-of-type(6n + 4) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .new-row .products-item:nth-of-type(6n + 5) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .new-row .products-item:nth-of-type(6n + 6) {
        grid-column: span 6;
        grid-row: span 1;
    }
}

/******************************/
/******************************/
.client-main {
    border-top: 2px solid #559ff8;
    border-right: 2px solid #559ff8;
    border-left: 2px solid #559ff8;
    border-bottom: 2px solid transparent;
    padding: 50px 25px 150px;
    border-radius: 25px 25px 0 0;
}

.client .main-tit {
    white-space: pre-line;
    padding-inline-start: 20px;
}

.clint-img img {
    width: 192px;
    height: 100px;
    object-fit: contain;
}

html[lang="en-US"] .slider-clint {
        border-inline-start: 2px solid #559ff8;
    padding-inline-start: 25px;
}

html[dir="rtl"] .slider-clint {
        border-inline-start: 2px solid #559ff8;
    padding-inline-start: 25px;
}

html[lang="en-US"] .clint-left {
    left: -32%;
}

html[dir="rtl"] .clint-left {
    right: -25%;
}

.clint-left {
    position: absolute;
    top: 65%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: #559ff8;
    color: #fff;
    transition: all .5s ease-in-out;
}

html[lang="en-US"] .clint-right {
    left: -25%;
}

html[dir="rtl"] .clint-right {
    right: -32%;
}

.clint-right {
    position: absolute;
    top: 65%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: #559ff8;
    color: #fff;
    transition: all .5s ease-in-out;
}

@media (max-width: 992px) {

}

@media (max-width: 768px) {
    html[lang="en-US"] .clint-left {
        left: -35%;
    }

    html[dir="rtl"] .clint-left {
        right: -60%;
    }
    html[dir="rtl"] .clint-right{
        right: -60%;
    }
    html[lang="en-US"] .client .main-tit {
        padding-inline-start: 10px;
    }

    html[dir="rtl"] .client .main-tit {
        padding-inline-end: 10px;
    }
}

@media (max-width: 460px) {
    .clint-img img {
        width: 100%;
    }

    html[lang="en-US"] .clint-right {
        left: 60%;
    }

    html[dir="rtl"] .clint-right {
        right: 36%;
    }

    .clint-right {
        top: unset;
        bottom: -30%;
    }

    html[lang="en-US"] .slider-clint {
        border-inline-start: 0px solid #559ff8;
        padding-inline-start: 0px;
    }

    html[dir="rtl"] .slider-clint {
        border-inline-start: 0px solid #559ff8;
        padding-inline-end: 0px;
    }

    .client .main-tit {
        text-align: center;
        padding: 0;
        white-space: normal;
        margin-bottom: 15px;

    }

    html[lang="en-US"] .clint-left {
        left: 35%;
    }

    html[dir="rtl"] .clint-left {
        right: 60%;
    }

    .clint-left {
        top: unset;
        bottom: -30%;
    }
}

/******************************/
/******************************/

footer {
    background-image: url("../images/footer.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    padding: 25px 0 25px;
}

.map {
    margin: 0 25px;
}

.map iframe {
    width: 100%;
    margin-top: -100px;
    height: 300px;
    border-radius: 25px;

}

html[dir="rtl"] .footer-content {
    margin-right: 15px;
}

html[lang="en-US"] .footer-content {
    margin-left: 15px;
}

.footer-content {
    color: #fff
}

.footer-main {
    display: flex;
    align-items: center;
}

.footer-content div {
    color: #0048a2;
    font-weight: bold;
    font-size: 18px;
}

.footer-content a {
    color: #000 !important;
}

.footer-content a:hover {
    color: #fff !important;
}

.footer-img {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: 1px solid #7db6fa;
    background-color: #7db6fa;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-main-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 30px;
}

.footer-item {
    border-bottom: 2px solid #0048a2;
    padding-bottom: 50px;
}

.footer-med {
    padding: 50px 0 0;
}

.social {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
}

.social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background: #7db6fa;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 5px;
    transition: all .5s ease-in-out;
}

.social a:hover {
    background: #0048a2;
    color: #fff;
    transition: all .5s ease-in-out;
}

.social i {
    font-size: 18px;
}


.logo-footer {
    text-align: center;
}


.rights {
    text-align: center;
}

.rights span {
    color: #000;
    font-size: 14px;
}

.rights span a {
    color: #0048a2;
}

@media (max-width: 768px) {
    .footer-item .sec-tit {
        text-align: center;
        margin-bottom: 25px;
    }

    html[dir="rtl"] .social i {
        margin-inline-end: 5px;

    }

    html[lang="en-US"] .social i {
        margin-inline-start: 5px;

    }

    .social i {
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    .footer-main-content {
        display: inline-block;
    }

    .social {
        justify-content: center;
    }

    .footer-med {
        padding: 25px 0 0;
    }

    .footer-main {
        margin-bottom: 15px;
    }

    .logo-footer {
        text-align: center;
        margin-bottom: 15px;
    }
}


.in-part {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center; }
.in-part img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%; }
.in-head {
    position: relative !important;
    background-image: url('../images/slide-2.png');
    background-size: 100%;
    background-repeat: no-repeat;


}
.in-head:before{
    content:'';
    width:100%;
    height:100%;
    background-color: rgba(160, 92, 61, .50);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}
.single-pages ,.single_service{
    padding: 40px 0 100px; }
.single-pages .bootom-side p {
    color: #000;
    text-align: justify; }

.single-pages .bootom-side.apply p {
    color: #000; }

.single-pages .top-side {
    padding: 20px 0;
    text-align: center; }

.single-pages .top-side img {
    max-width: 100%;
    max-height: 400px; }
.single_service .right_side_whous {
    margin: 20px 0;
    text-align: center; }

.single_service .right_side_whous img {
    max-width: 100%;
    max-height: 300px; }
.main-iframe iframe {
    margin-top: 0px;
    width: 100%;
    height: 285px;
    border-radius: 10px; }
.connect-us .main-form {
    margin-bottom: 15px; }

.connect-us .main-form span.in-main-form {
    color: #000;
    margin-bottom: 10px;
    display: inline-block; }

.connect-us .main-form input, .connect-us .main-form select {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 8px 17px;
    color: #559ff8;
    border: 1px solid #d9d9d9;
    transition: linear .4s;
    margin-bottom: 0px;
    width: 100%;
    height: 50px; }

.connect-us .main-form input::placeholder, .connect-us .main-form select, .connect-us .main-form textarea::placeholder {
    color: #8b8b8b;
    transition: linear .4s; }

.connect-us .main-form input:hover {
    border: 1px solid #559ff8;
    color: #559ff8;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
    transition: linear .4s; }
.connect-us .main-form input:hover::placeholder {
    color: #559ff8;
    transition: linear .4s; }

.connect-us .main-form textarea {
    background-color: #FFF;
    border-radius: 20px;
    color: #559ff8;
    border: 1px solid #d9d9d9;
    padding: 8px 17px;
    transition: linear .4s;
    margin-bottom: 0px;
    width: 100%;
    height: 120px;
    resize: none; }

.connect-us .main-form textarea:hover {
    border: 1px solid #559ff8;
    color: #559ff8;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
    transition: linear .4s; }
.connect-us .main-form textarea:hover::placeholder {
    color: #559ff8;
    transition: linear .4s; }
.wpcf7-submit {
    padding: 7px 56px;
    color: #FFF;
    margin-top: 10px;
    z-index: 2;
    background-color: #559ff8;
    position: relative;
    text-transform: capitalize;
    border-radius: 0px;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    transition: .8s;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); }
.wpcf7-submit:hover {
    transition: .8s;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    color: #fff; }
.single-pages .bootom-side input[type=text], .single-pages .bootom-side input[type=password], .single-pages .bootom-side input[type=tel], .single-pages .bootom-side input[type=email], .single-pages .bootom-side select {
    width: 100%;
    margin: 10px 0;
    text-align: center;
    border-radius: 25px;
    padding: 10px;
    border: 1px solid #b7b7b7;
    outline: none; }

.single-pages .bootom-side textarea {
    width: 100%;
    margin: 10px 0;
    border-radius: 25px;
    text-align: center;
    height: 150px;
    padding: 10px;
    border: 1px solid #b7b7b7;
    resize: none;
    outline: none; }

.single-pages .bootom-side input[type=submit] {
    color: #fff;
    padding: 8px 44px;
    background-color: #559ff8;
    border-radius: 20px; }

.wpcf7 .ajax-loader {
    margin: 0;
    position: absolute; }

.wpcf7 .main-hover br, .es_subscription_form.es_shortcode_form .main-hover br {
    display: none; }

.wpcf7 .main-hover {
    padding: 0;
    margin: 0; }
.wpcf7 .main-hover:before {
    margin-top: 0;
    z-index: 3; }
.wpcf7 .main-hover input[type=submit] {
    border-radius: 20px;
    padding: 8px 20px !important;
    width: 150px !important;
    color: #FFF;
    background-color: #559ff8;
    transition: linear .4s; }
.wpcf7 .main-hover .wpcf7-spinner {
    position: absolute; }
.wpcf7 .main-hover input[type=submit], .es_subscription_form.es_shortcode_form .main-hover input[type=submit] {
    border-radius: 0px;
    padding: 7px 45px;
    width: 100%;
    color: #FFF;
    text-align: center;
    margin: 0;
    background-color: #559ff8;
    transition: linear .4s; }
.single-pages .main-header, .single_service .main-header {
    color: #000;
    text-align: center;
    margin: 0 auto 50px;
    display: table;
    font-size: 35px; }
.wpcf7 .main-hover input[type=submit]:hover, .es_subscription_form.es_shortcode_form .main-hover input[type=submit]:hover {
    transition: linear .4s;
    color: #FFF;
    background-color: #559ff8; }
.breadcrumb-area {
        width: 100%;
    background-color: #dee2e6!important;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000 !important;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    padding: 5px 10px;
    margin-top: 10px;
    text-align: center !important; }

.breadcrumb-links {
    color: #000;
    font-weight: bold; }

.breadcrumb-area a {
    color: #000; }

.breadcrumb-area h4 {
    font-weight: bold;
    margin-bottom: 0;
    color: #000; }

.branches {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    border: 1px solid #559ff8;
    border-radius: 10px;
    margin-bottom: 30px; }
.branches iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 15px; }
.branches h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px; }
.branches p {
    margin-bottom: 0;
    font-size: 16px; }


/****************elhussini****************************/
.sec-padding {
    padding: 50px 0; }

.sec-bg:nth-of-type(odd) {
    background-color: transparent;
    color: #000;
    font-weight: bold; }

.sec-bg:nth-of-type(even) {
    color: #000;
    font-weight: bold; }

 

.content-block-item {
    position: relative;
    z-index: 1;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #0000003D;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .3s ease-in-out; }

.content-block-item-icon {
    width: 50px;
    height: 50px;
    padding: 5px;
    margin: 0 auto 15px auto;
    border: 1px solid #0000003D;
    display: flex;
    align-content: center;
    align-items: center; }

.content-block-item-icon img {
    max-height: 100%;
    margin: auto;
    transition: all .3s ease-in-out; }

.content-block-item-tit {
    color: #000;
    transition: all .3s ease-in-out; }

.content-block-item-exp {
    color: #ababab; }

.timeline-item {
    position: relative; }

.timeline-item:nth-of-type(even) .row {
    flex-direction: row-reverse; }

.timeline-item:before {
    position: absolute;
    content: '';
    top: 5px;
    width: 15px;
    height: 15px;
    z-index: 2;
    background: #f2674a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 5px #f2674a; }

.timeline-item:after {
    position: absolute;
    content: '';
    top: 30px;
    width: 1px;
    height: calc(100% - 30px);
    background: #fff; }

@media all and (min-width: 991px) {
    .timeline-item:before,
    .timeline-item:after {
        left: 50%;
        transform: translateX(-50%); } }
.gallery-item-image img {
    height: 150px;
    width: 300px; }

/**/
.timeline-item:after {
    border-right: 1px dotted #f2674a; }
    
    
    .down-pdf {
            position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
        border-radius: 4px;
    padding: 10px 7px;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
    }
    .down-pdf a{
            display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    background-color: #559ff8;
    color: #FFF;
    padding: 5px 2px;
    border-radius: 5px;
    }
    .down-pdf h4{
            color: #559ff8;
    }
    .pro-cont{
            border-radius: 4px;
    padding: 10px 7px;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
    }
    .breadcrumb-img img{
            width: 100%;
    height: 100px;
    object-fit: fill;
    }

@media all and (min-width: 991px) {
    .timeline-item:nth-of-type(odd) .timeline-inner {
        padding-left: 40px; }

    .timeline-item:nth-of-type(even) .timeline-inner {
        padding-right: 40px; } }
@media all and (max-width: 991px) {
    .timeline-item .timeline-inner {
        padding-right: 25px; }

    .timeline-item:before {
        right: -5px; } 
    .down-pdf{
            position: relative;
    top: 0;
    margin: 15px 0;
    }
    
}
/**/
.timeline-item:after {
    border-left: 1px dotted #f2674a; }

@media all and (min-width: 991px) {
    .timeline-item:nth-of-type(odd) .timeline-inner {
        padding-right: 40px; }

    .timeline-item:nth-of-type(even) .timeline-inner {
        padding-left: 40px; } }
@media all and (max-width: 991px) {
    .timeline-item .timeline-inner {
        padding-left: 25px; }

    .timeline-item:before {
        left: -5px; } }