/******************************/
/*&&&&& 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: #00A7F3;
    --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 {
    position: relative;
    font-family: 'IBM Plex Sans' , sans-serif;
    color: var(--white);
    background-image: url("../images/body.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-size: 16px;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 31, 39, 0.975);
    z-index: -1;
    pointer-events: none;
}

/*.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);
    }
}

/******************************/
/*&&&&& Main Button &&&&&&&&*/
/******************************/
.main-btn {
    position: relative;
    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;
    background: transparent;
    overflow: hidden;
    color: var(--main);
    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: 18px;
    color: var(--main);
    position: relative;
    border-radius: 50%;
    opacity: 1;
    transition: all .35s ease-in-out;
}

html[dir="ltr"] .main-btn {
    display: flex;
}

html[dir="ltr"] .main-btn:after {
    content: "\f178";
}


.main-btn:hover {
    color: var(--white);
    background: var(--main);
    transition: all .3s ease-in-out;
}

.main-btn:hover:after {
    color: var(--white);
    transform: scale(1.25);
    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-tittle &&&&&&&&*/
/******************************/
.main-tit {
    font-weight: 300;
    font-size: 24px;
    color: var(--main);


}


@media (max-width: 768px) {
    .main-tit {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .main-tit {
        font-size: 20px;
    }
}

/******************************/
/*&&&&& header &&&&&&&&*/
/******************************/
header {
    padding: 15px 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}
header .main-logo img{
    max-width: 220px;
}
.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;
}
.to-req{
    margin-inline-end: 10px;
}
.to-req a{
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    background: #00A7F3;
    box-shadow: 0px 8px 32px -8px #F3A41266;
    color: var(--white);
}
.lang{
    color: var(--white);
    font-size: 18px;
}
.whats-header{
    margin-inline-end: 15px;
}
.whats-header img{
    max-width: 30px;
}
@media (min-width: 992px) {

}

@media (max-width: 768px) {
    .to-req{
        display: none;
    } .to-req-mob{
          display: block;
          margin-top: 20px;
      }
}

@media (max-width: 500px) {
    header .main-logo img{
        max-width: 110px;
    }
}

/******************************/
/*&&&&& nav &&&&&&&&*/
/******************************/

@media (min-width: 992px) {


    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 60%;
    }

    .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(--white);
        font-size: 16px;
        font-weight: 100;
        position: relative;
        text-align: start;
        padding: 10px 10px;
        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;
    }

    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(0, 0, 0, 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(--white);
        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 &&&&&&&&*/
/******************************/
.intro-slider-items {
    position: relative;
}
.intro-slider-items:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 0;
}
.intro-slider-items .image img  ,.intro-slider-items video{
    width: 100%;
    height : 860px;
}
.intro-slider-items video {
    height: auto;
    display: block;
}
.intro-slider-items .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.intro-slider-items .content .title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}
html[dir="ltr"] .intro-slider-items .content .title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}
.intro-slider-items .content .description {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 50px;
    color: var(--white);
}

.intro-slider-items .content .slider-btn {
    width: 200px;
    height: 50px;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
    border: 1px solid var(--color-white-30, #FFFFFF4D);
    background: var(--color-white-10, #FFFFFF1A);
    color: var(--white);
}

.intro-slider-items .content .slider-btn:hover {
    transition: all .35s ease-in-out;
    border: 1px solid var(--main);
    background: var(--main);
    color: var(--white);
}

@media (max-width: 992px) {
    .intro-slider-items .image img  ,.intro-slider-items video{
        width: 100%;
        height : 760px;
    }
    html[dir="ltr"] .intro-slider-items .content .title {
        font-size: 28px;

    }
}

@media (max-width: 768px) {
    .intro-slider-items .image img  ,.intro-slider-items video{
        width: 100%;
        height : 560px;
    }
    html[dir="ltr"] .intro-slider-items .content .title {
        font-size: 20px;

    }
    .intro-slider-items .content .title {
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    .intro-slider-items .content .title {
        font-size: 24px;
    }
    .intro-slider-items .image img{
        max-height: 350px;
    }
    .intro-slider-items .content .description{
        font-size: 14px;
    }
    .intro-slider-items .content{
        width: 95%;
        text-align: center;
        margin: 0 auto;
    }
    .intro-slider-items .content .description{
        margin-bottom: 10px;
    }
    .intro-slider-items .content .slider-btn {
        width: 140px;
        height: 40px;
        line-height: 40px;
        font-size: 13px;

    }
    .intro-slider-items .image img  ,.intro-slider-items video{
        width: 100%;
        height : 330px;
    }
}

/******************************/
/*&&&&& about &&&&&&&&*/
/******************************/
.about {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.about-title-header {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.about-description-header {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 30px;
}

.about-url {
    margin: 0 auto 50px;
    display: table;
}

.vision-content-item {
    border: 2px dotted var(--main);
    margin-bottom: 30px;
    padding: 20px 15px 40px;
    border-radius: 15px;
}

.vision-content-item .icon-tit {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.vision-content-item .icon-tit .icon {
    margin-inline-end: 10px;
}

.vision-content-item .icon-tit .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.vision-content-item .description {
    font-size: 16px;
    font-weight: 100;
    color: var(--white);
}

.first-about-row {
    margin-bottom: 50px;
}

.company-numbers-description {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 50px;
}

.about-content-counter .counter-wrapper {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.about-content-counter .counter-wrapper .counter-item {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;

}

.about-content-counter .counter-wrapper .counter-item:nth-of-type(1),
.about-content-counter .counter-wrapper .counter-item:nth-of-type(2) {
    margin-bottom: 75px;
}

.about-content-counter .counter-wrapper .counter-item .icon {
    max-height: 100px;
    margin-inline-end: 10px;
}

.counter-text-content .counter-number {
    color: rgba(114, 193, 235, 1);
    font-size: 36px;
    font-weight: 700;

}

.counter-text-content .counter-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 100;

}


@media (max-width: 768px) {
    .about-title-header{
        font-size: 34px;
    }
    .vision-content-item{
        border: 2px dotted var(--main);
        margin-bottom: 20px;
        padding: 10px 15px 15px;
        border-radius: 15px;
    }
    .company-numbers-description{
        font-size: 24px;
    }
    .about-content-counter .counter-wrapper .counter-item .icon img{
        max-width: 60px;
    }
    .counter-text-content .counter-number{
        font-size: 22px;
    }
}

@media (max-width: 500px) {
    .about-title-header{
        font-size: 24px;
    }
    .about-description-header{
        font-size: 14px;
    }
    .company-numbers-description{
        font-size: 16px;
    }
    .about .row:last-of-type{
        flex-direction: column-reverse;
    }
    .company-numbers-image{
        margin-top: 30px;
    }
}

/******************************/
/*&&&&& about &&&&&&&&*/
/******************************/
.item-services-main {
    position: relative;
    overflow: hidden;
    background: #121A3B;
    transition: transform 0.5s ease-in-out;
}

.item-services-main .item-services-main-thumb img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.item-services-main:hover .item-services-main-thumb img {
    transform: translateY(-21%) scale(0.5);
    transition: transform 0.4s ease-in-out;
    border-radius: 20px;
}

.item-services-main .services-content .service-title {
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.item-services-main:hover .services-content .service-title {
    opacity: 0;
    transform: translate(-50%, -70%);
    transition: transform 0.5s ease-in-out;

}

.item-services-main .services-posts-list {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translate(-50%, 0);
    z-index: 1;
    opacity: 0;
    width: auto;
    padding-inline-end: 10px; 
}
.item-services-main .services-posts-list::-webkit-scrollbar {
    width: 8px;
}

.item-services-main .services-posts-list::-webkit-scrollbar-track {
    background: #1b2550;
    border-radius: 10px;
}

.item-services-main .services-posts-list::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
}

.item-services-main .services-posts-list::-webkit-scrollbar-thumb:hover {
    background: #cfcfcf;
}
.item-services-main:hover .services-posts-list {
    opacity: 1;
    top: 58%;
    transform: translate(-50%, 0);
    transition: all 1s ease-in-out, opacity 1s ease-in-out;
}

.item-services-main .services-posts-list li a {
    color: var(--white);
    transition: 0.3s ease-in-out;
}

.item-services-main .services-posts-list li a:hover {
    color: var(--main);
    transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .item-services-main .item-services-main-thumb img{
        height: 65vh;
    }
}

@media (max-width: 500px) {
    .item-services-main .services-posts-list li a{
        font-size: 14px;
    }

}

/******************************/
/*&&&&& why-us &&&&&&&&*/
/******************************/
.why-us {
    position: relative;
    padding: 50px 0;
}


.why-us-items {
    transition: all .35s ease-in-out;
    padding: 50px 0;
}

.why-us .main-tit {
    position: relative;
    font-weight: 900;
    font-size: 200px;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 2px;
    color: rgba(12, 70, 95, 0.35);
    margin-bottom: -30px;
}
html[dir="ltr"] .why-us .main-tit{
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
}
.why-us-items {
    counter-reset: whyCounter;
}

.why-us-items .why-col {
    counter-increment: whyCounter;
    position: relative;
}

.why-us-items .why-col .why-us-item-content::before {
    content: counter(whyCounter, decimal-leading-zero);
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--main);
}
.why-us-item-content .tit{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--main);
}


@media (max-width: 768px) {
    .why-us .main-tit{
        font-size: 115px;
    }
    html[dir="ltr"] .why-us .main-tit{
        font-family: 'Montserrat', sans-serif;
        font-size: 70px;
    }
}

@media (max-width: 500px) {
    .why-us .main-tit{
        font-size: 60px;
    }
    html[dir="ltr"] .why-us .main-tit{
        font-family: 'Montserrat', sans-serif;
        font-size: 35px;
    }
    .why-us-items{
        padding: 50px 0 0 ;
    }
}

/******************************/
/*&&&&& exhibition &&&&&&&&*/
/******************************/
.exhibition{
    padding: 50px 0;
}
.exhibition .exhibition-tit{
    margin-bottom: 30px;
}
.exhibition-items{
    width: 100%;
}
.exhibition-items img{
    width: 100%;
    border-radius: 15px;
}
@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .exhibition{
        padding: 25px 0;
    }
}


/******************************/
/*&&&&& 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: 10px 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.1);

    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;
}

@media (max-width: 992px) {
    .item-services-main .services-posts-list{
        max-height: 200px; 
    width: 80%;
    }
    .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) {
    .projects{
        padding: 25px 0;
    }
}

/******************************/
/*&&&&& clients &&&&&&&&*/
/******************************/
.clients {
    position: relative;
    padding: 50px 0 120px;
}
.clients  .clients-tit{
    color: var(--main);
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 100;
}

.clients .main-tit {
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
}
.clients-slider-items .image a{
    width: 100%;
    display: block;
    background: var(--white);
    text-align: center;
    border-radius: 15px;
}
.clients-slider-items .image a img{
    height: 150px;
    object-fit: contain;
    border-radius: 15px;
}
.clients .owl-stage {
    display: flex;
    align-items: center;
}

.clients .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
}

html[dir="ltr"] .clients .owl-nav {
    flex-direction: row-reverse;
}

.clients .owl-nav button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    margin: 0 5px;
    text-align: center;
    background: transparent;
    box-shadow: 0px 8px 32px -8px #F3A41266;
    border: 1px solid var(--white);
    color: var(--white);
    transition: all .35s ease-in-out;
}

.clients .owl-nav button:hover {
    border: 1px solid var(--main);
    color: var(--white);
    transition: all .35s ease-in-out;
    background: var(--main);
}

@media (max-width: 768px) {
    .clients-slider-items .image a img{
       height: 100px;
    }
}

@media (max-width: 500px) {
    .clients{
        padding: 25px 0 70px;
    }
}


/******************************/
/*&&&&& footer &&&&&&&&*/
/******************************/
footer {
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
    background: #121A3B;
}
.footer-logo{
    margin-bottom: 20px;
}
.footer-social{
    display: flex;
    align-items: center;
    justify-content: flex-start;

}
footer .footer-social{
    margin-bottom: 10px;
}
.footer-social a{
    margin-inline-end: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background: #0D1430;
    color: var(--white);
    transition: all .35s ease-in-out;
}
.footer-social a:hover{
    background: var(--main);
    transition: all .35s ease-in-out;
}

.footer-tittle {
    color: var(--main);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-list a {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}
.info-head{
    color: var(--main);
    font-size: 16px;
    font-weight: 500;
}
.info , .info a{
    color: var(--white);
}
.footer-list li {
    width: 50%;
    float: right;
}
html[dir="ltr"] .footer-list li {
    float: left;
}
.footer-list li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-inline-start: 15px;
}

.footer-list li::before {
    content: "•";
    color: var(--white);
    position: absolute;
    right: 0;
}

html[dir="ltr"] .footer-list li::before {
    left: 0;
    right: unset;
}

.information .info {
    display: flex;
    align-items: center;
    color: var(--white);
    margin-bottom: 10px;
}

.info .icon {
    margin-inline-end: 20px;
    font-size: 24px;
    color: var(--main);
}
.footer-btn-file{
    font-size: 20px;
    color: var(--main);
    margin-bottom: 10px;
}
.footer-tax-content span{
    font-size: 18px;
    color: var(--main);
 }

.copy-write {
    position: relative;
    margin-top: 50px;
    z-index: 2;
}

.copy-write-items {
    border-top: 1px solid var(--white);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-write-content a {
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-social{
        justify-content: center;
        margin: 30px 0;
    }

    .footer-logo {
        margin: 0 auto;
        display: table;
    }

    footer {
        padding: 30px 0 0;
    }

    .desc-footer-logo {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .copy-write-items{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .footer-tittle{
        margin:  20px 0 !important;
    }
}

.item-services-main .item-services-main-thumb a {
    width: 100%;

}
.quotation-page{
    padding: 50px 0;
}
.quotation-page .page-editor{
    margin-bottom: 20px;
}
.archive-projects{
    padding: 50px 0;
}
.projects--items{
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.projects--items:before{
    content: "";
    background: rgba(0,0,0,.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 20px;
    z-index: 0;
    transition: all .35s ease-in-out;

}
.projects--items:hover:before{
    transition: all .35s ease-in-out;
    height: 100%;
}
.projects--items img{
    width: 100%;
    border-radius: 20px;
}
.projects--items .content{
    position: absolute;
    bottom: 20%;
    right: 0;
    padding: 10px;
    z-index: 2;
    opacity: 0;
    transition: all .5s ease-in-out;

}
.projects--items:hover .content{
    position: absolute;
    bottom: 20px;
    opacity: 1;
    transition: opacity .5s ease-in-out;
}
.projects--items .content .title{
    color: var(--main);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.projects--items .content .desc{
    color: var(--white);
    font-size: 14px;
    font-weight: 100;
}
.archive-projects .image img{
    width: 100%;
    height: 450px;
    object-fit: fill;
}
.content-single{
    padding: 50px 0;
}
.archive-exhibition{
    padding: 50px 0;
}
.archive-clients{
    padding: 50px 0;
}
.page-main-form .information .info{
    margin-inline-end: 15px;
}
.page-main-form{
    padding: 50px 0;
}
.page-main-form .footer-social{
    justify-content: flex-end;
}
.wp-pagenavi{
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border: 1px solid var(--main) !important;
}
.wp-pagenavi span.pages{
    width: 180px !important;
}
.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #BFBFBF;
    padding: 0 !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    text-align: center;

    margin: 3px !important;
}
@media (max-width: 768px) {
    .page-main-form .information {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    .page-main-form .footer-social {
        justify-content: flex-start;
    }
    .map{
        margin-top: 30px;
    }
}