/******************************/
/*&&&&& 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;
}

/******************************/
/*&&&&& color &&&&&&&&*/
/******************************/
:root {
    --main: #1B3C53;
    --text: #504C4C;
    --black: #000000;
    --white: #ffffff;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--white);
}

#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;
}

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

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

body {
    font-family: 'Bahij-Janna', serif !important;
    color: var(--black);
    background: #F9F8F8 !important;
    font-size: 16px;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: unset !important;
    padding: 0 7% !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: 120px;
}

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

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

}

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);
}
#site-loader {
    position: fixed;
    inset: 0;
    background: var(--main); /* لون الخلفية */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#site-loader.hide {
    opacity: 0;
    visibility: hidden;
}
.loader {
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
}

.inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.inner.one {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid #EFEFFA;
}

.inner.two {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid #EFEFFA;
}

.inner.three {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid #EFEFFA;
}

@keyframes rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}
/******************************/
/*&&&&& search &&&&&&&&*/
/******************************/

.open-search i {
    font-size: 18px;
    color: var(--main);
    border: 1px solid var(--main);
    background: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: all .35s ease-in-out;
}

.open-search i:hover {
    color: var(--white);
    border: 1px solid var(--main);
    background: var(--main);
}

#header-search {
    display: inline-block;
}

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

#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;
}

#search-header input[type="search"] {
    font-size: 44px;
    color: var(--white);
    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 6 Free", serif;
    font-weight: 900;
    content: "\f002";
    display: inline-block;
    width: 70px;
    height: 70px;
    font-size: 24px;
    padding-top: 20px;
    color: var(--white);
}

#search-header .close {
    background: none;
    border: none;
    position: fixed;
    top: 45px;
    right: 45px;
    opacity: 1;
    cursor: pointer;
    color: var(--white);
    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 6 Free", serif;
    font-weight: 900;
    content: "\f057";
    display: inline-block;
    color: var(--white);
}

#search-header button.close {
    border: 2px solid var(--main);
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
}

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

#search-header input[type="search"],
#search-header .search-submit {
    color: var(--white);
}
@media (max-width: 768px) {
    .open-search i{
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
    }
}
/******************************/
/*&&&&& Main Button &&&&&&&&*/
/******************************/
.main-btn {
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 180px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 35px;
    overflow: hidden;
    background: var(--main);
    box-shadow: 0 4px 4px 0 #234C6A6B;
    cursor: pointer;
    transition: all .35s ease-in-out;
}

.main-btn:after {
    content: "\f177";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free', serif;
    font-size: 14px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--main);
    background: var(--white);
    position: relative;
    border-radius: 50%;
    opacity: 1;
    transform: rotate(45Deg);
    transition: all .35s ease-in-out;
}

html[dir="ltr"] .main-btn {
    display: flex;
}

html[dir="ltr"] .main-btn:after {
    content: "\f178";
    transform: rotate(-45Deg);
}


.main-btn:hover {
    color: var(--white);
    background-color: var(--main);
}

.main-btn:hover:after {
    color: var(--white);
    background-color: var(--main);
    transform: scale(1.25) rotate(45Deg);
    transition: all .3s ease-in-out;
}

@media (max-width: 768px) {
    .main-btn {

        width: 140px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;


    }

    .main-btn:after {

        width: 30px;
        height: 30px;
        line-height: 30px;

    }

}

@media (max-width: 500px) {
    .main-btn {

        width: 120px;
        height: 30px;
        line-height: 30px;
        font-size: 13px;


    }

    .main-btn:after {

        width: 25px;
        height: 25px;
        line-height: 25px;

    }
}

/******************************/
/*&&&&& main-tittle &&&&&&&&*/
/******************************/
.main-tit {
    font-weight: bold;
    font-size: 34px;
    color: var(--main);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.main-tit::before {
    content: "";
    width: 100px;
    height: 2px;
    background: var(--main);
    display: block;
    margin-top: 8px;
}

.main-tit::after {
    content: "";
    width: 100px;
    height: 2px;
    background: var(--main);
    display: block;
    margin-top: 8px;

}


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

    .main-tit::before {
        width: 75px;
    }

    .main-tit::after {
        width: 75px;

    }

}

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

    .main-tit::before {
        width: 50px;
    }

    .main-tit::after {
        width: 50px;

    }
}

/******************************/
/*&&&&& header &&&&&&&&*/
/******************************/
header {
    padding: 15px 0;
}

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

.headers-links {
    display: flex;
    align-items: center;

}

header.head-inside {
    position: relative;
    /*background-image: url("../images/Bg-Image.png");*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.headers-links .language {
    margin-inline-start: 10px;

}

.headers-links .lang {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--main);
    color: var(--main);
    background: transparent;
    transition: all .35s ease-in-out;
}

.headers-links .lang:hover {
    transition: all .35s ease-in-out;
    border: 1px solid var(--main);
    color: var(--white);
    background: var(--main);
}

.head-phone-btn {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 160px;
    height: 50px;
    line-height: 50px;
    background: #234C6A;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 35px;
    margin-inline-start: 10px;

}
.head-phone-btn:hover {
    transition: all .35s ease-in-out;
     color: var(--white);
    background: var(--main);
}

@media (min-width: 992px) {
    .head-phone-btn {
        display: flex;
    }

    .head-phone-btn-mob {
        display: none;
    }
}

@media (max-width: 992px) {
    .head-phone-btn {
        display: none;
    }

    .head-phone-btn-mob {
        display: flex;
        width: 95%;
        margin: 20px auto;
    }
    .headers-links .lang {
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
    }
}

@media (min-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: flex-start;
    }

    .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(--main);
        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) {
    .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: 300px;
        height: 100%;
        padding: 15px;
        background-color: rgba(255, 255, 255, 1);
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 999;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        overflow-y: scroll;
        transition: all .5s linear;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/******************************/
/*&&&&& slider Intro &&&&&&&&*/
/******************************/
.slider {

}

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

.intro-slider-items .image img {
    width: 100%;
}

.intro-slider-items .content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


html[dir="ltr"] .intro-slider-items .content {
    right: unset;
    left: 5%;
}

.intro-slider-items .content .title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.intro-slider .owl-dots {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    width: auto;
}

.intro-slider .owl-dots .owl-dot {
    width: 2px;
    height: 12px;
    background: var(--white);
    position: relative;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.intro-slider .owl-dots .owl-dot span {
    display: none !important;
}

.intro-slider .owl-dots .owl-dot.active {
    height: 25px;
}

.intro-slider .owl-dots .owl-dot::after {
    content: attr(data-num);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 14px);
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1 !important;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .intro-slider .owl-dots {
        bottom: 16%;
    }
}


@media (max-width: 768px) {
    .intro-slider-items .content .title {
        font-size: 30px;
    }
}

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

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

.about .main-tit::after {
    content: none;
}

.about:before {
    content: "";
    background-image: url("../images/about-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 284px;
    height: 373px;
    position: absolute;
    top: 0;
    right: 0;
}

.about-tit {
    color: var(--black);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.about-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 30px;
}

@media (min-width: 993px) {
    .about-description {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .about {
        margin-bottom: 10px;
    }

    .about-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-description {
        font-size: 14px;
    }

    .about-tit {
        margin-top: 0;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .about:before {
        width: 180px;
        height: 250px;
    }
}

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

    .about .row {
        flex-direction: column-reverse;
    }

    .about-image {
        margin-bottom: 20px;
    }
}

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

.full-banner {
    position: relative;
    margin-bottom: 30px;
}

.full-banner .image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.full-banner .content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

.full-banner .content .tit {
    color: var(--black);
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.half-banner {
    position: relative;
}

.half-banner image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.col-half:nth-of-type(even) .half-banner .content {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
}

html[dir="ltr"] .col-half:nth-of-type(even) .half-banner .content {
    left: 44%;
    right: unset;
    width: 90%;

}

.col-half:nth-of-type(odd) .half-banner .content {
    position: absolute;
    top: 50%;
    left: -12%;
    transform: translateY(-50%);
}

html[dir="ltr"] .col-half:nth-of-type(odd) .half-banner .content {
    left: 5%;

}

.col-half .half-banner img {
    width: 100%;
}

.col-half .half-banner .tit {
    color: var(--black);
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 10px;
    width: 60%;

}

html[dir="ltr"] .col-half .half-banner .tit {
    font-size: 36px;
}

@media (max-width: 992px) {
    .full-banner .content {
        left: 5%;
    }

    .col-half .half-banner .tit {
        font-size: 28px;
    }

    .col-half:nth-of-type(odd) .half-banner .content {
        left: -8%;
    }
}

@media (max-width: 768px) {
    .banners{
        padding: 30px 0;
    }
    .half-banner {
        margin-bottom: 30px;
    }

    .col-half .half-banner .tit {
        color: var(--black);
        font-size: 24px;
        margin-bottom: 20px;
        font-weight: 700;
        margin-top: 10px;
        width: 60%;

    }

    html[dir="ltr"] .col-half .half-banner .tit {
        font-size: 24px;
    }
}

@media (max-width: 500px) {
    .full-banner .image img {
        height: 246px;
    }

    .full-banner .content .tit {
        font-size: 24px;
    }
}

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

.why-us:before {
    content: "";
    background-image: url("../images/why-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 250px;
    height: 248px;
    position: absolute;
    top: 0;
    left: 2%;
}

html[dir="ltr"] .why-us:before {
    left: unset;
    right: 2%;
}

.why-us:after {
    content: "";
    background-image: url("../images/why-sh.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 750px;
    height: 750px;
    position: absolute;
    top: -10%;
    right: 2%;
    z-index: -1;
}

.why-us-items {
    transition: all .35s ease-in-out;
    padding: 50px 0;
}

.why-us .main-tit {
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.why-us-image {
    text-align: center;
    position: relative;
}

.why-us-image img {
    border: 5px solid var(--white);
    border-radius: 50%;
}

.why-us-items .why-us-image {
    transition: all .35s ease-in-out;

}

.why-us-items:hover .why-us-image img {
    transform: scale(1.08);
    transition: all .35s ease-in-out;
}

.why-us-image:before {
    content: "";
    background-image: url("../images/why-c.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 422px;
    height: 422px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.why-us-text {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.why-us-text .tit {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-inline-start: 10px;
}

@media (max-width: 992px) {
    .why-us {
        padding: 50px 0 20px;
    }

    .why-us-image:before {
        width: 385px;
        height: 385px;
    }

    .why-us:after {
        width: 620px;
        height: 620px;
    }
}

@media (max-width: 768px) {
    .why-us{
        padding: 20px 0;
    }
    .why-us-text-content{
        margin-top: 50px;
    }
    .why-us-image:before {
        width: 300px;
        height: 300px;
    }

    .why-us:before {
        width: 155px;
        height: 150px;
    }

    .why-us:after {
        width: 540px;
        height: 540px;
    }

    .why-us-text {
        margin-bottom: 10px;
    }

    .why-us-text .tit {
        font-size: 15px;
    }
}

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

    .why-us-image:before {
        width: 240px;
        height: 240px;
    }

    .why-us-image img {
        max-width: 145px;
    }

    .why-us-image {
        margin-bottom: 20px;
    }

    .why-us:before {
        width: 155px;
        height: 150px;
    }


}

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

.services .main-tit {
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.services-items {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all .35s ease-in-out;
}

.services-items:hover {
    box-shadow: 0 4px 4px 0 #00000040;
    transform: translateY(-5px);
    transition: all .35s ease-in-out;
}

.services-items .icon {
    position: relative;
    margin-bottom: 20px;
}

.services-items .icon:before {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    width: 50px;
    height: 50px;
    background: #45688236;
    border-radius: 50%;
    z-index: 0;
    transition: all .35s ease-in-out;
}

html[dir="ltr"] .services-items .icon:before {
    left: 5%;
    right: unset;
}

.services-items:hover .icon:before {
    background: #1B3C536E;
    transition: all .35s ease-in-out;
}

.services-items .icon img {
    position: relative;
    z-index: 2;
}

.services-items .tit {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    transition: all .35s ease-in-out;
}

.services-items:hover .tit {
    color: var(--main);
    transition: all .35s ease-in-out;
}

.services-items .desc {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;

}

.services-btn {
    position: relative;
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 35px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    transition: all .35s ease-in-out;
}

.services-btn:after {
    content: "\f177";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free', serif;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: var(--white);
    background: var(--main);
    position: relative;
    border-radius: 50%;
    opacity: 1;
    transform: rotate(45Deg);
    transition: all .35s ease-in-out;
}

html[dir="ltr"] .services-btn {
    display: flex;
}

html[dir="ltr"] .services-btn:after {
    content: "\f178";
    transform: rotate(0Deg);
}
html[dir="ltr"] .services-items:hover .services-btn:after {
    transform: scale(1.15) rotate(-45Deg);
    transition: all .3s ease-in-out;
}
.services-items:hover .services-btn:after {
    transform: scale(1.15) rotate(45Deg);
    transition: all .3s ease-in-out;
}

.more-services {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

@media (max-width: 500px) {

}

/******************************/
/*&&&&& mid-banner &&&&&&&&*/
/******************************/
.mid-banner {
    padding: 50px 0;
    position: relative;
}

.mid-banner-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mid-banner .mid-banner-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #E8F3FF;
    width: 95%;
    height: 95%;
    border-radius: 20px;
    z-index: -1;
}

.mid-banner-item .image {
    display: flex;
    flex: .65;
}

.mid-banner-item .image {
    perspective: 900px;
    overflow: hidden;
}

.mid-banner-item .image img {
    display: block;
    width: 100%;
    height: auto;
    transform: translateZ(0) rotateX(0) rotateY(0) scale(1);
    transition: transform .6s ease, filter .6s ease;
    will-change: transform;
    transform-style: preserve-3d;
}

.mid-banner-item:hover .image img {
    transform: rotateX(8deg) rotateY(-10deg) translateZ(25px) scale(1.03);
}
[dir="rtl"] .mid-banner-item:hover .image img {
    transform: rotateX(8deg) rotateY(-10deg) translateZ(25px) scale(1.03);
}

/* انجليزي LTR */
[dir="ltr"] .mid-banner-item:hover .image img {
    transform: rotateX(8deg) rotateY(10deg) translateZ(25px) scale(1.03);
}
.mid-banner-item .content {
    display: flex;
    flex: .35;
}

.mid-banner-item .content .tit {
    width: 85%;
    font-size: 55px;
    color: var(--main);
    font-weight: 700;
}

html[dir="ltr"] .mid-banner-item .content .tit {
    font-size: 40px;
}

@media (max-width: 992px) {
    .mid-banner {
        padding: 50px 0 0;
    }

    .mid-banner-item .content .tit {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .mid-banner{
        padding: 20px 0;
    }
    .mid-banner-item .content .tit {
        font-size: 26px;
    }

    html[dir="ltr"] .mid-banner-item .content .tit {
        font-size: 24px;
    }
}

@media (max-width: 500px) {
    .mid-banner-item {
        flex-direction: column;
        padding: 15px 10px;
    }

    .mid-banner .mid-banner-item:before {
        width: 100%;
        height: 100%;

    }

    .mid-banner-item .content {
        flex: 1;
        text-align: center;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .mid-banner-item .content .tit {
        font-size: 20px;
    }
}

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

.products .main-tit {
    justify-content: center;
    width: 100%;
    margin-bottom: 80px;
}

.products-items {
    position: relative;
    border-radius: 20px;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
    height: 450px;
}

.products-col:nth-of-type(even) .products-items {
    margin-top: -50px;

}
.products-col .products-items {
     background: #F0F0F4;
}

/* العنصر 2 و 3 من كل 4 */
.products-col:nth-child(4n+1) .products-items,
.products-col:nth-child(4n+4) .products-items {
    background: linear-gradient(181.41deg, #D7E7FF -13.08%, rgba(239, 239, 239, 0.44) 98.8%);
}

.products-items .products-url {
    position: absolute;
    left: 5%;
    bottom: 5%;
}

html[dir="ltr"] .products-items .products-url {
    right: 5%;
    left: unset;

}

.products-items .products-url .url {

    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    border: 1px solid var(--main);
    background: transparent;
    color: var(--main);
    transition: all .35s ease-in-out;

}

html[dir="ltr"] .products-items .products-url .url {
    transform: rotate(180deg);
}

.products-items:hover .products-url .url {
    border: 1px solid var(--main);
    background: var(--main);
    color: var(--white);
    transform: rotate(45deg);
    transition: all .35s ease-in-out;
}
html[dir="ltr"] .products-items:hover .products-url .url{
    transform: rotate(145deg);
    transition: all .35s ease-in-out;

}
.products-items .products-image {
    margin-bottom: 20px;
}

.products-items .products-image img {
    max-width: 320px;
}

.products-items .products-content .tit {
    font-size: 26px;
    font-weight: 700;
    color: var(--main);
}

.all-products {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

@media (max-width: 768px) {
    .products-col .products-items {
        margin-top: 0 !important;
    }

    .products-items {
        height: 350px;
    }

    .products-items .products-image img {
        max-width: 250px;
    }
}

@media (max-width: 500px) {
    .products-items {
        height: 300px;
    }

    .products-items .products-image img {
        max-width: 200px;
    }
}

/******************************/
/*&&&&& packages &&&&&&&&*/
/******************************/

.packages {
    position: relative;
    padding: 50px 0;
}

.packages .main-tit {
    justify-content: center;
    width: 100%;
    margin-bottom: 80px;
}

.packages-main {
    background: var(--main);
    padding: 30px 80px 0;
    border-radius: 20px;
}

.packages-items {
    background: var(--main);
    padding: 50px 15px;
    border-radius: 20px;
    transition:  all .35s ease-in-out;

}

.packages-packages .packages-items:hover {
     transform: translateY(-50px);
    box-shadow: 0 13px 24px 0 #070707;
    background: linear-gradient(180deg, #24384D 0%, #234C6A 100%);
    transition:  all .35s ease-in-out;
}

.packages-best-seller {
    position: absolute;
    top: 8%;
    left: 8%;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;

}
html[dir="ltr"]  .packages-best-seller{
    left: unset;
    right: 8%;


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

.packages-items .head-packages div {
    padding-inline-end: 10px;
}

.packages-items .head-packages .price {
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
}

.packages-items .head-packages .duration {
    font-size: 20px;
    font-weight: 700;
    color: #879EAF;
}

.packages-items .packages-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.packages-items .packages-description {
    color: #D9D2D2B2;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.package-additional-content .text {
    position: relative;
    padding-inline-start: 35px;
}

.package-additional-content .text::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #2f556d;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
}

html[dir="ltr"] .package-additional-content .text::before {
    right: unset;
    left: 0;
}

.package-additional-content .text {
    color: #FFFFFFB2;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

html[dir="ltr"] .package-additional-content .text {
    font-size: 16px;
}

.packages-items .main-btn {
    border: 1px solid var(--white);
}

.packages-items .main-btn:hover {
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--main);
}

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

    .packages-main {
        padding: 30px 15px 0;
    }

    .package-additional-content .text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .packages{
        padding: 20px 0;
    }
    .packages-packages{
        margin-bottom: 20px;
    }
    .packages-items {
        padding: 15px;
    }
}

@media (max-width: 500px) {

}

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

.projects .main-tit {
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.projects-slider {
    margin: 0 auto;
    width: 100%;

}

.projects-slider .owl-stage {
    padding: 25px 0;
}

.projects-slider-items {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.projects-slider .owl-item {
    transition: transform .25s ease;
    transform: scale(.95);
}


.projects-slider .owl-item.active.center {
    transform: scaleY(1.18);
    z-index: 2;
}

.projects-slider-items .image {
    border-radius: 20px;
    overflow: hidden;
}

.projects-slider-items .image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

.projects-slider .owl-item.active.center .projects-slider-items {
    position: relative;
    border-radius: 20px;
}

.projects-slider .owl-item.active.center .projects-slider-items .image {
    position: relative;
    border-radius: 20px;
}

.projects-slider .owl-item.active.center .projects-slider-items .image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 66.28%);
    z-index: 0;
}

.projects-slider .owl-item .content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    font-size: 18px;
    font-weight: 700;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 50px;
    text-align: center;
    color: var(--white);
    opacity: 0;
}

.projects-slider .owl-item.active.center .content {
    opacity: 1;
}
.all-projects{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px auto ;
}

@media (max-width: 992px) {

    .projects {
        padding: 50px 0 0;
    }

    .projects-slider .owl-item .content {
        font-size: 14px;
        padding: 0 15px;

    }

}

@media (max-width: 768px) {
    .projects-slider .owl-item.center .projects-slider-items .image:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 66.28%);
        z-index: 0;
    }

    .projects-slider-items .image img {
        height: 250px;
    }

    .projects-slider .owl-item.center .content {
        opacity: 1;
    }

    .projects-slider .owl-item.active.center .content {
        opacity: 1;
    }
}

@media (max-width: 500px) {

}

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

.clients .main-tit {
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.clients .owl-stage {
    display: flex;
    align-items: center;

}

.clients .owl-stage{
    padding: 25px 0 ;
}
  .clients-slider-items {
    text-align: center;
    box-shadow: 0 0 4px rgba(0,0,0,.4);
    padding: 10px;
    border-radius: 20px;
}
  .clients-slider-items .image {
    text-align: center;
}
  .clients-slider-items img {
    max-width: 180px;
    width: 100%;
    height: 100px;
    object-fit: contain;
 }

.clients .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

html[dir="ltr"] .clients .owl-nav {
    flex-direction: row-reverse;
}

.clients .owl-nav button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    text-align: center;
    background: #234C6ABD;
    color: var(--white);
    transition: all .35s ease-in-out;
}

.clients .owl-nav button:hover {
    transition: all .35s ease-in-out;
    background: var(--main);
}

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

    .clients .main-tit {
        margin-bottom: 0;
    }
}

@media (max-width: 500px) {
    .clients .owl-stage .clients-slider-items img {
        max-width: 110px;
    }
}

/******************************/
/*&&&&& faq &&&&&&&&*/
/******************************/

.faq {
    position: relative;
    padding: 50px 0;
}

.faq .main-tit::after {
    content: none;
}

.faq .main-tit {
    margin-bottom: 30px;
}

.faq-tit {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

.faq #faqAccordion .card {
    border: 0;
    margin-bottom: 14px;
    background: transparent;
}

.faq #faqAccordion .card-header {
    border: 0;
    padding: 0;
    background: transparent;
}

.faq #faqAccordion .btn.btn-link {
    width: 100%;
    text-align: start;
    text-decoration: none;
    border: 0;
    box-shadow: none;
    outline: none;
    padding: 18px 15px 18px;
    border-radius: 999px;
    background: #EDECEC;
    color: var(--main);
    font-size: 18px;
    font-weight: 700;
    position: relative;
    display: block;
}

.faq #faqAccordion .btn.btn-link::before {
    content: "";
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main);
    font-size: 16px;
    transition: .25s ease;
    background-image: url('../images/down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 18px;
    height: 18px;
}

html[dir="ltr"] .faq #faqAccordion .btn.btn-link::before {
    right: 18px;
    left: unset;
}

.faq #faqAccordion .btn.btn-link:not(.collapsed) {
    background: linear-gradient(180deg, #234C6A 0%, #1B3C53 100%);
    color: #fff;
}

.faq #faqAccordion .btn.btn-link:not(.collapsed)::before {
    background-image: url('../images/up.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


#faqAccordion .card-body {
    background: transparent;
    color: #504C4C;
    padding: 14px 15px 18px;
    border-radius: 0 0 28px 28px;
    margin-top: -5px;
    font-size: 16px;
}
.faq-image img{
    width: 100%;
}

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

    .faq-tit {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .faq{
        padding: 20px 0;
    }
    .faq .row {
        flex-direction: column-reverse;
    }

    .faq-image {
        margin-bottom: 20px;
    }

    .faq-tit {
        font-size: 18px;
    }
    .faq #faqAccordion .btn.btn-link{
        font-size: 16px;
    }
}

@media (max-width: 500px) {

}

/******************************/
/*&&&&& Blogs &&&&&&&&*/
/******************************/

.Blogs {
    position: relative;
    padding: 50px 0;
}

.Blogs .main-tit {
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.Blogs-items-f .image {
    margin-bottom: 15px;
}

.Blogs-items-f .image img {
    height: 250px;
    border-radius: 20px;
}

.post-date {
    font-size: 16px;
    color: #6b7c8a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.Blogs-content .desc {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text);
}

.Blogs-link .main-btn {
    background: transparent;
    color: var(--main);
    box-shadow: none;
}

.Blogs-link .main-btn:after {
    background-color: var(--main);
    color: var(--white);
}

.Blogs-items-s {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #00000021;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.col-Blogs-items-s:last-of-type .Blogs-items-s {
    border-bottom: 1px solid transparent;
}

.Blogs-items-s .image {
    margin-inline-end: 10px;
}

.Blogs-items-s .tit {
    font-size: 20px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 20px;
}

.Blogs-items-s .image img {
    width: 250px;
    height: 130px;
    border-radius: 20px;
    object-fit: fill;
}

.all-Blogs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0;
}

@media (max-width: 768px) {
    .Blogs-content .desc {
        margin-bottom: 10px;
    }

    .col-Blogs-items-s:first-of-type {
        margin-top: 30px;
    }

    .Blogs {
        padding: 50px 0 0;
    }
}

@media (max-width: 500px) {
    .Blogs-items-s .image {
        display: flex;
        flex: .4;
    }

    .Blogs-items-s .Blogs-content {
        display: flex;
        flex-direction: column;
        flex: .6;
    }

    .Blogs-items-s .tit {
        font-size: 18px;
    }
}

/******************************/
/*&&&&& footer &&&&&&&&*/
/******************************/
footer {
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: "";
    position: absolute;
    bottom: -25%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F9F8F8 0%, rgba(27, 60, 83, 0.96) 100%);
    z-index: 0;

}

.main-footer-items {
    padding: 30px 0 20px;
    border-bottom: 1px solid #1B3C5324;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.footer-tittle {
    color: #1B3C53;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.desc-footer-logo {
    color: #234C6AC7;
    font-weight: 700;
    font-size: 13px;
    width: 92%;
    margin-top: 20px;

}

.footer-list a {
    color: #234C6AC7;
    font-weight: 700;
    font-size: 14px;
}

.footer-list-main li {
    width: 50%;
    float: right;
}

.footer-list li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-inline-start: 15px;
}

.footer-list li::before {
    content: "•";
    color: #234C6AC7;
    position: absolute;
    right: 0;
}

html[dir="ltr"] .footer-list li::before {
    left: 0;
    right: unset;
}

.information .info {
    display: flex;
    align-items: center;
    color: #234C6AC7;
    margin-bottom: 10px;
}

.info .icon {
    margin-inline-end: 10px;
}

.information .info .text {
    font-size: 18px;
    font-weight: 700;

}

.information .info .text, .information .info .text:hover {
    color: #234C6AC7;
}

.copy-write {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.copy-write-content {
    text-align: center;
    color: #234C6A;
}

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

@media (max-width: 768px) {
    footer:before {
        bottom: -38%;
    }
    .footer-logo{
        margin: 0 auto ;
        display: table;
    }
    footer {
        padding: 30px 0 0;
    }

    .desc-footer-logo {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 500px) {
    .desc-footer-logo {
        width: 100%
    }
}

.archive-Blogs .Blogs-items-f .image img {
    object-fit: fill;
    height: 300px;
}

.archive-projects .projects-slider-items {
    position: relative;
}

.archive-projects .projects-slider-items .image img {
    width: 100%;
    height: 300px;
}
.archive-projects .projects-slider-items .image{
    position: relative;
    border-radius: 20px;
}
.archive-projects .projects-slider-items .image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 66.28%);
}
.archive-projects .projects-slider-items .content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    font-size: 18px;
    font-weight: 700;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 50px;
    text-align: center;
    color: var(--white);
}
.social-media{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.social-media .social-item{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    background: var(--main);
    color: var(--white);
    margin-inline-end: 10px;
}
.additional-content-services-row:nth-of-type(odd){
    flex-direction: row-reverse;
}
.additional-content-services{
    background: #E8F3FF;
    padding: 15px;
    border-radius: 30px;

}
.additional-content-services img{
    border-radius: 20px;
}
.archive-products-col{
    padding-top: 50px;
}
html[dir="ltr"] .whats{
    right: unset;
    left: 1%;
}
.archive-packages .packages-main{
    background: transparent;
    padding:   0;
}
.map iframe{
    width: 100%;
}
.whats{
        position: fixed;
    right: 1%;
    top: 85%;
    z-index: 99;
}
@media (max-width: 768px) {
    .packages-content-single .packages-items{
        margin-bottom: 30px;
    }
    .single-services .additional-content-services-row img{
        margin-bottom: 20px;
    }
    .page-main-form .information{
        flex-direction: column;
        align-items: flex-start !important;
    }
    .page-main-form .social-media{
        justify-content: flex-start;
    }
    .page-main-form  .form{
        margin-bottom: 30px;
    }
}
.wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-pagenavi span.pages{
    width: 140px;
}
.wp-pagenavi a, .wp-pagenavi span{
    color: var(--main);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0 !important;
}
.search-item{
    box-shadow: 0 0 4px rgba(0,0,0,.5);
    padding: 15px;
    border-radius: 20px;
}