/*
Theme Name:
Author: Saint
PSD Designer:
*/

/* Page controls */

/* fonts  */

@font-face {
    font-family: 'bahij';
    src: url('../webfonts/fonts_design/bahij_bold/BahijJanna-Bold.eot');
    src: url('../webfonts/fonts_design/bahij_bold/BahijJanna-Bold.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/fonts_design/bahij_bold/BahijJanna-Bold.woff2') format('woff2'),
    url('../webfonts/fonts_design/bahij_bold/BahijJanna-Bold.woff') format('woff'),
    url('../webfonts/fonts_design/bahij_bold/BahijJanna-Bold.ttf') format('truetype');

    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'bahij';
    src: url('../webfonts/fonts_design/bahij/BahijJanna.eot');
    src: url('../webfonts/fonts_design/bahij/BahijJanna.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/fonts_design/bahij/BahijJanna.woff2') format('woff2'),
    url('../webfonts/fonts_design/bahij/BahijJanna.woff') format('woff'),
    url('../webfonts/fonts_design/bahij/BahijJanna.ttf') format('truetype');

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none !important;
    outline: none !important;
    border: none;
    list-style: none;
}

.menu-top-right {
    display: flex;
    align-items: center;
}

.lang {
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    display: block;
    color: var(--main);
}

.lang:hover {
    color: #FFF;
}

.lang span {
    font-size: 20px;
}

.lang {
    margin-inline-start: 5px;
}

/*====================================================================*/
/*Start Search Popup*/
/*====================================================================*/

.search-box-outer,
.lang {
    background: var(--main);
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    color: #FFF;
}

.search-box-outer {
    background: var(--black);
    line-height: 42px;
}

.lang {
    background: var(--main);
    line-height: 45px;
}

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main);
    width: 70px;
    cursor: pointer;
    /*box-shadow: 0px 0px 16px rgb(0 0 0 / 16%);*/
    /*border-bottom: 3px solid #ffffff;*/
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
}

.search-popup .close-search i {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    padding-inline-end: 70px;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    /*left: 30px;*/
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

html[dir='rtl'] .search-popup .form-group input[type="submit"],
html[dir='rtl'] .search-popup .form-group button {
    left: 30px;
}

html[dir='ltr'] .search-popup .form-group input[type="submit"],
html[dir='ltr'] .search-popup .form-group button {
    right: 30px;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    transition: all 500ms ease;
}

.close-search i {
    color: #FFF;
    font-size: 2rem;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}

/* //search popup*/


p, h1, h2, h3, h4, h5, h6, ul, ol,
.h1, .h2, .h3, .h4, .h5, .h6,
figure {
    margin-bottom: 0;
}

img, iframe {
    max-width: 100%;
}

button, li, a {
    transition: all 0.5s ease-in-out;
}


html[dir="rtl"] body {
    direction: rtl;
    font-family: 'bahij';
    text-align: right !important;
}

html[dir="ltr"] body {
    direction: ltr;
    font-family: 'bahij';
    text-align: left !important;
}


#bodywrap {
    position: relative;
    overflow: hidden;
}

/* Main Scroll Bar */

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background-color: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 20px;
}

/* Colors */

:root {
    --main: #d9b360;
    --black: #302d2b;
}

/* loader */
/* The Loader */
#loader-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    overflow: hidden;
}

.no-js #loader-wrapper {
    display: none;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #0f0f0f;
    z-index: 9999;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

.loader {
    /*animation: rotate 1s infinite;*/
    z-index: 99999;
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}


.loading {
    display: flex;
    animation: scalee1 3s;
}

.loading .dot {
    position: relative;
    width: 1em;
    height: 1em;
    margin: 0.8em;
    border-radius: 50%;
}

.loading .dot::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: wave 2s ease-out infinite;
}

.loading .dot:nth-child(1) {
    background: var(--main);
}

.loading .dot:nth-child(1)::before {
    animation-delay: 0.2s;
}

.loading .dot:nth-child(2) {
    background: var(--secondary);
}

.loading .dot:nth-child(2)::before {
    animation-delay: 0.4s;
}

.loading .dot:nth-child(3) {
    background: var(--main);
}

.loading .dot:nth-child(3)::before {
    animation-delay: 0.6s;
}

.loading .dot:nth-child(4) {
    background: var(--secondary);
}

.loading .dot:nth-child(4)::before {
    animation-delay: 0.8s;
}

.loading .dot:nth-child(5) {
    background: var(--main);
}

.loading .dot:nth-child(5)::before {
    animation-delay: 1s;
}

@keyframes wave {
    50%, 75% {
        transform: scale(2.5);
    }
    80%, 100% {
        opacity: 0;
    }
}


/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

#loader-wrapper img {
    z-index: 999999;
    width: 90px;
}

#loader-wrapper img {
    animation: scalee 2s;
    margin-bottom: 20px;
}

@keyframes scalee {
    from {
        transform: scale(0) rotateX(0deg);
    }
    to {
        transform: scale(1) rotateX(359deg);
    }
}

@keyframes scalee1 {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}


.breadcrumb-area {
    position: relative;
    background-color: var(--main);
    padding: 15px 0;
    color: #FFF;
    z-index: 9;
}

.breadcrumb-area a {
    color: #FFF;
}

.sec-tit {
    position: relative;
    font-size: 35px;
    font-weight: bold;
    color: var(--main);
}

.main_head {
    position: relative;
    margin-bottom: 15px;
}

/* header section */
header {
    position: relative;
    background: #FFF;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 8px rgba(0 0 0 / 51%);
}

.header-logo {
    position: relative;
}

/* // header section */


/* main slider */

.mainItem {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.mainItem:before {
    top: -20%;
    bottom: -630rem;
    left: 68%;
    right: -266rem;
    transform: rotate(146deg) translateZ(0);
    background: rgb(0 0 0 / 0.6);
    position: absolute;
    z-index: 1;
    content: '';
}

.mainItem img {
    height: 100vh;
    width: 100%;
    position: relative;
    transition: all 25s ease;
    transform-style: preserve-3d;
}

.main-slider .owl-dots {
    position: absolute;
    display: flex;
    margin-left: 50px;
    margin-bottom: 20px;
    bottom: 0;
    left: 0;
}

.main-slider .owl-dots .owl-dot {
    width: 25px;
    height: 25px;
    border: 1px solid #FFF;
    border-radius: 100%;
    background-color: transparent;
    margin-inline-start: 10px;
}

.main-slider .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
    transition: all .5s ease-in-out;
}

.main-slider .owl-dots .owl-dot.active span {
    background: var(--main);
}

.main-slider .owl-dots .owl-dot.active {
    border: 1px solid var(--main);
}

/*// main slider*/


/* section about */
.about {
    position: relative;
    background-color: #000;
    padding: 60px 0 120px;
}

.about:after {
    content: '';
    position: absolute;
    width: 100%;
    border-left: 1px solid #FFF;
    transform: translateY(-50%);
    top: 0;
    left: 241px;
    pointer-events: none;
}

html[dir='rtl'] .about:after {
    height: 45rem;
}

html[dir='ltr'] .about:after {
    height: 87rem;
}

.in-about .main_head  {
        margin-bottom: 40px;
}

.about:before {
    content: '';
    position: absolute;
    width: 100%;
    border-right: 1px solid #FFF;
    transform: translateY(-50%);
    top: 0;
    right: 241px;
    pointer-events: none;
}

html[dir='rtl'] .about:before {
    height: 86rem;
}

html[dir='ltr'] .about:before {
    height: 45rem;
}

.about_item {
    margin-bottom: 100px;
}

.about-content {
    font-size: 18px;
    color: #FFF;
}


.video_img img {
    border-radius: 10px;
    width: 515px;
}

.video-play {
       position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.video_img {
    position: relative;
}

/*.video_img:after {*/
/*    position: absolute;*/
/*    content: '\f144';*/
/*    font-family: FontAwesome;*/
/*    border: 1px solid var(--main);*/
/*    opacity: 0;*/
/*    width: 87px;*/
/*    height: 87px;*/
/*    border-radius: 100%;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    animation: pulse-shadow 1.5s infinite;*/
/*    transition: all 1.5s ease-in-out;*/
/*}*/


.video-play:after {
    content: '';
    position: absolute;
    border: 1px solid var(--main);
    opacity: 0;
    width: 87px;
    height: 87px;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-shadow 1.5s infinite;
    transition: all 1.5s ease-in-out;
}

.about .df {
    margin-bottom: 100px;
}

.video_img {
    position: relative;   
    z-index: 1;
}

.video_img:after {
        position: absolute;
    content: '';
    width: 45%;
    height: 63%;
    z-index: -1;
    border-radius: 10px;
    background: #fae268;
    top: -30px;
}

html[dir='rtl'] .video_img:after {
    left: 0;
}

html[dir='ltr'] .video_img:after {
    right: 0;
}

.video-play i {
        position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--main);
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(98, 175, 186, 0.6);
        opacity: 0;
    }
    70% {
        box-shadow: 0 0 0 30px rgba(98, 175, 186, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(98, 175, 186, 0);
        opacity: 1;
    }
}

.video_play i {
    font-size: 42px;
    color: #000;
    line-height: 70px;
}

.about-url {
    display: inline-flex;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: transparent;
    color: #FFF;
    border: 1px solid #FFF;
    border-radius: 10px;
    width: 11em;
    height: 3em;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    margin-top: 53px;
}

.main-btn span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: var(--main);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.main-btn:hover {
    color: #000;
    border: transparent;
}

.main-btn:hover span {
    transform: translateY(0) scale(2);
}

.main-btn span:nth-child(1) {
    --n: 1;
}

.main-btn span:nth-child(2) {
    --n: 2;
}

.main-btn span:nth-child(3) {
    --n: 3;
}

.main-btn span:nth-child(4) {
    --n: 4;
}

.vision_item {
    display: inline-flex;
}

.vision_icon {
    background: var(--black);
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 100%;
    margin-inline-end: 14px;
}

.vision_icon img {
    max-width: 39px;
}

.vision_details {
    width: calc(100% - 65px);
}

.vision_item:first-of-type {
    margin-bottom: 20px;
}

.about_img img {
    margin-inline-start: 30px;
    border-radius: 10px;
}

.in-about {
    margin-bottom: 50px;
}

.about_img {
    position: relative;
    z-index: 1;
}

.about_img:before {
    position: absolute;
    content: '';
    width: 45%;
    height: 63%;
    z-index: -1;
    border-radius: 10px;
    background: #fae268;
    top: -30px;
}

html[dir='rtl'] .about_img:before {
    right: 0;
}

html[dir='ltr'] .about_img:before {
    left: 0;
}
.about_img:after {
        content: '';
    position: absolute;
    width: 100%;
    height: 171px;
    bottom: -170px;
    pointer-events: none;
}

html[dir='rtl'] .about_img:after {
    border-left: 1px solid #FFF;
    left: 40px;
}

html[dir='ltr'] .about_img:after {
    border-right: 1px solid #FFF;
    right: 40px;
}

.vision_tit {
    color: var(--main);
    font-weight: bold;
    font-size: 28px;
}

.vision_content {
    color: #FFF;
    font-size: 18px;
    margin-top: 10px;
}

/* // section about */


/* section line goal */

.goals {
    position: relative;
    background-image: url("../img/goals.png");
    padding: 60px 0 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.goals:after {
    content: '';
    position: absolute;
    background-color: rgb(41 41 41 / 90%);
    inset: 0;
    z-index: 0;
}

.in_goals {
    position: relative;
    z-index: 2;
}

.goals-content-items {
    position: relative;
    margin-top: 120px;
    height: 500px;
}

.goals-content-items:before {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;
    border-bottom: 1px dashed var(--main);
    width: 100%;
    height: 2px;
}

.goal-content {
    width: 160px;
    height: 210px;
    overflow: hidden;
}

.line-goal .col-line:nth-child(odd) .goal-item {
    transform: translateY(-95px);
}

.line-goal .col-line:nth-child(even) .goal-item {
    transform: translateY(90px);
}

.line-goal .col-line .goal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.line-goal .col-line:nth-child(odd) .goal-content {
    background-image: url("../img/victor-top.png");
    background-position: center;
    background-repeat: no-repeat;
     padding: 0 5px 50px ;

}

.line-goal .col-line:nth-child(even) .goal-content {
    background-image: url("../img/victor-bottom.png");
    background-position: center;
    background-repeat: no-repeat;
     padding: 50px 5px 0;

}

.line-goal .col-line .goal-content span {
    color: #fff;
    font-size: 18px;
}

.timeline {
    position: relative;
    width: 100%;
    height: 480px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}


.timeline-content:after {
    content: '';
    position: absolute;
    border-bottom: 2px dashed var(--main);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    left: 50%;
}

.timeline-title:after {
    content: '';
    position: absolute;
    z-index: 2;
    pointer-events: none;
    background-position: center;
    background-repeat: no-repeat;
    width: 26px;
    height: 51px;
}

.timeline-content:nth-child(odd) .timeline-title:after {
    background-image: url(../img/victor-top.png);
    top: 100%;
}

.timeline-content:nth-child(even) .timeline-title:after {
    background-image: url(../img/victor-top.png);
    transform: rotate(180deg);
    bottom: 100%;
}

.timeline-content {
    max-width: 100%;
    height: auto;
    padding: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
}

.timeline-period {
    position: absolute;
    top: 50%;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
    font-weight: bold;
    color: #FFF;
}

.mid-line {
    border: 1px dashed var(--main);
}

.timeline-title {
    position: relative;
    border: 5px solid var(--main);
    color: #FFF;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.timeline-title:hover {
    color: #FFF;
}

.timeline-content:nth-child(odd) {
    top: 16px;
}

.timeline-content:nth-child(even) {
    align-self: flex-end;
    top: -16px;
}
.timeline-content:nth-child(even):before {
    top: -15px;
}
.timeline-content:nth-child(even):after {
    top: -16px;
}

.timeline-content:nth-child(odd):after {
    top: 202px;
}

.timeline-content:nth-child(even) .timeline-period {
    top: -70% ;
}
.timeline-content:nth-child(even) .timeline-period:before {
top: calc(100% + 2px);
}


/* // section goal*/


/*section services */

.services {
    padding: 80px 0 100px;
}

.services .sec-tit {
    color: #000;
}

.explain {
    font-size: 30px;
}

.services .main_head {
    margin-bottom: 40px;
}

.serv_card {
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #d6d6d6;
    padding: 25px;
    height: 100%;
    transition: all .5s ease-in-out;
}

.services_icon {
    margin-bottom: 15px;
}

.serv_tit {
    color: #565656;
    font-size: 24px;
    font-weight: bold;
}

.serv_url {
    margin-top: 33px;
    display: flex;
    justify-content: end;
}

.serv_url a {
    border: 1px solid #000;
    padding: 10px 15px;
    border-radius: 10px;
    background: transparent;
    color: #000;
    transition: all .5s ease-in-out;
}

.serv_card:hover {
    border: 1px solid var(--main);
    box-shadow: 0 0 29px rgb(0 0 0 / 42%);
}

.serv_card:hover .serv_url a {
    background: var(--main);
    border: 1px solid transparent;
    color: #FFF;
}

/*// section services*/


/* section team*/

.team {
    padding: 70px 0 222px;
}

.teamItem {
    position: relative;
}

.teamItem:after {
    content: '';
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 100%) 15%, transparent 70%);
    top: 0;
    left: 0;
    right: 0;
    bottom: -38px;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}

.teamItem:hover:after {
    background: linear-gradient(to top, var(--main) 15%, transparent 70%);
    transition: all .5s ease-in-out;
}

.teamItem img {
    border-radius: 10px;
}

.team {
    background-color: #000;
}

.team .sec-tit {
    margin-bottom: 10px;
}

.team_content {
    color: #FFF;
}

.team-slider .owl-stage {
    margin: 50px 0;
}

.team-slider .owl-item:nth-child(odd) img {
    transform: translateY(30px);
}

.team-slider .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    margin-top: 121px;
}

.team-slider .owl-dots button.owl-dot {
    display: inline-block;
    width: 80px;
    height: 5px;
    margin: 0;
    background: #353636;
    border-radius: 0;
    opacity: 1;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.team-slider .owl-dots button.owl-dot.active {
    background: var(--main);
}

/*// section team */


/* section clients*/

.clients {
    background: #000;
}

.clients .main_head {
    background-color: #af8c51;
    margin-bottom: 0;
    padding: 100px;
}

.clients .main_head .sec-tit {
    color: #FFF;
    top: -41px;
}

.clients .row {
    align-items: center;
}

.clients .client_img {
    height: 185px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
}

.clients .client_img img {
    max-height: 100%;
    object-fit: contain;
}

.clients .client_img:hover {
    box-shadow: 0px 7px 30px rgb(0 0 0 / 30%);
    transform: translateY(-5px);
}

.hold_clients {
    position: relative;
    background: #FFF;
    margin-top: -90px;
    padding: 20px;
}

/* //section clients */


/* footer */
footer {
    position: relative;
    padding: 80px 0 0;
    background: #000;
}

footer:after {
    content: '';
    position: absolute;
    border-bottom: 10px solid var(--main);
    width: 100%;
    bottom: 0;
}

footer .form .main-btn {
    margin-top: 0;
}

footer .in_form [class*='col-']:first-child .form-group .form-control {
    padding: 10px;
}

footer .form-control {
    background-color: #1a1a1a;
    border: 1px solid transparent;
    transition: all .5s ease-in-out;
    border-radius: 10px;
}

footer .form-control:focus {
    border: 1px solid var(--main);
    background-color: #1a1a1a;
    box-shadow: none;
    color: var(--main);
}

footer .in_form [class*='col-']:first-child .form-group:not(:last-child){
    margin-bottom: 30px !important;
}

footer .in_form [class*='col-']:first-child  .form-group {
    margin-bottom: 0;
}

footer .in_form [class*='col-']:first-child,
footer .in_form [class*='col-']:nth-child(2) {
    margin-bottom: 36px;
}

.social-media {
    display: flex;
    justify-content: end;
}

.social-media a:not(:last-child) {
    margin-inline-end: 10px;
}

.copyright {
    padding: 50px 0;
    color: #FFF;
}

.copyright a {
    color: var(--main);
}

footer .form-control::placeholder {
    color: #c8c8c8;
    transition: all .5s ease-in-out;
}

footer .form-control:focus::placeholder {
    color: var(--main);
}

footer .form [class*='col-']:nth-child(2) .form-group,
footer .form-group textarea {
    height: 100%;
}

.contacts {
    position: relative;
    background: #FFF;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 50px;
}

.contacts .row {
    align-items: center;
}

.calls-contacts {
    display: inline-flex;
    align-items: center;
}

.contact_icon {
    background: #af8c51;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 10px;
    margin-inline-end: 15px;
    box-shadow: 10px -10px 0 0 #1a1a1a;
}

.contacts-head {
    font-size: 22px;
    font-weight: bold;
    color: #af8c51;
}

.contacts-item {
    font-size: 16px;
    color: #000;
}

.hold_contact {
    width: calc(100% - 50px);
}

form .row[class*='col']:first-child {
    margin-bottom: 20px;
}

/* // footer */


/* key frames */

@keyframes move-smooth {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-26px);
    }
}


@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-26px);
    }
}

@keyframes move_arrow {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    25% {
        opacity: 0.25;
        transform: translateY(-25px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px);
    }
    75% {
        opacity: 0.75;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    25% {
        opacity: 0.25;
        transform: translateY(25px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    75% {
        opacity: 0.75;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* //key frames */


/****************** media Query *******************/

@media (max-width: 1200px) {
    .logo {
        height: 90px;
    }

    .nav-list > .linkMenu:not(:last-of-type) {
        margin-inline-end: 2px !important;
    }

    nav > .nav-list > .linkMenu > a {
        font-size: 20px !important;
    }

}

@media (min-width: 992px) {
    
    .about_img img,
    .video_img img {
        height: 400px;
    }
    
    
    
    .about-content {
        margin-inline-start: 80px;
    }

    .team_content {
        width: 70%;
        margin: 0 auto;
    }

    .search {
        margin-inline-start: 65px;
    }

    ul.nav-list {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .dropdown button {
        margin-inline-end: 120px;
    }

    /*sub menu // sub menu */
    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%;
    }

    .sub-menu a:before {
        display: inline-block;
        content: "\f100";
        font-family: "FontAwesome";
        font-weight: 900;
        margin-inline-end: 10px;
        color: #000;
        transition: all .5s ease-in-out;
    }

    .hold-nav-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dd-trigger {
        display: none !important;
    }

    #nav-icon {
        display: none;
    }

    .nav-list > .linkMenu {
        position: relative;
        display: flex;
        align-items: center;
    }

    html[dir='rtl'] .nav-list > .linkMenu:not(:last-of-type) {
        margin-inline-end: 20px;
    }

    html[dir='ltr'] .nav-list > .linkMenu:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    nav > .nav-list > .linkMenu > a {
        display: flex;
        position: relative;
        overflow: hidden;
        font-weight: bold;
        font-size: 17px;
        padding: 10px 20px;
        color: #000;
        z-index: 1;
        transition: all .5s ease-in-out;
    }

    nav > .nav-list > .linkMenu.active a:not(.sub-menu a),
    nav > .nav-list > .linkMenu:hover a:not(.sub-menu a) {
        color: #000;
    }

    nav > .nav-list > .linkMenu:before,
    nav > .nav-list > .linkMenu.active:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        left: 0;
        border-radius: 10px;
        background: var(--main);
        transition: transform 0.5s;
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    }
    
    nav > .nav-list > .linkMenu:before {
        transform: scaleX(0);
    }
    

    nav > .nav-list > .linkMenu:hover::before,
    nav > .nav-list > .linkMenu.active:before {
        transform: scaleX(1);
    }

    html[dir='rtl'] nav > .nav-list > .linkMenu:before,
    html[dir='rtl'] nav > .nav-list > .linkMenu.active:before {
        transform-origin: left;
    }

    html[dir='rtl'] nav > .nav-list > .linkMenu:hover::before,
    html[dir='rtl'] nav > .nav-list > .linkMenu.active:before {
        transform-origin: right;
    }

    html[dir='ltr'] nav > .nav-list > .linkMenu:before,
    html[dir='ltr'] nav > .nav-list > .linkMenu.active:before {
        transform-origin: right;
    }

    html[dir='ltr'] nav > .nav-list > .linkMenu:hover::before,
    html[dir='ltr'] nav > .nav-list > .linkMenu.active:before {
        transform-origin: left;
    }


    .menu-item-has-children:after {
        transition: color .5s ease-in-out;
    }

    .menu-item-has-children:hover a:after {
        transform: rotateX(180deg);
        color: #000;
    }

    .menu-item-has-children a:not(.sub-menu a):after {
        display: inline-block;
        content: "\f078";
        font-family: "FontAwesome";
        font-weight: 900;
        margin-inline-start: 5px;
        transition: all .5s ease-in-out;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 9;
        min-width: 200px;
        background: rgb(255 255 255 / 50%);
        border-radius: 0 0 10px 10px;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
        transition: all 0.6s ease;
    }

    .sub-menu a {
        display: flex;
        align-items: center;
        color: #000;
        transition: all .5s ease-in-out;
    }

    .sub-menu a:hover,
    .sub-menu a:hover:before {
        color: var(--black);
    }

    .sub-menu li:not(:last-of-type) {
        margin-bottom: 10px;
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    .mobile-nav-list {
        display: none;
    }

}


@media (max-width: 992px) {
    
    .timeline-content:nth-child(odd) {
        top: 11px;
    }

    .about:before {
        display: none;
    }

    .about_img:after {
        display: none;
    }

    .contacts {
        padding: 25px;
    }

    .contacts [class*='col-']:not(:last-child) {
        margin-bottom: 20px;
    }

    .about:after {
        display: none;
    }

    .header-logo:after {
        width: 100%;
    }

    .logo {
        height: 140px;
    }

    .slider-title {
        width: 100%;
    }

    .main-slider .owl-nav {
        right: 5%;
    }

    .header-logo {
        position: relative;
        justify-content: space-between !important;
    }

    .menu-logo {
        width: 100px;
        position: relative;
    }

    .projects_card figcaption {
        bottom: 25px;
    }

    nav {
        display: none;
    }

    .mobile-nav-list {
        display: none;
    }

    .logo img {
        max-height: 75px;
    }

    #nav-icon {
        width: 60px;
        height: 30px;
        display: flex;
        justify-content: center;
        position: relative;
        right: 0;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
    }

    #nav-icon span {
        display: block;
        position: absolute;
        height: 4px;
        width: 60%;
        background-color: var(--main);
        border-radius: 9px;
        opacity: 1;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    #nav-icon span:nth-child(2) {
        top: 12px;
        transition: 0.4s ease-in-out;
    }

    #nav-icon span:nth-child(3) {
        top: 24px;
    }

    #nav-icon.open span:nth-child(1) {
        top: 13px;
        transform: rotate(135deg);
        background-color: var(--main);
    }

    #nav-icon.open span:nth-child(2) {
        opacity: 0;
        transition: 0.4s ease-in-out;
    }

    html[dir='ltr'] #nav-icon.open span:nth-child(2) {
        transform: translateX(100%);
    }

    html[dir='rtl'] #nav-icon.open span:nth-child(2) {
        transform: translateX(-100%);
    }

    #nav-icon.open span:nth-child(3) {
        top: 13px;
        transform: rotate(-135deg);
        background-color: var(--main);
    }

    .menu-item-has-children i {
        color: #FFF;
    }

    .mobile-nav-list::-webkit-scrollbar {
        width: 10px;
    }

    .mobile-nav-list::-webkit-scrollbar-track {
        background-color: #fff;
    }

    .mobile-nav-list::-webkit-scrollbar-thumb {
        background-color: var(--main);
        border-radius: 20px;
    }

    .mobile-nav-list {
        width: 280px;
        height: 100%;
        background: linear-gradient(30deg, rgba(211, 214, 215, 1) -30%, var(--main) 50%);
        display: block;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 9999;
        box-shadow: 0 0 5px rgb(0 0 0 / 30%);
        overflow-y: auto;
        transition: all .5s linear;
    }

    html[dir='rtl'] .mobile-nav-list {
        right: 0;
        transform: translateX(100%);
    }

    html[dir='ltr'] .mobile-nav-list {
        left: 0;
        transform: translateX(-100%);
    }

    .mobile-nav-list.active {
        z-index: 9999;
        transform: none !important;
    }

    html[dir='rtl'] .mobile-nav-list.active {
        right: 0;
    }

    html[dir='ltr'] .mobile-nav-list.active {
        left: 0;
    }

    .mobile-nav-list .menu-item a {
        position: relative;
        width: calc(100% - 34px);
        display: inline-block;
        padding: 15px;
        color: #FFF;
        font-weight: bold;
    }

    .mobile-nav-list .menu-item-has-children.menu-item a {
        width: calc(100% - 34px);
        display: inline-block;
    }

    .mobile-nav-list .sub-menu {
        display: none;
    }

    .mobile-nav-list .sub-menu a {
        display: inline-block;
        padding: 15px 25px;
        color: #FFF;
        transition: all .3s linear;
        font-weight: lighter;
    }

    .mobile-list {
        padding-top: 20px;
    }

    .rotate_me {
        transform: rotateX(180deg);
    }

    .mobile-nav-list .menu-item {
        position: relative;
        /*border-bottom: 1px solid #FFF;*/
        transition: all .5s linear;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        background: rgba(51, 51, 51, 0.7);
        z-index: 999;
        overflow: hidden;
        opacity: 0;
        transition: all .5s ease-in-out;
    }

    html[dir='rtl'] .menu-overlay {
        transform: translateX(-100%);
    }

    html[dir='ltr'] .menu-overlay {
        transform: translateX(100%);
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
        transition: all .5s ease-in-out;
        transform: none !important;
        z-index: 999;
    }

    .menu-item.active a {
        color: #FFF;
        font-weight: bold;
    }

    .menu-item a:before {
        transition: width 0.4s;
        position: absolute;
        top: 0;
        content: '';
        display: block;
        background-color: #FFF;
        height: 100%;
        width: 0;
    }

    html[dir='rtl'] .menu-item a:before {
        right: 0;
    }

    html[dir='ltr'] .menu-item a:before {
        left: 0;
    }

    .menu-item.active a:before {
        position: absolute;
        top: 0;
        content: '';
        display: block;
        background-color: #FFF;
        height: 100%;
        width: 5px;
    }

    html[dir='rtl'] .menu-item.active a:before {
        right: 0;
    }

    html[dir='ltr'] .menu-item.active a:before {
        left: 0;
    }

    .menu-item:not(.menu-item.active) a:not(.sub-menu a):hover:before {
        transition: width 0.4s;
        position: absolute;
        top: 0;
        content: '';
        display: block;
        background-color: var(--secondary);
        height: 100%;
        width: 5px;
    }

    html[dir='rtl'] .menu-item:not(.menu-item.active) a:not(.sub-menu a):hover:before {
        right: 0;
    }

    html[dir='ltr'] .menu-item:not(.menu-item.active) a:not(.sub-menu a):hover:before {
        left: 0;
    }

    .menu-item a {
        position: relative;
        transition: 0.5s ease;
    }

    .menu-item:hover a {
        animation: tracking-in-contract 0.4s linear both !important;
    }

    .menu-item img {
        margin-inline-end: 5px;
    }

    .tab-content [class*='col-'] {
        margin-bottom: 20px;
    }

    .clip_me {
        background: #FFF;
        height: 150px;
        clip-path: polygon(0% 0%, 215% 0%, -21% 124%, 0% 100%);
        border-bottom-left-radius: 55px;
        border-bottom-right-radius: 0;
    }

    .mainItem h3 {
        font-size: 3rem;
    }

    .timeline {
        overflow-x: scroll;
        width: 100%;
    }
    
    .timeline::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        border-bottom: 1px solid #f2f2f2; 
        border-top: 1px solid #f2f2f2;
    }
    
    .timeline::-webkit-scrollbar-track {
        background-color: #fff;
    }
    
    .timeline::-webkit-scrollbar-thumb {
        background-color: var(--main);
        border-radius: 8px;
    }

}


@media (max-width: 768px) {
    
    .timeline-content:nth-child(odd):after {
        top: 197px;
    }
    
    .about-content {
        margin-bottom: 20px;
    }
    
    .about .df {
        margin-bottom: 50px;
    }

    .about_img img {
        margin-bottom: 50px;
        margin-inline-start: 0px;
    }
    
    .mainItem:before {
        top: -81%;
    }

    .about_img {
        margin-top: 50px;
    }

    html[dir='ltr'] .timeline-title {
        font-size: 14px;
    }

    html[dir='ltr'] .about_img {
        transform: rotateY(180deg);
    }

    .mainItem h3 {
        font-size: 2.5rem;
    }

    .mainItem img {
        height: 67vh;
    }

    .tabs-nav li:not(:last-child) {
        margin-inline-end: 35px;
    }

    .why {
        background-size: 43% 40%;
    }

    .hold_why [class*='col-']:not(:last-child) {
        margin-bottom: 60px;
    }

    .services [class*='col-']:not(:last-child) {
        margin-bottom: 30px;
    }

    .partners .row {
        justify-content: center;
    }

}

@media (max-width: 576px) {
    
    .video_img img {
        height: 294px;   
    }
    
    html[dir='rtl'] .video_img:after {
        left: -10px;
    }
    
    html[dir='rtl'] .about_img:before {
        right: -10px;
    }
    
    html[dir='ltr'] .video_img:after {
        right: -10px;
    }
    
    html[dir='ltr'] .about_img:before {
        left: -10px;
    }
    
    .footer_logo {
        display: flex;
        justify-content: center;
    }
    
    .about-content {
        margin-bottom: 60px;
    }
    
    .timeline{
            justify-content: space-between;

    }
    .timeline-content:nth-child(odd) {
        top: 16px;
    }

    .mainItem:before {
        top: -17%;
        bottom: -578rem;
        left: 68%;
        right: -266rem;
        transform: rotate(135deg) translateZ(0);
        background: rgb(0 0 0 / 0.6);
        position: absolute;
        z-index: 1;
        content: '';
    }

    .main-slider .owl-dots {
        position: absolute;
        display: flex;
        margin-left: 16px;
        margin-bottom: 20px;
        bottom: 0;
        left: 0;
    }

    .team-slider .owl-dots {
        margin-top: 60px;
    }

    .team {
        padding: 70px 0 160px;
    }

    .mainItem img {
        height: 40vh;
    }

    .breadcrumb-links {
        font-size: 13px;
    }

    /*.header-logo:after {*/
    /*    width: 95%;*/
    /*    left: 50%;*/
    /*    transform: translateX(-50%);*/
    /*}*/
    .mainItem h3 {
        font-size: 2rem;
    }

    .mainItem p {
        font-size: 1.2rem;
    }

    .slider-title {
        position: relative;
        overflow: hidden;
    }

    .slider-title {
        margin-inline-start: 20px;
    }

    .main-slider .owl-nav button i {
        font-size: 20px;
        line-height: 38px;
    }

    .slider-body {
        padding-inline-end: 12px;
    }

    .logo {
        height: 65px;
    }

    .projects_card .project_tit {
        font-size: 2rem;
    }

    .forma {
        flex-direction: column;
    }

    .about_img {
        transform: none;
        opacity: 1;
    }

    .about_msg .row [class*='col-'] {
        margin-bottom: -10px;
    }

    .search-box-outer,
    .lang {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .search-box-outer img {
        height: 16px;
    }

    .lang {
        font-size: 15px;
    }

    .search-box-outer {
        margin-inline-start: 0;
    }

}


/****************** Content *******************/

.wpcf7-response-output {
    color: #46b450;
}

button {
        cursor: pointer;
}

.head-inside {
    position: relative;
}

.content .about-content,
.content .vision_content {
    color: #000;
}

.content .about-content {
    margin-inline-start: 0px;
}
.content .about_img:after {
    display:none;
}

.news-item {
    border: 1px solid #d6d6d6;
    transition: all .5s ease-in-out;
}

.news-item:hover {
    border: 1px solid var(--main);
    box-shadow: 0 0 29px rgb(0 0 0 / 42%);
}

.news-item:hover .serv_url a {
    background: var(--main);
    border: 1px solid transparent;
    color: #FFF;
}

.content .timeline-title {
    color: #000;
}

.content.clients .main_head .sec-tit {
    top: initial;
    background-color: #FFF;
    color: #000;
}

.content.clients {
    background-color: #FFF;
}

.content.clients .main_head {
    padding: initial;
}

.content .timeline:after {
    display: none;
}

.content .timeline-title {
    margin: 0 auto;
}

.content.about {
    background-color: #FFF;
    padding: 0;
}

.content.about:before,
.content .about_img:after {
    border-right: 1px solid #000;
}

.content.about:before {
    max-height: 66rem;
}

.content.about:after {
    border-left: 1px solid #000;
}

.content .main_head:before {
    display: none;
}

.content .services_icon {
    width: 95px;
    height: 95px;
    line-height: 95px;
}


.news-item-url a {
    color: #000;
    border: 1px solid #000;
    padding: 5px 30px;
    border-radius: 50px;
}

.content .services_icon {
    margin-bottom: 0;
}

.head-inside nav > .nav-list > .linkMenu > a {
    color: #525252;
}

.content {
    margin: 30px 0;
}

.content .sec-tit {
    margin-bottom: 20px;
}

.content.slider {
    background: transparent;
}

.content.services:before {
    display: none;
}

.content .serv_cards {
    box-shadow: none;
    background-color: transparent;
}

.news-item {
    height: 100%;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}

.news-item-thumb {
    margin-bottom: 15px;
}

.news-item-tit {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 25px;
}

.news-item-des {
    margin-bottom: 20px;
}

.news-item-url {
    display: inline-flex;
}

.news-item-thumb img {
    max-height: 290px;
    border-radius: 10px;
}

.news-item .arrow_btn i {
    background: transparent;
    color: #000;
    border: 1px solid var(--sky);
    transition: all .5s ease-in-out;
}

.news-item:hover .arrow_btn i {
    background: var(--black);
    color: #FFF;
    border: 1px solid transparent;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    background-color: var(--secondary);
}

.wp-pagenavi {
    position: relative;
    z-index: 999;
}

.wp-pagenavi span.current {
    font-weight: bold;
    background: var(--main);
    color: #FFF;
    border-color: transparent;
    transform: scale(1.2);
    margin-inline: 5px;
}

.wp-pagenavi span {
    display: inline-flex;
    cursor: pointer;

}

.wp-pagenavi a {
    color: #FFF;
    background: #c2c2c2;
}

.property-cat {
    display: inline-block;
    margin: 10px 0;
}

.property-cat a {
    margin-inline-start: 10px;
    border-radius: 5px;
    color: #000;
}

.news-item-thumb img {
    width: 100%;
}

.property-cat a {
    margin-inline-end: 5px;
}

.content [class*='col-'] {
    margin-bottom: 20px;
}

.news-item .cont_btn i {
    margin-inline: 0;
}

.content .partner_imgs {
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
    margin-inline: 0 !important;
}

.sec-tit .date,
.sec-tit .date i {
    font-size: 16px;
    text-align: start;
}

.wp-pagenavi {
    position: relative;
    z-index: 999;
}

.wp-pagenavi span.current {
    font-weight: bold;
    background: var(--main);
    color: #FFF;
    border-color: transparent;
    transform: scale(1.2);
    margin-inline: 5px;
}

.wp-pagenavi span {
    display: inline-flex;
    cursor: pointer;

}

.wp-pagenavi a {
    color: #FFF;
    background: #c2c2c2;
}

.form {
    box-shadow: 0 0 8px rgb(0 0 0 / 30%);
    padding: 30px;
}

.form7 {
    position: relative;
    z-index: 99;
    margin-top: 10px;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* contact us arrow */

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 3s linear forwards;
    animation-iteration-count: 1;
    animation-delay: 1s;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.dashed {
    stroke-dasharray: 5, 12;
}

#arrow {
    animation: arrow 2s linear forwards;
    opacity: 0;
}

@keyframes arrow {
    to {
        opacity: 1;
    }
}

.ifrm {
    border: none;
    width: 100%;
    margin-top: 50px;
}


.graph__wrapper {
    display: inline-block;
    position: absolute;
}

html[dir='rtl'] .graph__wrapper {
    right: 0;
    transform: rotateY(180deg);
}

html[dir='rtl'] .gg {
    top: 47rem;
}

html[dir='ltr'] .graph__wrapper {
    left: 0;

}

html[dir='rtl'] .gg {
    top: 49.5rem;
}

html[dir='rtl'] .emp {
    bottom: 40rem !important;
}

html[dir='ltr'] .emp {
    bottom: 40rem !important;
}

.content.services .cont_btn i {
    position: relative;
    opacity: 1;
    visibility: visible;
    bottom: 0;
    transform: none;
}

/* // contact us arrow */

.job-name {
    background: var(--main);
    color: #FFF;
    width: 100%;
    padding: 10px;
    text-align: center !important;
    cursor: default;
    font-size: 18px;
    font-weight: bold;
}

.custom-file-label {
    padding: 0px 80px 0 0;
    text-align: center;
    line-height: calc(2.25rem + 2px);
}

/* fly send icon */
.send-btn {
    width: 140px;
    height: 45px;
    line-height: 45px;
    border: none;
    background-color: var(--main);
    font-size: 20px;
    position: relative;
    transition: all 350ms ease-in-out;
    cursor: pointer;
    color: #FFF;
}

.send-btn i {
    color: #0096ff;
}

.send-btn.checked {
    box-shadow: 200px 0 0 #50c878 inset, 0 2px 5px #50c878a6;
}

.circle {
    position: absolute;
    width: 100px;
    height: 100px;
    /* border: 1px solid #000; */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plane-icon {
    position: absolute;
    left: -0.5em;
    top: 50%;
    transform: translateY(-50%) rotate(-25deg);
}

.rotateCircle {
    animation: rotate 3s ease-in-out 1;
}

.hide {
    display: none;
    visibility: hidden;
}

@keyframes rotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/*// fly send icon*/


.form-group span {
    color: red;
}

.form-group label {
    width: 100%;
}

html[dir='ltr'] .handle-form {
    direction: ltr;
}

html[dir='ltr'] .wpcf7-form-control {
    direction: ltr;
    text-align: left;
}

html[dir='rtl'] .wpcf7-form-control {
    direction: rtl;
    text-align: right;
}

html[dir='ltr'] .handle-form .more-url {
    direction: rtl;
}

html[dir='ltr'] .handle-form .more-url span {
    margin-inline-start: 35px;
    margin-inline-end: 0;
}

.content-img figure {
    height: 185px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    box-shadow: 0 0 8px rgb(0 0 0 / 30%);
    transition: all .5s ease-in-out;
}

/* /// content */


.property-cat {
    margin-bottom: 20px;
}

.property-cat span:not(:last-of-type) {
    margin-inline-end: 10px;
}

.property-cat span {
    padding: 2px 6px;
    background-color: #fff;
    border: 1px solid #D2D2D7FF;
    border-radius: 4px;
    color: #4A4C4FFF;
    font-size: 14px;
}

.property-tit {
    margin-bottom: 30px;
    color: #000;
}

.property-exp {
    font-size: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--main);
}

.property-components {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--main);
}

.property-componentItem {
    margin-bottom: 15px;
}

.property-componentItem-icon img {
    max-height: 24px;
}

.property-componentItem-num {
    color: #000;
    font-size: 22px;
    font-weight: bold;
}

.property-componentItem-tit {
    color: #737373;
    font-size: 24px;
    font-weight: bold;
}

.property-sec-tit {
    color: #000;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
}

.property-additionalItem-tit {
    margin-bottom: 10px;
}

.property-additionalItem-info {
    padding: 10px;
    font-size: 18px;
}

.property-dataIcon {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--main);
}

.property-dataIconItem {
    margin-bottom: 15px;
}

.property-dataIconItem-icon img {
    max-height: 24px;
}

.property-dataIconItem-tit {
    font-size: 18px;
}

.property-address-wrap,
.property-additional,
.property-map-wrap {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--main);
}

.property-map iframe {
    display: block;
    width: 100%;
    height: 390px;
}

.hold-sidebar {
    position: sticky;
    top: 0;
    z-index: 9;
}

.property-sidebar {
    padding: 35px 25px;
    background-color: #fff;
    border: 1px solid #D2D2D7FF;
    box-shadow: rgb(0 0 0 / 6%) 0 9px 17px,
    rgb(0 0 0 / 4%) 0 2px 5px,
    rgb(0 0 0 / 5%) 0 1px 2px,
    rgb(0 0 0 / 7%) 0 0.4px 0.7px;
    border-radius: 10px;
}

.property-price {
    margin-bottom: 15px;
}

.property-contactDetails {
    margin-bottom: 20px;
}

.property-contact-linkItem a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 10px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.property-contact-linkItem a i {
    margin-inline-end: 5px;
}

.property-contact-linkItem-whatsapp {
    border: 1px solid #4CAF50FF;
    color: #4CAF50FF;
}

.property-contact-linkItem-phone {
    color: #fff;
    background-color: var(--main);
}

.property-contact-linkItem-whatsapp:hover {
    color: #4CAF50FF;
    background-color: #ECF6ECFF;
}

.property-contact-linkItem-phone:hover {
    color: #fff;
    background-color: var(--main);
}

/******************************/
.property-item {
    border-radius: 10px;
    border: 1px solid var(--main);
    margin-bottom: 30px;
}

.property-item-thumb {
    height: 240px;
}

.property-item-thumb img {
    max-height: 100%;
}

.property-item-body-wrap {
    padding: 15px;
}

.property-item-body {
    margin-bottom: 15px;
}

.property-item-tit {
}

.property-item-tit a {
    font-size: 25px;
    color: var(--main);
}

.property-item-exp {
    margin-bottom: 15px;
}

.property-item-component:not(:last-of-type) {
    margin-inline-end: 10px;
}

.property-item-component {
    margin-bottom: 10px;
}

.property-item-component-icon {
    margin-inline-end: 5px;
}

.property-item-component-icon img {
    max-height: 26px;
    filter: invert(65%) sepia(72%) saturate(299%) hue-rotate(1deg) brightness(102%) contrast(85%);

}

.property-item-component-num {
    font-weight: bold;
    color: #000;
}

.property-item-publish-wrap {
    color: var(--main);
}

.property-item-footer {
    padding: 15px 0;
    border-top: 1px solid var(--main);
}

.property-item-price {
    color: #000;
    font-size: 24px;
    font-weight: bold;
}

.property-item-contact .property-contact-linkItem:not(:last-of-type) {
    margin-inline-end: 10px;
}

.property-item-contact .property-contact-linkItem i {
    margin: 0;
}

.property-data .item img {
    height: 400px;
}

.owl-thumb-item img {
    width: 70px;
    height: 70px;
    border-radius: 0;
    margin: 5px;
}

.owl-thumb-item {
    display: inline-block;
    border: 0;
    background: transparent;
    opacity: .5;
    transition: linear .4s;
}

.owl-thumb-item.active {
    opacity: 1;
    transition: linear .4s;
}

.property-data .item img {
    height: 400px;
}

.content .property-wrap .property-cat > span {
    background: var(--main);
    color: #FFF;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    margin-inline-end: 10px;
}

.basic-slider .owl-stage-outer {
    margin-bottom: 0;
}

.justread .wpcf7-not-valid-tip {
    display:none !important;
}