* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pt-0 {
    padding-top: 0 !important;
}

html {
    scroll-behavior: smooth;
}

:target::before {
    content: "";
    display: block;
    height: 60px;
    /* fixed header height*/
    margin: -60px 0 0;
    /* negative fixed header height */
}

html[dir=rtl] body {
    font-family: "IBM Plex Sans Arabic", sans-serif;
}

html:not([dir=rtl]) body {
    font-family: "IBM Plex Sans Arabic", sans-serif;
}

body {
    margin: 0;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-weight: 400;
    font-style: normal;
    overflow: hidden;
}

body.overflowVisible {
    overflow: visible;
}

body.overflowHidden {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    margin: 0;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

a,
button {
    color: black;
    text-decoration: none;
    display: inline-block;
    padding: 0;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

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

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

::-webkit-scrollbar {
    width: 8px;
    height: 3px;
}

::-webkit-scrollbar-thumb {
    background: #89772E;
    border-radius: 12px;
}

::-webkit-scrollbar-track {
    background-color: #efefef;
}

.toTopBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all linear 0.3s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.toTopBtn::after {
    content: "";
    position: absolute;
    transform: scale(0);
    width: 100%;
    height: 100%;
    background-color: #89772E;
    z-index: -1;
    transition: all linear 0.2s;
    border-radius: 50%;
}

.toTopBtn:hover .icon {
    color: #fff;
}

.toTopBtn:hover::after {
    transform: scale(1);
}

@media only screen and (max-width: 767px) {
    .toTopBtn {
        width: 35px;
        height: 35px;
    }
}

.toTopBtn .icon {
    font-size: 16px;
    color: #89772E;
    transition: all linear 0.2s;
}

@media only screen and (max-width: 767px) {
    .toTopBtn .icon {
        font-size: 14px;
    }
}

.showToTop {
    opacity: 1;
    visibility: visible;
}

.container {
    width: 100%;
    padding-inline: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media only screen and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1350px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(237, 52, 140, 0.85);
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    transition: opacity 0.5s ease;
}

#preloader.opacity0 {
    opacity: 0;
}

#preloader.d-none {
    display: none;
}

.loader {
    width: 35px;
    aspect-ratio: 1;
    --_g: no-repeat radial-gradient(farthest-side, #fff 94%, #0000);
    background: var(--_g) 0 0, var(--_g) 100% 0, var(--_g) 100% 100%, var(--_g) 0 100%;
    background-size: 40% 40%;
    animation: move 0.5s infinite;
}

@keyframes move {
    100% {
        background-position: 100% 0, 100% 100%, 0 100%, 0 0;
    }
}

.btn-hover {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all linear 0.4s;
}

.btn-hover:hover::before {
    top: -35%;
    background-color: #315D42;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-hover::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: #315D42;
    border-radius: 50%;
    display: block;
    transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.general-title {
    font-size: 36px;
    color: #000;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .general-title {
        font-size: 30px;
        margin-bottom: 30px;
		text-align:center !important;
    }
}

.header {
    background-color: #fff;
    transition: all linear 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.header-content {
    width: 100%;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all linear 0.2s;
}

@media only screen and (max-width: 767px) {
    .header-content {
        padding: 20px 0;
        flex-wrap: nowrap;
    }
}

.logo {
    display: flex;
    justify-content: flex-start;
    position: relative;
    width: 18.7%;
    position: relative;
}

.logo .fixed-logo {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .logo {
        width: auto;
    }
}

.logo img {
    width: 212px;
    transition: all linear 0.2s;
}

@media only screen and (max-width: 767px) {
    .logo img {
        width: 140px;
    }
}

@media only screen and (max-width: 390px) {
    .logo img {
        width: 125px;
    }
}

.download-lang-wrapper {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

@media only screen and (max-width: 991px) {
    .download-lang-wrapper .language {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .download-lang-wrapper {
        column-gap: 20px;
    }
}

@media only screen and (max-width: 390px) {
    .download-lang-wrapper {
        column-gap: 15px;
    }
}

.language {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    transition: all linear 0.2s;
    text-transform: uppercase;
    font-size: 16px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
}

.language::after {
    content: "";
    position: absolute;
    transform: scale(0);
    width: 100%;
    height: 100%;
    background-color: #315D42;
    z-index: -1;
    transition: all linear 0.2s;
    border-radius: 50%;
}

.language:hover {
    background-color: transparent;
}

.language:hover::after {
    transform: scale(1);
}

@media only screen and (max-width: 991px) {
    .language {
        background-color: rgba(0, 0, 0, 0.4);
    }
}

html[dir=rtl] .language {
    font-family: "SFCompactDisplay";
}

.download-btn {
    min-width: 190px;
    height: 45px;
    border-radius: 22px;
    background-color: #315D42;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
}

.header:not(.fixed-header) .download-btn.btn-hover{
    z-index: inherit;
}

.download-btn:hover {
    background-color: #89772E;
    color:#ffffff;
}

@media only screen and (max-width: 767px) {
    .download-btn {
        min-width: unset;
        font-size: 15px;
        height: 40px;
        padding-inline: 15px;
    }
}

.navigation {
    transition: all linear 0.3s;
}

@media only screen and (max-width: 991px) {
    .navigation {
        overflow-y: auto;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 20px;
        background-color: #fff;
        transition: 0.3s;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.9);
        transform-origin: center;
    }
}

.big-menu {
    column-gap: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 991px) {
    .big-menu {
        flex-direction: column;
        margin: 65px 0 0 0;
        align-items: center;
        row-gap: 20px;
    }
}

.big-menu>li>a {
    font-size: 18px;
    color: #000000;
    text-align: center;
    text-transform: capitalize;
    transition: all linear 0.2s;
}

.big-menu>li>a:hover {
    color: #000;
}

@media only screen and (max-width: 991px) {
    .big-menu>li>a {
        display: flex;
        color: #000;
        font-size: 20px;
    }

    .big-menu>li>a:hover {
        color: #89772E;
    }
}

@media only screen and (min-width: 992px) {
    .open-nav-btn {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .open-nav-btn {
        display: flex;
    }

    .open-nav-btn .bars-icon {
        font-size: 24px;
        color: #000;
    }
}

@media only screen and (min-width: 992px) {
    .mob-upper-nav {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .mob-upper-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mob-upper-nav .language .icon {
        color: #000;
        font-size: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .open-sidebar {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}

@media only screen and (max-width: 991px) {
    .close-nav-btn {
        display: flex;
    }

    .close-nav-btn .close-icon {
        font-size: 24px;
        color: #000;
    }
}

.mainBanner-parent {
    /* min-height: 787px; */
    /* max-height: 100vh; */
    height: 100vh;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    position: relative;
    overflow: hidden;
}



.mainBanner-parent .mainbanner-img {
    /* position: absolute; */
    /* inset: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* z-index: 1; */
}

@media only screen and (max-width: 767px) {

    .mainBanner-parent .mainbanner-img,
    .mainBanner-parent {
        min-height: 350px;
        height: 100%;
		object-fit:contain;
    }
}

.banner-desc {
    display: flex;
    /* position: relative; */
    z-index: 2;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    margin-inline: auto;
}

@media only screen and (max-width: 991px) {
    .banner-desc {
        width: 100%;
        padding-inline: 20px;
    }
}

.banner-desc .main-title {
    font-size: 47px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
    text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
    .banner-desc .main-title {
        font-size: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-desc .main-title {
        font-size: 35px;
        margin-bottom: 20px;
    }
}

.main-btn {
    min-width: 253px;
    height: 60px;
    border-radius: 30px;
    background-color: #fff;
    font-size: 24px;
    padding-inline: 40px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
}

.main-btn:hover {
    color: #fff;
}

.main-btn.pink {
    min-width: 253px;
    height: 60px;
    border-radius: 30px;
    background-color: #89772E;
    font-size: 24px;
    padding-inline: 40px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.main-btn.pink:hover {
    color: #fff;
}

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

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .main-btn {
        min-width: unset;
        font-size: 22px;
        height: 55px;
    }
}


.brands {
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.149);
    direction: ltr;
}

@media only screen and (max-width: 767px) {
    .brands {
        padding: 10px 0;
    }
}

.horizontal-marquee-inner {
    gap: 60px;
    margin: 0 30px;
}

@media only screen and (max-width: 767px) {
    .horizontal-marquee-inner {
        gap: 40px;
        margin: 0 20px;
    }
}

.brand-item:hover img {
    filter: unset;
}

.brand-item img {
    width: auto;
    max-width: 80px;
    object-fit: contain;
    transition: filter ease-in-out 0.2s;
    filter: grayscale(100%);
}

.advantages {
    padding-top: 130px;
    padding-bottom: 150px;
}

@media only screen and (max-width: 767px) {
    .advantages {
        padding-block: 50px;
    }
}

.advantages-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-inline: 15px;
    gap: 60px;
}

@media only screen and (max-width: 767px) {
    .advantages-wrapper {
        padding-inline: 0;
    }
}

.advantage-item {
    display: flex;
    /* gap: 15px;*/
    /* text-align: center; */
    position: relative;
    height: 100%;
    /* display: block; */
    transition: 0.3s;

    &:before {
        content: '';
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) -80%, rgba(0, 0, 0, 0.93) 100%);
        position: absolute;
        inset: 0;
        transition: 0.3s;
        pointer-events: none;
        opacity: 0;
    }




    &:after {
        content: '';
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.73) 100%);
        position: absolute;
        inset: 0;
        transition: 0.3s;
        pointer-events: none;
    }

    &:hover {

        &:after {
            opacity: 0;
            transition: 0.3s;
        }

        &:before {
            opacity: 1;
            transition: 0.3s;
        }

        .title-desc {
            opacity: 1;
            height: 130px;
            transition: 0.3s;

        }
    }
}

#about {
    .advantage-item {

        text-align: start;
    }
}

.advantages:not(.about-us-wrapper) {
    padding-top: 0;

    /*.advantage-item {*/
    /*    @media all and (min-width: 769px) {*/
    /*        width: calc(50% - 30px);*/
    /*    }*/
    /*}*/
}

.advantage-item .img {
    /*margin-top: 8px;*/
    /*width: 32px;*/
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    /* margin-bottom: 18px; */
}

@media only screen and (max-width: 767px) {
    .advantage-item .img {
        margin-top: 0;
    }
}

.advantage-item .title {
    font-size: 18px;
    margin-bottom: 15px;
    position: absolute;
    bottom: 20px;
    inset-inline: 0;
    padding-inline: 20px;
}

@media only screen and (max-width: 767px) {
    .advantage-item .title {
        gap: 10px;
    }
}

.advantage-item .title .title-text {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .advantage-item .title .title-text {
        font-size: 22px;
    }
}

.about-sec {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
    margin-bottom: 0;
    color: #000;

}

.advantage-item .title-desc {
    /*   max-width: 314px; */
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
    margin-bottom: 0;
    color: #fff;
    opacity: 0;
    height: 0;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .advantage-item .title-desc {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.7;
    }
}

.clients {
    padding-bottom: 140px;
}

.client-item {
    overflow: hidden;
    padding-bottom: 1rem;
}

@media only screen and (max-width: 767px) {
    .clients {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .client-item {
        text-align: center;
    }
}

.clients-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 65px;
}

@media only screen and (max-width: 991px) {
    .clients-wrapper {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .clients-wrapper {
        row-gap: 4px;
    }
}

.client-title {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    text-align: start;
    margin-top: 15px;
    display: inline-block;
    position: relative;
    text-transform: capitalize;
    z-index: 1;

    a {
        transition: all linear 0.2s;
        color: #fff;

    }

}

.client-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
    margin-bottom: 0px;
    color: rgb(102, 102, 102);
}

@media only screen and (max-width: 767px) {
/*     .client-title {
        font-size: 30px;
        margin-bottom: 20px;
    } */
	
	.client-desc .desc_container{
		display:none;
	}
}

.client-title:hover {
    a {
        color: #89772E;

    }
}

/* .client-title:hover::after {
    height: 4px;
    background-color: #89772E;
} */

/* .client-title::after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #000000;
    transition: all linear 0.2s;
} */

.client-img-anchor {
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
}

.client-img-anchor .client-img {
    width: 100%;
    transition: all 0.3s ease-in-out;
    aspect-ratio: 645/450;
    height: 100%;
    object-fit: cover
}

.client-img-anchor:hover .client-img {
    transform: rotate(2deg) scale(1.1);
}

.client-anchors {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    flex-wrap: wrap;
    /*padding-inline-start: 5px;*/
    /* position: absolute; */
    /* bottom: 10px; */
    /* inset-inline-start: 10px; */
}

@media only screen and (max-width: 767px) {
    .client-anchors {
        /* margin-top: 20px; */
        justify-content: center;
        /* gap: 5px; */
    }
	
	.client-title{
		text-align:center !important;
	}
}

.client-anchors .anchor {
    z-index: 1;
    /* height: 30px; */
    font-size: 12px;
    /* border-radius: 23px; */
    /* background-color: #ffffff; */
    /* border: 1px solid #cccccc; */
    color: #cbcbcb;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-inline: 15px; */
    transition: all linear 0.2s;

    &:not(:last-child) {
        margin-right: 2px;

        &:after {
            content: ",";
            margin-right: 2px;
        }
    }
}

@media only screen and (max-width: 767px) {
    .client-anchors .anchor {
        /* height: 26px; */
        font-size: 11px;
        /* padding-inline: 10px; */
    }
}

/* .client-anchors .anchor:hover {
    background-color: #89772E;
    color: #fff;
    border-color: #89772E;
    box-shadow: 0 0 0 5px #89772E5f;
} */

.loading-img {
    overflow: hidden;
}

.loading-img img {
    opacity: 0 !important;
    filter: blur(40px);
}

.loaded-img img {
    opacity: 1;
    filter: blur(0);
}

.statistics {
    padding: 36px;
    margin-top: 20px;
    margin-bottom: 90px;
    background: #F3F5F4;
}

@media only screen and (max-width: 767px) {
    .statistics {
        padding-bottom: 60px;
    }
}

.stats-wrapper {

    display: flex;
    justify-content: center;
    column-gap: 45px;
    row-gap: 30px;
    flex-wrap: wrap;

}

@media only screen and (max-width: 1299px) {
    /*.stats-wrapper {*/
    /*    padding-inline: 0;*/
    /*}*/
}

@media only screen and (max-width: 767px) {
    .stats-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

.stat-item {
    width: 250px;
    padding: 15px;
    min-height: 142px;
    /*border-top-left-radius: 10px;*/
    /*border-top-right-radius: 10px;*/
    /*background-color: #ffffff;*/
    /*border: 1px solid #cccccc;*/
    /*border-bottom-width: 5px;*/
    /*border-bottom-color: #ababab;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all ease-in-out 0.3s;
    justify-content: center;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .stat-item {
        width: 170px;
    }
}

@media only screen and (max-width: 600px) {

    .stat-item {
        width: 100% !important;
        min-height: 120px;
        gap: 5px;
    }

}

/*.stat-item::after {*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: calc(100% + 5px);*/
/*    border: 1px solid #89772E;*/
/*    border-bottom: 5px solid #89772E;*/
/*    position: absolute;*/
/*    border-top-left-radius: 10px;*/
/*    border-top-right-radius: 10px;*/
/*    inset: 0;*/
/*    transform: translateY(-10px);*/
/*    transition: all ease-in-out 0.3s;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*}*/

/*.stat-item:hover {*/
/*    border-color: transparent;*/
/*}*/

/*.stat-item:hover::after {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: translateY(0);*/
/*}*/

/*.stat-item:hover .number,*/
/*.stat-item:hover .text {*/
/*    color: #89772E;*/
/*}*/

.stat-item .number {
    font-size: 60px;
    color: #89772E;
    font-weight: 700;
    line-height: normal;
    transition: all linear 0.2s;
    margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
    .stat-item .number {
        font-size: 30px;
    }
}

.stat-item .text {
    font-size: 18px;
    color: #000000;
    margin-bottom: 0;
    transition: all linear 0.2s;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .stat-item .text {
        font-size: 16px;
    }
}

.contact-form {
    padding-block: 80px;
    background: url("../images/contact-bg.jpg") center center / cover no-repeat;
}

@media only screen and (max-width: 767px) {
    .contact-form {
        padding-bottom: 60px;
    }
}

.contact-form .general-title {
    margin-bottom: 40px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .contact-form .general-title {
        margin-bottom: 30px;
    }
}

.form {
    max-width: 550px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
}

.input-holder {
    position: relative;
}

.input-holder .input,
.input-holder .textarea,
.input-holder select {
    width: 100%;
    padding-inline-start: 25px;
    padding-inline-end: 20px;
    font-size: 20px;
    height: 55px;
    border-radius: 27px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    outline: none !important;
    transition: all linear 0.2s;
}

.input-holder .input:focus,
.input-holder .textarea:focus {
    border-color: #89772E;
}

/* .input-holder .input:focus+.label,
.input-holder .textarea:focus+.label {
  top: 0;
  background-color: #ffffff;
  padding: 0 6px;
  color: #89772E;
} */

.input-holder .textarea {
    resize: none;
    padding-top: 15px;
    height: 120px;
}
.input-holder select {
    color: #808080;
}

.input-holder .label {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    z-index: 1;
    inset-inline-start: 25px;
    font-size: 12px;
    pointer-events: none;
    color: #89772E;
    padding: 0 6px;
    background-color: #fff;
    transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input-holder .input:placeholder-shown+.label,
.input-holder .textarea:placeholder-shown+.label {
    top: 50%;
    background-color: transparent;
    color: #808080;
    padding: 0;
}

.input-holder.textarea-holder {
    grid-column: 1/3;
}

@media only screen and (max-width: 767px) {
    .input-holder.textarea-holder {
        grid-column: unset;
    }
}

.input-holder.textarea-holder .label {
    top: 0;
}

.input-holder .textarea:placeholder-shown+.label {
    top: 25px;
}

.inputs-wrapper {
    display: block;

    /*   grid-template-columns: repeat(2, 1fr); */
    /*   column-gap: 30px;
    row-gap: 20px; */

    .input-holder {
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .inputs-wrapper {
        grid-template-columns: 1fr;
    }
}

html[dir=rtl] .input[type=tel] {
    text-align: right;
}

.submitBtn {
    text-transform: capitalize;
    margin-top: 30px;
    padding-inline: 40px;
    min-width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background-color: #89772E;
    font-size: 26px;
    margin-inline: auto;
    color: #ffffff;
    transition: all linear 0.2s;
}

@media only screen and (max-width: 767px) {
    .submitBtn {
        min-width: 160px;
        height: 50px;
        font-size: 22px;
    }
}

.footer {
    /*background-image: url(../images/footer-bg.jpg);*/
    /*background-position: center;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    padding: 85px 0;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .footer {
        padding-top: 45px;
        padding-bottom: 40px;
    }
}


html:not([dir=rtl]) {
    .floating-contacts {
        right: unset;
        left: 10px;
    }

    .advantage-item {
        &:hover {
            .title-desc {
                height: 180px;
            }
        }
    }
}

html[dir=rtl] {

    .wpcf7 input[type="url"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"] {
        direction: rtl;
    }
}

.floating-contacts {
    position: fixed;
    cursor: pointer;
    z-index: 999999;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;

    a {
        border-radius: 50px;
        color: #fff;
        background-color: #89772E;
        font-size: 16px;
        font-weight: 500;
        position: relative;
        outline: none;
        padding: 13px 21px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        gap: 5px;
        animation: pulse 2s infinite;

        &:hover {
            background-color: #315D42;
            color: #fff;
            animation: none;
        }

        &.whatsapp-floating {
            background-color: #25d366;
            animation: pulse-green 2s infinite 0.5s;

            &:hover {
                background-color: #315D42;
                animation: none;
            }
        }
    }
}

@media (max-width: 767px) {
    .floating-contacts {
        a {

            font-size: 14px;
            font-weight: normal;

            padding: 7px 13px;

        }
    }
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(137, 119, 46, 0.91);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(137, 119, 46, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(137, 119, 46, 0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 101, 0.9);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(225, 78, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(225, 78, 29, 0);
    }
}


.contact-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 7px;
    width: 100%;
    margin-top: 40px;

    a {
        &:hover {
            color: #89772E;
        }
    }
}

.contact-methods li {
    display: flex;
}

.contact-methods .address,
.contact-methods .phone-anchor,
.contact-methods .mail-anchor {
    font-size: 18px;
    color: #000;
}

@media only screen and (max-width: 767px) {

    .contact-methods .address,
    .contact-methods .phone-anchor,
    .contact-methods .mail-anchor {
        font-size: 16px;
    }
}

.contact-methods .phone-anchor,
.contact-methods .mail-anchor {
    transition: all ease-in-out 0.2s;
}



.contact-methods a.mail-anchor {
    font-family: "SFCompactDisplay";
}

.lower-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .lower-footer {
        flex-direction: column;
        gap: 15px;
        justify-content: unset;
    }

    .lower-footer .footer-logo {
        display: none;
    }
}

.footer-logo img {
    max-width: 212px;
}

@media only screen and (max-width: 767px) {
    .footer-logo img {
        max-width: 180px;
    }
}

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.social-wrapper .icon {
    font-size: 26px;
    color: #000;
    transition: all ease-in-out 0.2s;
}

.social-wrapper a:hover .icon {
    color: #89772E;
}

.tasawk {
    align-items: center;
    display: flex;
    font-size: 14px;

    color: #808080;
    font-weight: 300;
    justify-content: center;
    margin-top: 60px;
}

.tasawk img {
    margin: 0 6px;
}

.fixed-header,
.inner-page header {
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
}

.fixed-header .fixed-logo,
.inner-page header .fixed-logo {
    display: block;
    width: 180px;
}

@media only screen and (max-width: 767px) {

    .fixed-header .fixed-logo,
    .inner-page header .fixed-logo {
        width: 140px;
    }
}

.fixed-header .main-logo,
.inner-page header .main-logo {
    display: none;
    width: 180px;
}

.fixed-header .download-btn,
.inner-page header .download-btn {
    background-color: #315D42;
    color: #fff;
}

.fixed-header .download-btn.btn-hover::before,
.inner-page header .download-btn.btn-hover::before {
    background-color: #89772E;
}

.fixed-header .language:hover,
.inner-page header .language:hover {
    background-color: transparent;
}

.fixed-header .open-nav-btn .bars-icon,
.inner-page header .open-nav-btn .bars-icon {
    color: #000;
}

.fixed-header .header-content,
.inner-page header .header-content {
    padding: 15px 0;
}

@media only screen and (max-width: 767px) {

    .fixed-header .header-content,
    .inner-page header .header-content {
        padding: 15px 0;
    }
}

.fixed-header .big-menu>li>a,
.fixed-header .language .icon,
.inner-page header .big-menu>li>a,
.inner-page header .language .icon {
    color: #000;
}

.fixed-header .big-menu>li>a:hover,
.fixed-header .language .icon:hover,
.inner-page header .big-menu>li>a:hover,
.inner-page header .language .icon:hover {
    color: #89772E;
}

html:not([dir=rtl]) .banner-desc .main-title {
    line-height: 1.2;
}


html:not([dir=rtl]) .stat-item {
    justify-content: flex-start;
    gap: 10px;
}

html:not([dir=rtl]) .stat-item .text {
    line-height: 1.1;
}

@media only screen and (max-width: 767px) {
    html:not([dir=rtl]) .stat-item {
        padding-inline: 10px;
        justify-content: center;
    }

    html:not([dir=rtl]) .stat-item .text {
        line-height: 1.2;
    }

    html:not([dir=rtl]) .advantage-item .title-desc {
        line-height: 1.5;
    }
}

/*# sourceMappingURL=main.css.map */

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: #00000066;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 13px;
    transition: 0.3s;

    &:after {
        font-size: 15px;
    }

    &:hover {
        background: #89772E;
    }
}

.swiper-pagination-bullet-active {
    background: #89772E;
}

.about-us-wrapper {
    padding-bottom: 60px;
    padding-top: 60px;

    .title-desc {
        max-width: 100% !important;
        /*text-align: center;*/
    }

    .general-title {
        margin-bottom: 45px;
        text-align: start;
    }
}

.button-wrapper {
    position: relative;
    display: flex;
    /* Ensures the wrapper fits the button */
}

.wpcf7-spinner {
    position: absolute;
    top: calc(50% + 3px);
    right: calc(50% + 29px);
    z-index: 1;
}

.wpcf7-form.submitting .wpcf7-submit {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.8;
}

.common-wrapper {
    padding-top: 140px;
    padding-bottom: 140px;

    @media only screen and (max-width: 767px) {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

.service-gallery {
    text-align: center;

    img {
        width: 100%;
        margin-bottom: 20px;
        display: block;
    }
}

.about-wrapper {
    display: flex;
    gap: 110px;

    .about-img {
        flex-shrink: 0;
    }

    @media only screen and (max-width: 1024px) {

        gap: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .about-img {
        flex-shrink: 1;

        img {
            width: 100%;
            height: auto;
        }
    }

    .stat-item {
        width: 250px;
    }
}

#services {
    .swiper {
        padding-bottom: 50px;
    }

}

.cta-section {
    background: #315D42;
    padding: 90px;

    @media only screen and (max-width: 767px) {
        padding: 50px 0;
    }

    .cta-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;

        @media only screen and (max-width: 768px) {
            flex-direction: column;
            gap: 50px;
            justify-content: center;

            .cta-title {
                text-align: center;
            }
        }

    }

    .cta-title {
        color: #fff;
        font-size: 36px;
        font-weight: 500;

        @media only screen and (max-width: 767px) {
            text-align: center;
        }

    }

    .main-btn {
        flex-shrink: 0;
    }

    .btn-hover:hover {
        color: #89772E;

        &::before {
            background-color: #fff;
        }
    }
}


@media only screen and (max-width: 360px) {

    .fixed-header .fixed-logo,
    .inner-page header .fixed-logo {
        width: 100px;
    }

    .download-btn {

        font-size: 13px;

    }
}

@media only screen and (max-width: 600px) {
    .banner-desc .main-title {
        font-size: 26px;
    }

    .brand-item img {
        max-width: 50px;
    }

    .main-btn.pink {
        min-width: 200px;
        height: 45px;
        font-size: 18px
    }

    about-us-wrapper {
        .general-title {
            margin-bottom: 25px;
            text-align: center
        }

        .title-desc {
            text-align: center
        }
    }

    #about {
        text-align: center;
    }
}

.swiper-pagination {
    z-index: 9 !important;
}

@media only screen and (max-width: 768px) {
     .swiper-pagination {
    	bottom:80px !important;
	}
}

.wpcf7-not-valid-tip {
    color: #ffffff;
    font-size: 1em;
    font-weight: normal;
    display: block;
    background: #ff000094;
    border-radius: 20px;
    margin-top: 5px;
}

.sectors {
    background: #F3F5F4;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 100px;

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

    .general-desc {
        margin-bottom: 50px;
    }
}

.general-desc {
    color: black;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.sectors-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 100px;
    margin-bottom: 100px;

    @media only screen and (max-width: 1024px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media only screen and (max-width: 768px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.sector-item {
    position: relative;
    padding-inline: 20px;
    margin-inline-start: 10px;

    &:before {
        content: '';
        width: 20px;
        height: 4px;
        background: #89772E;
        display: block;
        position: absolute;
        inset-inline-start: -20px;
        top: 12px;
    }
}

.sector-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sector-desc {
    color: #666666;
    line-height: 1.8;
}

.overlay-content {
    font-size: 18px;
    width: 100%;
    height: 100%;
    position: absolute;

    .content-wrapper {
        position: absolute;
        bottom: 0;
        inset-inline: 0;
        padding-inline: 20px;
    }

    &:after {
        content: '';
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.73) 100%);
        position: absolute;
        inset: 0;
        transition: 0.3s;
        pointer-events: none;
    }

    &:before {
        content: '';
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) -80%, rgba(0, 0, 0, 0.5) 100%);
        position: absolute;
        inset: 0;
        transition: 0.3s;
        pointer-events: none;
        opacity: 0;
    }

    .client-desc {
        opacity: 0;
        height: 0;
        transition: 0.3s;
        position: relative;
        z-index: 1;
        color: #fff;
    }

    &:hover {
        &:before {
            opacity: 1;
            transition: 0.3s;
        }

        &:after {
            opacity: 0;
            transition: 0.3s;
        }

        .client-desc {
            opacity: 1;
            height: 120px;
            transition: 0.3s;
        }
    }

    .main-btn {
        min-width: unset;
        height: auto;

        font-size: 16px;
        padding: 10px 30px;
        font-weight: 500;

        margin-top: 20px;
    }
}





.input-holder select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 16px 12px;
}

html[lang="en-US"] .input-holder select{
    background-position: right 20px center;
}


/* //////////////////// */
.clients-wrapper{
    gap: 20px;
}
.client-item {
    aspect-ratio: 420/300;
    padding: 0;
    display: flex;
  }
  
  .client-item .content-wrapper {
    bottom: 20px;
  }
  
  .client-item .client-title {
    margin-top: 0;
    margin-bottom: 15px;
  }
  
  .client-item .client-desc {
    margin: 0;
    padding: 0;
    height: auto;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .client-item .desc_container {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  
  .client-item .client-desc br {
    display: none;
  }
  .client-item .client-anchors{
    margin: 0 0 15px;
  }
  .client-item .main-btn {
    font-size: 14px;
    padding: 0 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    margin: 0 0 0;
  }
  
  .overlay-content:hover .client-desc {
    height: auto;
    opacity: 1;
    max-height: 300px;
    transition: all 0.3s ease-in-out;
  }
  
  .overlay-content:after {
    transition: all 0.5s ease-in-out;
  }
  .overlay-content:hover::before{
    opacity: 1;
  }
  @media (max-width: 1199px) {
    .clients-wrapper{
      gap: 15px;
    }
    .overlay-content .content-wrapper{
      bottom: 15px;
      padding:0 15px;
    }
  }
  @media (max-width: 767px) {
    .overlay-content .client-desc .desc_container{
      display: none;
    }
    .overlay-content .client-desc{
      max-height: unset;
    }
    .client-item .client-anchors{
        margin: 0;
    }
    .overlay-content .content-wrapper{
      bottom: 30px;
      padding:0 20px;
    }
    .overlay-content:after{
      display: none;;
    }
    .overlay-content::before{
      opacity: 1;
    }
    .client-item .client-desc{
        margin-top: 15px;
    }
    .client-item .main-btn{
        margin: 0 auto 0;
    }
  }