@charset "UTF-8";
:root {
    --bg1: #fff;
    --bg2: #f9f7f3;
    --text1: #40444C;
    --text2: #626C83;
}

.darkMode {
    --bg1: #0B2346;
    --bg2: #071B38;
    --text1: #fff;
    --text2: #96A0B6;
}

@font-face {
    font-family: "Almarai";
    src: url("../woff2/almarai-light.woff2") format("woff2"), url("../woff/almarai-light.woff") format("woff"), url("../ttf/almarai-light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Almarai";
    src: url("../woff2/almarai-regular.woff2") format("woff2"), url("../woff/almarai-regular.woff") format("woff"), url("../ttf/almarai-regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Almarai";
    src: url("../woff2/almarai-bold.woff2") format("woff2"), url("../woff/almarai-bold.woff") format("woff"), url("../ttf/almarai-bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Almarai";
    src: url("../woff2/almarai-extrabold.woff2") format("woff2"), url("../woff/almarai-extrabold.woff") format("woff"), url("../ttf/almarai-extrabold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #e8b591 #f1f1f1;
    scroll-behavior: unset !important;
}

html[dir="rtl"] body {
    direction: rtl;
}
html[dir="ltr"] body{
    direction: ltr;
}
body {
    font-family: Almarai;
    font-weight: 400;
    color: var(--text1);
    background-color: var(--bg1);
    text-align: start;
}

body::-webkit-scrollbar {
    background-color: #f1f1f1;
    width: 4px;
    border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
    background-color: #e8b591;
    border-radius: 3px;
}

html[dir=ltr] body {
    /*text-transform: capitalize;*/
}

.overflow {
    overflow: hidden;
}

.container {
    --bs-gutter-x: 30px;
}

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

.container-fluid {
    --bs-gutter-x: 30px;
}

.row {
    --bs-gutter-x: 30px;
}

.row > * {
    --bs-gutter-x: 30px;
}

.img-contain {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* General Resets */
* {
    outline: 0 !important;
}

input::-moz-placeholder {
    color: inherit;
}

input::placeholder {
    color: inherit;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    outline: 0;
}

a,
img,
button,
input,
select {
    transition: all 0.3s ease;
}

[role=button] {
    cursor: pointer;
}

ul {
    /*list-style: none;*/
    /*margin: 0;*/
    /*padding: 0;*/
}
.list-unstyled {
    padding: 0;
    margin: 0;
}
input {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
    display: none;
}

input::-webkit-inner-spin-button, input::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

select {
    background-image: url(../svg/select.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: left 10px top 50%;
}

html[dir=ltr] select {
    background-position: right 10px top 50%;
}

.fa-linkedin::before {
    content: "\f0e1";
}

.fa-twitter::before {
    content: "\e61b";
}

.fa-facebook::before {
    content: "\f39e";
}

.lazy-img-parent img {
    transition: all 0.3s ease-in-out;
}

.loading-img {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    position: relative;
}

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

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

.pre-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pre-loader img {
    width: 335px;
}

@media (max-width: 767px) {
    .pre-loader img {
        width: 200px;
    }
}

.pre-loader .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pre-loader .progress-bar {
    background-color: #e8b591;
    border: none;
    overflow: hidden;
    width: 200px;
    height: 2px;
    box-shadow: none;
    margin: 20px 0 0 0;
}

@media (max-width: 767px) {
    .pre-loader .progress-bar {
        width: 100px;
    }
}

.pre-loader .progress-bar span {
    display: block;
}

.pre-loader .bar {
    background-color: #ccc;
    box-shadow: none;
}

.pre-loader .progress {
    animation: loader 8s ease infinite;
    background: #e8b591;
    border: none;
    padding: 0px;
    width: 0;
    height: 2px;
}

.pre-loader .progress-bar {
    transform: rotateY(0deg);
}

.pre-loader .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@keyframes loader {
    0% {
        width: 0;
    }
    20% {
        width: 10%;
    }
    25% {
        width: 24%;
    }
    43% {
        width: 41%;
    }
    56% {
        width: 50%;
    }
    66% {
        width: 52%;
    }
    71% {
        width: 60%;
    }
    75% {
        width: 76%;
    }
    94% {
        width: 86%;
    }
    100% {
        width: 100%;
    }
}

.default-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 15px;
    height: 48px;
    border: 1px solid #cacaca;
    background-color: #fff;
    color: #40444c;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.default-btn.about-btn {
    height: 54px;
    background-color: transparent;
}

.default-btn:hover {
    background-color: #e8b591;
    color: #fff;
    border-color: #e8b591;
}

.darkMode .default-btn {
    border-color: rgba(248, 248, 248, 0.2);
    background-color: var(--bg2);
    color: var(--text1);
}

.darkMode .default-btn:hover {
    background-color: #e8b591;
    color: #fff;
    border-color: #e8b591;
}

.arrow-btn::after {
    content: "\f060";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 20px;
    color: #e8b591;
    transition: all 0.3s ease-in-out;
}

html[dir=ltr] .arrow-btn::after {
    content: "\f061";
}

.arrow-btn:hover::after {
    color: #fff;
}

.icon-btn {
    stroke: #e8b591;
    fill: #e8b591;
}

.icon-btn:hover {
    stroke: #fff;
    fill: #fff;
}

.submit-btn {
    margin-inline-start: auto;
}

.booking-section .submit-btn {
    background-color: transparent;
    color: #fff;
    margin: 0 auto;
}

.booking-section .submit-btn:hover {
    background-color: #e8b591;
    color: #fff;
    border-color: #e8b591;
}

.darkMode .booking-section .submit-btn {
    border-color: rgba(248, 248, 248, 0.2);
    background-color: var(--bg2);
    color: var(--text1);
}

.darkMode .booking-section .submit-btn:hover {
    background-color: #e8b591;
    color: #fff;
    border-color: #e8b591;
}

.slider-content {
    position: relative;
}

.swiper-btn {
    position: absolute;
    inset: unset;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    aspect-ratio: 1;
    background-color: #fff;
    border: 1px solid #e8b591;
    color: #e8b591;
    font-size: 12px;
    cursor: pointer;
    z-index: 7;
    transition: all 0.3s ease-in-out;
}

.swiper-btn:hover {
    background-color: #e8b591;
    border-color: #e8b591;
    color: #fff;
}

.swiper-btn.swiper-btn-next {
    inset-inline-end: -30px;
}

.swiper-btn.swiper-btn-prev {
    inset-inline-start: -30px;
}

.darkMode .swiper-btn {
    background-color: var(--bg2);
    border-color: rgba(248, 248, 248, 0.2);
}

.darkMode .swiper-btn:hover {
    background-color: #e8b591;
    border-color: #e8b591;
    color: #fff;
}

html[dir=ltr] .swiper-btn i {
    transform: rotate(180deg);
}

@media (max-width: 1231px) {
    .swiper-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .swiper-btn {
        width: 40px;
    }
}

.main-swiper {
    position: relative;
}

.main-swiper .swiper-tools {
    position: absolute;
    top: 245px;
    inset-inline-start: 60px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    z-index: 3;
}

.main-swiper .swiper-tools:has(.swiper-pagination-bullet:only-child) {
    display: none;
}

@media (max-width: 991px) {
    .main-swiper .swiper-tools {
        top: 150px;
    }
}

@media (max-width: 767px) {
    .main-swiper .swiper-tools {
        inset-inline-start: 0;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        top: unset;
        bottom: 120px;
        gap: 15px;
    }
}

.main-swiper .swiper-btn {
    position: relative;
    inset: unset;
    transform: none;
    background-color: transparent;
    border: 1px solid #e2e6ee;
    color: #fff;
    display: flex;
}

.main-swiper .swiper-btn:hover {
    background-color: #e2e6ee;
    color: #e8b591;
}

html[dir=ltr] .main-swiper .swiper-btn i {
    transform: none;
}

.main-swiper .swiper-btn.swiper-btn-next {
    inset: unset;
}

@media (max-width: 767px) {
    html[dir=rtl] .main-swiper .swiper-btn.swiper-btn-next i {
        transform: rotate(90deg);
    }

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

.main-swiper .swiper-btn.swiper-btn-prev {
    inset: unset;
}

@media (max-width: 767px) {
    html[dir=rtl] .main-swiper .swiper-btn.swiper-btn-prev i {
        transform: rotate(90deg);
    }

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

.main-swiper .swiper-pagination {
    position: relative;
    inset: unset;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: auto;
    gap: 15px;
}

@media (max-width: 767px) {
    .main-swiper .swiper-pagination {
        gap: 8px;
        flex-direction: row;
    }
}

.main-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 24px;
    background-color: #fff;
    opacity: 0.3;
    border-radius: 0;
    margin: 0 !important;
    transition: all 0.3s ease-in-out;
}

.main-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 767px) {
    .main-swiper .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 4px;
    }
}

.project-slider .swiper-tools {
    top: 216px;
}

@media (max-width: 991px) {
    .project-slider .swiper-tools {
        top: 150px;
    }
}

@media (max-width: 767px) {
    .project-slider .swiper-tools {
        top: unset;
    }
}

.project-slider .swiper-btn {
    width: 44px;
    aspect-ratio: 44/43;
    border: 1px solid #e8b591;
    color: #e8b591;
}

.project-slider .swiper-btn:hover {
    background-color: #e8b591;
    color: #fff;
}

.project-slider .swiper-pagination .swiper-pagination-bullet {
    height: 16px;
}

@media (max-width: 767px) {
    .project-slider .swiper-pagination .swiper-pagination-bullet {
        height: 4px;
    }
}

.slider-pagination.swiper-pagination-bullets {
    position: relative;
    inset: unset;
    transform: none;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 52px;
}

.slider-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    height: 12px;
    width: 24px;
    background-color: #96a0b6;
    opacity: 0.3;
    border-radius: 0;
    margin: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slider-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 991px) {
    .slider-pagination.swiper-pagination-bullets {
        display: flex;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .slider-pagination.swiper-pagination-bullets {
        gap: 8px;
    }

    .slider-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        height: 4px;
        width: 8px;
    }
}

.section-tools {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}
.services-slider .section-tools{
    margin-top: 40px;
}
.section-tools .slider-pagination.swiper-pagination-bullets {
    width: auto;
    margin: 0;
}

@media (max-width: 1199px) {
    .section-tools {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-tools {
        gap: 15px;
    }
}

.projects-head .swiper-btn,
.services-slider .swiper-btn,
.gallery-slider .swiper-btn {
    color: #626c83;
    position: relative;
    inset: unset;
    transform: none;
    background-color: transparent;
}

.projects-head .swiper-btn.swiper-btn-next, .projects-head .swiper-btn.swiper-btn-prev,
.services-slider .swiper-btn.swiper-btn-next, .services-slider .swiper-btn.swiper-btn-prev,
.gallery-slider .swiper-btn.swiper-btn-next,
.gallery-slider .swiper-btn.swiper-btn-prev {
    inset: unset;
}

.projects-head .swiper-btn:hover,
.services-slider .swiper-btn:hover,
.gallery-slider .swiper-btn:hover {
    background-color: #e8b591;
    color: #fff;
}

.projects-head .slider-pagination,
.services-slider .slider-pagination,
.gallery-slider .slider-pagination {
    display: flex;
}

.gallery-slider .section-tools {
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .gallery-slider .section-tools {
        display: flex;
    }
}

.certificates-slider .slider-pagination.swiper-pagination-bullets {
    display: flex;
}

.section-head {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.section-head.mobile {
    display: none;
}

.about-section .section-head {
    align-items: flex-start;
    text-align: start;
}

@media (max-width: 991px) {
    .about-section .section-head {
        align-items: center;
        text-align: center;
        display: none;
    }

    .about-section .section-head.mobile {
        display: flex;
    }
}

@media (max-width: 991px) {
    .about-project .section-head {
        align-items: flex-start;
        text-align: start;
        display: flex;
    }

    .about-project .section-head.mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-project .section-head {
        align-items: center;
        text-align: center;
        display: none;
    }

    .about-project .section-head.mobile {
        display: flex;
    }
}

.services-section .section-head {
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .services-section .section-head {
        gap: 5px;
        margin-bottom: 40px;
    }
}

.projects-section .section-head {
    gap: 20px;
    margin-bottom: 56px;
    align-items: flex-start;
    text-align: start;
}

@media (max-width: 1199px) {
    .projects-section .section-head {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .projects-section .section-head {
        gap: 5px;
        margin-bottom: 40px;
    }
}

.certificates-section .section-head {
    margin-bottom: 40px;
}

.clients-section .section-head {
    margin-bottom: 15px;
}

.contact-section .section-head {
    align-items: flex-start;
    text-align: start;
}

.gallery-section .section-head {
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .gallery-section .section-head {
        gap: 5px;
        margin-bottom: 40px;
    }
}

.booking-section .section-head {
    gap: 0;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .booking-section .section-head {
        gap: 5px;
        margin-bottom: 40px;
    }
}

.guarantees-section .section-head {
    gap: 20px;
    margin-bottom: 56px;
}

@media (max-width: 767px) {
    .guarantees-section .section-head {
        gap: 5px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .section-head {
        gap: 5px;
        margin-bottom: 40px;
    }
}

.section-subtitle {
    color: #e8b591;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.25;
    margin: 0;
}

@media (max-width: 767px) {
    .section-subtitle {
        line-height: 1.8;
    }
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text1);
    line-height: 1.5278;
    margin: 0;
}

.projects-section .section-title {
    font-size: 32px;
    color: #fff;
}

@media (max-width: 767px) {
    .projects-section .section-title {
        font-size: 28px;
    }
}

.contact-section .section-title {
    font-size: 30px;
}

@media (max-width: 767px) {
    .contact-section .section-title {
        font-size: 28px;
    }
}

.gallery-section .section-title {
    color: #fff;
}

.booking-section .section-title {
    color: #fff;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
}

.section-description {
    width: 100%;
    max-width: 760px;
    color: var(--text2);
    font-size: 16px;
    font-weight: 400;
    line-height: 2.25;
    margin: 0;
}

.projects-section .section-description {
    color: #fff;
    word-spacing: 2px;
    letter-spacing: -.6px;
}

@media (max-width: 767px) {
    .section-description {
        font-size: 14px;
    }
}

.pattern {
    position: absolute;
    z-index: 4;
}

.about-section {
    position: relative;
}

.about-section .pattern {
    background-color: var(--bg2);
    -webkit-clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 75%);
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 75%);
}

.about-section .pattern.start {
    top: 12px;
    bottom: -43px;
    inset-inline-start: 0;
    aspect-ratio: 522/564;
}

.about-section .pattern.end {
    top: -21px;
    bottom: 0;
    aspect-ratio: 500/554;
    inset-inline-end: 0;
}

@media (max-width: 991px) {
    .about-section .pattern.start {
        top: 12px;
        inset-inline-end: 0;
        aspect-ratio: unset;
    }

    .about-section .pattern.end {
        display: none;
    }
}

.projects-section .start-cover {
    background-color: #071b38;
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: calc((100vw - 1180px) / 2);
    z-index: 5;
    overflow: hidden;
}

.projects-section .projects-content {
    position: relative;
}

.projects-section .inner-cover {
    background-color: #071b38;
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: -10px;
    width: calc(33.3333333333% + 1px);
    z-index: 5;
}

@media (max-width: 1199px) {
    .projects-section .start-cover {
        background-color: #0b2346;
        inset: 0;
        width: 100%;
        -webkit-clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 75%);
        clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 75%);
        z-index: 2;
    }

    .projects-section .inner-cover {
        display: none;
    }
}

.project-banner {
    position: relative;
}

.project-banner .pattern {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .project-banner .pattern {
        top: 0;
        transform: translateX(-50%);
    }
}

.gallery-section {
    position: relative;
}

.gallery-section .pattern {
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-section::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: #0b2346;
    inset: 0;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 75%);
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 75%);
    z-index: 1;
}

.booking-form .pattern {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media (max-width: 767px) {
    .booking-form .pattern {
        width: calc(100% - 50px);
    }
}

.guarantees-section {
    position: relative;
}

.guarantees-section .pattern {
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
}

.gm-ui-hover-effect {
    inset: unset !important;
    top: -5px !important;
    inset-inline-end: -5px !important;
}

@media (max-width: 767px) {
    .gm-ui-hover-effect > span {
        background-color: #e8b591;
    }
}

.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-d {
    padding: 0 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
    border-radius: 5px !important;
    background-color: #fff !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294) !important;
    max-height: none !important;
}

@media (max-width: 767px) {
    .contact-map .gm-style .gm-style-iw-c,
    .contact-map .gm-style .gm-style-iw-d {
        display: none !important;
    }
}

.gm-style .gm-style-iw-c {
    max-width: none !important;
}

.gm-style-iw-ch,
.gm-style-iw-chr {
    display: none !important;
}

.map-branch {
    width: 504px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 13px 4px;
    padding-inline-end: 0;
    font-family: "Almarai" !important;
}

@media (max-width: 767px) {
    .map-branch {
        flex-direction: column;
        padding: 5px;
        width: 235px;
    }
}

.map-branch .branch-img {
    width: 226px;
    aspect-ratio: 226/123;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    flex-shrink: 0;
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-branch .branch-img img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 767px) {
    .map-branch .branch-img {
        width: 100%;
        height: auto;
    }
}

.map-branch .branch-info {
    padding: 0 16px;
}

@media (max-width: 767px) {
    .map-branch .branch-info {
        padding: 5px 10px 0;
    }
}

.map-branch .branch-title {
    font-size: 14px;
    color: #1d1f1f;
    font-weight: 400;
    line-height: 1.5714;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 10px;
}

.map-branch .branch-title span {
    color: var(--text2);
    line-height: 1.83334;
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}

.map-branch .branch-tools {
    padding: 10px 0 5px;
    padding-inline-end: 5px;
    border-top: 1px solid #eeeeee;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5px;
}

.map-branch .branch-tools a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-branch .branch-directions {
    width: 154px;
    height: 41px;
    border: 1px solid #cacaca;
    gap: 6px;
    color: #000;
    fill: #e8b591;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.map-branch .branch-phone {
    width: 42px;
    aspect-ratio: 1;
    flex-shrink: 0;
    background-color: #0bcd74;
    fill: #fff;
    border-radius: 40%;
    transition: all 0.3s ease-in-out;
}

.map-branch .branch-phone:hover {
    background-color: #e8b591;
    fill: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
}

@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-label,.form-group>label {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125rem;
    margin: 0 0 10px;
}

.darkMode .contact-label,.darkMode ,.form-group>label  {
    color: var(--text2);
}

.booking-section .contact-label {
    color: #fff;
}

.contact-input {
    height: 37px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #eee;
    background-color: #f8f8f8;
    padding: 0 10px;
    font-weight: 400;
    font-size: 14px;
    color: var(--text1);
    resize: none;
    transition: all 0.3s ease-in-out;
}

.contact-input::-moz-placeholder {
    color: #a5a5a5;
    font-size: 13px;
    font-weight: 400;
}

.contact-input::placeholder {
    color: #a5a5a5;
    font-size: 13px;
    font-weight: 400;
}

.contact-input:is(textarea) {
    height: 98px;
    padding: 10px;
}

html[dir=rtl] .contact-input {
    direction: rtl;
}

.contact-input:focus {
    border-color: #e8b591;
}

.darkMode .contact-input {
    border-color: rgba(248, 248, 248, 0.2);
    background-color: var(--bg2);
}

.darkMode .contact-input:focus {
    border-color: #e8b591;
}

.main-section {
    position: relative;
}

.main-section .shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    -o-object-fit: cover;
    object-fit: cover;
}

.main-section .shape.dark {
    display: none;
}

.darkMode .main-section .shape {
    display: none;
}

.darkMode .main-section .shape.dark {
    display: block;
}

.main-slide {
    width: 100%;
    aspect-ratio: 1280/941;
    min-height: 941px;
    max-height: 1150px;
    position: relative;
    padding: 245px 0 0;
    display: flex;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .main-slide {
        padding: 150px 0 0;
        min-height: 690px;
    }
}

@media (max-width: 767px) {
    .main-slide {
        min-height: 640px;
        aspect-ratio: unset;
        padding: 150px 0 190px;
    }
}

.main-slide .main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-slide .main-content {
    position: relative;
    z-index: 2;
    padding-inline-start: 140px;
    padding-inline-end: 200px;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-slide .slid-excerpt {
    color: #fff
}

@media (max-width: 991px) {
    .main-slide .main-content {
        max-width: 100%;
        padding-inline-start: 100px;
        padding-inline-end: 0;
    }
}

@media (max-width: 767px) {
    .main-slide .main-content {
        padding: 0;
        text-align: center;
    }
}

.main-slide .main-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #e8b591;
    line-height: 1.125;
    margin: 0;
}

@media (max-width: 767px) {
    .main-slide .main-subtitle {
        font-size: 18px;
    }
}

.main-slide .main-title {
    font-weight: 800;
    color: #fff;
    font-size: 36px;
    line-height: 1.5278;
    margin: 0;
}

@media (max-width: 767px) {
    .main-slide .main-title {
        font-size: 24px;
    }
}

.main-slide .main-description {
    font-size: 16px;
    font-weight: 400;
    color: #cacaca;
    line-height: 1.125;
    margin: 0;
}

@media (max-width: 767px) {
    .main-slide .main-description {
        font-size: 14px;
    }
}

.darkMode .main-slide .main-btn {
    border: 1px solid #cacaca;
    background-color: #fff;
    color: #40444c;
}

.darkMode .main-slide .main-btn:hover {
    background-color: #e8b591;
    color: #fff;
    border-color: #e8b591;
}

@media (max-width: 767px) {
    .main-slide .main-btn {
        gap: 7px;
        height: 40px;
        font-size: 14px;
        margin: 0 auto;
    }

    .main-slide .main-btn::after {
        font-size: 16px;
    }
}

.thumbs-content {
    height: 470px;
    position: absolute;
    top: 147px;
    inset-inline-end: 60px;
    z-index: 3;
}

.thumbs-content .thumbs-slider {
    height: 100%;
}

.thumbs-content .swiper {
    height: 100%;
    max-height: 100%;
}

.thumbs-content .thumb-img {
    height: 100%;
    aspect-ratio: 170/130;
    border: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.thumbs-content .swiper-slide-thumb-active .thumb-img {
    border-color: #e8b591;
}

@media (max-width: 991px) {
    .thumbs-content {
        display: none;
    }
}

.project-slider .main-slide {
    aspect-ratio: 1280/660;
    min-height: 660px;
    max-height: 750px;
}

.project-slider .main-slide:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 21, 41, 0.6);
    z-index: 1;
}

@media (max-width: 767px) {
    .project-slider .main-slide {
        min-height: 550px;
    }
}

.project-slider .main-content {
    padding-inline-start: 100px;
    padding-inline-end: 0;
}

@media (max-width: 767px) {
    .project-slider .main-content {
        padding: 0;
    }
}

.project-slider .main-subtitle {
    font-size: 18px;
}

.project-slider .main-title {
    font-size: 30px;
}

@media (max-width: 767px) {
    .project-slider .main-title {
        font-size: 24px;
    }
}

.about-content {
    display: flex;
    align-items: center;
    gap: 42px;
    position: relative;
    z-index: 6;
}

@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
        gap: 0;
    }
}

.about-content .about-img {
    padding-inline-start: 91px;
    width: 51%;
    max-width: 590px;
    position: relative;
    flex-shrink: 0;
}

.about-content .about-img .img-holder {
    width: 100%;
    aspect-ratio: 499/338;
    overflow: hidden;
}

.about-content .about-img .about-logo {
    width: 250px;
    aspect-ratio: 250/105;
    padding: 26.5px 29px;
    border: 1px solid #e2e6ee;
    background-color: var(--bg1);
    position: absolute;
    inset-inline-start: 0;
    bottom: -40px;
}

.about-content .about-img .about-logo svg {
    fill: #586d68;
    stroke: #073b4a;
}

.darkMode .about-content .about-img .about-logo {
    border-color: rgba(248, 248, 248, 0.2);
}

.darkMode .about-content .about-img .about-logo svg {
    fill: #fff;
    stroke: #fff;
}

@media (max-width: 991px) {
    .about-content .about-img {
        width: 100%;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .about-content .about-img {
        padding-inline-start: 0;
        margin-bottom: 35px;
    }

    .about-content .about-img .about-logo {
        width: 200px;
        padding: 20px;
        inset-inline-start: 15px;
        bottom: 15px;
    }
}

.about-content .about-text {
    padding-inline-end: 85px;
}

@media (max-width: 1199px) {
    .about-content .about-text {
        padding: 0;
    }
}

.about-description {
    font-size: 16px;
    color: var(--text2);
    font-weight: 400;
    line-height: 2.25;
    margin: 0;
}

@media (max-width: 991px) {
    .about-description {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .about-description {
        font-size: 14px;
    }
}

.about-btn {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .about-btn {
        margin-inline: auto;
    }
}

.about-features {
    padding: 10px 16px 15px;
    background-color: var(--bg1);
    border-bottom: 5px solid #e8b591;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    font-weight: 700;
    color: var(--text2);
    line-height: 2.25;
    margin-top: 20px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.about-features li::before {
    content: "•";
}

@media (max-width: 767px) {
    .about-features {
        margin-inline: auto;
    }
}

.about-project {
    display: flex;
    align-items: flex-start;
    gap: 74px;
    position: relative;
    z-index: 6;
}

@media (max-width: 991px) {
    .about-project {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .about-project {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
}

.about-project .about-img {
    padding-inline-start: 87px;
    width: 51%;
    max-width: 520px;
    position: relative;
    flex-shrink: 0;
}

.about-project .about-img .img-holder {
    width: 100%;
    aspect-ratio: 433/583;
    overflow: hidden;
}

@media (max-width: 991px) {
    .about-project .about-img {
        padding: 0;
        max-width: 433px;
    }
}

@media (max-width: 767px) {
    .about-project .about-img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 35px;
    }
}

.about-project .about-text {
    padding-top: 25px;
    padding-inline-end: 40px;
}

@media (max-width: 1199px) {
    .about-project .about-text {
        padding: 0;
    }
}

.service-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    aspect-ratio: 270/300;
    overflow: hidden;
}

.service-item .service-img {
    width: 100%;
    height: 100%;
}

.service-item .service-img img {
    transition: all 0.3s ease-in-out;
}

.service-item .service-title {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 24px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1112;
    z-index: 3;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .service-item .service-title {
        font-size: 16px;
        padding: 0 10px;
        line-height: 1.8;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.service-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #031022 0%, #0c4088 100%);
    opacity: 0.6;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.service-item:hover .service-img img {
    transform: scale(1.2);
}

.statistics-content {
    display: flex;
    justify-content: center;
}

@media (max-width: 1199px) {
    .statistics-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px 15px;
    }
}

@media (max-width: 767px) {
    .statistics-content {
        grid-template-columns: 1fr 1fr;
    }
}

.statistics-item {
    padding: 0 65px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

@media (max-width: 1199px) {
    .statistics-item {
        padding: 0;
        justify-content: center;
    }
}

.statistics-item::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(22deg);
    height: 134px;
    width: 1px;
    inset-inline-end: 0;
    background-color: #96a0b6;
}

@media (max-width: 767px) {
    .statistics-item::after {
        display: none;
    }
}

.statistics-item .statistics-icon {
    width: 64px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

@media (max-width: 991px) {
    .statistics-item .statistics-icon {
        width: 55px;
        margin-bottom: 20px;
    }
}

.statistics-item .statistics-title {
    font-size: 24px;
    color: var(--text1);
    font-weight: 400;
    line-height: 1.125;
    margin: 0 0 21px;
}

@media (max-width: 991px) {
    .statistics-item .statistics-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.statistics-item .statistics-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--text1);
    line-height: 1.125;
    direction: ltr;
    margin: 0;
}

@media (max-width: 991px) {
    .statistics-item .statistics-value {
        font-size: 32px;
    }
}

.statistics-item:last-of-type::after {
    display: none;
}

.project-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    aspect-ratio: 320/370;
    overflow: hidden;
}

.project-item .project-img {
    width: 100%;
    height: 100%;
}

.project-item .project-img img {
    transition: all 0.3s ease-in-out;
}

.project-item .project-information {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 14px 30px;
    background-color: linear-gradient(180deg, rgba(3, 16, 34, 0.06) 0%, rgba(12, 64, 136, 0.6) 100%);
}

.project-item .project-type {
    font-size: 14px;
    line-height: 3.93;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.project-item .project-location {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 2.25;
    margin: 0;
}

.project-item .project-status {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    color: #fff;
    font-size: 14px;
    padding: 0 10px;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    border-radius: 10px;
}

.project-item .project-status.available {
    background-color: #41c980;
}

.project-item .project-status.unavailable {
    background-color: #EB5757;
}

.project-item:hover .project-img img {
    transform: scale(1.1);
}

.certificate-item {
    display: flex;
    width: 100%;
    aspect-ratio: 346/428;
    overflow: hidden;
    transform: scale(0.8);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.swiper-slide-active .certificate-item {
    transform: scale(1);
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 235/169;
    padding: 15px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
}

@media (max-width: 767px) {
    .client-item {
        padding: 7px;
        aspect-ratio: unset;
        height: 115px;
    }
}

.contact-section {
    padding: 27px 0;
    position: relative;
}

@media (max-width: 767px) {
    .contact-section {
        padding: 40px 0;
    }
}

.contact-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    background-color: var(--bg1);
    border-radius: 10px;
    width: 100%;
    max-width: 421px;
    margin-right: auto;
}

.contact-map {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-map #map {
    height: 100%;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 8;
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 17px 10px 21px;
    border-radius: 10px;
    background-color: #f9f7f3;
}

.feature-item .feature-icon {
    width: 85px;
    aspect-ratio: 85/70;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item .feature-title {
    font-size: 14px;
    color: #40444c;
    line-height: 2;
    font-weight: 400;
    height: 56px;
    text-align: center;
    margin: 0;
}

.gallery-item {
    display: flex;
    width: 100%;
    aspect-ratio: 320/370;
    position: relative;
}

.gallery-item.video-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 16, 34, 0.06) 0%, rgba(12, 64, 136, 0.6) 100%);
    z-index: 1;
}

.gallery-item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    aspect-ratio: 1;
    border: 2px solid #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    z-index: 2;
}

.guarantees-item {
    border: 1px solid #d9d9d9;
    background-color: var(--bg1);
    padding: 34px 29px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 1199px) {
    .guarantees-item {
        padding: 30px 15px;
    }
}

.guarantees-item .value {
    width: 103px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #e8b591;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.667;
    padding: 0 5px;
}

.guarantees-item .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text1);
    text-align: center;
    padding: 0 8px;
    margin: 0;
    line-height: 1.667;
}

@media (max-width: 1199px) {
    .guarantees-item .title {
        padding: 0 5px;
    }
}

header {}

.head-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.149);
}

.head-inside {
    background-color: rgba(3, 16, 33, 0.9);
}

.head-project {
  background-color: rgba(3, 16, 33, 0.9);
}

@media (max-width: 767px) {
    header {
        overflow: hidden;
    }
}

.inner-page header {

}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

@media (max-width: 767px) {
    .header {
        padding: 10px 0;
    }
}

.logo {
    width: 100%;
    max-width: 192.5px;
    aspect-ratio: 267/77;
    display: flex;
}

@media (max-width: 1199px) {
    .logo {
        width: 150px;
    }
}

@media (max-width: 991px) {
    .logo {
        width: 125px;
    }
}

@media (max-width: 767px) {
    .logo {
        width: 150px;
    }
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (max-width: 1199px) {
    .header-tools {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .header-tools {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .header-tools {
        gap: 20px;
    }
}

.mode-swither .mode-switch {
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0e203d;
    color: #626c83;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.mode-swither .mode-switch span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mode-swither .mode-switch .sun {
    display: none;
}

.mode-swither .mode-switch:hover {
    background-color: #fff;
    color: #0e203d;
}

@media (max-width: 767px) {
    .mode-swither .mode-switch {
        width: 35px;
        font-size: 16px;
    }
}

.mode-swither .switch {
    cursor: pointer;
    margin: 0;
}

.mode-swither .switch input {
    display: none;
}

.mode-swither .switch input:checked ~ .mode-switch {
    background-color: #fff;
    color: #e8b591;
}

.mode-swither .switch input:checked ~ .mode-switch .moon {
    display: none;
}

.mode-swither .switch input:checked ~ .mode-switch .sun {
    display: flex;
}

@media (max-width: 767px) {
    .lang-content {
        display: none;
    }
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #898989;
    transition: all 0.3s ease-in-out;
}

.lang-link i {
    font-size: 24px;
    width: 37px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-link:hover {
    color: #e8b591;
}

@media (max-width: 991px) {
    .lang-link i {
        display: none;
    }
}

@media (max-width: 767px) {
    .lang-link i {
        display: flex;
    }
}

.nav-trigger {
    display: none;
    align-items: center;
    justify-content: flex-end;
    order: 3;
}

@media (max-width: 767px) {
    .nav-trigger {
        display: flex;
    }
}

.menu-btn {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: -moz-max-content;
    width: max-content;
    padding: 0;
    z-index: 99;
}

.menu-btn .btn-bar {
    position: relative;
    width: 22px;
    height: 2px;
    border-radius: 5px;
    background-color: #fff;
}

.menu-btn .btn-bar.menu {
    transition: transform 0.3s ease-in-out 0.2s, opacity 0.15s ease-in-out 0.2s;
}

.menu-btn .btn-bar.menu:not(:first-child) {
    margin-top: 5px;
}

.menu-btn .btn-bar.menu:nth-child(even) {
    width: 30px;
}

.menu-btn .btn-bar.close {
    transform-origin: center center;
    position: absolute;
    margin-top: -1.5px;
    opacity: 0;
    top: 50%;
    transition: transform 0.2s ease-in-out, opacity 0.05s ease-in-out 0.2s;
}

.menu-btn .btn-bar.close:not(:last-child) {
    transform: rotate(45deg) translateX(-250%);
}

.menu-btn .btn-bar.close:last-child {
    transform: rotate(-45deg) translateX(250%);
}

.menu-btn.active .btn-bar {
    background-color: #071b38;
}

.menu-btn.active .btn-bar.menu {
    transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s, background-color 0.15s ease-in-out 0.15s;
    opacity: 0;
}

.menu-btn.active .btn-bar.menu:nth-child(odd) {
    transform: translateX(-400%);
}

.menu-btn.active .btn-bar.menu:nth-child(even) {
    transform: translateX(200%);
}

.menu-btn.active .btn-bar.close {
    opacity: 1;
    transition: transform 0.2s ease-in-out 0.3s, opacity 0.05s ease-in-out 0.3s, background-color 0.15s ease-in-out 0.3s;
}

.menu-btn.active .btn-bar.close:not(:last-child) {
    transform: rotate(45deg);
}

.menu-btn.active .btn-bar.close:last-child {
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .header-nav {
        display: none;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

@media (max-width: 1199px) {
    .nav-list {
        gap: 15px;
    }
}

.nav-list li {
    position: relative;
    line-height: 1.125;
}

.nav-list li::before {
    content: "";
    background-image: url(../svg/navbar.svg);
    width: 8px;
    aspect-ratio: 1/2;
    position: absolute;
    bottom: calc(100% + 3px);
    inset-inline-start: 0;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    display: none;
}

.nav-list li:has(.active)::before {
    display: block;
}

.nav-list a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    display: flex;
    transition: all 0.3s ease-in-out;
}

.nav-list a:hover {
    color: #e8b591;
}

.nav-list a.active {
    color: #e8b591;
}

@media (max-width: 991px) {
    .nav-list a {
        font-size: 14px;
    }
}

.background {
    position: absolute;
    flex-flow: column;
    align-items: stretch;
    top: 0;
    left: 0;
    right: 0;
    bottom: -2px;
    display: none;
}

.background .portion {
    background: #fff;
    flex: 1 1 100%;
    transition: transform 0.2s ease-in-out;
}

.background .portion:not(:first-child) {
    margin-top: -1px;
}

.background .portion:nth-child(odd) {
    transform: translateX(-100%);
}

.background .portion:nth-child(even) {
    transform: translateX(100%);
}

.mobile-nav {
    display: none;
}

.mobile-tools {
    position: absolute;
    top: 13px;
    inset-inline-start: 11px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-tools .lang-content {
    display: flex;
}

@media (max-width: 767px) {
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        border: none;
        padding: 0;
        background-color: transparent;
        border-radius: 0;
        display: none;
        transition: z-index 0.01s ease-in-out 0.2s;
    }

    .mobile-nav .background {
        display: flex;
    }

    .mobile-nav .nav-content {
        visibility: hidden;
        opacity: 0;
        transform: matrix(1, 0, 0, 1, 0, 20);
        display: block;
        background-color: transparent;
        border: none;
        padding: 100px 30px 40px;
        width: 100%;
        height: 100%;
        background: #fff;
        overflow-y: auto;
        border-radius: 0;
        transition: all 0.01s ease-in-out;
    }

    .mobile-nav .nav-list {
        display: block;
        text-align: center;
    }

    .mobile-nav .nav-list li {
        padding: 15px 0;
        width: 100%;
    }

    .mobile-nav .nav-list li::before {
        content: unset;
    }

    .mobile-nav .nav-list a {
        font-size: 20px;
        font-weight: 700;
        color: #071b38;
        width: 100%;
        justify-content: center;
    }

    .mobile-nav .nav-list a:hover, .mobile-nav .nav-list a.active {
        color: #e8b591;
    }

    .mobile-nav.active {
        z-index: 98;
        transition: z-index 0.01s ease-in-out 0.3s;
    }

    .mobile-nav.active .background .portion {
        transform: translateX(0%);
        transition: transform 0.2s ease-in-out 0.3s;
    }

    .mobile-nav.active .nav-content {
        visibility: visible;
        opacity: 1;
        transform: matrix(1, 0, 0, 1, 0, 0);
        transition: all 0.3s ease-in-out 0.5s;
    }
}

footer {
    background-image: url(../jpg/1.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    z-index: 4;
}

footer:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(3, 16, 34, 0.92) 0%, rgba(12, 64, 136, 0.92) 100%);
}

.footer {
    position: relative;
    z-index: 2;
    padding: 100px 0 54px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px 15px;
}

@media (max-width: 991px) {
    .footer {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .footer {
        flex-direction: column;
        padding: 50px 0 35px;
        gap: 25px 0;
    }
}

.footer-information {
    width: 100%;
    max-width: 270px;
    padding-top: 4px;
}

@media (max-width: 991px) {
    .footer-information {
        width: 100%;
        max-width: unset;
        margin-bottom: 15px;
    }
}

.footer-logo {
    width: 100%;
    max-width: 264.69px;
    aspect-ratio: 264.69/71.5;
    display: flex;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .footer-logo {
        margin-inline: auto;
    }
}

.footer-description {
    font-size: 14px;
    font-weight: 400;
    color: #95a7c0;
    line-height: 1.857;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-description {
        max-width: 270px;
        text-align: center;
        margin: 0 auto;
    }
}

.footer-nav {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
}

@media (max-width: 767px) {
    .footer-nav {
        width: 100%;
    }
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    position: relative;
    margin: 0 0 30px;
}

.footer-title::before {
    content: "";
    background-image: url(../svg/navbar.svg);
    width: 14px;
    aspect-ratio: 14/29;
    position: absolute;
    bottom: calc(100% - 1px);
    inset-inline-start: 0;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .footer-title {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .footer-title::before {
        display: none;
    }

    .footer-title:after {
        font-family: "Font Awesome 6 Pro";
        font-weight: 400;
        font-size: 14px;
        content: "\f107";
        transition: all 0.3s ease-in-out;
    }

    .footer-title.active:after {
        transform: rotate(-180deg);
    }
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li:last-of-type {
    margin: 0;
}

.footer-list a {
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    color: #95a7c0;
    transition: all 0.3s ease-in-out;
}

.footer-list a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .footer-list {
        display: none;
        padding: 15px 15px 0;
    }
}

.footer-contacts {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
}

@media (max-width: 767px) {
    .footer-contacts {
        width: 100%;
    }
}

.footerContact-list li {
    margin-bottom: 20px;
}

.footerContact-list li:last-of-type {
    margin: 0;
}

.footerContact-list .contact-value {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    color: #eeeeee;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.footerContact-list .contact-value:is(a):hover {
    color: #e8b591;
}

.footerContact-list .en {
    direction: ltr;
}

@media (max-width: 767px) {
    .footerContact-list {
        display: none;
        padding: 15px 15px 0;
    }
}

.last-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(248, 248, 248, 0.2);
}

.last-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

@media (max-width: 767px) {
    .last-footer-content {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 20px;
        padding: 15px 0;
    }
}

.copyright {
    font-size: 16px;
    font-weight: 700;
    color: #eeeeee;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .copyright {
        font-size: 14px;
        text-align: center;
    }
}

.socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ffffff;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.social-link:hover {
    background-color: #fff;
    color: #e8b591;
}

.about-section {
    padding: 97px 0 98px;
}

@media (max-width: 767px) {
    .about-section {
        padding: 50px 0;
    }
}

.services-section {
    padding: 73px 0 90px;
}

@media (max-width: 767px) {
    .services-section {
        padding: 30px 0 40px;
    }
}

.statistics-section {
    padding: 50px 0 54px;
    background-color: var(--bg2);
}

.darkMode .statistics-section {
    background-color: rgba(7, 27, 56, 0.5);
}

@media (max-width: 767px) {
    .statistics-section {
        padding: 30px 0;
    }
}

.projects-section {
    position: relative;
    padding: 146px 0;
    background-color: #071b38;
    overflow: hidden;
}

.projects-section .row {
    align-items: center;
}

.projects-section .projects-slider {
    position: relative;
    z-index: 4;
}

.projects-section .swiper {
    overflow: unset;
}

@media (max-width: 1199px) {
    .projects-section .swiper {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .projects-section {
        padding: 80px 0;
    }

    .projects-section .swiper {
        overflow: unset;
    }
}

.projects-head {
    position: relative;
    z-index: 5;
    background-color: #071b38;
}

.projects-head .section-head {
    position: relative;
    z-index: 2;
    width: 317px;
}

@media (max-width: 1199px) {
    .projects-head {
        background-color: transparent;
    }

    .projects-head .section-head {
        width: 100%;
    }
}

.certificates-section {
    padding: 110px 0 30px;
}

@media (max-width: 991px) {
    .certificates-section {
        overflow: hidden;
    }

    .certificates-section .swiper {
        overflow: unset;
    }
}

@media (max-width: 767px) {
    .certificates-section {
        padding: 70px 0 20px;
    }
}

.clients-section {
    padding: 30px 0 60px;
}

.project-banner {
    width: 100%;
    max-width: 961px;
    margin-inline-start: auto;
    position: relative;
    overflow: hidden;
    -webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
    background-color: #0b2346;
    padding: 60px 45px 120px;
    margin-top: -200px;
    z-index: 6;
}

.darkMode .project-banner {
    background-color: var(--bg2);
}

@media (max-width: 1199px) {
    .project-banner {
        padding: 60px 45px;
    }
}

@media (max-width: 767px) {
    .project-banner {
        padding: 70px 20px;
        margin-top: -100px;
        -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
        clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
        max-width: calc(100% - 30px);
        margin-inline: auto;
    }
}

.banner-content {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 767px) {
    .banner-content {
        flex-direction: column;
    }
}

.banner-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    padding-inline-end: 20px;
    margin: 0;
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 20px;
        padding: 0;
        order: 1;
    }
}

.banner-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 2.25;
    color: #96a0b6;
    margin: 0;
}

@media (max-width: 767px) {
    .banner-description {
        font-size: 14px;
        order: 3;
        text-align: center;
    }
}

.banner-img {
    width: 222px;
    aspect-ratio: 222/170;
    overflow: hidden;
    display: flex;
    position: relative;
    flex-shrink: 0;
}

.banner-img .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    aspect-ratio: 1;
    border: 2px solid #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

@media (max-width: 767px) {
    .banner-img {
        width: 100%;
        order: 2;
    }
}

.project-section {
    padding-bottom: 0;
}

.project-features {
    padding: 100px 0;
}

@media (max-width: 767px) {
    .project-features {
        padding: 60px 0;
    }
}

.features-content {
    width: 100%;
    max-width: 1088px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 33px;
}

@media (max-width: 991px) {
    .features-content {
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }
}

.features-content .section-head {
    padding-inline-start: 110px;
    transform: perspective(1px);
    width: 100%;
    max-width: 450px;
    align-items: flex-start;
    text-align: start;
    margin: 0;
}

.features-content .section-head .pattern {
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0;
    z-index: -1;
}

@media (max-width: 991px) {
    .features-content .section-head .pattern {
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 1199px) {
    .features-content .section-head {
        padding: 0;
        max-width: 330px;
    }
}

@media (max-width: 991px) {
    .features-content .section-head {
        max-width: 100%;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
}

.gallery-section {
    background-color: #071b38;
    padding: 65px 0 72px;
}

.gallery-section .gallery-content {
    position: relative;
    z-index: 6;
    max-width: 100%;
    width: 1020px;
    margin: 0 auto;
}

.booking-map {
    width: 100%;
    height: 639px;
}

.booking-map #map {
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .booking-map {
        height: 750px;
    }
}

.booking-content {
    margin-top: -157px;
}

@media (max-width: 767px) {
    .booking-content {
        margin-top: -220px;
    }
}

.booking-form {
    position: relative;
    z-index: 6;
    transform: perspective(1px);
    overflow: hidden;
    background-color: #0b2346;
    -webkit-clip-path: polygon(0 0, 90% 10%, 100% 100%, 10% 90%);
    clip-path: polygon(0 0, 90% 10%, 100% 100%, 10% 90%);
    padding: 88px 180px;
}

.darkMode .booking-form {
    background-color: var(--bg2);
}

@media (max-width: 1199px) {
    .booking-form {
        padding: 80px 120px;
    }
}

@media (max-width: 767px) {
    .booking-form {
        padding: 80px 15px;
        -webkit-clip-path: polygon(0 0, 100% 7.5%, 100% 100%, 0 92.5%);
        clip-path: polygon(0 0, 100% 7.5%, 100% 100%, 0 92.5%);
    }
}

.guarantees-section {
    padding: 111px 0 100px;
}

@media (max-width: 767px) {
    .guarantees-section {
        padding: 70px 0 60px;
    }
}

.guarantees-section .guarantees-content {
    position: relative;
    z-index: 7;
}


.acf-map {
    width: 100%;
    height: 630px;
    display: block;
}

.secPadding {
    padding: 75px 0;
}

.form-group {
    position: relative;
}

html[dir="ltr"] .wpcf7 {
    direction: ltr;
}
.custom-file-label::after{
    top:5px;
    bottom:5px;
    border-radius:4px;
    right:5px;
    border:none;
    background-color: rgba(3, 16, 33, 0.9);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0 15px;
    font-size: 14px;
}
html[dir="rtl"] .custom-file-label::after {
    
    left:5px;
    right: auto;
    content: "إرفاق";
    
}

.wpcf7-form-control-wrap .form-control, .form-group .custom-file-label {
    height: 40px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #eee;
    background-color: #f8f8f8;
    padding: 0 10px;
    font-weight: 400;
    font-size: 14px;
    color: var(--text1);
    resize: none;
    outline: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}
.form-group .custom-file-label {
        display: flex;
    align-items: center;
    margin: 0;
}
.wpcf7-form-control-wrap .form-control::-moz-placeholder, .wpcf7-form-control-wrap .custom-file-input::-moz-placeholder {
    color: #a5a5a5;
    font-size: 13px;
    font-weight: 400;
}

.wpcf7-form-control-wrap .form-control::placeholder, .wpcf7-form-control-wrap .custom-file-input::placeholder {
    color: #a5a5a5;
    font-size: 13px;
    font-weight: 400;
}

.wpcf7-form-control-wrap .form-control:is(textarea) {
    height: 98px;
    padding: 10px;
}

html[dir=rtl] .wpcf7-form-control-wrap .form-control, .wpcf7-form-control-wrap .custom-file-input {
    direction: rtl;
}

.wpcf7-form-control-wrap .form-control:focus, .wpcf7-form-control-wrap .custom-file-input:focus {
    border-color: #e8b591;
}

.darkMode .wpcf7-form-control-wrap .form-control, .darkMode .form-group .custom-file-label {
    border-color: rgba(248, 248, 248, 0.2);
    background-color: var(--bg2);
}

.darkMode .wpcf7-form-control-wrap .form-control:focus, .darkMode .wpcf7-form-control-wrap .custom-file-input:focus {
    border-color: #e8b591;
}

.darkMode .custom-file-label::after{
    background-color:#f9f7f3;
    color:#071b38;
}

.page-template .form{
        width: 100%;
    max-width: 550px;
    margin-inline: auto;
}

.page-editor{
    /*text-align:center;*/
}

.main__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 15px;
    height: 48px;
    border: 1px solid #cacaca;
    background-color: #fff;
    color: #40444c;
    font-size: 16px;
    margin-inline-start: auto;
    transition: all 0.3s ease-in-out;
}
.main__btn::after {
    content: "\f060";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 20px;
    color: #e8b591;
    transition: all 0.3s ease-in-out;
}
html[dir=ltr] .main__btn::after {
    content: "\f061";
}
.main__btn:hover {
    background-color: #e8b591;
    color: #fff;
    border-color: #e8b591;
}
.main__btn:hover::after {
    color: #fff;
}
.darkMode .main__btn{
    border-color: rgba(248, 248, 248, 0.2);
    background-color: var(--bg2);
    color: var(--text1);
}
.darkMode .main__btn:hover {
    background-color: #e8b591;
    color: #fff;
    border-color: #e8b591;
}
.darkMode .main__btn::after {
    color: #e8b591;
}
.darkMode .main__btn:hover::after {
    color: #fff;
}
.menu-item-has-children {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: -8px;
  background-color: var(--bg2);
  padding: 8px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  visibility: hidden;
  opacity: 0;
  z-index:9;
  transition: all 0.3s;
}
.sub-menu li {
  width: 100%;
}
.sub-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 8px;
  color: var(--text1);
  white-space: nowrap;
  font-size:14px;
  transition: all 0.3s;
}
.sub-menu a:hover{
    color: #e8b591;
    background-color: var(--bg1);
}
.menu-item-has-children:hover>a{color: #e8b591;}

.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.menu-item-has-children > a::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-size: 14px;
  content: "\f107";
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .sub-menu {
    position: relative;
    inset: unset;
    visibility: visible;
    opacity: 1;
    display: block;
    background-color: transparent;
    display: none;
    transition: none;
  }
  .sub-menu li {
    padding: 10px 0;
  }
  .sub-menu li:last-of-type {
    padding-bottom: 0;
  }
  .mobile-nav .sub-menu a {
    text-align: center;
    justify-content: center;
    color: #071b38;
    white-space: normal;
    padding: 0;
    font-weight: 400;
    font-size: 18px;
  }
  .mobile-nav .sub-menu a:hover {
    color: #e8b591;
    background-color: transparent;
  }
  .menu-item-has-children > a {
    gap: 10px;
  }
  .menu-item-has-children > a.active::after {
    transform: rotate(180deg);
  }
}

.blog-item{
    margin-bottom: 60px;
}
.blog-item .blogVector {
  width: 100%;
  aspect-ratio: 1024/797;
  overflow: hidden;
  margin-bottom: 25px;
}
.blog-item .blogVector img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item .blogData-tit {
  color: var(--text1);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1112;
  margin: 0 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item .blogData-des{
    color: var(--text2);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    margin: 0 0 10px;
}
.profile-url{
    display:none;
}
.phones{
    display: flex;
    gap: 10px;

}
.phones a:not(:last-of-type):after{
    content : ' - ';
    transition: all 0.3s ease-in-out;
}
.phones a:hover:not(:last-of-type):after{
color : #fff;
}


@media (max-width: 1199px) {
    .services-slider .section-tools {
        display: flex;
    }
}

html[dir='ltr'] .statistics-item .statistics-title{
    font-size: 20px;
}