/******************************/
/*&&&&& 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: 'Alexandria';
    src: url('../fonts/Alexandria.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

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

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


/******************************/
/*&&&&& color &&&&&&&&*/
/******************************/
:root {
    --main: #00B7B5;
    --bg: #FBFAF7;
    --text: #9F9F9F;
    --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 !important;
    inset: 0 !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #003f3a !important;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#site-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* إلغاء أي لودينج قديم */
#site-loader .loader,
#site-loader .inner,
#site-loader .malm-loader-ring {
    display: none !important;
}

/* الحاوية */
.malm-loader-box {
    position: relative;
    width: 240px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* خلفية بسيطة ورا اللوجو */
.malm-loader-logo-bg {
    position: relative;
    width: 170px;
    height: 105px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
            0 18px 50px rgba(0, 0, 0, 0.22),
            0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* اللوجو */
.malm-loader-logo {
    display: block !important;
    max-width: 125px !important;
    max-height: 72px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* خط التحميل */
.malm-loader-progress {
    position: relative;
    width: 130px;
    height: 4px;
    margin-top: 22px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.22);
}

.malm-loader-progress span {
    display: block;
    width: 45%;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
    animation: malmProgress 1.15s ease-in-out infinite;
}

@keyframes malmProgress {
    0% {
        transform: translateX(-120%);
    }

    50% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(260%);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .malm-loader-box {
        width: 200px;
        min-height: 130px;
    }

    .malm-loader-logo-bg {
        width: 145px;
        height: 92px;
        border-radius: 16px;
    }

    .malm-loader-logo {
        max-width: 105px !important;
        max-height: 62px !important;
    }

    .malm-loader-progress {
        width: 110px;
        margin-top: 18px;
    }
}/******************************/
/*&&&&& main &&&&&&&&*/
/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}

body {
    position: relative;
    font-family: 'Tajawal', sans-serif !important;
    color: var(--black);
    font-size: 16px;
}

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

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


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: 230px;
    padding: 15px 10px;
}

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

.form-control {
    direction: rtl;
    text-align: right;
    height: 50px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .13);
    color: rgba(0, 184, 181, 0.3);
    background: rgba(0, 184, 181, 0.1);

}

.form-control:focus {
    border-color: rgba(0, 183, 181, 1);
    background: rgba(230, 248, 248, 1);
    color:var(--main);
    box-shadow: none;
}

.form-control::placeholder {
    font-size: 12px;
    color: rgba(0, 184, 181, 0.3);
}
#branch {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none !important;
    padding-left: 45px; /* مساحة للسهم */
    cursor: pointer;
}

#branch::-ms-expand {
    display: none;
}

/* لازم الأب يكون relative */
.form-group {
    position: relative;
}

/* السهم */
.form-group:has(#branch)::after {
    content: "\f063";
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    position: absolute;
    top: 70%;
    left: 18px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #111;
    font-size: 18px;
    line-height: 1;
}
html[dir="ltr"] .form-group:has(#branch)::after{
    left: unset;
    right: 18px;
}
html[dir="ltr"] .form-group,
html[dir="ltr"] form,
html[dir="ltr"] .form-control {
    direction: ltr;
    text-align: left;
}

/******************************/
/*&&&&& Main Button &&&&&&&&*/
/******************************/
.main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform .3s ease, filter .3s ease;
}

.main-btn span,
.main-btn i {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

html[dir="ltr"] .main-btn i {
    transform: rotate(170deg);
}

.main-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--main);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    transition: box-shadow .35s ease, transform .35s ease;
    z-index: 1;
}

.main-btn span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 38%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .18) 35%, rgba(255, 255, 255, .5) 50%, transparent 100%);
    transform: skewX(-22deg);
    transition: left .6s ease;
}

.main-btn i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--main);
    color: var(--white);
    font-size: 18px;
    line-height: 1;
    transition: background .35s ease, box-shadow .4s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
    z-index: 1;
}

.main-btn:hover {
    transform: translateY(-3px);
}

.main-btn:hover span {
    transform: translateY(-1px);
}

.main-btn:hover span::after {
    left: 140%;
}

@media (max-width: 768px) {
    .main-btn {
        gap: 8px;
    }
}

/******************************/
/*&&&&& main-tittle &&&&&&&&*/
/******************************/
.section-title {
    position: relative;
    font-weight: bold;
    font-size: 34px;
    color: var(--black);
    margin-bottom: 30px;
}

.main-tit {
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 34px;
    color: var(--black);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.main-tit::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5%;
    height: 3px;
    background-color: var(--main);
}

@media (max-width: 991px) {
    .main-tit {
        gap: 32px;
        font-size: 54px;
    }

}

@media (max-width: 767px) {


}

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

}


@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

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

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

.language button {
    background: transparent;
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

.language button:before {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    color: var(--main);
}

.language .dropdown-menu.show {
    right: -50%;
    text-align: center;

}

.language .dropdown-menu.show a {
    color: var(--black);
}

.language button:after {
    content: none;
}

@media (min-width: 992px) {

}

@media (max-width: 768px) {
    .headers-links {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 500px) {

}

/******************************/
/*&&&&& nav &&&&&&&&*/
/******************************/
@media (min-width: 992px) {

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

    .nav-list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0;
        justify-content: space-between;
        width: 100%;
        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(--black);
        font-size: 17px;
        font-weight: 700;
        position: relative;
        text-align: start;
        padding: 10px 5px;
        transition: all 0.35s ease-in-out;
    }

    html[dir="ltr"] .nav-list > .menu-item > a {
        padding: 10px 3px;
        font-size: 15px;
    }

    /*.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);
        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: 10px;
        color: var(--white);
        border: 1px solid var(--main);
        background-color: var(--main);
        margin-inline-start: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }

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

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

/******************************/
/*&&&&& intro &&&&&&&&*/
/******************************/
.intro-section {
    padding: 100px 0;
}

.intro-malm {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.intro-section .site-name {
    font-size: 140px;
    color: var(--text);
    font-weight: 800;
}

.intro-title .first-word {
    color: var(--main);
    font-family: 'beIN', serif;
}
html[dir="ltr"]  .intro-title{
    font-size: 22px;
}
.intro-title {
    font-family: 'beIN', serif;
    color: var(--text);
    font-size: 34px;
    font-weight: 400;
}

.intro-malm-content {
    margin-top: -60px;
}

.intro-malm-image img {
    width: 200px;
}

.title-text {
    color: var(--main);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
}

.intro-image-video video, .intro-image-video img {
    width: 100%;
}

@media (max-width: 768px) {
    .intro-section{
        padding: 50px 0;
    }
    .intro-section .site-name {
        font-size: 80px;
    }

    .intro-title {
        font-size: 24px;
    }

    .title-text {
        font-size: 26px;
    }


    html[dir="ltr"]  .intro-title {
        font-size: 18px;
    }


    html[dir="ltr"] .title-text {
        font-size: 26px;
    }

    .title-url {
        margin-bottom: 30px;
    }

    .intro-malm-image img {
        width: 150px;
    }
    html[dir="ltr"] .intro-malm-image img {
        width: 120px;
    }
}

@media (max-width: 500px) {

}

/******************************/
/*&&&&& services &&&&&&&&*/
/******************************/
.services {
    padding: 50px 0;
    position: relative;
    background-image: url("../images/services-bg.png");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.services .main-tit {
    color: var(--white);
    padding-bottom: 10px;
    margin-bottom: 0;
}

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

.services-head {
    position: relative;
    z-index: 2;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.services-head::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5%;
    height: 3px;
    background-color: var(--main);
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 26, 33, .97);
    z-index: 0;
}

.services:before {
    content: "";
    width: 93px;
    height: 654px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    background-image: url("../images/service-i.png");
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateY(-50%);
    animation: floatY 3s ease-in-out infinite;
}
html[dir="ltr"]
.services:before{
    left: unset;
    right: 0;
}
@keyframes floatY {
    0% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
    100% {
        transform: translateY(-50%) translateY(0);
    }
}

.services:after {
    content: "";
    width: 100%;
    height: 35px;
    opacity: .5;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    background-image: url("../images/services-shape.png");
}

.services-items {
    position: relative;
    border: 1px solid var(--main);
    border-radius: 15px;
    background-color: transparent;
    height: 170px;
    overflow: hidden;
    transition: all .35s ease-in-out;
}

.services-items:after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    border-radius: 15px;
    background: rgba(18, 26, 33, .50);
    transition: all .35s ease-in-out;
}

.services-items:hover:after {
    height: 100%;
    transition: all .35s ease-in-out;
}

.services-items .image img {
    height: 0;
    object-fit: cover;
    border-radius: 15px;
    width: 100%;
    transition: all .35s ease-in-out;
}

.services-items:hover .image {
    opacity: 1;
    transition: all .35s ease-in-out;
}

.services-items:hover .image img {
    height: 170px;
    transition: all .35s ease-in-out;
}

.services-items .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 2;
    transition: all .35s ease-in-out;
}

.services-items .content .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all .35s ease-in-out;
    background-color: #00B8B51A;
}

.services-items .content .icon img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(44%) saturate(6180%) hue-rotate(140deg) brightness(94%) contrast(101%);
}

.services-items:hover .content .icon {
    background: var(--main);
    transition: all .35s ease-in-out;

}

.services-items:hover .content .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(7495%) hue-rotate(282deg) brightness(106%) contrast(117%);
}

.services-items .content .title {
    width: 65%;
    margin: 0 auto;
}

.services-items .content .title a {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

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

    .services {
        background-attachment: fixed;
        background-position: center center;
    }

    .services:before {
        width: 70px;
        height: 500px;
    }
}

@media (max-width: 500px) {

}

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

.about-image {
    position: relative;
}

.about-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 259px;
    background-image: url("../images/about-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
html[dir="ltr"] .about-image:before{
    left: unset;
    right: -50%;
}

.about-title {
    color: var(--main);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-description {
    color: #1C1C1C;
    font-size: 16px;
    font-weight: 400;
}

.about-url {
    display: table;
    margin: 30px auto 0;
}

.vmv-box:before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    background-image: url("../images/cout.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 20px;
}
html[dir="ltr"] .vmv-box:before{
    left: unset;
    right: 10%;
}

.vmv-section {
    padding: 40px 0;
}

.vmv-box {
    background: #121A21;
    border-radius: 15px;
    padding: 100px 70px 100px;
    overflow: hidden;
    height: 350px;
}

.vmv-tabs {
    border-bottom: 0 !important;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 70px;
}
.vmv-tabs

.vmv-tabs .nav-item {
    margin-bottom: 0;
}

.vmv-tabs .nav-link {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vmv-tabs .nav-link:hover,
.vmv-tabs .nav-link:focus,
.vmv-tabs .nav-link.active,
.vmv-tabs .nav-item.show .nav-link {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.vmv-tab-inner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-direction: row-reverse;
}

.vmv-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* icon box */
.vmv-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: rgba(0, 214, 223, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vmv-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(68%) sepia(44%) saturate(6180%) hue-rotate(140deg) brightness(94%) contrast(101%);

}

.vmv-tabs .nav-link.active .vmv-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(7495%) hue-rotate(282deg) brightness(106%) contrast(117%);

}

/* active state */
.vmv-tabs .nav-link.active .vmv-title {
    color: var(--main) !important;
}

.vmv-tabs .nav-link.active .vmv-icon {
    background: rgba(0, 214, 223, 0.35);
}


.vmv-text {
    color: #fff;
    font-size: 18px;
    line-height: 2;
}

.vmv-text p:last-child {
    margin-bottom: 0;
}

/* quotes image */
.vmv-quotes {
    position: absolute;
    left: 35px;
    bottom: 20px;
}

.vmv-quotes img {
    width: 34px;
    height: auto;
    display: block;
}

/* responsive */
@media (max-width: 991px) {
    .vmv-box{
        height: 550px;
    }
    .vmv-tabs {
        gap: 30px;
    }

    .vmv-title {
        font-size: 20px;
    }

    .vmv-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .vmv-box:before{
        bottom: 2%;
    }
    .about-image:before {
        height: 180px;
    }

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

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

    .vmv-box {
        padding: 25px 20px 55px;
    }

    .vmv-tabs {
        gap: 20px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .vmv-title {
        font-size: 18px;
    }

    .vmv-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .vmv-icon img {
        width: 18px;
        height: 18px;
    }

    .vmv-quotes {
        left: 20px;
        bottom: 15px;
    }

    .vmv-quotes img {
        width: 26px;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

/******************************/
/*&&&&& about &&&&&&&&*/
/******************************/
.counter-section {
    padding: 50px 0;
}

.counter-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 70px 100px;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.counter-row {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    align-items: center;
}



.counter-number {
    font-family: 'Inter', serif;
    margin: 0 0 12px;
    font-size: 58px;
    line-height: 1;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    text-shadow: none;
}

.counter-value {
    display: inline-block;
    font-family: 'Inter', serif;
}

.counter-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--main);
}
html[dir="ltr"] .counter-text{
    font-size: 22px;
}

@media (max-width: 991px) {
    .counter-box {
        height: 550px;
    }

    .counter-number {
        font-size: 44px;
    }

    .counter-text {
        font-size: 18px;
    }
    .counter-row{
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 767px) {
    .counter-box {

        padding: 40px 0;
        background-position: left center;
    }

    .counter-col {
        margin-bottom: 20px;
    }

    .counter-col:last-child {
        margin-bottom: 0;
    }

    .counter-number {
        font-size: 38px;
    }

    .counter-text {
        font-size: 17px;
    }
}

.contactus {
    padding: 50px 0;
}

.contact-form .main-btn {
    display: table;
    margin: 0 auto;
}

.projects {
    padding: 0 0 100px;
}

.projects-items {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.projects-items .projects-image {
    position: relative;
    height: 275px;
    border-radius: 12px;
    overflow: hidden;
}

.projects-items .projects-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.projects-items .projects-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 26, 33, 0.35) 0%, rgba(18, 26, 33, 0.75) 55%, rgba(0, 0, 0, 0.90) 100%);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.projects-items .content {
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 2;
}

html[dir="ltr"] .projects-items .content {
    right: unset;
    left: 20px;
}

.projects-items .content .exp {
    background: rgba(0, 184, 181, 0.1);
    border-radius: 35px;
    width: 75px;
    height: 25px;
    line-height: 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--main);
    text-align: center;
}

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

.projects-items .content .url a {
    color: var(--main);
    font-size: 14px;
    font-weight: 400;
}

.projects-slider .owl-dots {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.projects-slider .owl-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    margin: 0 3px;
    transition: all .35s ease-in-out;

}

.projects-slider .owl-dots button.active {
    width: 20px;
    border-radius: 15px;
    background: var(--main);
    transition: all .35s ease-in-out;
}

.employment-title {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 700;
}

.partners {
    padding: 50px 0;
}

.partners .partners-image {
    position: relative;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--main);
}


.partners .partners-image img {
    width: 100%;
    height: 98%;
    object-fit: contain;
    display: block;
}

.partners-slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
html[dir="ltr"] .partners-slider .owl-nav{
    flex-direction: row-reverse;
}

.partners-slider .owl-nav button {
    font-size: 48px;
    background: transparent;
    color: rgba(134, 134, 134, 1);
    transition: all .35s ease-in-out;
}

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

.partners-slider .owl-nav .owl-prev {
    margin-inline-start: -100px;
}

.partners-slider .owl-nav .owl-next {
    margin-inline-end: -100px;
}
html[dir="ltr"] .partners-slider .owl-nav .owl-next {
    margin-inline-end: 0;
    margin-inline-start: -100px;
}
html[dir="ltr"] .partners-slider .owl-nav .owl-prev {
    margin-inline-end: -100px;
    margin-inline-start: 0;
}
.partners-url {
    margin: 50px auto 0;
    display: table;
}

footer {
    background: url("../images/footer.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.footer-tittle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--main);
}

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

.content-information .info .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    background: rgba(0, 184, 181, 0.2);
    color: var(--main);
    text-align: center;
    margin-inline-end: 10px;
}

.content-information .info .text-content, .content-information .info .text-content a {
    color: var(--white);
    font-size: 18px;
}

.footer-logos img {
    max-width: 150px;
}

footer .footer-social {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.footer-social a {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-social a:hover {
    color: var(--main);
    transition: all .35s ease-in-out;
}

.footer-list li {
    list-style: none;
    margin-bottom: 20px;
    position: relative;
    padding-inline-start: 15px;
    width: 50%;
    float: right;
}

html[dir="ltr"] .footer-list li {
    float: left;
}

.footer-list li::before {
    content: "•";
    color: var(--main);
    position: absolute;
    right: 0;
}

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

.footer-list a {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
}

.footer-sub-tittle {
    font-size: 14px;
    color: var(--white);
}

.form-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-newsletter input {
    margin-top: 15px;
    width: 100%;
    height: 50px;
    padding-inline-start: 5px;
    border: 1px solid var(--main);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.44);
    margin-bottom: 10px;
    color: var(--white);
}

.copy-write-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-write-content {
    color: var(--white);
    display: flex;
    align-items: center;
}

.copy-write-content a {
    color: var(--main);
    margin: 0 5px;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
    text-align: center;
}

.wp-pagenavi .pages {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 12px;
    background: #f5f7fa;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.wp-pagenavi a,
.wp-pagenavi span.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wp-pagenavi a {
    background: #fff;
    color: #333;
    border: 1px solid #e5e7eb;
}

.wp-pagenavi a:hover {
    background: var(--main) !important;
    color: #fff;
    border-color: var(--main) !important;
    transform: translateY(-2px);
}

.wp-pagenavi span.current {
    background: var(--main) !important;
    color: #fff;
    border: 1px solid var(--main) !important;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.18);
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .archive-partners{
        padding: 0 !important;
    }
    .contactus , .partners{
        padding: 25px 0;
    }
    footer {
        background-position: center;
    }

    footer .footer-social {
        flex-direction: row;
    }

    footer .footer-social a {
        margin-inline-end: 10px;
    }

    .copy-write-items {
        flex-direction: column;
    }

    .copy-write-content {
        margin-top: 10px;
        display: inline;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .wp-pagenavi {
        gap: 8px;
    }

    .wp-pagenavi .pages {
        width: 100%;
        justify-content: center;
    }

    .wp-pagenavi a,
    .wp-pagenavi span.current {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.partners.archive-partners .partners-image {
    height: 150px;
}

.partners.archive-partners .partners-image a {
    max-width: 100%;
    max-height: 100px;
    display: inline;

}

.archive-services .services-items {
    background: rgba(18, 26, 33, 1)
}

.icon-service-title {
    display: flex;
    align-items: center;
}

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

.page-thumb img {
    border-radius: 15px;
    margin-bottom: 10px;
    width: 100%;
}

.icon-service-title .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all .35s ease-in-out;
    background-color: #00B8B51A;
}

.icon-service-title .icon img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(44%) saturate(6180%) hue-rotate(140deg) brightness(94%) contrast(101%);
}

.icon-service-title .icon:hover {
    background: var(--main);
    transition: all .35s ease-in-out;

}

.icon-service-title .icon:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(7495%) hue-rotate(282deg) brightness(106%) contrast(117%);
}

.projects-single .exp {
    background: rgba(0, 184, 181, 0.1);
    border-radius: 35px;
    width: 75px;
    height: 25px;
    line-height: 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--main);
    text-align: center;
    margin-bottom: 20px;
}