@import url(styles.css);

/* Start Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

@font-face {
    font-family: 'brando';
    src: url('../fonts/brando.otf');
}

@font-face {
    font-family: 'brando-Light';
    src: url('../fonts/brando-Light.otf');
}

@font-face {
    font-family: 'brando-Med';
    src: url('../fonts/brando-SemiBold.otf');
}

@font-face {
    font-family: 'brando-Bold';
    src: url('../fonts/brando-Bold.otf');
}

@font-face {
    font-family: 'brando-Black';
    src: url('../fonts/brando-Black.otf');
}

/* End Fonts */

:root {
    --main-color: #A5886C;
    --sec-color: #593D27;
    --dark-color: #000;
    --bg-color: #F5F5F5;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--sec-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'brando';
    background: #fff;
    text-align: start;
    direction: rtl;
    /* height: auto !important; */
}

section,
footer {
    overflow: hidden;
    position: relative;
    z-index: 3;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 19.850613vh 13.65625vw;
    padding-top: 30.1px;
    padding-bottom: 53.1px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: var(--dark-color);
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    right: -100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 18%);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    margin: 0 0 5.351170568561873vh;
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 64px;
    font-weight: 500;
    line-height: 80px;
    color: #848282;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 999;
    visibility: visible;
    /* transform: none; */
}

/* End Sidebar */

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    margin-top: 27px;
    gap: 35px;
}

header.sticky {
    position: fixed;
    z-index: 3;
    left: 0;
    right: 0;
    padding: 24px 0;
    /* background: #0000001A; */
    overflow: hidden;
    top: 0;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    color: #fff;
    display: table;
    margin: 0 0 30px;
    margin-inline-start: auto;
    font-size: 18px;
    cursor: pointer;
    width: 40.37px;
    height: 40.37px;
    border-radius: 50%;
    border: 0.47px solid #FFFFFF;
    line-height: 40.37px;
    text-align: center;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h {
    color: var(--main-color);
    text-decoration: underline;
    font-family: El Messiri;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.01px;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar-collapse {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}

.navbar-collapse .navigation {
    width: 50%;
    flex: 0 0 auto;
}

.mobile-menu .menu-box .navigation li a:hover {
    color: #fff;
    text-decoration: underline;
}

.mobile-menu .menu-box .navigation li:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
}

.flex-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.callNow {
    direction: ltr;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    color: var(--main-color);
    font-family: Cairo SemiBold;
    font-size: 22.63px;
    font-weight: 600;
    line-height: 42.4px;
    gap: 21px;
}


.logo a {
    display: block;
    text-align: center;
}

.logo a img {
    max-height: 277.78px;
}

.btn {
    min-width: 244.59px;
    min-height: 74.26px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: var(--main-color);
    position: relative;
    border-radius: 10px;
    border: 1.21px solid var(--main-color);
    box-shadow: none !important;
    outline: none !important;
    font-family: 'brando-Med';
    font-size: 21.84px;
    font-weight: 600;
    line-height: 31.18px;
    text-transform: capitalize;
}

.btn::before,
.btn::after {
    margin: -3px;
    content: "";
    position: absolute;
    width: 22.13px;
    height: 16.82px;
    border: 4.85px solid #A5886C;
    border-right: 0;
    border-bottom: 0;
    border-radius: 10px 000;
    transition: all .4s ease-in-out;
}

.btn::before {
    top: 0;
    left: 0;
}

.btn::after {
    right: 0;
    bottom: 0;
    transform: scale(-1);
}

.btn:hover::before {
    width: 65.8px;
    height: 34.03px;
}

.btn:hover::after {
    height: 16.82px;
    width: 128.64px;
}

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

header .btn {
    min-width: 201.62px;
    min-height: 65.27px;
    font-size: 18px;
    font-weight: 600;
    line-height: 25.7px;
    border-color: #E1E1E1;
}

header .btn::before,
header .btn::after {
    border-width: 2px;
    margin: -1px;
}

.btn-head {
    display: flex;
    justify-content: flex-end;
}

.btn-head {
    margin-top: 68px;
}

header .flex-h {
    margin-top: 84px;
}

.header-med .head-inner ul li a {
    font-family: 'brando-Med';
    font-size: 16px;
    color: var(--main-color);
    line-height: 22.85px;
    text-decoration: none;
    text-transform: capitalize;
}

/* End Header */

/* Start Banner-h */

.banner-h {
    height: 758.69px;
    z-index: 2;
}

.banner-h .row {
    height: 758.69px;
    align-items: end;
    -webkit-align-items: end;
    text-align: center;
    padding-bottom: 138px;
}

.banner-h .overlay-img {
    background-position: 50% 100%;
    background-size: cover;
    display: flex;
    align-items: end;
    /* background-image: none !important; */
}

.banner-h .overlay-img img {
    /* height: 50%; */
    /* object-position: bottom; */
}

.banner-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    height: 63.6%;
    top: auto;
    opacity: 0.4;
}

.text-banner h1 {
    font-family: 'brando-Bold';
    font-size: 65.62px;
    color: #fff;
    line-height: 93.71px;
    margin: 0;
}

.text-banner p {
    font-family: 'brando-Med';
    font-size: 19.41px;
    color: #fff;
    line-height: 27.72px;
}

.text-banner .btn {
    margin-top: 34px;
    border-color: #fff;
    color: #fff;
}

.text-banner .btn::before,
.text-banner .btn::after {
    border-color: #fff;
}

.banner-inner {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
}

.goSection {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 72.09px;
    height: 51.28px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #FFFFFF;
    font-size: 22.89px;
    color: #000;
}

@-webkit-keyframes upDown {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    100% {
        -webkit-transform: translate(0, 5px);
        transform: translate(0, 5px);
    }
}

@keyframes upDown {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    100% {
        -webkit-transform: translate(0, 5px);
        transform: translate(0, 5px);
    }
}


.goSection i {
    -webkit-animation: upDown 2s infinite;
    animation: upDown 2s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    /* display: inline-block; */
    /* position: relative; */
}

/* End Banner-h */

/* Start About-h */

.about-h {
    background: #fff;
    padding: 120px 0;
}

.bg-about {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}

.img-about {
    position: relative;
}

.img-about .img {
    max-width: 415.04px;
    height: 647.04px;
    border-radius: 30px;
    overflow: hidden;
}

.img-about .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.bg-about .img:nth-child(1) {
    -webkit-animation: rightLeft 5s infinite;
    animation: rightLeft 5s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    right: auto;
    left: 0;
    top: 213px;
    bottom: auto;
}

.bg-about .img {
    -webkit-animation: leftRight 5s infinite;
    animation: leftRight 5s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    position: absolute;
    right: 0;
    bottom: 170px;
}

@-webkit-keyframes rightLeft {
    0% {
        -webkit-transform: translateX(10%);
        transform: translate(10%);
    }

    100% {
        -webkit-transform: translate(-10%);
        transform: translate(-10%);
    }
}

@keyframes rightLeft {
    0% {
        -webkit-transform: translateX(10%);
        transform: translate(10%);
    }

    100% {
        -webkit-transform: translate(-10%);
        transform: translate(-10%);
    }
}

@-webkit-keyframes leftRight {
    0% {
        -webkit-transform: translateX(-10%);
        transform: translate(-10%);
    }

    100% {
        -webkit-transform: translate(10%);
        transform: translate(10%);
    }
}

@keyframes leftRight {
    0% {
        -webkit-transform: translateX(-10%);
        transform: translate(-10%);
    }

    100% {
        -webkit-transform: translate(10%);
        transform: translate(10%);
    }
}

.about-h .container {
    position: relative;
    z-index: 2;
}

.text-about {
    padding-top: 63px;
    position: relative;
}

.text-about h3 {
    font-family: 'brando-Bold';
    font-size: 43.67px;
    color: var(--dark-color);
    line-height: 42px;
    margin-bottom: 38px;
}

.text-about p {
    font-family: 'brando-Light';
    font-size: 19px;
    color: var(--dark-color);
    line-height: 29px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.text-about ul {
    margin-top: 55px;
}

.text-about ul li {
    padding-inline-start: 33px;
    margin-bottom: 19px;
    position: relative;
    font-family: 'brando-Light';
    font-size: 19.41px;
    color: var(--dark-color);
    line-height: 29px;
}

.text-about ul li::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    width: 11.35px;
    height: 11.35px;
    border-radius: 3px;
    background: var(--dark-color);
    transform: rotate(45deg);
    top: 10px;
}

.text-about .btn {
    margin-top: 48px;
}

.text-about::before,
.text-about::after {
    content: "";
    position: absolute;
}

.text-about::before {
    border-bottom: 1px solid #000000;
    width: 100vw;
    right: -103vw;
    z-index: -1;
    opacity: 0.3;
    top: 86px;
}

.text-about::after {
    width: 17.42px;
    height: 17.42px;
    background: var(--dark-color);
    top: 78px;
    right: -50px;
    transform: rotate(45deg);
    border-radius: 4px;
}

/* End About-h */

/* Start Services-h */

.services-h .overlay-img {
    background: var(--bg-color);
}

.services-h {
    padding: 96px 0 107px;
}

.title {
    margin: 0 0 32px;
}

.title h3 {
    font-family: 'brando-Bold';
    font-size: 43.67px;
    line-height: 42px;
    color: var(--dark-color);
    margin: 0;
    position: relative;
}

.title h3::before,
.title h3::after {
    content: "";
    position: absolute;
}

.title h3::before {
    border-bottom: 1px solid #000000;
    width: 50vw;
    margin: auto 0;
    top: 0;
    bottom: 0;
    height: 0;
    opacity: 0.3;
    right: -52vw;
}

.title h3::after {
    width: 17.42px;
    height: 17.42px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border-radius: 4px;
    background: var(--dark-color);
    transform: rotate(45deg);
    right: -2vw;
}

.title.title-center {
    text-align: center;
    margin-bottom: 17px;
}

.title.title-center h3 {
    margin: 0 auto;
    display: inline-flex;
    font-size: 67.04px;
    line-height: 64.47px;
}

.title.title-center h3::before,
.title.title-center h3::after {
    width: 17.42px;
    height: 17.42px;
    background: var(--sec-color);
    position: relative;
    right: 0;
    left: 0;
    opacity: 1;
    border-radius: 4px;
    transform: rotate(45deg);
    margin: auto 25px;
}

.serv-block {
    margin: 15px 0;
    height: calc(100% - 30px);
    border: 1px solid transparent;
    border-radius: 15px;
    position: relative;
    transition: all .4s ease-in-out;
    /* min-height: 160.84px; */
    /* overflow: hidden; */
}

.serv-block::before,
.serv-block::after {
    content: "";
    position: absolute;
    width: 22.13px;
    height: 16.82px;
    border: 4.85px solid var(--main-color);
    border-radius: 10px 0 0;
    border-right: 0;
    border-bottom: 0;
    transition: all .4s ease-in-out;
    margin: -2px;
    width: 0;
    height: 0;
    opacity: 0;
}

.serv-block::before {
    left: 0;
    top: 0;
}

.serv-block::after {
    bottom: 0;
    right: 0;
    transform: scale(-1);
}

.serv-block .inner-block {
    /* position: relative; */
    /* z-index: 3; */
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    min-height: 160.84px;
    overflow: hidden;
    border-radius: 15px;
    overflow: hidden;
    padding: 28px 6px;
}

.serv-block .inner-block .icon {
    transition: all .4s ease-in-out;
    color: var(--sec-color);
    font-size: 50.47px;
    font-weight: 400;
    line-height: 48.18px;
    width: 51px;
}

.serv-block .inner-block .details {
    width: calc(100% - 51px);
    padding-inline-start: 28px;
}

.serv-block .inner-block .details h3 {
    font-family: 'brando-Med';
    font-size: 24px;
    font-weight: 600;
    line-height: 42px;
    color: var(--dark-color);
    margin-bottom: 9px;
}

.serv-block .inner-block .details p {
    font-family: 'brando-Light';
    font-size: 16px;
    color: var(--dark-color);
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.serv-block:hover::before,
.serv-block:hover::after {
    width: 22.13px;
    height: 16.82px;
    opacity: 1;
}

.serv-block:hover {
    border-color: #A0A0A0;
}

.btn-center {
    text-align: center;
    margin-top: 50px;
}

.serv-block .inner-block .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(184.42deg, rgba(165, 136, 108, 0) 6.06%, #A5886C 96.41%);
}

.serv-block .inner-block .overlay-img {
    border-radius: 15px;
    transition: all .4s ease-in-out;
    overflow: hidden;
    opacity: 0;
}

.serv-block:hover .inner-block .overlay-img {
    opacity: 1;
}

.serv-block:hover .inner-block .icon {
    width: 0;
    overflow: hidden;
    opacity: 0;
}

.serv-block:hover .inner-block .details {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in-out;
    /* width: 100%; */
}

/* End Services-h */

/* Start Partners-h */

.partners-h {
    background: #fff;
    padding: 97px 0;
}

.all-partners {
    height: 389px;
    position: relative;
}

.all-partners .swiper {
    height: 100%;
}

.text-part {
    max-width: 564.43px;
}

.text-part p {
    font-family: 'brando-Light';
    font-size: 19px;
    color: var(--dark-color);
    line-height: 29px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-part .btn {
    margin-top: 47px;
}

.part-block {
    height: 145.11px;
    box-shadow: 0px 0px 24px 0px #00000017;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px transparent solid;
    transition: all .4s ease-in-out;
}

.part-block .img {
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.part-block .img img {
    max-height: 87.37px;
    max-width: 154.91px;
    object-fit: contain;
    object-position: center;
    opacity: 0.4;
    transition: all .4s ease-in-out;
}

.part-block:hover .img img {
    opacity: 1;
}

.part-block:hover {
    border-color: var(--main-color);
    box-shadow: 0px 0px 24px 0px #A5886C4D;
}

.all-partners::before,
.all-partners::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    z-index: 2;
}

.all-partners::after {
    left: 0;
}

.all-partners::before {
    right: 0;
    /* transform: scaleX(-1); */
}

/* End Partners-h */

/* Start Footer */

footer {}

.footer-top {
    background: #F6F6F6;
    padding: 72px 0 50px;
}

.footer-bottom {
    background: #fff;
    padding: 20px 0;
    text-align: center;
}

.logo-f {
    display: block;
    margin-bottom: 42px;
}

.logo-f img {
    max-width: 273.79px;
}

.footer-top p {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26.22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.s-h {
    display: flex;
    flex-wrap: wrap;
    gap: 11.81px;
}

footer .s-h {
    margin-top: 15px;
}

.s-h a {
    width: 32.05px;
    height: 30.77px;
    border: 1px solid #C6C6C6;
    transition: all .4s ease-in-out;
    font-size: 18.95px;
    color: var(--main-color);
    border-radius: 4px;
}

.s-h a i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.s-h a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.foot-block h3 {
    font-family: 'brando-Med';
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 41px;
    color: var(--dark-color);
}

.links-f ul li a {
    display: inline-block;
    font-size: 16.85px;
    font-weight: 400;
    line-height: 24.06px;
    margin-bottom: 21px;
    color: var(--dark-color);
}

.links-f ul li a:hover {
    color: var(--main-color);
}

.links-f ul li:last-child a {
    margin: 0;
}

.info-f ul li a {
    display: flex;
    margin-bottom: 15px;
}

.info-f ul li a .icon {
    width: 23px;
    color: #805E2E;
    font-size: 22.85px;
    font-weight: 400;
    line-height: 22.85px;
}

.info-f ul li:last-child a {
    margin: 0;
}

.info-f ul li a .details {
    width: calc(100% - 23px);
    padding-inline-start: 12px;
}

.info-f ul li a .details h3 {
    font-family: 'brando';
    font-size: 16.85px;
    font-weight: 400;
    line-height: 24.06px;
    color: var(--dark-color);
    margin-bottom: 8px;
    transition: all .4s ease-in-out;
}

.info-f ul li a .details span {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.85px;
    transition: all .4s ease-in-out;
}

.info-f ul li a .details u {
    display: block;
    direction: ltr;
    text-decoration: none;
    font-family: sans-serif;
}

.map-f {
    height: 185px;
    border-radius: 20px;
    overflow: hidden;
}

.copy-right p {
    color: var(--dark-color);
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
}

.upPage {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 3;
    margin: 60px;
    width: 39.01px;
    height: 39.01px;
    background: var(--main-color);
    color: #fff;
    line-height: 39.01px;
    text-align: center;
    font-size: 20.41px;
    transform: translateY(200%);
    opacity: 0;
}

.upPage.active {
    transform: none;
    opacity: 1;
}

.info-f ul li a:hover .details h3,
.info-f ul li a:hover .details span {
    color: var(--main-color);
}

.lang-h {
    /* width: 41.48px; */
    /* height: 41.48px; */
    /* display: block; */
    /* margin: 0 auto; */
    /* box-shadow: 0px 4px 4px 0px #00000040; */
    /* border-radius: 50%; */
    /* overflow: hidden; */
}

.lang-h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* End Footer */

/* Start About-page */

.sticky.header-pages {
    position: relative;
    background: url(../images/bg-banner.png);
    background-size: cover;
    background-position: center;
    padding: 33px 0;
}

.sticky.header-pages::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    opacity: 0.1;
    height: 50%;
    top: auto;
    z-index: -1;
}

.sticky.header-pages .header-top,
.sticky.header-pages .header-bottom {
    position: relative;
    z-index: 3;
}

.breadcrumb-h {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    padding: 21px 0 14px;
}

.text-bread {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.text-bread h1 {
    font-family: 'brando-Bold';
    font-size: 32px;
    line-height: 45.7px;
    color: var(--main-color);
    margin: 0;
}

.text-bread ul {
    display: flex;
    /* gap: 20px; */
    flex-wrap: wrap;
}

.text-bread ul li a,
.text-bread ul li span {
    font-family: 'brando-Bold';
    font-size: 17.45px;
    color: var(--main-color);
    line-height: 24.92px;
}

.text-bread ul li a::after {
    content: "|";
    margin: 0 10px;
    margin-inline-start: 8px;
}

.about-page .text-about p {
    display: block;
}

.about-block {
    position: relative;
    padding: 51px 35px 47px;
}

.about-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #F6F6F6;
    z-index: -1;
    border-radius: 20px;
    width: 200%;
    /* right: -50vw; */
}

.row .col-md-6:nth-child(1) .about-block::after {
    right: -100%;
}

.row .col-md-6:nth-child(2) .about-block::after {
    left: -100%;
}

.about-block .title-block {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 25px;
}

.about-block .title-block .icon {
    width: 38px;
    font-size: 37.33px;
    font-weight: 400;
    line-height: 63px;
    color: var(--main-color);
}

.about-block .title-block h3 {
    width: calc(100% - 37.33px);
    padding-inline-start: 16.55px;
    font-family: 'brando-Bold';
    font-size: 35px;
    color: #000;
    line-height: 53.9px;
    margin: 0;
}

.about-block p {
    font-family: 'brando-Light';
    font-size: 16px;
    line-height: 27px;
    color: #000;
}

.about-h.about-page {
    padding: 100px 0 56px;
}

.about-more {
    padding: 34px 0;
}

.why-choose {
    padding: 76px 0 100px;
}

.img-why {
    width: 63vw;
    position: relative;
    margin-inline-start: -12vw;
    margin-top: -15%;
    margin-bottom: -18%;
}

.text-why .item {
    display: flex;
    /* align-items: center; */
    padding-inline-start: 25px;
    border-inline-start: 1px solid #C2C2C2;
    padding-bottom: 51px;
}

.text-why .item .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: #EFDFCF;
    color: var(--main-color);
    font-size: 22.37px;
    font-weight: 900;
    text-align: center;
}

.text-why .item .details {
    width: calc(100% - 48px);
    padding-inline-start: 24px;
}

.text-why .item:last-child {
    padding-bottom: 0;
}

.text-why .item .details h3 {
    font-family: 'brando-Bold';
    font-size: 28px;
    color: var(--dark-color);
    line-height: 43.12px;
    margin-bottom: 12px;
}

.text-why .item .details p {
    font-family: 'brando-Light';
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-color);
}

.why-choose .title {
    margin-bottom: 63px;
}

.text-why .item.active {
    border-inline-start: 2px solid var(--main-color);
}

.why-choose .row {
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

/* End About-page */

/* Start Services-page */

.body-inner {
    padding: 100px 0;
}

.all-pages {
    text-align: center;
    margin-top: 60px;
}

.all-pages .pagination {
    flex-wrap: wrap;
    display: inline-flex;
    direction: ltr;
}

.all-pages .pagination .page-item .page-link {
    border: 1px solid #E8E8E8;
    width: 29px;
    height: 27px;
    padding: 0;
    margin: 0 2.5px;
    font-family: sans-serif;
    font-size: 12.82px;
    font-weight: 400;
    display: flex;
    letter-spacing: -0.02em;
    line-height: 25px;
    border-radius: 0 !important;
    text-align: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: #131313;
}

.all-pages .pagination .page-item.active .page-link {
    background: transparent;
    color: var(--main-color);
    border-color: var(--main-color);
}

/* End Services-page */

/* Start Teams-page */

.all-teams .slick-list {
    margin-right: -10px;
    margin-left: -10px;
    overflow: visible;
}

.all-teams .item {
    padding: 10px;
    transition: all .4s ease-in-out;
    opacity: 0;
}

.team-block {
    height: 475.5px;
    border-radius: 21px;
    overflow: hidden;
    position: relative;
    /* margin: 50px 0 0; */
    transition: all .4s ease-in-out;
}

.team-block .img {
    width: 100%;
    height: 100%;
}

.team-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: .90;
    transition: all .4s ease-in-out;
}

.team-block .details {
    transition: all .4s ease-in-out;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 34px 18px;
}

.team-block .details h3 {
    font-family: 'brando-Bold';
    font-size: 24.92px;
    color: #fff;
    line-height: 30.12px;
    margin-bottom: 12px;
}

.team-block .details p {
    color: #fff;
    font-size: 19.23px;
    font-weight: 400;
    line-height: 31.25px;
}

.team-block:hover .img::after {
    opacity: 0.2;
}

.team-block:hover {
    box-shadow: 0px 0px 52.89px 0px #0000001C;
    transform: translateY(-17px);
}

.all-teams .team-slider {
    margin: 0;
}

.all-teams .item.slick-active {
    opacity: 1;
}

.all-teams .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 60px;
}

.all-teams .slick-dots li {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
}

.all-teams .slick-dots li button::before {
    display: none;
}

.all-teams .slick-dots li button {
    width: 144px;
    border-top: 1px solid #C2C2C2;
    padding: 0;
    height: auto;
}

.all-teams .slick-dots li.slick-active button {
    border-top: 3px solid var(--main-color);
}

.all-teams .slick-arrow:before,
.all-teams .slick-arrow:after {
    content: "";
    position: absolute;
    width: 21.16px;
    height: 21.16px;
    border: 3.59px solid #E6E6E6;
    border-radius: 27px 0 0;
    border-right: 0;
    border-bottom: 0;
    transform: rotate(2deg);
    margin: 0px;
}

.all-teams .slick-prev,
.all-teams .slick-next {
    width: 56.41px;
    height: 56.41px;
    border-radius: 50%;
    border: 0.9px solid #E6E6E6;
    z-index: 3;
    color: #707070;
    font-size: 18.72px;
    font-weight: 900;
    line-height: 22.63px;
}

.all-teams .slick-next {
    right: -6%;
}

[dir='rtl'] .all-teams .slick-next {
    right: auto;
    left: -6%;
}

[dir='rtl'] .all-teams .slick-prev {
    left: auto;
    right: -6%;
}

.all-teams .slick-prev {
    left: -6%;
}

.all-teams .slick-arrow:before {
    top: 0;
    left: 0;
}

.all-teams .slick-arrow:after {
    bottom: 0;
    right: 0;
    transform: rotate(2deg) scale(-1);
}

.know-h {
    padding: 130px 0 100px;
    background: linear-gradient(180deg, #FCFCFC 0%, rgba(145, 145, 145, 0) 100%);
}

.text-know {
    max-width: 606px;
}

.text-know .title {
    margin-bottom: 35px;
}

.text-know .title h3 {
    font-size: 67.93px;
    line-height: 59.85px;
}

.text-know .title h3 span {
    font-family: 'brando';
    font-size: 62.23px;
    line-height: 59.85px;
}

.text-know p {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    margin: 30px 0;
}

.team-know {
    display: flex;
    gap: 25px;
    max-width: 510px;
    /* margin: auto; */
}

.know-block {
    height: 395.61px;
    overflow: hidden;
    border-end-end-radius: 86px;
    position: relative;
    box-shadow: 0px 0px 44px 0px #0000001C;
}

.know-block .img,
.know-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.know-block .details {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 43%;
    background: linear-gradient(270deg, #A5886C 0%, #593D27 100%);
    padding: 31px 14px 25px;
}

.team-know .item {
    width: calc(50% - 12.5px);
}

.know-block .details h3 {
    font-family: 'brando-Bold';
    font-size: 20.73px;
    color: #fff;
    line-height: 25.06px;
    margin-bottom: 11px;
}

.know-block .details p {
    font-family: 'brando-Light';
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.team-know .item:nth-child(2) {
    margin-top: 91px;
}

.know-h::after {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    width: 30%;
    height: 60%;
    background: url(../images/dots.png);
    max-width: 172.72px;
    background-size: contain;
    background-position: center;
}

.know-h .container {
    position: relative;
    z-index: 2;
}

/* End Teams-page */

/* Start Career-page */

.career-inner {
    max-width: 769.56px;
    margin: 0 auto;
}

.career-inner .form-group {
    margin-bottom: 16px;
}

.career-inner .form-group label {
    font-family: 'brando-Med';
    font-size: 21px;
    color: var(--dark-color);
    line-height: 29.99px;
    margin-bottom: 16px;
}

.career-inner .form-group .form-control {
    height: 67.06px;
    border: 1px solid #AAAAAA;
    border-radius: 10px;
    padding: 0 33px;
    text-align: right;
    line-height: 67.06px;
}

form {
    direction: rtl;
}

.career-inner .form-group .form-control::after {
    color: #707070;
    font-size: 18.72px;
    font-weight: 900;
    line-height: 22.63px;
}

.career-inner .form-group .form-control .current {
    color: #A09C9C;
}

.career-inner .form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--main-color);
}

.career-inner .form-group textarea.form-control {
    height: 192.07px;
}

.form-group.btn-form {
    margin: 52px 0 0;
    text-align: center;
}

/* End Career-page */

/* Start Contact-page */

.map-h {
    position: absolute;
    inset: 0;
}

.map-contact .row {
    min-height: 500.93px;
    align-items: end;
    -webkit-align-items: end;
}

.contact-info {
    padding: 41px 24px 28px;
    position: relative;
    z-index: 3;
    max-width: 438.41px;
    background: #fff;
    border-radius: 30px;
    min-height: 368.69px;
    margin-bottom: -90px;
}

.contact-info .item {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 16px;
}

.contact-info .item .icon {
    width: 55.67px;
    height: 56.6px;
    line-height: 56.6px;
    text-align: center;
    border-radius: 50%;
    background: #FFFAF4;
}

.contact-info .item .details {
    width: calc(100% - 55.67px);
    padding-inline-start: 12px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.contact-info .item .details h3 {
    margin: 0;
    font-family: 'brando-Med';
    font-size: 16.7px;
    color: var(--main-color);
    line-height: 23.85px;
    min-width: 103px;
}

.contact-info .item .details a {
    color: #2D2D2D;
    font-size: 13.92px;
    font-weight: 400;
    line-height: 20.41px;
    padding-inline-start: 10px;
}

.contact-info .item .details a u {
    text-decoration: none;
    direction: ltr;
    display: inline-block;
    font-family: Cairo;
    font-weight: 400;
}

.contact-info .item .details a:hover {
    color: var(--main-color);
}

/* End Contact-page */

/* Start Single-page */

.sticky.header-pages.header-single::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    opacity: 1;
}

.breadcrumb-h.breadcrumb-single {
    border: none;
}

.breadcrumb-h.breadcrumb-single .text-bread {
    flex-direction: column;
}

.breadcrumb-h.breadcrumb-single .text-bread h1 {
    margin-bottom: 15px;
    font-size: 37.04px;
    font-weight: 700;
    line-height: 52.89px;
}

.breadcrumb-h.breadcrumb-single .text-bread li a,
.breadcrumb-h.breadcrumb-single .text-bread li span {
    font-size: 20.2px;
    line-height: 28.84px;
}

.single-page.single-project {
    padding-top: 66px;
}

.imgs-single .img-big {
    height: 599.2px;
    border-radius: 30px;
    overflow: hidden;
}

.imgs-single .img-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.imgs-single .slider-single-for {
    margin-bottom: 32px;
}

.imgs-single .slick-list {
    margin-right: -8px;
    margin-left: -8px;
}

.imgs-single .slider-single-nav .item {
    padding: 0 8px;
}

.imgs-single .img-small {
    height: 68.61px;
    overflow: hidden;
    border-radius: 12px;
}

.imgs-single .img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.taxt-single {
    max-width: 962.95px;
    margin: 56px auto 0;
    text-align: center;
}

.taxt-single h3 {
    margin-bottom: 27px;
    font-size: 39.26px;
    color: #000;
    line-height: 33.3px;
    letter-spacing: -0.02em;
}

.taxt-single p {
    color: #818498;
    font-size: 19.26px;
    font-weight: 400;
    line-height: 33.3px;
    letter-spacing: -0.02em;
}

/* End Single-page */

/* Start Partners-page */

.partners-page .part-block {
    margin-bottom: 15px;
}

.partners-page .part-block .img img {
    opacity: 1;
}

/* End Partners-page */

/* Start Style-update */

.manger-h.know-h {
    background: linear-gradient(to bottom, #F9F9F9 90%, #fff 10%);
    padding-bottom: 0;
}

.manger-h::after {
    left: auto;
    right: -40px;
}

.manger-h .team-know .item {
    width: 100%;
    max-width: 369.51px;
    margin: 0 auto;
}

.manger-h .know-block {
    height: 603.04px;
}

.manger-h .know-block .details {
    padding: 47px 37px 62px;
}

.manger-h .know-block .details h3 {
    margin-bottom: 18px;
    font-size: 31.6px;
    font-weight: 900;
    line-height: 38.2px;
}

.manger-h .know-block .details p {
    font-size: 24.39px;
    font-weight: 265;
    line-height: 39.63px;
}

.manger-h .text-know .title h3::before {
    right: auto;
    left: -53vw;
}

.manger-h .text-know .title h3::after {
    right: auto;
    left: -4vw;
}

.des-page {
    border-inline-start: 12.32px solid var(--main-color);
    padding-inline-start: 8px;
    margin-bottom: 50px;
}

.des-page p {
    color: #818498;
    font-size: 19.26px;
    font-weight: 400;
    line-height: 33.3px;
    letter-spacing: -0.02em;
}

/* End Style-update */