@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ----------------------------------------------------------------
			[ All Css Plugins & Helper Classes File ]
-----------------------------------------------------------------*/
 
/* == owl.carousel == */
@import url("../plugins/owl.carousel.min.css");
@import url("../plugins/owl.theme.default.min.css");

/* == Slick Slider == */
@import url("../plugins/slick.css");
@import url("../plugins/slick-theme.css");

/* == animate css == */
@import url("../plugins/animate.min.css");

/* == themify, flaticon and fontawesome icons ==*/
@import url("../plugins/themify-icons.css");
@import url("../plugins/flaticon-rounded.css");
@import url("../plugins/flaticon-all.css");
@import url("../plugins/font-awesome-pro.css");

/* == magnific-popup gallery  == */
@import url("../plugins/magnific-popup.css");

/* == swiper Slider == */
@import url("../plugins/swiper-bundle.min.css");


:root {
  --primary-color: #3f2419;
  --secondary-color: #f0ebe5;
  --third-color:#8B8377;
  --white-color:#ffffff;
  --font-color:#000000;
}


* {
    box-sizing: border-box;
}
p,
a {
    text-transform: none;
    font-family: "Montserrat", sans-serif;
}
a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: "Montserrat", sans-serif;
}
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;
    font-family: "Montserrat", sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}
body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: #fff;
    text-align: start;
    /* color: #fff; */
}
.mb-10 {
    margin-bottom: 10px;
}
/* ======= Button style ======= */
.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 13px 40px;
    border: 1px solid var(--primary-color);
    position: relative;
    background-color: transparent;
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tf-btn .icon {
    font-size: 10px;
}
.tf-btn.btn-line {
    padding: 0;
    border: unset;
}
.tf-btn.btn-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0%;
    height: 1px;
    background-color: var(--secondary-color);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tf-btn.btn-line:hover {
    background-color: unset;
}
.tf-btn.btn-line:hover::after {
    left: 0;
    right: auto;
    width: 100%;
}
.tf-btn.btn-line.has-icon {
    gap: 0;
}
.tf-btn.btn-line.has-icon .icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: scale(0);
    font-size: 11px;
    margin-left: 12.5px;
}
.tf-btn.btn-line.has-icon .ic-2 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: scale(0);
    margin-left: 22px;
    font-size: clamp(16px, 2vw, 35px);
}
.tf-btn.btn-line.has-icon:hover .icon,
.tf-btn.btn-line.has-icon:hover .ic-2 {
    transform: scale(1);
    color: var(--secondary-color);
}
.tf-btn.btn-fill {
    background-color: var(--primary-color);
    backdrop-filter: blur(4px);
    color: #fff;
    border-color: var(--primary-color);
}
.tf-btn.btn-fill:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.tf-btn.btn-fill-2 {
    background-color: var(--secondary-color);
    backdrop-filter: blur(4px);
    color: #fff;
    border-color: var(--secondary-color);
}
.tf-btn.btn-fill-2:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.tf-btn.btn-fill-3 {
    background-color: #3b5998;
    backdrop-filter: blur(4px);
    color: #fff;
    border-color: #3b5998;
    text-transform: none;
}
.tf-btn.btn-fill-3:hover {
    background-color: #3b5998;
    border-color: #3b5998;
}
.tf-btn.btn-fill-white {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}
.tf-btn.btn-fill-white:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}
.tf-btn.btn-fill-white-2 {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #ffffff;
    position: relative;
    backdrop-filter: blur(4px);
}
.tf-btn.btn-fill-white-2:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--primary-color);
}
.tf-btn.btn-unavailable {
    font-weight: 500;
    background-color: #9f9f9f;
    border-color: #9f9f9f;
    color: #fff;
    pointer-events: none;
}
.tf-btn.style-white {
    color: #fff;
}
.tf-btn.style-white-2 {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
    text-transform: uppercase;
}
.tf-btn.style-white-2 .icon {
    font-size: 24px;
}
.tf-btn.style-white-2:hover {
    color: var(--primary-color);
    border-color: #fff;
    background-color: #fff;
}
.tf-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.tf-btn:hover .btn-double-text {
    transform: translateY(-200%);
}
.tf-btn:hover .btn-double-text:before {
    transform: translate(-50%, 150%);
    opacity: 1;
}
.tf-btn.hover-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.tf-btn.btn-def {
    padding: 0;
    border: unset;
    text-transform: uppercase;
    background-color: unset;
    color: var(--secondary-color);
    text-wrap: nowrap;
}
.tf-btn.btn-def .icon {
    font-size: 16px;
}
.tf-btn.btn-def .icon_2 {
    font-size: 30px;
}
@media (min-width: 1200px) {
    .tf-btn.btn-def .icon_2 {
        font-size: 47px;
    }
}
.tf-btn.btn-def:hover {
    color: #000;
}
.tf-btn.btn-def-2 {
    border: unset;
    text-transform: uppercase;
    background-color: unset;
    color: #000;
    text-wrap: nowrap;
}
.tf-btn.btn-def-2 .icon {
    font-size: 16px;
}
.tf-btn.btn-def-2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: 10px;
    left: auto;
    right: 0;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tf-btn.btn-def-2.type-black {
    padding: 2px 0px;
    color: #000;
    letter-spacing: 0;
}
.tf-btn.btn-def-2.type-black::after {
    background-color: var(--primary-color);
    bottom: 0;
}
.tf-btn.btn-def-2.type-black .icon {
    font-size: 11px;
    padding: 2.5px;
}
@media (min-width: 992px) {
    .tf-btn.btn-def-2::after {
        width: 0%;
    }
    .tf-btn.btn-def-2:hover::after {
        left: 0;
        right: auto;
        width: 100%;
    }
}
.tf-btn.style-2 {
    border-color: rgba(17, 17, 17, 0.1490196078);
}
.tf-btn.style-3 {
    border-radius: 45px;
}
.tf-btn.style-4 {
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    width: 100%;
    max-width: 200px;
    height: 200px;
    padding: 30px;
    flex-shrink: 0;
}
.tf-btn.style-4:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
@media (min-width: 1200px) {
    .tf-btn.style-4 {
        max-width: 292px;
        height: 292px;
    }
    .tf-btn.style-4.type-size-2 {
        max-width: 241px;
        height: 241px;
    }
}
.tf-btn.ic-abs {
    text-transform: none;
    line-height: 23px;
}
.tf-btn.ic-abs .icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.tf-btn.w-100 {
    padding-left: 15px;
    padding-right: 15px;
}
.tf-btn.btn-out-line {
    border-color: rgba(17, 17, 17, 0.1490196078);
    backdrop-filter: blur(4px);
}
.tf-btn.btn-out-line:hover {
    border-color: var(--secondary-color);
}
.tf-btn .btn-double-text {
    transition: opacity 0.3s, transform 0.6s;
    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.tf-btn .btn-double-text:before {
    content: attr(data-text);
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    top: 50%;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: opacity 0.5s, transform 0.8s;
    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
@media (min-width: 768px) {
    .tf-btn.style-3 {
        padding: 11px 34px;
    }
}
@media (min-width: 1200px) {
    .tf-btn.type-large {
        padding: 11px 34px;
    }
}
@media (max-width: 1199px) {
    .tf-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.tf-btn-line {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(to right, var(--secondary-color) 50%, var(--primary-color) 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s linear;
    cursor: pointer;
}
.tf-btn-line .icon {
    font-size: 10px;
}
.tf-btn-line::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tf-btn-line::before {
    position: absolute;
    content: "";
    left: 0;
    width: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s linear;
    z-index: 1;
}
.tf-btn-line.style-white {
    color: #fff;
    background: linear-gradient(to right, var(--secondary-color) 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s linear;
}
.tf-btn-line.style-white::after {
    background-color: #fff;
}
.tf-btn-line.style-white-2 {
    color: #fff;
    background: linear-gradient(to right, #000 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s linear;
}
.tf-btn-line.style-white-2::before {
    background-color: #000;
}
.tf-btn-line.style-white-2::after {
    background-color: #fff;
}
.tf-btn-line.style-line-2::after,
.tf-btn-line.style-line-2::before {
    bottom: 3px;
}
.tf-btn-line.style-large {
    gap: 22px;
}
.tf-btn-line.style-large .icon {
    font-size: clamp(18px, 4vw, 35px);
}
.tf-btn-line:hover {
    background-position: left;
}
.tf-btn-line:hover::before {
    width: 100%;
}
@media (min-width: 1200px) {
    .tf-btn-line.hv-2 {
        gap: 0;
    }
    .tf-btn-line.hv-2 .ic {
        width: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        margin-left: 0;
    }
    .tf-btn-line.hv-2:hover .ic {
        width: 16px;
        transition-delay: 0.2s;
        margin-left: 10px;
    }
}

.tf-btn-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid;
    color: var(--primary-color);
}
.tf-btn-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.tf-btn-icon.style-circle {
    border-radius: 50%;
    border-color: #fff;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.tf-btn-icon.style-circle:hover {
    border-color: var(--primary-color);
}
@media (min-width: 1200px) {
    .tf-btn-icon.style-circle {
        width: 50px;
        height: 50px;
    }
    .tf-btn-icon.style-circle .icon {
        font-size: 20px;
    }
}
@media (min-width: 1440px) {
    .tf-btn-icon.style-circle {
        width: 64px;
        height: 64px;
    }
}
@media (max-width: 1199px) {
    .tf-btn-icon:not(.style-circle) {
        height: 46px;
    }
}
@media (min-width: 1200px) {
    .tf-btn-icon.style-small {
        width: 48px;
        height: 48px;
    }
    .tf-btn-icon.style-small .icon {
        font-size: 20px;
    }
}

.animate-btn {
    position: relative;
    overflow: hidden;
}
.animate-btn:hover::after {
    animation: shine-reverse 1s forwards;
}

.animate-btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100%;
    opacity: 0.6;
}

button.animate-btn::after,
.animate-btn.tf-btn::after {
    background-image: linear-gradient(120deg, rgba(0, 0, 0, 0) 20%, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0) 70%);
}

.animate-btn.animate-dark::after {
    background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25), transparent);
}

@keyframes shine-reverse {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* ======= Navbar style ======= */
.navbar {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 70px;
}
.navbar-toggler-icon {
    background-image: none;
}
.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #fff;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar .navbar-nav .nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin: 1px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    padding-right: 12px;
    padding-left: 12px;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: var(--secondary-color)
}
.navbar .navbar-nav .nav-link:hover {
    color: #fff;
}
.navbar .navbar-nav .active {
    color: var(--primary-color) !important;
}
.navbar .navbar-nav .active i {
    color: var(--primary-color);
}
.nav-scroll {
    background: #fff;
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    height: 90px;
}
.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: var(--primary-color);
}
.nav-scroll .navbar-nav .nav-link {
    color: var(--primary-color);
}
.nav-scroll .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}
.nav-scroll .navbar-nav .active {
    color: var(--primary-color) !important;
}
.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #fff;
}
.nav-scroll .logo-img {
    width: 100px;
}
.nav-scroll .logo-img {
    margin-bottom: 0px;
}
.logo-wrapper {
    float: left;
}
.logo {
    padding: 0;
}
.logo-img {
    padding: 20px 0;
    width: 100px;
    text-align: center;
}
.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 8px;
    color: #0f2454;
}
.nav-scroll .dropdown .nav-link i {
    color: #0f2454;
}
.nav-scroll .navbar-nav .active i {
    color: var(--primary-color);
}
.navbar .dropdown-menu .dropdown-item {
    padding: 8px 0;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #0f2454;
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: transparent;
}
.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
}
.navbar .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu {
    box-shadow: 0 16px 50px rgb(0 0 0 / 7%);
}
.navbar .dropdown-menu li {
    border-bottom: 1px solid rgba(32, 149, 174, 0.05);
}
.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}
/* li hover */
.navbar .dropdown-menu li {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .dropdown-menu li:hover {
    padding-left: 5px;
}
.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}

/**** Hero banner ****/

.full-height {
    height: 100vh;
}
.full-height > [class*="col-"] {
    height: 100%;
}
.object-fit-cover {
    object-fit: cover;
}

/* ======= (Homepage Slider) ======= */
.hero-section {
    background: var(--secondary-color);
    padding: 0;
    min-height: calc(100vh - 70px);
    position: relative;
}
.slider-fade .owl-item {
    min-height: calc(100vh - 70px);
    position: relative;
}
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slider-fade .item .caption {
    z-index: 9;
}
/* slider-fade owl-nav next and prev */
.slider-fade .owl-nav {
    position: absolute;
    bottom: 7%;
    right: 12%;
}
.slider-fade .owl-prev {
    float: left;
}
.slider-fade .owl-next {
    float: right;
}
.slider-fade .owl-theme .owl-nav [class*="owl-"] {
    width: 45px;
    height: 45px;
    line-height: 30px;
    background: transparent;
    border-radius: 100%;
    color: #fff;
    font-size: 10px;
    margin-right: 3px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease-in-out;
    transform: scale(1);
}
.owl-theme .owl-nav [class*="owl-"]:hover {
    transform: scale(0.9);
    background: #fff;
    border: 1px solid #fff;
    color: #0f2454;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* owl-dots for slider */
.slider-fade .owl-dots {
    position: absolute;
    text-align: center;
    top: 50%;
    right: 5%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    text-align: right !important;
}
.slider-fade .owl-dots .owl-dot span {
    background: transparent;
    display: none;
}
.slider-fade .owl-dots .owl-dot {
    height: 14px;
    width: 14px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 6px;
    border-radius: 50%;
}
.slider-fade .owl-dots .owl-dot.active {
    border-color: #fff;
    background: #fff;
}

.hero-left-content {
    background: var(--secondary-color);
    padding: 50px 80px 50px 115px;
}
.hero-left-content .hero-title {
    font-weight: bold;
    font-size: 42px;
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    color: var(--primary-color);
}
.hero-left-content .hero-desc {
    font-size: 20px;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    padding: 20px 70px 20px 0px;
}


.nav-swiper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--primary-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  z-index: 2;
}
.nav-swiper:hover {
  background-color: #000000;
  color: #fff;
}
.nav-swiper.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.nav-swiper.nav-next-swiper {
  right: 10px;
}
.nav-swiper.nav-prev-swiper {
  left: 10px;
}
@media (min-width: 1440px) {
  .nav-swiper {
    width: 64px;
    height: 64px;
  }
}
.nav-swiper.style-2 {
  box-shadow: 0px 0px 16px 0px var(--black-2);
}
.nav-swiper.style-2:hover {
  background-color: #000;
}
 
.project-slider {
    position: relative;
}

.mouse {
    position: absolute;
    bottom: 40px;
    z-index: 95;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
}
.mouse .mouse-icon {
    display: block;
    width: 26px;
    height: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    text-align: center;
    -webkit-transition: .3s all 
ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all 
ease-in-out;
}
.mouse .mouse-wheel {
    height: 6px;
    margin: 2px auto 0;
    display: block;
    width: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    -webkit-animation: 1.6s 
ease infinite wheel-up-down;
    -moz-animation: 1.6s ease infinite wheel-up-down;
    animation: 1.6s 
ease infinite wheel-up-down;
}
@keyframes wheel-up-down {
    0% {
        margin-top: 2px;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        margin-top: 20px;
        opacity: 0;
    }
}


/*** About CSS ****/

.about-section {
    padding: 100px 0px 0px 0 !important;
}
.word-wrapper,
.char-wrapper {
    display: inline-block;
    white-space: pre;
}
.about-section .banner-content .tag {
    font-weight: bold;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-section {
    position: relative;
}
.about-section .about-main {
    padding-bottom: 100px;
}
.about-section .img_item {
    position: absolute;
}
.about-section .img_item.item-1 {
    max-width: clamp(100px, 30vw, 356px);
    top: 10%;
    right: 115px;
}
.about-section .img_item.item-4 {
    max-width: clamp(100px, 30vw, 256px);
    top: 30%;
    right: 300px;
}
.about-section .banner-content {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.about-section .title {
    margin-bottom: 15px;
}
.about-section .sub {
    margin-bottom: 25px;
}
.about-section .btn-group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
}
h3.text-color-change {
    font-size: 24px;
}
@media (min-width: 768px) {
    .about-section .sub {
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
    .about-section .btn-group {
        gap: 34px;
    }
    .about-section .title {
        margin-bottom: 24px;
    }
    .about-section .sub {
        margin-bottom: 60px;
    }
}
@media (min-width: 1440px) {
    .about-section .img_item.item-2 {
        top: 70.1%;
        left: 20.63%;
    }
    .about-section .img_item.item-3 {
        top: 65.2%;
        right: 23.98%;
    }
}

@media (max-width: 1024px) {
    .about-section .img_item.item-1,
    .about-section .img_item.item-4 {
        filter: blur(0px);
    }
}
@media (max-width: 575px) {
    .about-section .img_item.item-1 {
        top: 3%;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 70%;
    }
    .about-section .img_item.item-4 {
       max-width: 40%;
       top: 16%;
    right: 210px;
    }

}


/**** Project CSS ***/

section.projects-section.sections {
    background: var(--secondary-color);
    padding: 70px 0;
}
.project-slider .sw-main-thumb,
.project-slider .project-thumb {
    width: 100%;
}
.project-slider .project-thumb {
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .project-slider .sw-main-thumb {
        max-width: 744px;
    }
}

.box_project {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.box_project .title {
    color: var(--primary-color);
    font-weight: normal;
    font-weight: bold;
}
.box_project .text {
    text-transform: uppercase;
    color: #000;
    font-weight: normal;
    font-size: 14px;
    text-transform: none;
}
.box_project .br-line {
    background-color: #dbdbdb;
}
.br-line {
    width: 100%;
    height: 1px;
}
@media (min-width: 1200px) {
    .box_project {
        gap: 20px;
    }
}

.card_project {
    position: relative;
}
.card_project .card_project-info {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.card_project .info-product {
    display: grid;
    gap: 10px;
}
.card_project .img-prd {
    width: 100%;
    max-width: 80px;
    height: 80px;
    display: flex;
    overflow: hidden;
}
.card_project .img-prd img {
    aspect-ratio: unset;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
@media (min-width: 1200px) {
    .card_project .img-prd {
        max-width: 105px;
        height: 113px;
        display: inline;
    }
}
.card_project .card_project-info {
    padding: 15px;
    background-color: #ffffff5c;
    backdrop-filter: blur(5px);
    --webkit-backdrop-filter: blur(5px);
}
.card_project .info-product {
    gap: 8px;
}
.card_project .infor {
    display: flex;
    gap: 10px;
    align-items: center;
}
@media (min-width: 992px) {
    .card_project .card_project-info {
        gap: 25px;
    }
    .card_project.style-2 .infor {
        gap: 20px;
    }
}
@media (min-width: 1200px) {
    .card_project .card_project-info {
        padding: 20px;
        bottom: 32px;
        left: 32px;
        right: 32px;
    }
    .card_project .infor {
        gap: 35px;
    }
    .card_project .card_project-info {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }
}

.card_project .info-product {
    gap: 8px;
}
.card_project .infor {
    display: flex;
    gap: 10px;
    align-items: center;
}
@media (min-width: 992px) {
    .card_project .card_project-info {
        gap: 25px;
    }
    .card_project .infor {
        gap: 20px;
    }
}
@media (min-width: 1200px) {
    .card_project .card_project-info {
        padding: 20px;
        bottom: 32px;
        left: 32px;
        right: 32px;
    }
    .card_project .infor {
        gap: 35px;
    }
    .card_project .card_project-info {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }
}
.card_project-wrapper.img-style img {
    height: 600px;
    object-fit: cover;
    width: 100%;
}


ul.project-details {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}
ul.project-details li {
    display: grid;
    grid-template-columns: 30px 1fr; 
    grid-auto-rows: auto;         
    column-gap: 10px;
    align-items: start;
    flex: 0 0 calc(50% - 10px);
    padding: 4px 0;
}
ul.project-details li i {
    grid-column: 1;
    grid-row: 1 / -1; 
    width: 30px;
    height: auto;
    font-size: 18px;
    align-self: start;
}
ul.project-details li p {
    grid-column: 2;
    margin: 0;
    display: block;
}
ul.project-details li p.heading {
    font-weight: 600; 
}




.info-product .name{
    color: #fff;
    font-weight: bold;
    font-size: 26px;
}
ul.project-details li p {
    margin: 0;
    font-size: 17px;
}
ul.project-details li p.heading {
    font-weight: bold;
}
.info-product .price-tag {
    font-size: 22px;
}
.info-product .price-tag span{
    font-size: 27px;
    font-weight: bold;
    color: #fff;
}
/** Slider dots ***/

.sw-dot-default {
    margin-top: 20px;
}
.sw-dot-default .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background-color: transparent;
    position: relative;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}
.sw-dot-default .swiper-pagination-bullet::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sw-dot-default .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid #000;
}
@media (max-width: 767px) {
    .sw-dot-default .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
    }
    .sw-dot-default .swiper-pagination-bullet::before {
        width: 6px;
        height: 6px;
    }
}

.sw-dot-default {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}
.sw-dot-default.swiper-pagination-lock {
    margin: 0;
}



/* ======= Promo Video style ======= */
.cta-wrapper {
    min-height: 500px;
    background: url('../images/ourStorymain.png') no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
}
.cta-wrapper:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.cta-style_2{
     background: url('../images/img4.png') no-repeat !important;
     background-attachment: fixed !important;
}
.cta-style_2:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(63, 36, 25, 0.6);
    z-index: 1;
}
.cta-wrapper .container{
    position: relative;
    z-index: 2;
}
.cta-wrapper .section-title {
    font-size: 52px;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
}
.cta-wrapper .section-subtitle {
    font-size: 24px;
    text-transform: none;
    font-weight: normal;
    color: #fff;
    position: relative;
    letter-spacing: 0;
    width: 70%;
    margin: 40px auto;
}
/**** 4 pillars *****/

section.pillar-section.section {
    padding: 50px 0 100px 0;
    background: var(--primary-color);
}
section.pillar-section.section .title{
    padding-bottom: 50px;
    font-weight: bold;
    font-size: 42px;
    color: #fff;
}
.cls-accordion .accordion-body {
  padding: 0;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  gap: 30px;
  flex-wrap: wrap;
}
.core-value-txt{
    font-size: 20px;
}
@media (min-width: 1200px) {
  .cls-accordion .accordion-body {
    gap: 97px;
  }
}
.cls-accordion .accordion-title {
  padding: 32px 0px 31px 0px;
  color: #fff;
}
.cls-accordion .accordion-title .icon {
  font-size: 24px;
  color: #fff;
}
.cls-accordion .cls-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
.cls-accordion .count-item {
  font-weight: normal;
}
@media (min-width: 768px) {
  .cls-accordion .accordion-body {
    flex-wrap: nowrap;
  }
  .cls-accordion .cls-info {
    text-align: start;
    max-width: 600px;
  }
  .cls-accordion .image {
    max-width: 650px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cls-accordion .accordion-title {
    position: relative;
    z-index: 2;
    flex: 1;
  }
  .cls-accordion .accordion-body {
    padding-top: 32px;
  }
}

.widget-accordion {
  border-bottom: 1px solid #fff;
}
.widget-accordion .accordion-title {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 32px 0px;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 28px);
  line-height: clamp(26px, 3.2vw, 32px);
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .widget-accordion .accordion-title {
    padding: 20px 0px;
  }
}
.widget-accordion .accordion-title .icon {
  font-size: clamp(16px, 3vw, 22px);
  transition: transform 0.35s linear;
}
.widget-accordion .accordion-title:not(.collapsed) {
  color: #fff;
}
.widget-accordion .accordion-title:not(.collapsed) .icon {
  transform: rotate(-90deg);
}
.widget-accordion .accordion-body {
  padding: 10px 0px 20px;
}
.widget-accordion:first-child {
  border-top: 1px solid #fff;
}


.cls-accordion .accordion-body {
  padding: 0;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  gap: 30px;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .cls-accordion .accordion-body {
    gap: 97px;
  }
}
.cls-accordion .accordion-title {
  padding: 32px 0px 31px 0px;
}
.cls-accordion .accordion-title .icon {
  font-size: 24px;
}
.cls-accordion .cls-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  color: #fff;
}
.cls-accordion .count-item {
  font-weight: normal;
}
@media (min-width: 768px) {
  .cls-accordion .accordion-body {
    flex-wrap: nowrap;
  }
  .cls-accordion .cls-info {
    text-align: start;
    max-width: 600px;
  }
  .cls-accordion .image {
    max-width: 650px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cls-accordion .accordion-title {
    position: relative;
    z-index: 2;
    flex: 1;
  }
  .cls-accordion .accordion-body {
    padding-top: 32px;
  }
}


/*** Gallery ***/
section#gallery {
  padding: 100px 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}
.gallery-title {
    padding-bottom: 70px;
}
.gallery-title h1{
    font-weight: bold;
}
.marquee {
  --itemWidth: 125vw;
  --animationTime: 24s;
  display: flex;
  align-items: center;
  width: calc(var(--itemWidth) * 2);
  animation: marquee var(--animationTime) infinite linear;
  overflow: hidden;
  min-height: 200px;
}


.marquee__item {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  gap: 30px;
  width: var(--itemWidth);
}
@media (max-width: 767px) {
  .marquee__item { gap: 15px; }
}



/*** MAQRQUEE ***/



/* Main marquee container */

@media (max-width: 1199px) { .marquee { --itemWidth: 150vw; } }
@media (max-width: 991px)  { .marquee { --itemWidth: 175vw; } }
@media (max-width: 767px)  { .marquee { --itemWidth: 210vw; } }
@media (max-width: 575px)  { .marquee { --itemWidth: 280vw; } }



.marquee {
  display: flex;
   width: calc(var(--itemWidth) * 2);
  animation: marquee-ltr 25s linear infinite;
  align-items: center;
  overflow: hidden;
  min-height: 200px;
}

/* Each copy (set of images) takes half of full width */
.marquee__item {
  display: flex;
   width: var(--itemWidth);
  justify-content: space-around;
  flex-shrink: 0;
}

/* Image boxes */
.marquee .ratio {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 0px;
}

.marquee .ratio img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Keyframes for LTR (English) */
@keyframes marquee-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Keyframes for RTL (Arabic) */
@keyframes marquee-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* RTL direction handling */
html[dir="rtl"] .marquee {
  animation: marquee-rtl 25s linear infinite;
  flex-direction: row-reverse;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .marquee .ratio {
    width: 35vw; /* show fewer per row on tablet */
  }
}

@media (max-width: 768px) {
  .marquee {
    animation-duration: 30s; /* slightly slower on mobile */
  }
  .marquee .ratio {
    width: 60vw; /* 1 full + partial images */
    max-width: none;
  }
}
 


.marquee > *:nth-child(1) {
  margin-right: 30px; 
}

.ratio {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 0px;
}

.ratio:nth-child(odd) {
  height: 450px; 
}
.ratio:nth-child(even) {
  height: 280px; 
}
 

.img-ratio:hover {
  transform: scale(1.05);
}

.mfp-bottom-bar {
    display: none;
}
.mfp-bg {
    background: var(--third-color) !important;
    opacity: 0.8;
}

/********/


/**** FACTS CSS ***/
.facts-section.section {
    padding: 100px 0;
    background: var(--secondary-color);
}
.facts {
    background: var(--third-color);
    color: #fff;
    padding: 25px 50px;
    border-radius: 10px;
    min-height: 190px;
    vertical-align: middle;
    margin-bottom: 30px;
}
.facts p{
    font-size: 16px;
}
.facts .content i{
    font-size: 32px;
}
.right-facts .row {
    margin: 25px 0;
}
.left-title-section .title {
    font-size: 42px;
    font-weight: bold;
    padding-top: 30px;
    color: var(--primary-color);
}


/*****scrolling text ***/

.scrolling-text {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: var(--primary-color);
}

.marquee-lines {
    display: flex;
    width: max-content;
    animation: marquee 10s linear infinite;
}

.marquee-lines span {
    font-size:52px;
    font-weight: bold;
    margin: 0 60px ; /* space between duplicates */
    white-space: nowrap;
    color: #fff;
    text-transform: none;
    font-style: italic;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*** footer ***/

.footer-section{
    padding-top: 100px;
    background: url('../images/footer-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
}
.form-section {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
}

section.footer-bottom-section {
    background: var(--primary-color);
    padding: 100px 0;
}
.footer-bottom-logo {
    width: 200px;
}
section.footer-bottom-section {
    background: var(--primary-color);
    padding: 100px 0 50px 0;
    margin-top: -70px;
}
.form-section .head-box h4 {
    font-size: 22px;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary-color);
}
.footer-form input, .footer-form select, .footer-form textarea{
    border-radius: 0;
}
.footer-form input:focus, .footer-form select:focus, .footer-form textarea:focus{
   border-color: var(--primary-color) !important;
    box-shadow: none;
    outline: none;
}
.footer-form textarea{
    height: 100px;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}
.btn-form1-submit {
    margin-top: 30px;
    width: 100%;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    
}
/** general popup ***/
span.iti__country-name {
    display: none;
}
/* .iti__selected-dial-code {
    color: #fff;
} */
div#generalForm .modal-content {
    background: var(--third-color);
    padding: 50px;
}
div#generalForm .modal-content .modal-title {
    color: #fff;
    margin-bottom: 30px;
    width: 75%;
}
div#generalForm .modal-content button.btn-close {
    position: absolute;
    color: #fff;
    background: none;
}
div#generalForm .modal-content button.btn-close i{
    color: #fff;
}
div#generalForm .modal-content .modal-body, div#generalForm .modal-content .modal-body > div, .general-popup-form-section > div {
    padding: 0;
}
.general-popup-form-section input, .general-popup-form-section select, .general-popup-form-section textarea{
    border-radius: 0;
    background: transparent;
    border: 1px solid #fff;
}
.general-popup-form-section input:focus, .general-popup-form-section select:focus, .general-popup-form-section textarea:focus{
    outline: none;
     background: transparent;
    border: 1px solid #fff;
    box-shadow: none;
}
.general-popup-form-section button.butn-dark.btn.btn-primary.tf-btn.btn-fill.animate-btn.fw-medium {
    border-radius: 0;
    width: 100%;
}
/*** Project details popup ***/

.pro-details-content {
    background: var(--primary-color);
    padding: 20px;
    color: #fff;
}
ul.popup-details-list {
    list-style: none;
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    position: relative;
}
.amenities-list ul {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.amenities-list ul li i{
    font-size: 22px;
}
.amenities-list ul li {
    padding: 20px;
    background: var(--third-color);
    color: #fff;
    font-size: 18px;
}
.payment-form-section.section {
    background: var(--secondary-color);
    padding: 50px;
}
section.popup-Amenities h1.title.text-center, .payment-form-section.section h1.title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
}
.payment-form-section.section .popup-form-wrapper input, 
.payment-form-section.section .popup-form-wrapper select, 
.payment-form-section.section .popup-form-wrapper textarea{
    border-radius: 0;
    color: #000;
}
.payment-form-section.section .popup-form-wrapper input:focus, 
.payment-form-section.section .popup-form-wrapper select:focus, 
.payment-form-section.section .popup-form-wrapper textarea:focus{
   outline: none;
   box-shadow: none;
   color: #000;
}
.payment-form-section.section .btn{
    border-radius: 0;
}
.modal-footer {
    display: none;
}
.modal-header {
    border: none;
    padding: 0;
}

.modal-header button {
    right: 15px;
    position: relative;
    top: 15px;
    color: #fff;
    z-index: 3;
    opacity: 1;
    background: var(--primary-color);
        text-align: center;
    vertical-align: middle;
    line-height: normal;
}
.modal-header button:hover{
    opacity: 0.9;
    color: #fff;
}
 

/*** location highlts ***/
.location_highlight{
    padding: 50px 0;
}
.location_highlight .step-card {
  position: relative;
}
.location_highlight .step-card .step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  color: #fff;
  background-color: var(--primary-color);
  font-size: 18px;
}
.location_highlight .arch-line {
    position: absolute;
    top: 15px;
    width: 130px;
    left: 0;
    left: calc(100% + 20px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media (max-width: 991.98px) {
  .location_highlight .arch-line {
    display: none;
  }
}
.location_highlight .arch-line.reverse {
  top: 20px;
}

.general-popup-form-section .popup-form-wrapper .iti__selected-dial-code{
    color: #fff !important;
}
.general-popup-form-section .popup-form-wrapper input, .general-popup-form-section .popup-form-wrapper input::placeholder{
    color: #fff !important;
}
.general-popup-form-section .popup-form-wrapper select, .general-popup-form-section .popup-form-wrapper select::placeholder{
    color: #fff !important;
}
.general-popup-form-section .popup-form-wrapper textarea, .general-popup-form-section .popup-form-wrapper textarea::placeholder{
    color: #fff !important;
}
.general-popup-form-section .popup-form-wrapper select option{
    color: #000 !important;
}
.row.footer-bottom-wrapper p{
    color: #fff;
}
.row.footer-bottom-wrapper p:hover{
    cursor: pointer;
}

#privacypolicy .modal-content {
    padding: 40px;
}

section.omniyat-info.section {
    background: var(--secondary-color);
    padding: 50px 0;
}
section.omniyat-info.section h1 {
    font-weight: bold;
    font-size: 32px;
}
section.omniyat-info.section p {
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
}


/*** Thank you popup ***/

.thankyou-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.popup-content {
  background: var(--white-color);
  border-radius: 8px;
  max-width: 500px;
  margin: 15% auto;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
  margin-bottom: 15px;
  color: #333;
}

.popup-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.close-popup:hover {
  color: var(--font-color);
}
 

/**--=== ARABIC CODE ===-**/

.hero-left-content .hero-desc.hero-desc_ar {
    font-size: 20px;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    padding: 20px 0px 20px 70px;
}
.slider-fade.hero-right-slider_ar .owl-nav {
    position: absolute;
    bottom: 7%;
    left: 12%;
    right: unset;
}
.about-section_ar .img_item.item-1 {
    left: 115px;
    right: unset;
}
.about-section_ar .img_item.item-4 {
    left: 300px;
    right: unset;
}

.swiper-rtl {
  direction: rtl;
}
.flip-horizontal {
  transform: scaleX(-1);
  display: inline-block;
}
.cls-accordion_ar .widget-accordion .accordion-title:not(.collapsed) .icon {
    transform: rotate(-180deg);
}

 

html[dir="rtl"] .nav-swiper.nav-prev-swiper {
    right: 10px;
    left: unset;
}
html[dir="rtl"] .nav-swiper.nav-next-swiper {
    left: 10px;
    right: unset;
}


html[dir="rtl"] .project-details {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .project-details li {
    direction: rtl;
}
html[dir="rtl"] .box_project{
    direction: rtl;
}
html[dir="rtl"] .icon svg {
    transform-box: fill-box;
    transform-origin: center;
    transform: scaleX(-1);
}

html[dir="rtl"] .offset-lg-2 {
  margin-left: 0 !important;
  margin-right: 16.666667% !important; 
}

html[dir="rtl"] .modal-header .btn-close {
    margin-right: auto !important;
    margin-left: unset !important;
}

html[dir="rtl"] div#generalForm .modal-content button.btn-close {
    left: 10px;
}

html[dir="ltr"] .location_highlight .arch-line {
  left: calc(100% + 20px);
  transform: translateX(50%);
}

html[dir="rtl"] .location_highlight .arch-line {
  right: calc(100% + 20px);
  transform: translateX(50%);
}



/**--=== RESPOSIVE CODE ===-**/

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
    /* CSS */
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

      .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 190px;
        padding: 15px;
        border-radius: 0;
        border: 0;
        background-color: #fff;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -10px;
        right: auto;
        min-width: 190px;
        transform: translateY(0);
    }
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }    

}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {


}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* CSS */
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {


  .navbar {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        height: auto;
    }
    .nav-scroll {
        background: #fff;
    }
    .logo-wrapper {
        float: left;
        padding: 25px;
    }
    .nav-scroll .logo-wrapper {
        padding: 25px;
        background-color: transparent;
    }
    .nav-scroll .logo-img {
        width: 100px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .logo-img {
        margin-bottom: 0px;
        width: 100px;
        padding: 0;
    }
    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: var(--primary-color);
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: var(--primary-color) !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: var(--primary-color) !important;
    } 
    .navbar .dropdown-menu .dropdown-item {
        padding: 0 15px;
        font-size: 15px;
        line-height: 40px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 400;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 13px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #fff;
        box-shadow: none;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
    .dropdown .nav-link i {
        color: var(--primary-color);
    }
    .nav-scroll .dropdown .nav-link i {
        color: var(--primary-color);
    }
    .nav-scroll .dropdown .nav-link.active i {
    color: var(--primary-color);
    }
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #fff;
        text-align: left;
        padding: 20px;
    }
.hero-section .order-mob-1{
    order: 1;
}
.hero-section .order-mob-2{
    order: 2;
}
.about-section .banner-content {
    width: 95%;
    margin: 0 auto;
    padding-top: 350px;
}
.about-section .banner-content .tag {
    font-weight: bold;
    font-size: 31px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
}
    .cta-wrapper .section-title {
        font-size: 24px;
        padding: 0 60px;
    }
.cta-wrapper .section-subtitle {
    font-size: 22px;
    width: 95%;
    line-height: normal;
}
.card_project-wrapper.img-style img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}
.animate-btn {
    margin-bottom: 20px;
}
.ratio:nth-child(odd) {
    height: 300px;
}
.ratio:nth-child(even) {
    height: 200px;
}
.facts {
    margin-bottom: 20px;
}
.facts p {
    font-size: 25px;
}
.facts-section.section {
    padding-top: 50px;
    padding-bottom: 0;
}
.left-title-section {
    padding: 0 20px;
}
.footer-section {
    padding-top: 30px;
}


.banner-header.bg-img {
    background-attachment: scroll;
}
    .banner-header.full-height h1 {
        font-size: 30px;
        margin-bottom: 15px;
        letter-spacing: 10px;
        line-height: 1.35em;
        padding: 0;
    }
    .banner-header.full-height h3 {
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 10px;
    line-height: 1.35em;
    }
    .banner-header.full-height h4 {
        font-size: 12px;
    } 
    .banner-header h1 {
        font-size: 46px;
    }


.section-padding {
    padding: 50px 20px;
}
.section-title {
    font-size: 27px;
    line-height: 32px;
}
span.navbar-toggler-icon i {
    line-height: 30px;
}
.banner-header.full-height h1 {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 1px;
    padding: 0;
}
.banner-header.full-height {
    min-height: calc(70vh - 100px);
    background-position: center;
    position: relative;
}
.banner-header p {
    width: 75%;
    font-weight: 300;
}
section.about.section-padding .btn {
    margin-top: 20px;
    margin-bottom: 30px;
}

section.about .right-imgs .img-1{
    width: 100%;
}
section.about .right-imgs .img-2{
    width: 100%;
}
section.about .right-imgs .img-3{
    width:75%;
}
    section.about .right-imgs .img-4 {
        margin-top: -30px;
        width: 100%;
    }
    section.attractions p.main-desc {
    width: 100%;
    line-height: normal;
}
.service-section {
    position: relative;
    padding: 50px 20px 50px 20px;
}
.left-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}
.left-content-wrapper {
    width: 100%;
    margin-bottom: 20px;
}
.service-section::before {
    width: 100%;
}
.info-wrapper .butn-dark {
    margin-top: 35px;
}
.hero-img {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.center-title h1 {
    font-family: 'Gilda Display', serif;
    font-size: 30px;
}
.center-title h3 {
    font-size: 18px;
    font-weight: 300;
}
.center-title h2 {
    font-size: 22px;
    font-weight: 300;
}
.modal-hero-section .desc {

    width: 80%;
}
.row.gallery {
    padding: 0;
}
.payment-form-section {
    background: var(--primary-color);
    padding: 50px 20px;
    position: relative;
}
select#iam_3 {
    margin-top: 10px;
}
.footer-bottom-logo {
    width: 150px;
}

    .why-invest{
        display: block;
    }
    .why-invest .single-invest {
        width: 100%;
        display: block;
    }
.why-invest .single-invest:nth-child(even) .invest-content:before {
    bottom: inherit;
    top: -7px;
}
.popup-form input, .popup-form select, .footer-form input, .footer-form select {
    height: auto;
}
.booking-box .head-box h4 {
    font-family: 'Gilda Display', serif;
    font-size: 22px;
            padding: 0;
}
.booking-box{
  padding: 20px 20px;
  
}
.btn-form1-submit {
    line-height: 40px;
}
.invest-title {
    padding: 20px;
}
.mobile-amenities{
    display: block;
}
.desktop-amenities{
  display: none;
}
.service-block .inner-box {
  padding: 30px 20px 33px;
  min-height: 175px;
}
.invest-title.text-center h1 {
    font-size: 25px;
}
ul.popup-details-list , .amenities-list ul{
    grid-template-columns: repeat(2, 1fr);
}
.location_highlight .step-card .step-number {
    margin-bottom: 20px !important;
}
.step-card h3{
    margin-bottom: 10px !important;
}
.step-card p {
    margin-bottom: 0 !important;
}

.payment-form-section.section {
    background: var(--secondary-color);
    padding: 50px 10px;
}
.slider-fade .owl-item {
    min-height: calc(50vh - 70px);
    position: relative;
}
section.pillar-section.section{
    padding: 50px 0;
}
.mouse {
    position: absolute;
    bottom: 12px;
    z-index: 95;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
}
.hero-left-content .hero-desc {
    padding: 20px 0px 20px 0px;
}
.hero-left-content .hero-desc.hero-desc_ar{
    padding: 20px 0;
    font-size: 18px;
}
.hero-left-content.h-100 {
    margin-bottom: 50px;
}
.hero-left-content {
    padding: 50px 20px;
}
.hero-left-content .hero-title {
    font-size: 30px;
    line-height: 35px;
}
.hero-left-content .hero-desc {
    font-size: 18px;
}
.banner-content h3 {
    font-size: 18px;
}
section.cta-section.cta-wrapper {
    background-attachment: scroll !important;
    padding: 60px 0;
    min-height: 300px;
}
.info-product .price-tag {
    font-size: 16px;
}
.info-product .price-tag span {
    font-size: 22px;
}
ul.project-details li p {
    margin: 0;
    font-size: 12px;
}
.box_project .text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
section.projects-section.sections {
    background: var(--secondary-color);
    padding: 40px 0;
}
section.pillar-section.section .title {
    font-size: 34px;
}
.widget-accordion .accordion-title {
    font-size: 20px;
}
section#gallery {
    padding: 50px 0;
    overflow-x: hidden;
}
section.cta-section.cta-style_2.cta-wrapper {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
}
.left-title-section .title {
    font-size: 32px;
    padding-top: 0;
    margin-bottom: 25px;
}

.nav-swiper {
    transform: translateY(10%);
    z-index: 2;
}
.about-section_ar .img_item.item-1 {
    left: 0;
    right: 0;
}
.about-section_ar .img_item.item-4 {
    left: unset;
    right: 35px;
    max-width: 40%;
}
section.omniyat-info.section p {
    width: 90%;
}

}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {


  .navbar {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        height: auto;
    }
    .nav-scroll {
        background: #fff;
    }
    .logo-wrapper {
        float: left;
        padding: 25px;
    }
    .nav-scroll .logo-wrapper {
        padding: 25px;
        background-color: transparent;
    }
    .nav-scroll .logo-img {
        width: 100px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .logo-img {
        margin-bottom: 0px;
        width: 100px;
        padding: 0;
    }
    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: var(--primary-color);
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: var(--primary-color) !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: var(--primary-color) !important;
    } 
    .navbar .dropdown-menu .dropdown-item {
        padding: 0 15px;
        font-size: 15px;
        line-height: 40px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 400;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 13px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #fff;
        box-shadow: none;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
    .dropdown .nav-link i {
        color: var(--primary-color);
    }
    .nav-scroll .dropdown .nav-link i {
        color: var(--primary-color);
    }
    .nav-scroll .dropdown .nav-link.active i {
    color: var(--primary-color);
    }
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #fff;
        text-align: left;
        padding: 20px;
    }
.hero-section .order-mob-1{
    order: 1;
}
.hero-section .order-mob-2{
    order: 2;
}
.about-section .banner-content {
    width: 95%;
    margin: 0 auto;
    padding-top: 350px;
}
.about-section .banner-content .tag {
    font-weight: bold;
    font-size: 31px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
}
    .cta-wrapper .section-title {
        font-size: 24px;
        padding: 0 60px;
    }
.cta-wrapper .section-subtitle {
    font-size: 22px;
    width: 95%;
    line-height: normal;
}
.card_project-wrapper.img-style img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}
.animate-btn {
    margin-bottom: 20px;
}
.ratio:nth-child(odd) {
    height: 300px;
}
.ratio:nth-child(even) {
    height: 200px;
}
.facts {
    margin-bottom: 20px;
}
.facts p {
    font-size: 25px;
}
.facts-section.section {
    padding-top: 50px;
    padding-bottom: 0;
}
.left-title-section {
    padding: 0 20px;
}
.footer-section {
    padding-top: 30px;
}


.banner-header.bg-img {
    background-attachment: scroll;
}
    .banner-header.full-height h1 {
        font-size: 30px;
        margin-bottom: 15px;
        letter-spacing: 10px;
        line-height: 1.35em;
        padding: 0;
    }
    .banner-header.full-height h3 {
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 10px;
    line-height: 1.35em;
    }
    .banner-header.full-height h4 {
        font-size: 12px;
    } 
    .banner-header h1 {
        font-size: 46px;
    }


.section-padding {
    padding: 50px 20px;
}
.section-title {
    font-size: 27px;
    line-height: 32px;
}
span.navbar-toggler-icon i {
    line-height: 30px;
}
.banner-header.full-height h1 {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 1px;
    padding: 0;
}
.banner-header.full-height {
    min-height: calc(70vh - 100px);
    background-position: center;
    position: relative;
}
.banner-header p {
    width: 75%;
    font-weight: 300;
}
section.about.section-padding .btn {
    margin-top: 20px;
    margin-bottom: 30px;
}

section.about .right-imgs .img-1{
    width: 100%;
}
section.about .right-imgs .img-2{
    width: 100%;
}
section.about .right-imgs .img-3{
    width:75%;
}
    section.about .right-imgs .img-4 {
        margin-top: -30px;
        width: 100%;
    }
    section.attractions p.main-desc {
    width: 100%;
    line-height: normal;
}
.service-section {
    position: relative;
    padding: 50px 20px 50px 20px;
}
.left-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}
.left-content-wrapper {
    width: 100%;
    margin-bottom: 20px;
}
.service-section::before {
    width: 100%;
}
.info-wrapper .butn-dark {
    margin-top: 35px;
}
.hero-img {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.center-title h1 {
    font-family: 'Gilda Display', serif;
    font-size: 30px;
}
.center-title h3 {
    font-size: 18px;
    font-weight: 300;
}
.center-title h2 {
    font-size: 22px;
    font-weight: 300;
}
.modal-hero-section .desc {

    width: 80%;
}
.row.gallery {
    padding: 0;
}
.payment-form-section {
    background: var(--primary-color);
    padding: 50px 20px;
    position: relative;
}
select#iam_3 {
    margin-top: 10px;
}
.footer-bottom-logo {
    width: 150px;
}

    .why-invest{
        display: block;
    }
    .why-invest .single-invest {
        width: 100%;
        display: block;
    }
.why-invest .single-invest:nth-child(even) .invest-content:before {
    bottom: inherit;
    top: -7px;
}
.popup-form input, .popup-form select, .footer-form input, .footer-form select {
    height: auto;
}
.booking-box .head-box h4 {
    font-family: 'Gilda Display', serif;
    font-size: 22px;
            padding: 0;
}
.booking-box{
  padding: 20px 20px;
  
}
.btn-form1-submit {
    line-height: 40px;
}
.invest-title {
    padding: 20px;
}
.mobile-amenities{
    display: block;
}
.desktop-amenities{
  display: none;
}
.service-block .inner-box {
  padding: 30px 20px 33px;
  min-height: 175px;
}
.invest-title.text-center h1 {
    font-size: 25px;
}
ul.popup-details-list , .amenities-list ul{
    grid-template-columns: repeat(2, 1fr);
}
.location_highlight .step-card .step-number {
    margin-bottom: 20px !important;
}
.step-card h3{
    margin-bottom: 10px !important;
}
.step-card p {
    margin-bottom: 0 !important;
}

.payment-form-section.section {
    background: var(--secondary-color);
    padding: 50px 10px;
}
.slider-fade .owl-item {
    min-height: calc(50vh - 70px);
    position: relative;
}
section.pillar-section.section{
    padding: 50px 0;
}
.mouse {
    position: absolute;
    bottom: 12px;
    z-index: 95;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
}
.hero-left-content .hero-desc {
    padding: 20px 0px 20px 0px;
}
.hero-left-content .hero-desc.hero-desc_ar{
    padding: 20px 0;
    font-size: 18px;
}
.hero-left-content.h-100 {
    margin-bottom: 50px;
}
.hero-left-content {
    padding: 50px 20px;
}
.hero-left-content .hero-title {
    font-size: 30px;
    line-height: 35px;
}
.hero-left-content .hero-desc {
    font-size: 18px;
}
.banner-content h3 {
    font-size: 18px;
}
section.cta-section.cta-wrapper {
    background-attachment: scroll !important;
    padding: 60px 0;
    min-height: 300px;
}
.info-product .price-tag {
    font-size: 16px;
}
.info-product .price-tag span {
    font-size: 22px;
}
ul.project-details li p {
    margin: 0;
    font-size: 12px;
}
.box_project .text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
section.projects-section.sections {
    background: var(--secondary-color);
    padding: 40px 0;
}
section.pillar-section.section .title {
    font-size: 34px;
}
.widget-accordion .accordion-title {
    font-size: 20px;
}
section#gallery {
    padding: 50px 0;
    overflow-x: hidden;
}
section.cta-section.cta-style_2.cta-wrapper {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
}
.left-title-section .title {
    font-size: 32px;
    padding-top: 0;
    margin-bottom: 25px;
}

.nav-swiper {
    transform: translateY(10%);
    z-index: 2;
}
.about-section_ar .img_item.item-1 {
    left: 0;
    right: 0;
}
.about-section_ar .img_item.item-4 {
    left: unset;
    right: 35px;
    max-width: 40%;
}
section.omniyat-info.section p {
    width: 90%;
}

}
