/*-----------------------------------*\
  #Mixins
\*-----------------------------------*/
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,800&display=swap");

:root {
    /**
        * colors
      */
    --dark: #8c041c;
    /* --dark-red: #cea14e; */
    --dark-red: #8c041c;
    --light: #eef1f6;
    --pink: #ec008c;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

h6 {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
p {
    margin: 0;
    padding: 0;
}

p {
    line-height: 1.8;
}

p.long-line {
    line-height: 2.1;
}

li {
    list-style: none;
}

button {
    font: inherit;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.float-contact {
    background: #fafafa;
    position: fixed;
    top: 100px;
    left: -320px;
    width: 320px;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.float-contact form *:not(:last-child) {
    margin-bottom: 10px;
    border-color: var(--dark);
    background: white;
}

.float-contact .icon {
    position: absolute;
    background: var(--dark-red);
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    border-radius: 0 10px 10px 0;
    right: -50px;
    cursor: pointer;
    opacity: 0.8;
    -webkit-transform: 0.3s;
    transform: 0.3s;
}

.float-contact .icon svg {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.float-contact .icon:hover {
    opacity: 1;
}

.float-contact .icon:hover svg {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.float-contact.opened {
    left: 0;
}

.float-contact.opened svg {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--dark);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input:not([type="checkbox"], [type="radio"], [type="range"]),
textarea,
select {
    display: block;
    width: 100%;
    background: none;
    font: inherit;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    height: 50px;
    color: white;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

textarea {
    height: 150px;
    resize: none;
}

select {
    cursor: pointer;
}

[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

[type="number"]::-webkit-outer-spin-button,
[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="radio"],
input[type="file"] {
    display: none;
}

[type="checkbox"],
[type="checkbox"] + label {
    cursor: pointer;
}

@font-face {
    font-family: "Al-Jazeera-Bold";
    src: url("./font/Al-Jazeera-Arabic-Bold.ttf") format("woff2");
    font-weight: bold;
}

@font-face {
    font-family: "Al-Jazeera-Regular";
    src: url("./font/Al-Jazeera-Arabic-Regular.ttf") format("woff2");
    font-weight: 500;
}

@font-face {
    font-family: "Al-Jazeera-Light";
    src: url("./font/Al-Jazeera-Arabic-Light.ttf") format("woff2");
    font-weight: 400;
}

.f-bold {
    font-family: "Al-Jazeera-Bold", "Montserrat";
}

.f-regular {
    font-family: "Al-Jazeera-Regular", "Montserrat";
}

.f-light {
    font-family: "Al-Jazeera-Light", "Montserrat";
}

body {
    overflow-x: hidden;
    font-family: "Al-Jazeera-Regular", "Montserrat" !important;
}
.page-mask {
    background: url("../images/img/header-mask.png") 0% 0% / 15% repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.page-mask.thanks {
    background: url("../images/thanks-bg.jpg") 0% 100% / 100% no-repeat;
}

@media (max-width: 768px) {
    .page-mask {
        background-size: 30%;
    }
    .page-mask.thanks {
        background: url("../images/thanks-bg.jpg") 50% 100% / cover no-repeat;
    }
}

/* body.about-body {
    background: none;
    background-color: #c5cfd6;
    background-image: url(../img/mask.png);
} */

body.ar * {
    direction: rtl;
}

body.ar .arrow {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

body.ar .category-box input[type="checkbox"]::before {
    right: 0;
}

body.ar .category-box input[type="checkbox"]::after {
    right: 2px;
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/
.ltr {
    direction: ltr !important;
}

.arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.whatsapp.arrow {
    -webkit-transform: initial;
    transform: initial;
}

.fa-star {
    color: #ddd;
}

.fa-star.full {
    color: var(--dark-red);
}

.justify-text {
    text-align: justify;
}

.gold-btn {
    background-color: var(--dark-red) !important;
    color: white !important;
    border: 1px solid var(--dark-red) !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 7px 25px !important;
    border-radius: 5px;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.gold-btn:hover {
    background-color: white !important;
    color: var(--dark-red) !important;
}

.gold-btn:hover path {
    fill: white !important;
    stroke: var(--dark-red) !important;
}

.outline-yellow-btn {
    background-color: white !important;
    color: var(--yellow) !important;
    border: 1px solid var(--yellow) !important;
    padding: 7px 25px !important;
    border-radius: 5px;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.outline-yellow-btn:hover {
    background-color: var(--yellow) !important;
    color: white !important;
}

.outline-yellow-btn:hover path {
    fill: white !important;
    stroke: white !important;
}

.outline-dark-btn {
    background-color: white !important;
    color: var(--dark) !important;
    border: 1px solid var(--dark) !important;
    padding: 7px 25px !important;
    border-radius: 5px;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.outline-dark-btn:hover {
    background-color: var(--dark) !important;
    color: white !important;
}

.outline-dark-btn:hover path {
    fill: white !important;
    stroke: white !important;
}

.gold-text {
    color: var(--dark-red);
}

.form-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    gap: 20px;
}

.form-action * {
    width: 150px !important;
    height: 50px !important;
}

@media (max-width: 400px) {
    .form-action {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .form-action * {
        width: 100% !important;
    }
}

[aria-label="breadcrumb"] {
    background-color: #e1e9f6;
    padding: 10px 20px;
    font-weight: 600;
}

[aria-label="breadcrumb"] .breadcrumb {
    margin-bottom: 0;
}

.row {
    margin-inline: 0;
}

.page-title {
    background: url("../images/img/page-title-bg.png") 50% 50% / cover no-repeat;
    position: relative;
    color: white;
    text-align: center;
    padding: 35px;
}

.page-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    opacity: 0.8;
}

.page-title .title-content {
    position: relative;
    z-index: 2;
}

.page-title [aria-label="breadcrumb"] {
    margin-top: 15px;
    background: transparent;
    padding: 0;
}

.page-title [aria-label="breadcrumb"] .breadcrumb-item {
    color: white;
}

.page-title [aria-label="breadcrumb"] .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.805);
}

.page-title
    [aria-label="breadcrumb"]
    .breadcrumb-item
    + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.805);
}

.page-title [aria-label="breadcrumb"] .breadcrumb {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

a.page-link {
    border: none;
    margin-inline: 10px;
    border-radius: 5px;
    color: var(--dark);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a.page-link:hover {
    background: var(--dark-red);
    color: white;
}

a.page-link:is(.active, :focus) {
    background-color: var(--dark-red);
    color: white;
    /* -webkit-box-shadow: 0 0 0 0.25rem rgba(206, 161, 78, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(206, 161, 78, 0.25); */
    box-shadow: 0 0 7px #00000015;
}

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

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.365);
    /* border: 1px solid #124b63; */
}
::-webkit-scrollbar-track:hover {
    background-color: rgba(255, 255, 255, 0.709);
}

::-webkit-scrollbar-thumb {
    background: #ff5573;
    /* background: var(--dark-red); */
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

.page-head p {
    font-size: 20px;
    color: #4d4d4d;
    margin: 0;
}

/*-----------------------------------*\
  # Main Sections Styles ==>
\*-----------------------------------*/
/**
   * Topbar ==>
*/

header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 20020;
    transition: 0.7s;
}

header .mask {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/img/header-mask.png") 100% 100% / 15% repeat;
    opacity: 0;
    z-index: -2;
    border-bottom-right-radius: 30px;
}
.ar header .mask {
    border-bottom-left-radius: 30px;
}

header > * {
    position: relative;
    z-index: 19;
}

.topbar {
    background-color: var(--dark-red);
    color: white;
    padding-block: 5px;
    width: 860px;
    border-bottom-right-radius: 50px;
    padding: 7px 20px;
    z-index: 20;
    transition: 0.3s;
}
@media (min-width: 816px) {
    .topbar {
        justify-content: end !important;
    }
    .topbar .hide-in-lg {
        display: none !important;
    }
}

.number-text {
    font-family: "Montserrat" !important;
    font-weight: 900;
    font-size: 17px;
}

body.ar .topbar {
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.topbar .actions,
.topbar .logo {
    display: none !important;
}

.topbar .btn-group > button {
    padding-inline: 5px;
    background-color: transparent;
    border: none;
}
.topbar .btn-group > button.lang-mb {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
}
.topbar .btn-group > button.lang-mb .icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
}
/* .topbar .btn-group > button.lang-mb .icon span {
    width: 100%;
    height: 100%;
} */

.topbar .dropdown-menu {
    min-width: max-content;
    padding-block: 0;
    width: 100%;
    overflow: hidden;
}

.topbar .dropdown-menu .dropdown-item {
    padding-inline: 5px;
    font-size: 13px;
}

/* .topbar .dropdown-menu .dropdown-item span {
    border-inline-end: 1px solid #aaa;
    padding-inline-end: 2rem;
    margin-inline-start: -7px;
} */

.topbar .hide-in-lg .dropdown-menu .dropdown-item span {
    border: none;
    margin: 0 !important;
    font-size: 18px;
}

.topbar .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #aaa;
}

.topbar .contact {
    font-size: 18px;
}

.topbar .contact .icons a {
    width: 30px;
    height: 30px;
    display: inline-block;
    display: grid;
    place-content: center;
    border-radius: 50%;
    border: 1px solid #707070;
    transition: 0.3s;
    color: #ffffff;
    background: rgba(255, 255, 255, 40%);
}

.topbar .contact .icons a:hover {
    /* box-shadow: 0 2px 2px 1px #fcfcfc, 0 3px 4px #d6d7d9, 0 -2px 6px #cecfd1,
        0 -6px 4px #fefefe, inset 0 0 3px 3px #cecfd1; */
    background-color: transparent;
    border: none;
}

.topbar .multi-icons {
    position: relative;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}
.open-search {
    flex-shrink: 0;
}

.topbar .multi-icons img {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    opacity: 0;
    transition: 0.5s;
    animation: tada 3s linear infinite;
}

.topbar .multi-icons img:first-child {
    opacity: 1;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%,
    20% {
        transform: scale(0.9) rotate(-8deg);
    }
    30%,
    50%,
    70% {
        transform: scale(1.2) rotate(8deg);
    }
    40%,
    60% {
        transform: scale(1.2) rotate(-8deg);
    }
    100%,
    70% {
        transform: scale(1) rotate(0);
    }
}

.topbar .logo img {
    margin-top: -5px;
}

/**
   * Navbar ==>
*/
.navbar {
    background-color: var(--dark-red);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    height: 56px;
    display: flex;
    align-items: center;
    position: static;
}

@media (min-width: 816px) {
    .navbar {
        padding-inline-start: 216px;
    }
}

body.ar .navbar {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.navbar .logo img {
    position: absolute;
    z-index: 50;
    top: 5px;
    left: 5px;
}
@media (max-width: 1199px) {
    .navbar .logo img {
        width: 230px;
    }
}
.ar .navbar .logo img {
    left: auto;
    right: 5px;
}
.navbar .dropdown-menu[data-bs-popper] {
    border: none;
}

.navbar form input {
    border: 1.5px solid var(--dark);
}

.navbar form svg {
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nav-item {
    display: flex;
    align-items: end;
    padding-inline: 0.5rem;
}
.nav-item:not(.passport) img {
    width: 30px !important;
    height: 30px !important;
}

[data-nav]::after {
    content: attr(data-nav);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000d1;
    color: white;
    font-size: 12px;
    border-radius: 10px;
    width: max-content;
    padding: 5px 10px;
    opacity: 0;
    transition: 0.7s;
}

[data-nav]:hover::after {
    opacity: 1;
}

@media (min-width: 1200px) {
    .nav-item {
        padding-inline: 25px;
    }
}
@media (max-width: 812px) {
    .nav-item {
        padding: 0 5px;
        text-align: center;
    }
}
@media (max-width: 920px) {
    .nav-item {
        padding: 0 10px;
    }
}
@media (max-width: 990px) {
    .nav-item {
        padding: 0 15px;
    }
}
@media (max-width: 960px) {
    .nav-item {
        padding: 0 15px;
    }
}
@media (max-width: 1100px) {
    .nav-item {
        padding: 0 15px;
    }
}
@media (max-width: 1200px) {
    .nav-item {
        padding: 0 10px;
    }
}

.nav-item {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -12.3px;
    right: 0;
    width: 0;
    height: 5px;
    background: white;
    border-radius: 10px 10px 0 0;
    opacity: 0;
    transition: 0.3s;
}
.navbar-expand .navbar-nav .nav-link {
    padding: 0;
}

.nav-link:is(:hover, .active)::after {
    width: 100%;
    opacity: 1;
}

.nav-link {
    padding: 0 0 5px;
}

.nav-link img {
    width: 30px;
    height: 30px;
}

.open-link {
    padding-inline-start: 25px !important;
}

.open-link img {
    width: 30px;
}

.nav-item.videos img {
    height: 32px;
    width: 32px;
}
.nav-item.home-nav img {
    width: 32px;
    height: 34px;
}
.nav-item.blogs-nav img {
    height: 34px;
    width: 33px;
}
.nav-item.about-us img {
    width: 39px;
    height: 35px;
}
.nav-item.properties img {
    width: 33px;
}
.nav-item.properties img,
.nav-item.passport img {
    height: 31px;
    object-fit: contain;
}
.nav-item.passport img {
    width: auto;
}

.nav-item .dark {
    display: none;
}

.nav-item svg,
.nav-item i {
    color: var(--dark-red);
}

header .float-flag {
    position: absolute;
    top: 35px;
    left: auto;
    right: -5px;
    transform: rotateY(180deg);
    z-index: -1;
}

body.ar header .float-flag {
    left: -5px;
    right: auto;
    transform: rotateY(0deg);
}

/*
@media (max-width: 991px) {
  .topbar {
    width: 650px;
  }
} */
.navbar-nav {
    padding-inline: 15px;
}

@media (max-width: 815px) {
    .topbar {
        border-top-right-radius: 50px;
        margin-top: 10px;
        background: var(--dark-red);
        width: calc(100% - 15px);
        /* justify-content: space-between; */
    }

    body.ar .topbar {
        border-top-left-radius: 50px;
    }

    .topbar .logo {
        display: flex !important;
    }

    @media (min-width: 576px) {
        .topbar .actions {
            display: flex !important;
        }
    }

    .topbar .btns,
    .topbar .contact {
        display: none !important;
    }

    header {
        background-color: white;
    }

    header.hide-topbar {
        top: -58px;
    }

    .navbar {
        background-color: white;
        width: 100%;
        border-radius: 0 !important;
        padding-block: 7px 10px;
        /* box-shadow: 0 5px 10px #00000020; */
        box-shadow: 0 0 7px #00000015;
    }

    .navbar .logo {
        display: none;
    }

    .nav-link::after {
        background-color: var(--dark-red);
        bottom: -10px;
    }

    .nav-item .dark {
        display: block;
    }

    .nav-item.contact-us {
        display: none;
    }

    .nav-item img:not(.dark) {
        display: none;
    }

    .navbar-nav {
        justify-content: space-around;
        padding-inline: 0;
    }

    .float-flag {
        display: none;
    }
}

@media (min-width: 651px) and (max-width: 815px) {
    .nav-link::after {
        bottom: -11px;
    }
}

@media (min-width: 816px) {
    .nav-item svg,
    .nav-item i {
        color: white;
    }
}

@media (max-width: 650px) {
    .topbar {
        width: 100%;
    }

    .navbar {
        width: 100%;
        padding-inline-start: 0;
    }

    .nav-link img {
        width: 30px;
        height: 30px;
    }
    .nav-item.properties img,
    .nav-item.passport img {
        /* height: 40px; */
    }
    .nav-item.passport img {
        width: 25px;
    }
}

.related-cards .card-item .img-card {
    max-width: 100%;
}
@media (min-width: 1200px) {
    .related-cards .container {
        max-width: 1100px;
    }
}

/**
   * filters Row ==>
*/
footer {
    background: url("../images/img/footer-fixed-bg.jpg") 50% 50% / cover
        no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
    z-index: 10;
}

/* footer::after {
    background: var(--dark);
    opacity: .3;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 1;
} */

footer img {
    max-width: 250px;
}

footer .container {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 20px;
    padding: 3rem;
}

footer .footer-social-links {
    display: flex;
    gap: 18px;
    font-size: 27px;
    margin-top: 20px;
    padding-inline-start: 20px;
}
footer .footer-social-links li {
}
footer > * {
    position: relative;
    z-index: 10;
}

@media (max-width: 1199px) {
    footer .container {
        max-width: 100%;
        border-radius: 0px;
        padding: 2rem 0px;
    }
}

footer .foo-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 2px solid;
    margin-bottom: 30px;
    color: var(--dark-red);
}

footer .currency-box {
    background: white;
    color: black;
    border-radius: 10px;
    max-width: 325px;
}

footer .currency-box h6 {
    color: var(--dark-red);
    text-align: center;
    padding-block: 13px;
    border-bottom: 2px solid var(--dark-red);
}

footer .currency-box .currency-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .currency-box .currency-row:not(:last-child) {
    border-bottom: 1.5px solid var(--dark-red);
}

footer .currency-box .currency-row > div {
    padding: 7px 10px;
    width: 50%;
}

footer .currency-box .currency-row > div.currency-icon {
    border-left: 1.2px solid var(--dark-red);
}

footer .currency-box .currency-row > div.currency-price {
    text-align: end;
    border-right: 1.2px solid var(--dark-red);
}

footer .footer-title {
    position: relative;
    width: fit-content;
    margin-bottom: 25px;
}
footer .footer-title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
}
.ar footer .footer-title::after {
    left: auto;
    right: 0;
}

footer .objects-list a {
    align-items: center;
    background-color: #171236 !important;
    color: white !important;
}

footer .objects-list h6,
footer .footer-description a {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    max-height: 50px;
    line-height: 23px;
    font-size: 15px;
}

footer .objects-list img {
    width: 65px;
    height: 65px;
    border-radius: 4px;
}

footer .help {
    background-color: white;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    padding: 7px 10px;
    /* box-shadow: 0 3px 6px 0 #9f9f9f; */
    box-shadow: 0 0 7px #00000015;
    margin-bottom: 25px;
    font-size: 18px;
    align-items: center;
    transition: 0.3s;
}

footer .lang {
    font-size: 32px;
}

footer .lang span {
    border-radius: 4px;
}

footer .about-list a {
    background: white;
    display: flex;
    color: var(--dark);
    align-items: center;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 10px;
}

footer .about-list .img-box {
    height: 65px;
    padding: 0 25px;
    background: #e9daae;
    border-radius: 10px;
    display: grid;
    place-content: center;
    position: relative;
    z-index: 2;
}

footer .about-list .text-box {
    height: 65px;
    display: flex;
    align-items: center;
    padding-inline-start: 20px;
    margin-inline-start: -10px;
    border-radius: 10px 0 0 10px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

footer .about-list a:hover .text-box {
    background-color: var(--dark-red);
    color: white;
}

footer .about-list svg path {
    fill: var(--dark-red);
}

footer form {
    margin-top: 10px;
    display: flex;
    gap: 7px;
}

footer form input {
    border-radius: 50px !important;
    background: white !important;
    color: black !important;
}

footer form button {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: grid;
    place-content: center;
    flex-shrink: 0;
    transform: rotate(180deg);
}
body.ar footer form button {
    transform: rotate(0);
}

footer .keywords-list {
    display: flex;
    flex-wrap: wrap;
}

footer .keywords-list li {
    width: 47%;
}

footer .useful-links li a {
    /* background-color: #171236 !important; */
    color: white;
    padding: 10px 20px 15px;
    border-radius: 7px;
    transition: 0.3s;
    font-size: 13px;
    width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

footer .useful-links li:hover a {
    color: var(--dark-red);
}

footer .help:hover {
    background-color: #f1f1f1;
}

footer .foo-title {
    color: var(--dark-red);
    margin-bottom: 15px;
    font-family: "Al-Jazeera-Bold";
}

footer ul li {
    margin-bottom: 23px;
    margin-inline-end: 6px;
}

footer ul li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

footer ul li a.location {
    color: var(--dark-red);
    font-size: 80%;
}

footer ul:not(.objects-list) li a:hover {
    /* color: var(--dark-red); */
    /* -webkit-margin-start: 10px;
      margin-inline-start: 10px; */
}

footer ul.article-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    border-bottom: 1.5px solid var(--dark-red);
    padding-bottom: 15px;
}

footer .follow-us .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    font-size: 28px;
}

footer .follow-us .icons a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    line-height: 0.5;
}

footer .follow-us .icons a:hover {
    color: var(--dark-red);
}

footer .copyright {
    border-top: initial;
    padding-top: initial;
    color: white;
    font-size: initial;
    position: relative;
    z-index: 100;
    width: 100%;
    /* height: 65px; */
    display: flex;
    justify-content: space-between;
    padding: 13px 60px;
    background: var(--dark-red);
    align-items: center;
    /* font-size: 12px; */
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    footer .copyright {
        justify-content: center;
        text-align: center;
        padding-inline: 10px;
    }
    footer .copyright p {
        text-align: center;
    }
    footer .copyright .foo-logo {
        display: none;
    }
}

@media (max-width: 815px) {
    footer {
        background: var(--dark-red);
    }
    footer .container {
        background-color: transparent;
    }
    footer > div.container > div > div.col-12.col-lg-3.mb-5 > button {
        background-color: #cb1737 !important;
        &:hover {
            background-color: white !important;
            border-color: #cb1737 !important;
            color: #cb1737 !important;
        }
    }
    footer .copyright {
        background-color: #ad0422;
    }
}
/**
   * filters Row ==>
*/
.filter-apartment {
    background: #f7f7f7;
    /* -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1254901961);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1254901961); */
    box-shadow: 0 0 7px #00000015;
}

.filter-apartment .filters > * {
    width: 150px;
}

.filter-apartment .filters label {
    margin-bottom: 10px;
    font-size: 90%;
}

.filter-apartment .filters .price-range .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: var(--dark-red);
    border-radius: 10px;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.filter-apartment .filters .price-range .slider:hover {
    opacity: 1;
}

.filter-apartment .filters .price-range .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--dark-red);
    /* -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2509803922);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2509803922); */
    box-shadow: 0 0 7px #00000015;
    cursor: pointer;
    border-radius: 50%;
}

.filter-apartment .filters .price-range .values span {
    font-size: 85%;
}

.filter-apartment .filters .price-range .values #rangeValue {
    color: var(--dark-red);
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 490px) {
    .filter-apartment .filters .find-apartment .gold-btn {
        width: 100%;
    }
}

@media (max-width: 496px) {
    .filter-apartment .filters .price-range,
    .filter-apartment .filters .find-apartment,
    .filter-apartment .filters .find-apartment a {
        width: 100%;
    }
}

/**
   * Apartment Card ==>
*/
.apartment-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    /* -webkit-box-shadow: 0 0 25px #eee;
    box-shadow: 0 0 25px #eee; */
    box-shadow: 0 0 7px #00000015;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.apartment-card:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.apartment-card .sign1,
.apartment-card .sign2 {
    position: absolute;
    left: 0;
    color: white;
    padding-block: 5px;
    width: 100px;
    text-align: center;
}

.apartment-card .sign1::after,
.apartment-card .sign2::after {
    content: "";
    position: absolute;
    top: 0;
    right: -33px;
    border: 17.4px solid;
}

.apartment-card .sign1 {
    top: 50px;
    background-color: var(--dark-red);
}

.apartment-card .sign1::after {
    border-color: transparent transparent transparent var(--dark-red);
}

.apartment-card .sign2 {
    top: 110px;
    background-color: #b1000c;
}

.apartment-card .sign2::after {
    border-color: transparent transparent transparent #b1000c;
}

.apartment-card .apartment-body {
    padding: 20px 15px 15px;
}

.apartment-card .apartment-body .apartment-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.apartment-card .apartment-body .apartment-info > div {
    border: 1px solid var(--dark-red);
    border-radius: 4px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.apartment-card .apartment-body .apartment-info > div .btn-group button {
    background: transparent;
    color: var(--dark);
    border: none;
}

.apartment-card .apartment-body .card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
}

.apartment-card .apartment-body .card-footer .apartment-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.apartment-card .apartment-body .card-footer .apartment-price p {
    font-size: 90%;
}

.apartment-card .apartment-body .card-footer .apartment-details {
    background: rgba(237, 229, 222, 0.8588235294);
    padding: 5px 35px;
    border-radius: 200px;
    border: 1px solid var(--dark-red);
    color: var(--dark-red);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.apartment-card .apartment-body .card-footer .apartment-details:hover {
    background-color: var(--dark-red);
    color: white;
}

.apartment-card:not(.row-display) {
    max-width: 450px;
    margin-inline: auto;
}

.apartment-card.row-display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.apartment-card.row-display .sign1,
.apartment-card.row-display .sign2 {
    top: 30px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.apartment-card.row-display .sign1 {
    right: -15px;
}

.apartment-card.row-display .sign2 {
    right: 25px;
}

.apartment-card.row-display .apartment-img img {
    width: 350px;
}

.apartment-card.row-display .apartment-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.apartment-card.row-display .apartment-body .card-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/**
   * Cities Card ==>
*/
/* .city-card {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 5px;
  overflow: hidden;
  background: url("../images/img/city-card-bg.png") 0% 100% / cover no-repeat;
  color: white;
  padding: 15px;
  font-size: 18px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.city-card:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.city-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.6274509804)),
    to(transparent)
  );
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6274509804),
    transparent
  );
}
.city-card .city-apartments {
  background: var(--dark-red);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
}
.city-card .city-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
} */

/**
   * Blog Card ==>
*/

/*-----------------------------------*\
  # Index Page Styles ==>
\*-----------------------------------*/
main {
    position: relative;
    height: 800px;
    background: url("../images/img/about-bg.jpg") 50% 50% / cover no-repeat;
    position: relative;
}

#main {
    background-size: cover !important;
    background-position: 50% 50% !important;
}

main .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 4px;
}

main .carousel-indicators [data-bs-target].active {
    background-color: var(--dark-red);
}

.services .service-card {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.services .service-card img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.services .service-card:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.services .service-card:hover img {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.gray-bg {
    background-color: #f5f5f5;
}

/* .cities {
  position: relative;
}
.cities::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: url("../images/img/cities-bg.png") 50% 0% / cover no-repeat;
}
.cities .container {
  position: relative;
  z-index: 2;
} */

@media (max-width: 815px) {
    .section-title h3 {
        text-align: center;
    }
}

.reviews {
    background: url("../images/img/reviwes.png") 50% 0% / cover no-repeat;
}

.reviews .section-title h3 {
    margin-bottom: 30px;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.reviews .section-title h3::after {
    content: "";
    position: absolute;
    bottom: -17.5px;
    right: 0;
    width: 85%;
    height: 2.5px;
    background-color: white;
}

.reviews .carousel-indicators {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: end !important;
    bottom: -60px;
    margin-left: 1%;
}

.reviews .carousel-indicators [data-bs-target] {
    height: 17px;
    width: 17px;
    border-radius: 50%;
}

.reviews .carousel-item {
    margin-top: 35px;
}

.reviews .reviw-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.reviews .reviw-card .reviw-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 440px) {
    .reviews .reviw-card .reviw-head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 10px;
    }

    .reviews .reviw-card .reviw-head .d-flex {
        -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    }

    .reviews .reviw-card .reviw-head .reviw-icon {
        -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    }
}

.reviews .reviw-card .reviw-head .reviw-writer {
    margin-top: -80px;
    border-radius: 50%;
    border: 4px solid white;
}

.reviews .reviw-card .reviw-head .reviw-writer img {
    width: 120px;
    outline: 3px solid var(--dark-red);
    border-radius: 50%;
    border: 4px solid white;
    margin: 3px;
}

.videos .video-card {
    /* -webkit-box-shadow: 0 0 25px #eee;
    box-shadow: 0 0 25px #eee; */
    box-shadow: 0 0 7px #00000015;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.videos .video-card:hover {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.videos .video-card .video-action {
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    position: relative;
}

.videos .video-card .video-action::after {
    content: "";
    position: absolute;
    top: -28px;
    right: 15px;
    border: 15px solid;
    border-color: transparent transparent white;
}

.videos .video-card .video-action a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.videos .video-card .video-action a .play {
    width: 20px;
    height: 20px;
    display: -ms-inline-grid;
    display: inline-grid;
    border-radius: 50%;
    border: 1px solid var(--dark-red);
    place-content: center;
    font-size: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.videos .video-card .video-action a:hover {
    color: var(--dark-red);
}

.videos .video-card .video-action a:hover .play {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.consultation {
    background: url("../images/img/consultation-bg.jpg") 50% 50% / cover
        no-repeat;
    border-top: 5px solid var(--dark-red);
    position: relative;
}

.consultation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    opacity: 0.8;
}

.consultation .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.consultation .container input::-webkit-input-placeholder {
    color: white;
}

.consultation .container input::-moz-placeholder {
    color: white;
}

.consultation .container input:-ms-input-placeholder {
    color: white;
}

.consultation .container input::-ms-input-placeholder {
    color: white;
}

.consultation .container input::placeholder {
    color: white;
}

.consultation .container [type="submit"] {
    width: 150px;
}

@media (max-width: 676px) {
    .consultation .container [type="submit"] {
        width: 100%;
    }
}

.tabs-section {
    background: var(--dark-red);
}

.tabs-section .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: white;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
}

.tabs-section .tabs .tabs-list {
    border: 1px solid;
    border-radius: 0 10px 10px 0;
    -webkit-border-end: none;
    border-inline-end: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.tabs-section .tabs .tabs-list li.tab-item {
    padding: 17px;
    border: 1px solid;
    border-top: none;
    -webkit-border-start: none;
    border-inline-start: none;
    font-size: 90%;
    cursor: pointer;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.tabs-section .tabs .tabs-list li.tab-item.active {
    -webkit-border-end: none;
    border-inline-end: none;
}

.tabs-section .tabs .tabs-list li.tab-item:last-child {
    border-bottom: none;
}

.tabs-section .tabs .tabs-box {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 15px;
    border: 1px solid;
    -webkit-border-start: none;
    border-inline-start: none;
    border-radius: 10px 0 0 10px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-fill: auto;
    -moz-column-fill: auto;
    column-fill: auto;
    height: 255px;
}

.tabs-section .tabs .tabs-box .tab-box {
    display: none;
}

.tabs-section .tabs .tabs-box .tab-box.active {
    display: block;
}

.tabs-section .tabs .tabs-box .tab-box ul li:not(:last-child) {
    margin-bottom: 15px;
}

.tabs-section .tabs .tabs-box .tab-box ul li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.tabs-section .tabs .tabs-box .tab-box ul li a:hover {
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
}

@media (max-width: 768px) {
    .tabs-section .tabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .tabs-section .tabs .tabs-list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        border: 1px solid;
        border-bottom: none;
        border-radius: 10px 10px 0 0;
    }

    .tabs-section .tabs .tabs-list li.tab-item {
        padding: 10px 17px;
        -webkit-border-end: 1px solid;
        border-inline-end: 1px solid;
        border-bottom: 1px solid;
        font-size: 80%;
    }

    .tabs-section .tabs .tabs-list li.tab-item:last-child {
        -webkit-border-end: none !important;
        border-inline-end: none !important;
        border-bottom: 1px solid;
    }

    .tabs-section .tabs .tabs-list li.tab-item.active {
        border-bottom: none;
        -webkit-border-end: 1px solid;
        border-inline-end: 1px solid;
    }

    .tabs-section .tabs .tabs-box {
        border-radius: 0 0 10px 10px;
        border: 1px solid;
        border-top: 0;
        height: auto;
    }

    .tabs-section .tabs .tabs-box li {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
}

.apartments-nvas {
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.apartments-nvas.active {
    max-height: 400px;
}

@media (min-width: 1200px) {
    .apartments-nvas {
        background: #eee;
        position: absolute;
        top: 95px;
        width: 100%;
        left: 0;
        z-index: 100;
    }

    .apartments-nvas.active {
        max-height: 560px;
    }

    .apartments-nvas .content {
        padding: 15px;
    }
}

@media (max-width: 1199px) {
    .apartments-nvas .navs-list ul.navs-box {
        max-height: 24px;
        overflow: hidden;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .apartments-nvas .navs-list ul.navs-box.active {
        max-height: 170px;
    }
}

.apartments-nvas .navs-list ul.navs-box li {
    margin-bottom: 9px;
}

.apartments-nvas .navs-list ul.navs-box li.navs-head {
    color: var(--dark-red);
    font-weight: bold;
    cursor: pointer;
}

.apartments-nvas .citizenship {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.apartments-nvas .citizenship h4 {
    color: var(--dark-red);
}

.apartments-nvas .citizenship p {
    margin-block: 10px 20px;
}

.apartments-nvas .citizenship .more-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*-----------------------------------*\
  # Apartments Page Styles ==>
\*-----------------------------------*/
.apartments {
    max-width: 95%;
    margin-inline: auto;
}
@media (max-width: 815px) {
    .blogs {
        margin-top: 3rem;
    }
}

.apartments .map-box {
    display: none;
}

.apartments .map-box.show {
    display: block;
}

.apartments .map-box #map {
    min-height: 550px;
    border-radius: 10px;
}

.apartments .map-box #map .leaflet-control-attribution {
    display: none;
}

.apartments .map-box #map .leaflet-control-zoom {
    border-radius: 10px;
    overflow: hidden;
}

.apartments .optbar {
    background-color: #ececec;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 15px;
    border-radius: 10px;
    margin-inline: 0.5rem !important;
}

.apartments .optbar .dropdown-toggle {
    background: transparent;
    border-color: var(--dark-red);
    color: var(--dark);
}

.apartments .optbar .order-by {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.apartments .optbar .order-by span {
    display: -ms-inline-grid;
    display: inline-grid;
    width: 37px;
    height: 37px;
    background: var(--dark-red);
    place-content: center;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.apartments .optbar .show-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.apartments .optbar .show-style span {
    width: 37px;
    height: 37px;
    display: -ms-inline-grid;
    display: inline-grid;
    place-content: center;
    padding: 10px;
    border: 1px solid #c1c1c1;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.apartments .optbar .show-style span svg rect {
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
}

.apartments .optbar .show-style span:is(:hover, .active) {
    border-color: var(--dark-red);
}

.apartments .optbar .show-style span:is(:hover, .active) svg rect {
    fill: var(--dark-red);
}

.apartments .content {
    display: none;
}

.apartments .content.active {
    display: block;
}

.contact-box {
    background: white;
    border-radius: 20px;
    /* padding: 20px; */
    /* -webkit-box-shadow: 0 0 15px #ddd;
    box-shadow: 0 0 15px #ddd; */
    box-shadow: 0 0 7px #00000015;
    margin-inline: auto;
}
.contact-box .head {
    padding: 20px 20px 0;
}

/* .contact-box [name="phone"] {
    direction: ltr;
} */

@media (min-width: 768px) {
    .contact-box {
        max-width: 350px;
    }
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.contact-box .head img:first-of-type {
    animation: ring 3s ease infinite;
}
.contact-box .head img:last-of-type {
    animation: tada 3s ease infinite;
}

.contact-box .dropdown-toggle {
    background: white;
    border: 1px solid #777;
    width: 100%;
    color: #777;
    padding-block: 10px;
    text-align: start;
    position: relative;
}

.contact-box .dropdown ul {
    min-width: 100%;
}

.contact-box .dropdown + button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-red);
    display: grid;
    place-content: center;
}

.contact-box button::after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.ar .contact-box button::after {
    right: auto;
    left: 10px;
}

.contact-box form textarea {
    height: 100px;
}
.contact-box .zcwf_row button {
    background: var(--dark-red);
    padding: 15px 20px;
    text-align: center;
    color: white;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    border-radius: 10px;
}
.contact-box .zcwf_row button span {
    line-height: 16px;
}

.contact-box input,
.contact-box textarea {
    border-color: #777;
    color: black;
}

.contact-box input::-webkit-input-placeholder,
.contact-box textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.588);
}

.contact-box input::-moz-placeholder,
.contact-box textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.588);
}

.contact-box input:-ms-input-placeholder,
.contact-box textarea:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.588);
}

.contact-box input::-ms-input-placeholder,
.contact-box textarea::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.588);
}

.contact-box input::placeholder,
.contact-box textarea::placeholder {
    color: rgba(0, 0, 0, 0.588);
}

/*-----------------------------------*\
  # Blogs Page Styles ==>
\*-----------------------------------*/
/* .category-list .category-item {
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.category-list .category-item:hover {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.category-list .category-item .category-img img {
  width: 150px;
  border-radius: 15px;
  border: 5px solid var(--dark-red);
}
.category-list .category-item .category-title h6 {
  margin-block: 15px 5px;
}
.category-list .category-item .category-title a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.category-list .category-item .category-title a:hover {
  -webkit-margin-start: 20px;
  margin-inline-start: 20px;
} */

/*-----------------------------------*\
  # Blog-Details Page Styles ==>
\*-----------------------------------*/
.blog-details img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 815px) {
    .apartments .row:first-of-type > div:first-child,
    .faq-page .row:first-of-type > div:first-child {
        display: none;
    }

    .blogs .row:first-of-type {
        flex-direction: column-reverse;
        align-items: center;
    }
}

/*-----------------------------------*\
  # FAQ's Page Styles ==>
\*-----------------------------------*/
.faq .accordion-flush .accordion-item {
    border: 1px solid #ddd !important;
    border-radius: 10px;
    overflow: hidden;
}

.faq .accordion-flush .accordion-item:not(:last-child) {
    margin-bottom: 15px;
}

.faq .accordion-flush .accordion-item .accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--dark-red);
    border-color: var(--dark-red);
}

.faq .accordion-flush .accordion-item .accordion-button:not(.collapsed):focus {
    /* -webkit-box-shadow: 0 0 0.25rem var(--dark-red);
    box-shadow: 0 0 0.25rem var(--dark-red); */
    box-shadow: 0 0 7px #00000015;
}

.faq .accordion-flush .accordion-item .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*-----------------------------------*\
  # Apartment-Details Page Styles ==>
\*-----------------------------------*/
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    display: none;
}

#overlay.show {
    display: block;
}

.search-lay {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    z-index: 100001;
    background-color: rgba(0, 0, 0, 0.837);
    place-content: center;
    color: white;
    text-align: center;
    /* transform: scale(0); */
    transition: 0.3s;
    display: grid;
    /* display: none; */
    height: 0px;
    overflow: hidden;
}

.search-lay.show {
    transform: scale(1);
    height: 100%;
}

.search-lay .close {
    width: fit-content;
    margin-inline: auto;
    font-size: 50px;
    cursor: pointer;
    transition: 0.3s;
}

/* .search-lay .close:hover {
    transform: rotate(180deg) scale(1.2);
} */

.search-lay .title p {
    margin-bottom: 10px;
    font-size: 28px;
    color: var(--dark-red);
}

.search-lay form {
    background: #ffffff8a;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    gap: 10px;
    width: 95vw;
    max-width: 650px;
}

.search-lay input {
    color: var(--dark-red);
    background-color: white;
}

.search-lay button {
    width: 50px;
    height: 50px;
    background: var(--dark-red);
    display: grid;
    place-content: center;
    border-radius: 50%;
}

#floatSlider {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    z-index: 150;
    display: none;
}

#floatSlider .carousel-inner {
    width: 85%;
    margin-inline: auto;
}

#floatSlider .carousel-inner .carousel-item {
    text-align: center;
}

#floatSlider .carousel-inner .carousel-item img {
    border-radius: 15px;
    width: 75%;
}

#floatSlider.show {
    display: block;
}

#floatSlider #close {
    font-size: 45px;
    color: var(--dark-red);
    cursor: pointer;
    position: absolute;
    top: -70px;
    width: 100%;
    text-align: center;
}

@media (min-width: 1200px) {
    .apartment-details .container > .row > .col-lg:first-child {
        max-width: calc(100% - 350px);
    }
    .apartment-details .container > .row > .col-lg:last-child {
        max-width: 350px;
    }
}

@media (max-width: 815px) {
    .apartment-details {
        padding-top: 4rem !important;
    }
}

.apartment-details .img-carousel #img-slider .owl-nav {
    display: none !important;
}

.apartment-details .img-carousel #small-img .owl-nav {
    margin: 0;
}

.apartment-details .img-carousel #small-img .owl-nav button {
    position: absolute;
    top: 0;
    margin: 0;
    height: 100%;
}

.apartment-details .img-carousel #small-img .owl-nav button.owl-prev {
    right: -15px;
}

.apartment-details .img-carousel #small-img .owl-nav button.owl-next {
    left: -14px;
}

.apartment-details .img-carousel #small-img .owl-nav button span {
    background: var(--dark-red);
    color: white;
    font-size: 33px;
    height: 100%;
    display: inline-block;
    width: 15px;
    display: -ms-inline-grid;
    display: inline-grid;
    place-content: center;
}

.apartment-details .img-carousel .bottom-slide {
    background: var(--dark);
    padding: 10px 20px;
}

.apartment-details .img-carousel .bottom-slide .action-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

.apartment-details .img-carousel .bottom-slide .action-box a {
    border: 1px solid white;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    display: -ms-grid;
    display: grid;
    place-content: center;
    color: white;
    cursor: pointer;
}

.apartment-details table {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    width: 100%;
}

.apartment-details .content-head .head-status > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--dark-red);
    border-radius: 5px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 7px;
}

.apartment-details .head-status img {
    width: 20px;
}

.apartment-details .feature-table table {
    border: 1px solid #ddd;
}

.apartment-details .feature-table table tr td {
    padding: 10px;
    width: 50%;
}

.apartment-details .feature-table table tr td:first-child {
    border-left: 1px solid #ccc;
}

.apartment-details .feature-table table tr:nth-child(odd) td {
    background-color: #eee;
}

.apartment-details .more-feature-table {
    overflow: auto;
}

.apartment-details .more-feature-table table td {
    padding: 7px 10px;
    min-width: 165px;
}

.apartment-details .more-feature-table table td span {
    position: relative;
}

.apartment-details .more-feature-table table td span::before {
    content: "\f00c";
    font-family: var(--fa-style-family-classic);
    font-weight: 900;
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
    color: var(--dark-red);
}

.apartment-details .video {
    position: relative;
}

.apartment-details .video .play-video {
    background: var(--dark-red);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-content: center;
    cursor: pointer;
    /* -webkit-box-shadow: 0 0 0 8px rgba(206, 161, 78, 0.4784313725);
    box-shadow: 0 0 0 8px rgba(206, 161, 78, 0.4784313725); */
    box-shadow: 0 0 7px #00000015;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.9;
    z-index: 10;
}

.apartment-details .video .play-video:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
}

.apartment-details .video .play-video span {
    color: white;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.apartment-details .place-card {
    border: 2px solid var(--dark-red);
    min-height: 100%;
}
.apartment-details .place-card .place-img img {
    width: 28px;
    height: 32px;
}

.apartment-details .price-table {
    overflow-x: auto;
}

.apartment-details .price-table table {
    border: 1px solid #c1c0c0;
    text-align: center;
}

.apartment-details .price-table table td,
.apartment-details .price-table table th {
    padding: 7px 10px;
}

.apartment-details .price-table table td:not(:last-child) {
    border-left: 1px solid #c1c1c1;
}

.apartment-details .price-table table thead tr {
    background-color: var(--dark-red);
    color: white;
}

.apartment-details .price-table table tbody tr:nth-child(even) {
    background-color: #eee;
}

/**************** New style ************/

.search-title {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    position: absolute;
    top: calc(50% + 100px);
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 15px;
    text-align: center;
    color: white;
    width: 650px;
}
@media (max-width: 815px) {
    .search-title {
        width: 100%;
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0,
            #8c041c85,
            rgba(255, 255, 255, 0) 100%
        );
    }
    .search-title form {
        max-width: 400px;
        margin-inline: auto;
    }
}
@media (max-width: 500px) {
    .search-title .title {
        margin-bottom: 25px;
    }
    .search-title form {
        max-width: none;
    }
}

.search-title form {
    background: #ffffff85;
    border-radius: 200px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.search-title form .input {
    flex-grow: 1;
}

.search-title form input {
    background: white;
    border-radius: 200px;
    color: black;
    outline: none;
}

.search-title form button {
    width: 50px;
    height: 50px;
    background: var(--dark-red);
    display: grid;
    place-content: center;
    border-radius: 50%;
}

.search-title p {
    margin-top: -10px;
    font-size: 30px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .search-title {
        top: calc(50% - 50px);
    }

    .search-title p {
        font-size: 23px;
    }
}

.float-title {
    background: #ffffffa8;
    position: absolute;
    top: 23%;
    right: 7%;
    padding: 15px;
    border-radius: 15px;
}

.float-title h5 {
    max-width: 250px;
    line-height: 1.5;
}

.ar .float-title img {
    margin-top: -100px;
}
.float-title img {
    margin-top: -220px;
}

.send-icon {
    transform: rotate(180deg);
}
.ar .send-icon {
    transform: rotate(0deg);
}

.float-title a,
.float-title-sm a {
    display: block;
    width: fit-content;
    margin-inline: auto;
    background-color: #616161;
    color: #ffffff;
    padding: 7px 27px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.5s;
}

.float-title-sm {
    background: #ffffffa8;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-block: 20px;
}

.float-title-sm h4 {
    line-height: 1.7;
}

.float-title-sm img {
    margin-top: -60px;
}

.quick-links::-webkit-scrollbar {
    display: none;
}

.quick-links {
    position: fixed;
    top: 0;
    left: -100%;
    transition: 0.3s;
    z-index: 1000000;
    background: url("../images/img/header-mask.png") 50% 50% / contain;
    height: 100vh;
    padding-inline: 15px;
    padding-top: 75px;
    width: 256px;
    overflow: auto;
}
.quick-links.show {
    left: 0;
}

body.ar .quick-links {
    right: -100%;
    left: auto;
}

body.ar .quick-links.show {
    right: 0;
    left: auto;
}

.quick-links {
    overflow: auto;
}
.quick-links .copyright {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 14px;
    background-color: white;
    padding-top: 20px;
}

.quick-links .tags {
    height: 200px;
    overflow: auto;
}
.quick-links .head {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: var(--dark);
    width: 100%;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
    font-size: 24px;
}

.quick-links .links-body {
    margin-bottom: 25px;
}

.quick-links .links-body .dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--dark);
    font-family: "Al-Jazeera-Bold", "Montserrat";
    width: 100%;
    text-align: start;
    position: relative;
    transition: 0.4s;
}

.quick-links .dropdown-item {
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.quick-links .links-body .dropdown-toggle.show {
    /* box-shadow: 0 3px 6px 0 #9f9f9f; */
    box-shadow: 0 0 7px #00000015;
    background-color: white;
}

.quick-links .links-body button::after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.ar .quick-links .links-body button::after {
    left: 10px;
    right: auto;
}
.quick-links .dropdown-menu.show {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    padding-block: 5px !important;
    background: #e8e8e8 !important;
    border-radius: 0 0 7px 7px;
}

.quick-links .dropdown-menu.show li:not(:last-child) {
    padding-bottom: 4px;
    border-bottom: 1px solid #aaa;
}

.quick-links .footer .join,
.quick-links .footer .help {
    background-color: white;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    padding: 7px 10px;
    /* box-shadow: 0 3px 6px 0 #9f9f9f; */
    box-shadow: 0 0 7px #00000015;
    margin-bottom: 15px;
    font-size: 18px;
    align-items: center;
    transition: 0.3s;
}

.quick-links .footer .join:hover,
.quick-links .footer .help:hover {
    background-color: #f1f1f1;
}

.quick-links .footer h5 {
    font-size: 18px;
    margin-bottom: 0;
}

.quick-links .footer .social,
.quick-links .footer .lang,
.quick-links .footer .currency {
    display: flex;
    justify-content: space-evenly;
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 8px;
}
.quick-links .fi {
    width: 40px;
    height: auto;
    border-radius: 0;

}

.quick-links .footer .lang,
.quick-links .footer .currency {
    font-size: 30px;
}

.quick-links .footer .social a,
.quick-links .footer .lang a,
.quick-links .footer .currency a {
    opacity: 0.8;
    transition: 0.3s;
}
.quick-links .footer .lang a,
.quick-links .footer .currency a {
    width: fit-content;
}

.quick-links .footer .social a:hover,
.quick-links .footer .lang a:hover,
.quick-links .footer .currency a:hover {
    opacity: 1;
}

.search-bar {
    /* box-shadow: 0px 5px 35px -5px rgb(9 4 0 / 10%); */
    box-shadow: 0 0 7px #00000015;
    background: white;
    position: relative;
    z-index: 2000;
}

.search-bar .discover {
    height: 100%;
    background: var(--dark-red);
    min-height: 120px;
}

.search-bar .discover h2 {
    height: 100%;
    background: url(../img/searchbar-bg.png) 0 100% / contain no-repeat;
    display: grid;
    place-content: center;
    color: white;
    text-align: center;
    padding-inline: 20px;
}

.search-bar form {
    padding-block: 2rem;
}
.search-bar form button.gold-btn {
    background-color: var(--dark-red);
    border: none !important;
}

@media (max-width: 400px) {
    .search-bar form .row > div {
        width: 100%;
    }
}

.search-bar .dropdown button {
    width: 100%;
    padding-block: 10px;
    text-align: start;
    position: relative;
    background: white;
    border: 1px solid #777;
    color: #777;
    border-radius: 13px;
    overflow: hidden;
    padding-inline-start: 35px;
}

.search-bar .dropdown button::after {
    position: absolute;
    top: 50%;
    right: 10px;
}

.ar .search-bar .dropdown button::after {
    right: auto;
    left: 10px;
}

.search-bar .dropdown span.icon {
    position: absolute;
    top: 50%;
    right: 8px;
    z-index: 10;
    transform: translateY(-50%);
}
.search-bar .dropdown span.icon svg {
    width: 20px;
}

.search-bar .dropdown ul {
    min-width: 100%;
    max-height: 250px;
    overflow: auto;
}

.search-bar .gold-btn:hover path {
    fill: var(--dark-red) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent !important;
    color: inherit;
}

input[type="range"] {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    margin: 0;
    padding: 0 2px;
    /* Add some L/R padding to ensure box shadow of handle is shown */
    overflow: hidden;
    border: 0;
    border-radius: 1px;
    outline: none;
    background: linear-gradient(grey, grey) no-repeat center;
    /* Use a linear gradient to generate only the 2px height background */
    background-size: 100% 2px;
    pointer-events: none;
}

input[type="range"]:active,
input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 28px;
    background-color: var(--dark-red);
    position: relative;
    margin: 5px 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: all;
    /* box-shadow: 0 1px 4px 0.5px rgba(0, 0, 0, 0.25); */
    box-shadow: 0 0 7px #00000015;
}

input[type="range"]::-webkit-slider-thumb::before {
    content: " ";
    display: block;
    position: absolute;
    top: 13px;
    left: 100%;
    width: 2000px;
    height: 2px;
}

.multi-range {
    position: relative;
    height: 20px;
}
@media (max-width: 567px) {
    .multi-range {
        position: relative;
        height: 32px;
    }
    .multi-range input[type="range"] {
        top: 5px;
    }
}
.multi-range input[type="range"] {
    position: absolute;
}

.multi-range input[type="range"]:nth-child(1)::-webkit-slider-thumb::before {
    background-color: red;
}

.multi-range input[type="range"]:nth-child(2) {
    background: none;
}

.multi-range input[type="range"]:nth-child(2)::-webkit-slider-thumb::before {
    background-color: rgb(164, 11, 11);
}

.multi-range .price {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    bottom: 10px;
    font-size: 17px;
    color: #777;
}

@media (max-width: 567px) {
    .multi-range .price {
        font-size: 13px;
        bottom: 15px;
    }
}

.float-social {
    position: fixed;
    top: 45%;
    left: 5px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 1;
    transition: 0.5s;
}

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

.float-social.show {
    opacity: 1;
}

.float-social a {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    border: 1.5px solid var(--dark-red);
    display: grid;
    place-content: center;
    font-size: 23px;
    background-color: white;
    color: var(--dark-red);
    transition: 0.3s;
}

.float-social a:hover {
    background-color: var(--dark-red);
    color: white;
    /* box-shadow: 0 0 10px #aaa; */
    box-shadow: 0 0 7px #00000015;
}

.to-top {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: var(--dark-red);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
    z-index: 100000;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    font-size: 22px;
    /* box-shadow: 0 0 10px #eee; */
    box-shadow: 0 0 7px #00000015;
}
.to-top a {
    line-height: 0.5;
}
.ar .to-top {
    left: 10px;
    right: auto;
}

.to-top.show {
    opacity: 1;
}

.float-help {
    position: fixed;
    bottom: 80px;
    right: 23px;
    z-index: 1000000;
}
#chatbase-bubble-button{
    right: 1rem !important;
    left: unset;
}

.float-help .whats-icon {
    font-size: 30px;
    color: white !important;
    background: #4ac959;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
}

.float-help .whats-icon::before {
    position: absolute;
    border: 1px solid #fff;
    border-radius: 50%;
}

.float-help .whats-icon::after {
    position: absolute;
    border: 1px solid #fff;
    border-radius: 50%;
    animation-delay: 1s;
}

.float-help .whats-icon::after,
.float-help .whats-icon::before {
    content: "";
    inset: 0;
    animation-name: whatsappAnimation;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    box-shadow: 0 0 10px 2px #4ac959;
}

@keyframes whatsappAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.circlular-progress {
    position: relative;
    width: 35px;
    height: 35px;
    background-color: #f3f4f4;
    border-radius: 50%;
    margin-inline: auto;
    color: #707070;
}

.circlular-progress span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    color: var(--dark-red);
    background-color: #f3f4f4;
    border-radius: 50%;
    display: grid;
    place-content: center;
    font-size: 12px;
}

.main-content {
    background: url("../images/img/header-mask.png") 0% 0% / 15% repeat;
    padding-block: 1.5rem;
}

@media (min-width: 1400px) {
    .main-content .container,
    .nationality .container,
    .about > .container {
        max-width: 1415px;
    }
}

@media (max-width: 1199px) {
    .main-content .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .main-content .container > .row > div:first-child {
        max-width: 350px;
    }

    .main-content .container > .row > div:last-child {
        max-width: calc(100% - 350px);
    }
}

.card-list {
    display: flex;
    gap: 0.75rem;
    cursor: grab;
    padding-bottom: 10px;
    overflow-x: scroll !important;
    padding-block: 15px;
    padding-inline-start: 8px;
}
.section-title {
    padding-inline-start: 8px;
}

.card-list::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 1px solid transparent;
}

.card-list::-webkit-scrollbar-track {
    background-color: #e2e6e9;
}

.card-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    max-width: 330px;
    transition: 0.3s;
    flex-shrink: 0;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 7px #00000015;
    margin-inline: auto;
}

.card-item .card-features * {
    font-size: 13px !important;
}
.card-item .card-features .feature-box {
    height: 85px;
}
.card-item .card-features img {
    width: 35px;
}

.card-item .card-features .icon {
    height: 35px;
}

.card-item .img-card {
    height: 215px;
    width: 330px;
    padding: 10px;
    overflow: hidden;
    border-radius: 10px;
}
@media (max-width: 576px) {
    .card-item,
    .card-item .img-card,
    .video-card,
    .video-card .card-img,
    .news-card{
        width: 300px;
    }
}
.apartments .card-item .img-card {
    width: auto;
}
.apartments .page-head h1 span {
    background: #8c041c9c;
    color: white !important;
    padding: 4px 10px;
    border-radius: 6px;
    display: block;
    padding: 5px 10px;
    width: fit-content;
    line-height: 20px;
    height: 30px;
}

.card-item .img-card > div {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
.card-item .img-card > div .float-code {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #8c041c85;
    padding: 3px 7px;
    color: white;
    border-radius: 7px;
    font-size: 13px;
    z-index: 10;
}

.card-item .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.card-item .card-info {
    background: rgb(140 4 28 / 10%);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-item .icons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.card-item .icons > div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    display: inline-grid;
    place-content: center;
    color: var(--dark-red);
    transition: 0.3s;
}

.card-item .icons > div:is(:hover, .active) {
    background-color: var(--dark-red);
    color: white;
}

.card-item .price {
    text-align: end;
    color: var(--dark-red);
    font-size: 14px;
}

.card-item .price h6 {
    font-weight: bold;
    font-size: 20px;
    font-family: "Al-Jazeera-Bold";
}

.card-item .card-description {
    text-align: center;
    margin-block: 15px 20px;
    color: var(--dark);
    /* border-block: 1px solid #ccc; */
    transition: 0.3s;
}
.card-item .card-description a {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    height: 24px;
    line-height: 23px;
    font-size: 15px;
}
.card-item:hover .card-description {
    color: var(--dark-red);
}

.card-item .card-features {
    display: flex;
    justify-content: space-between;
    align-items: start;
    text-align: center;
    gap: 10px;
}

.card-item:hover .img-card img {
    transform: scale(1.06);
}

@media (min-width: 768px) {
    #row-display {
        width: 100% !important;
    }
    #row-display .card-item {
        display: flex;
    }

    #row-display .card-item .img-card {
        width: 415px;
    }

    #row-display .card-item .card-info {
        flex-direction: column;
        justify-content: space-evenly;
        order: 3;
    }

    #row-display .card-item .px-3.pb-2 {
        flex-grow: 1;
        align-self: center;
    }
}
@media (max-width: 1199px) and (min-width: 768px) {
    #row-display .card-item .img-card {
        width: 250px;
    }
}

/*
@media (max-width: 767px) {
    #row-display .card-item {
        display: block;
    }

    #row-display .card-item .img-card {
        width: auto;
    }

    #row-display .card-item .card-info {
        flex-direction: row;
        justify-content: space-between;
        order: unset;
    }
} */

.section-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: center;
    padding: 7px 0;
}

.section-actions a {
    background-color: white;
    color: var(--dark-red);
    padding: 4px 20px;
    border-radius: 10px;
    /* box-shadow: 0 3px 6px rgba(171, 171, 171, 0.5); */
    box-shadow: 0 0 7px #00000015;

    transition: 0.3s;
}

.section-actions a:hover {
    background-color: var(--dark-red);
    color: white;
}

.scroll-btns {
    display: flex;
    gap: 10px;
    flex-direction: row-reverse;
    padding-inline-end: 5px;
}

body.ar .scroll-btns {
    flex-direction: row;
}

.scroll-btns button {
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: var(--dark-red);
    /* box-shadow: 0 0 15px #ddd; */
    /* box-shadow: 0 3px 6px 0 rgb(171 171 171 / 50%); */
    box-shadow: 0 0 7px #00000015;
    border-radius: 8px;
    display: inline-grid;
    place-content: center;
    transition: 0.3s;
}

.scroll-btns button:hover {
    background-color: var(--dark-red);
    color: white;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    max-width: 330px;
    text-align: center;
    flex-shrink: 0;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 7px #00000015;
    transition: 0.3s;
}
.latest-videos .video-card .video-description p {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    height: 70px;
    line-height: 23px;
    font-size: 15px;
}
.video-card > * {
    padding: 10px;
}

.video-card .card-img {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}

.video-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.video-card .card-img::before,
.video-card .card-img::after {
    content: "";
    position: absolute;
}

.video-card .card-img::before {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    background: url("../images/img/play-video.png") 50% 50% / contain no-repeat;
    z-index: 10;
    display: block;
    transition: 0.3s;
}

.video-card .card-img::after {
    top: 10px;
    left: 10px;
    border-radius: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: var(--dark);
    opacity: 0.5;
}

.video-card .video-title {
    background: rgb(140 4 28 / 10%);
    color: var(--dark-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -15px;
}

.video-card .video-title img {
    width: 70px;
    border: 4px solid white;
    border-radius: 50%;
    margin-top: -50px;
    z-index: 10;
    margin-inline-end: 10px;
    transition: 0.3s;
    transform: rotateY(180deg);
}

.video-card:hover {
    transform: scale(1.02);
}

.video-card:hover .card-img::before {
    transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
}

.video-card:hover .video-title img {
    transform: rotateY(0deg) scale(1.1) translateY(-10px);
}

.step-card {
    padding-block: 60px;
}

.steps section {
    float: none;
    width: 245px;
    height: 265px !important;
    padding: 10px;
    list-style: none;
    position: relative;
    border-radius: 30px;
    text-align: center;
    margin: 0;
    display: inline-block;
}

.steps .swiper-slide {
    flex-shrink: 0;
    opacity: 1;
    height: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 5px;
    pointer-events: auto;
}

.steps .item {
    margin-left: 15px;
    float: right;
    width: 345px;
    margin-left: 0;
    padding: 8px;
}

.steps section:after,
.steps section:before {
    top: 0;
    width: 50%;
    content: "";
    position: absolute;
    bottom: 0;
}

.steps section:before {
    right: 0;
    border-radius: 0 30px 30px 0;
    z-index: 999;
    background-image: linear-gradient(to right, #009fe3 0, #0a6691 100%);
}

.steps section:after {
    left: 0;
    background-color: #4cc2f1;
    z-index: 99;
    border-radius: 30px 0 0 30px;
}

.steps section.step_two:before {
    background-image: linear-gradient(to right, #0ac7b3 0, #068c78 100%);
}

.steps section.step_two:after {
    background-color: #77c5b8;
}

.steps section.step_three:before {
    background-image: linear-gradient(to right, #b6eb1e 0, #60a943 100%);
}

.steps section.step_three:after {
    background-color: #d6ef20;
}

.steps section.step_four:before {
    background-image: linear-gradient(to right, #ffd901 0, #fd8c08 100%);
}

.steps section.step_four:after {
    background-color: #ffe914;
}

.steps section .sub {
    position: relative;
    width: 90%;
    margin: auto;
    min-height: 232px;
    top: -40px;
    background-color: #fff;
    border-radius: 30px;
    padding: 15px 10px;
    z-index: 999;
    word-break: break-all;
    -webkit-box-shadow: 3px 3px 5px 0 rgba(77, 77, 77, 0.5);
    -moz-box-shadow: 3px 3px 5px 0 rgba(77, 77, 77, 0.5);
    box-shadow: 3px 3px 5px 0 rgba(77, 77, 77, 0.5);
}

.steps section .sub h3 {
    font-size: 21px;
    color: #067bb0;
    margin-top: 10px;
}

.steps section.step_two .sub h3 {
    color: #38b5ae;
}

.steps section.step_three .sub h3 {
    color: #78bc39;
}

.steps section.step_four .sub h3 {
    color: #fea905;
}

.steps section .sub .icon {
    height: 50px;
    width: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin: auto;
}

.steps section .sub .icon {
    background-image: url("../images/img/step-icon-1.png");
}

.steps .step_two .sub .icon {
    background-image: url("../images/img/step-icon-2.png");
}

.steps .step_three .sub .icon {
    background-image: url("../images/img/step-icon-3.png");
}

.steps .step_four .sub .icon {
    background-image: url("../images/img/step-icon-4.png");
}

.steps section .sub p {
    font-size: 17px;
    color: #4f4f4f;
    margin: 0;
    position: absolute;
    top: 110px;
    width: 100%;
    left: 0;
    white-space: initial;
    padding: 0 10px;
    word-break: initial;
}

.steps section .sub:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0;
    border-color: #fff transparent transparent;
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -15px;
}

.steps section .number {
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 50px;
    font-size: 38px;
    margin-left: -25px;
    text-shadow: 1px 1px #dfdfdf;
    z-index: 999;
}

.steps section .shadow {
    position: absolute;
    bottom: 1px;
    width: 80%;
    left: 10%;
    height: 9px;
    -webkit-box-shadow: 3px 3px 13px 0 rgba(77, 77, 77, 0.5);
    -moz-box-shadow: 3px 3px 13px 0 rgba(77, 77, 77, 0.5);
    box-shadow: 0 5px 4px 2px rgba(77, 77, 77, 0.5);
    border-radius: 100%;
    z-index: 99;
}

.mirror {
    position: absolute;
    bottom: -60px;
    width: 100%;
    left: 0;
    height: 60px;
    border-radius: 20px 20px 0 0;
    z-index: 9;
    opacity: 0.6;
}

.mirror:before {
    right: 0;
    bottom: 0;
    border-radius: 0 30px 0 0;
    background-image: linear-gradient(
        to bottom,
        rgb(6 124 176 / 33%) 0,
        rgb(6 125 179 / 16%) 50%,
        rgb(255 255 255 / 0) 100%
    );
}

.mirror:after {
    left: 0;
    bottom: 0;
    border-radius: 30px 0 0;
    background-image: linear-gradient(
        to bottom,
        rgb(1 179 255 / 19%) 0,
        rgb(177 218 237 / 33%) 50%,
        rgb(10 102 145 / 0) 100%
    );
}

.step_two .mirror:before {
    background-image: linear-gradient(
        to bottom,
        rgb(6 151 132 / 42%) 0,
        rgb(11 192 169 / 19%) 50%,
        rgba(10, 102, 145, 0) 100%
    );
}

.step_two .mirror:after {
    background-image: linear-gradient(
        to bottom,
        rgb(13 184 161 / 22%) 0,
        rgb(24 229 203 / 12%) 50%,
        rgba(10, 102, 145, 0) 100%
    );
}

.step_three .mirror:before {
    background-image: linear-gradient(
        to bottom,
        rgb(142 204 48 / 53%) 0,
        rgb(133 198 51 / 25%) 50%,
        rgba(10, 102, 145, 0) 100%
    );
}

.step_three .mirror:after {
    background-image: linear-gradient(
        to bottom,
        rgb(142 204 48 / 26%) 0,
        rgb(133 198 51 / 20%) 50%,
        rgba(10, 102, 145, 0) 100%
    );
}

.step_four .mirror:before {
    background-image: linear-gradient(
        to bottom,
        rgb(253 170 5 / 61%) 0,
        rgb(254 158 7 / 23%) 50%,
        rgba(10, 102, 145, 0) 100%
    );
}

.step_four .mirror:after {
    background-image: linear-gradient(
        to bottom,
        rgb(253 170 5 / 35%) 0,
        rgb(254 158 7 / 16%) 50%,
        rgba(10, 102, 145, 0) 100%
    );
}

.mirror:before {
    right: 0;
    bottom: 0;
    border-radius: 0 30px 0 0;
    background-image: linear-gradient(
        to bottom,
        rgb(6 124 176 / 33%) 0,
        rgb(6 125 179 / 16%) 50%,
        rgb(255 255 255 / 0) 100%
    );
}

.mirror:after {
    left: 0;
    bottom: 0;
    border-radius: 30px 0 0;
    background-image: linear-gradient(
        to bottom,
        rgb(1 179 255 / 19%) 0,
        rgb(177 218 237 / 33%) 50%,
        rgb(10 102 145 / 0) 100%
    );
}

.mirror:after,
.mirror:before {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
}

.city-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 3px 6px 0 rgba(171, 171, 171, 0.5); */
    box-shadow: 0 0 7px #00000015;
}

.city-card .city-img {
    height: 220px;
    padding: 5px;
    overflow: hidden;
}
.city-card .city-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.city-card .city-info {
    background: rgba(140, 4, 28, 10%);
    color: var(--dark-red);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    transition: 0.3s;
}

.city-card:hover .city-info {
    background-color: WHITE;
}

@media (max-width: 576px) {
    .city-card .city-img {
        height: 180px;
    }
    .city-card .city-info {
        font-size: 12px;
    }
    .city-card .city-info h6 {
        font-size: 13px;
    }
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
    text-align: center;
    max-width: 330px;
    /* box-shadow: 0 0 10px #ddd; */
    box-shadow: 0 0 7px #00000015;
}

.news-card .float-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--dark-red);
    color: white;
    padding: 5px 15px;
    border-radius: 6px;
    font-size: 12px;
}

.news-card .news-img {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px;
}

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

.news-card .news-img a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.news-card h6 {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 95%;
    margin-inline: auto;
}

.news-card .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

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

.news-card .news-info {
    background: rgba(140, 4, 28, 10%);
    color: var(--dark-red);
    padding: 10px 15px;
    transition: 0.3s;
}

.news-card:hover .news-info {
    background-color: WHITE;
}

.category-list,
.search-box {
    background-color: white;
    border-radius: 20px;
    margin-top: 15px;
    /* box-shadow: 0 3px 6px 0 rgba(171, 171, 171, 0.5); */
    box-shadow: 0 0 7px #00000015;
}

.search-box .form-group,
.search-box .form-group input {
    margin: 0;
}
.search-box .title {
    padding: 0;
}
.category-list .category-title,
.search-box .title {
    padding: 8px 15px 7px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f2f7;
    font-size: 18px;
    color: var(--dark-red);
}
.search_form {
    width: 100%;
    margin-top: 15px;
}

@media (min-width: 815px) {
    .search_form {
        max-width: 315px;
        margin-top: 0;
    }
}

.search-box .form-group,
.search_form .form-group {
    position: relative;
}

.search-box .form-control,
.search_form .form-control {
    text-align: right;
    direction: rtl;
    color: grey;
    border: 2px solid #f0f2f7;
    border-radius: 10px;
    line-height: 2;
    font-size: 13px;
    box-shadow: none;
    height: 42px !important;
    margin-bottom: 20px;
}

.search-box .search_btn,
.search_form .search_btn {
    position: absolute;
    left: 0px;
    top: 0;
    border: 0;
    box-shadow: none;
    width: 40px;
    height: 42px;
    text-align: center;
    color: grey;
    border-radius: 10px 0 0 10px;
    font-size: 14px;
    background: #f0f0f0;
}

.category-list ul {
    padding: 0 15px 10px;
}

.category-list ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.category-list svg {
    width: 20px;
}

.category-list svg path,
.category-list svg rect,
.category-list svg polygon {
    fill: #7d7d7d;
}

.category-list ul li * {
    transition: 0.3s;
}

.category-list ul li:hover * {
    color: var(--dark-red);
    fill: var(--dark-red);
}

.sticky-box {
    position: sticky;
    top: 140px;
    z-index: 1000;
}
@media (max-width: 815px) {
    .sticky-box {
        top: 70px;
    }
}
#app {
    margin-top: 3rem;
}

.card-item .icons > div,
.card-item .icons button,
.card-item .icons .dropup a,
.share button,
.action-box > a,
.share .dropup a {
    width: 30px;

    height: 30px;

    border-radius: 50% !important;

    background: white;

    display: inline-grid;

    place-content: center;

    color: var(--dark-red);

    cursor: pointer;

    transition: 0.3s;

    border: none;
}

.apartment-info-box .action-box a,
.apartment-info-box .action-box .share [data-bs-target="#shareModale"] {
    /* box-shadow: 0 0 10px #ddd; */
    box-shadow: 0 0 7px #00000015;
}

.card-item .icons button::after,
.share button::after {
    display: none;
}

.card-item .icons button + ul,
.share button + ul {
    min-width: auto;
    border: none;
}

.card-item .icons > div:is(:hover, .active),
.card-item .icons button:is(:active),
z.card-item .icons .dropup a:is(:hover, .active) {
    background-color: var(--dark-red);

    color: white;
}

.card-item .icons .dropup a {
    /* box-shadow: 0 0 5px #eee; */
    box-shadow: 0 0 7px #00000015;
}

.card-item .icons .dropup li:not(:first-child) a {
    margin-block: 5px;
    /* box-shadow: 0 0 5px #eee; */
    box-shadow: 0 0 7px #00000015;
}

.fa-2xl {
    line-height: initial;
}

#map {
    min-height: 500px !important;
}

#properties-map {
    max-height: 0px;
    overflow: hidden;
    transition: 0.3s;
}

#properties-map.active {
    max-height: 500px;
}

.filter-box {
    background: white;
    border-radius: 20px;
    padding: 10px;
    /* -webkit-box-shadow: 0 0 15px #ddd;
    box-shadow: 0 0 15px #ddd; */
    box-shadow: 0 0 7px #00000015;
    margin-inline: auto;
}

.filter-box .clear-filter {
    cursor: pointer;
}

.filter-box .filter-title {
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f2f7;
    font-size: 18px;
    color: var(--dark-red);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-box svg {
    width: 20px;
}

.filter-box svg path {
    fill: #808080;
}

.filter-box .dropdown .icon.location-icon svg {
    width: 13px;
}

.filter-box .dropdown {
    margin-bottom: 12px;
    font-size: 12px;
}

.filter-box .dropdown .icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.filter-box .dropdown.budget ul {
    height: 80px;
}

.filter-box .dropdown.budget ul li {
    padding: 35px 25px;
    padding-bottom: 0;
}

.filter-box .dropdown button {
    width: 100%;
    text-align: start;
    padding-inline-start: 40px;
    background: white;
    color: #777;
    border-radius: 10px;
    border: 2px solid #ddd;
    font-size: 14px;
    padding-block: 10px;
}

.filter-box .dropdown button:active {
    background-color: white;
    color: #777;
}

.filter-box .dropdown button::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

.filter-box ul.dropdown-menu.show {
    min-width: 100%;
    padding-top: 0;
    border-radius: 11px;
    overflow: hidden;
    max-height: 225px;
    overflow: auto;
}

.filter-box ul.dropdown-menu.show::-webkit-scrollbar {
    height: 5px;
    border-radius: 0px;
}

.filter-box ul.dropdown-menu.show::-webkit-scrollbar-thumb {
    background-color: #888888;
}

.filter-box ul.dropdown-menu.show::-webkit-scrollbar-track {
    border: none;
}

.filter-box ul.dropdown-menu a {
    color: #8a8a8a;
    font-size: 12px;
}

.filter-box ul.dropdown-menu.show span {
    /* background: #bfbfbf; */
    display: block;
    text-align: center;
    padding: 4px;
    font-size: 14px;
}

@media (min-width: 1400px) {
    .apartments .container,
    .blogs .container {
        max-width: 1400px;
    }
}

@media (max-width: 991px) {
    .apartments .container,
    .blogs .container {
        max-width: none;
    }
}

.apartments .container > .row > div:first-child,
.blogs .container > .row > div:first-child,
.nationality .container > .row > div:first-child,
.about .container > .row > div:first-child {
    max-width: 350px;
}

@media (max-width: 768px) {
    .apartments .container > .row > div:first-child,
    .nationality .container > .row > div:first-child {
        max-width: none;
    }
}

.apartments .card-item {
    max-width: none !important;
}

.apartments .text-box {
    font-family: "Al-Jazeera-Regular", "Montserrat" !important;
}

.float-contact-box {
    background: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000000;
    width: 85%;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 0 10px #aaa; */
    box-shadow: 0 0 7px #00000015;
    display: none;
}

.float-contact-box.show {
    display: block;
}

.float-contact-box .col-md-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-contact-box input {
    color: var(--dark);
}

.float-contact-box .dropdown button:active {
    background-color: unset;
    color: unset;
}

.float-contact-box .dropdown button {
    background: white;
    color: var(--dark);
    width: 100%;
    text-align: start;
    border-color: #ddd;
}

.float-contact-box .dropdown button::after {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.float-contact-box .dropdown ul {
    min-width: 100%;
}

.float-contact-box .dropdown + button {
    border-radius: 50%;
    width: 38px;
}

.float-contact-box .social-list a:first-child {
    animation: tada 3s linear infinite;
}

.float-contact-box .social-list a:nth-child(2) {
    animation: wrench 2.5s ease infinite;
}

.float-contact-box .social-list a:nth-child(3) {
    animation: ring 2s ease infinite;
}

.float-contact-box .social-list a:nth-child(4) {
    animation: horizontal 2s ease infinite;
}

.close-float-contact-box {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    font-size: 23px;
    color: var(--dark-red);
}

@keyframes horizontal {
    0%,
    100%,
    12%,
    24%,
    36% {
        transform: translate(0, 0);
    }

    18%,
    30%,
    6% {
        transform: translate(5px, 0);
    }
}

@keyframes wrench {
    0% {
        transform: rotate(-12deg);
    }
    8% {
        transform: rotate(12deg);
    }
    10%,
    28%,
    30%,
    48%,
    50%,
    68% {
        transform: rotate(24deg);
    }
    18%,
    20%,
    38%,
    40%,
    58%,
    60% {
        transform: rotate(-24deg);
    }
    100%,
    75% {
        transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(-15deg);
    }
    2% {
        transform: rotate(15deg);
    }
    12%,
    4% {
        transform: rotate(-18deg);
    }
    14%,
    6% {
        transform: rotate(18deg);
    }
    8% {
        transform: rotate(-22deg);
    }
    10% {
        transform: rotate(22deg);
    }
    16% {
        transform: rotate(-12deg);
    }
    18% {
        transform: rotate(12deg);
    }
    100%,
    20% {
        transform: rotate(0);
    }
}

.filter-nav {
    background: #e4e4e4;
    padding: 7px 10px;
    display: none !important;
}

@media (max-width: 991px) {
    .apartments .row > div:first-child {
        display: none;
    }

    .filter-nav {
        display: flex !important;
    }
    .apartments {
        padding-top: 3rem;
    }
}

.filter-nav .filter-btn {
    background: var(--dark-red);
    border-radius: 50%;
    width: 35px;
    display: grid;
    height: 35px;
    place-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-nav ul::-webkit-scrollbar {
    display: none;
}

.filter-nav ul {
    overflow: auto;
}

.filter-nav ul li {
    padding: 5px 10px;
    border: 1px solid #c5c5c5;
    border-radius: 20px;
    cursor: pointer;
    background-color: white;
    color: var(--dark-red);
    transition: 0.3s;
    font-size: 13px;
    flex-shrink: 0;
}

.filter-nav ul li:hover {
    background-color: var(--dark-red);
    color: white;
}

.float-filter-box {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.418);
    transition: 0.3s;
    z-index: 210030;
}

.float-filter-box.show {
    left: 0;
}

.float-filter-box .filter-box {
    border-radius: 0;
    box-shadow: none;
}

.float-filter-box .filter-box .close-float-filter {
    cursor: pointer;
}

.overview-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px #ddd; */
    box-shadow: 0 0 7px #00000015;
    font-size: 19px;
    margin-inline: 0.5rem !important;
}

.overview-box .text-box {
    /*max-height: 110px;*/
    overflow: hidden;
    transition: 0.3s;
}

.overview-box .text-box * {
    font-family: "Al-Jazeera-Regular", "Montserrat" !important;
}

@media (max-width: 567px) {
    .overview-box .text-box {
        max-height: 350px;
    }
}

.overview-box .overview-actions {
}

.overview-box .overview-actions .read-more {
    box-shadow: 0px 3px 15px #8c041c85;
}

.overview-box .overview-actions .read-less {
    display: none !important;
    box-shadow: 0px 3px 10px #8c041c85;
    background: #bca1522e !important;
    color: var(--dark-red) !important;
}

.tags-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px #ddd; */
    box-shadow: 0 0 7px #00000015;
    font-size: 15px;
}

.tags-box ul li a {
    display: block;
    font-size: 15px;
    padding: 5px 15px 10px;
    color: #555;
    border: 1px solid #555;
    border-radius: 25px;
    transition: all 0.3s;
}

.tags-box ul li a:hover {
    box-shadow: 0 10px 10px -5px;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px #ddd; */
    box-shadow: 0 0 7px #00000015;
    position: relative;
    height: 100%;
}

.blog-card .read-more {
    height: 24px;
}
.blog-card .read-more a {
    position: absolute;
    bottom: 10px;
    left: 10px;
}
body.ar .blog-card .read-more a {
    left: auto;
    right: 10px;
}
.blog-card .float-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #8c041c85;
    padding: 3px 7px;
    color: white;
    border-radius: 7px;
    font-size: 13px;
    z-index: 10;
}

.blog-card .blog-img {
    height: 175px;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-card .blog-title.gold-text a {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    height: 55px;
    line-height: 1.5;
}

.blog-card .blog-description p {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    max-height: 60px;
    margin-bottom: 10px;
}

@media (max-width: 567px) and (min-width: 768px) and (max-width: 991px) {
    .blogs.py-5 .col-md .row > div {
        width: 100%;
    }
}

.news-breadcrumb {
    background-color: #e9ecef;
    border-radius: 7px;
    margin-bottom: 20px;
}

.news-breadcrumb .breadcrumb-item:not(.active) a {
    color: var(--dark-red);
}
.news-breadcrumb .breadcrumb-item.active {
    color: #555 !important;
}

.news-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #ccc;
}

.blog-box {
    background: white;
    padding: 30px 15px 15px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px #ddd; */
    box-shadow: 0 0 7px #00000015;
}

.blog-share .social-icons a {
    background-color: #8c041c70;
    color: var(--dark-red);
    transition: 0.3s;
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    border-radius: 6px;
}

.blog-share .social-icons a:hover {
    background-color: var(--dark-red);
    color: white;
}

.FAQ .accordion-button {
    box-shadow: none;
    color: var(--dark-red);
    font-family: "Al-Jazeera-Bold", Arial, Helvetica;
    font-weight: 600;
    padding: 20px 30px;
    transition: 0.3s;
}
.FAQ .accordion-button:hover {
    padding-inline-start: 60px;
    background-color: #bca1525c;
}

.FAQ .accordion-item {
    overflow: hidden;
}

.FAQ .accordion-item:first-of-type {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.FAQ .accordion-item:last-of-type {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.FAQ .accordion-button:not(.collapsed) {
    background-color: var(--dark-red);
    color: white;
}

.FAQ .accordion-button::after {
    content: "\f107";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    background: none;
}

.FAQ .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg) translateX(-10px);
}

.FAQ .accordion-button.collapsed span {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 14px;
    border-radius: 100px;
    text-align: center;
    background: #b3b3b3;
    color: #fff;
    font-size: 12px;
    margin-left: 20px;
    padding: 3px 0 0;
    transition: 0.3s;
}

.FAQ .accordion-button:not(.collapsed) span {
    background-color: white;
    color: var(--dark-red);
    font-size: 12px;
    margin-left: 20px;
    padding: 3px 0 0;
    transition: 0.3s;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 14px;
    border-radius: 100px;
    text-align: center;
}

@media (max-width: 815px) {
    .apartments .container > .row > div,
    .blogs .container > .row > div {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .faq-page .container {
        max-width: 100%;
    }
}

.FAQ .navigation {
    background: white;
    border-radius: 7px;
    /* box-shadow: 0 0 10px #ddd; */
    box-shadow: 0 0 7px #00000015;
    padding: 5px 10px;
    font-size: 14px;
}
.navigation .page-item {
    width: 35px;
    text-align: center;
}

.videos-page .row > div:first-child {
    max-width: 500px;
}

.videos-list .video-img {
    height: 125px;
    width: 230px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.videos-list .video-img img {
    height: 100%;
    width: 100%;
}
.videos-list .video-info .video-title h6 {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}
.videos-list .video-info .views,
.videos-list .video-info .date {
    font-size: 12px;
}

@media (max-width: 1360px) {
    .videos-page .row > div:first-child {
        max-width: 400px;
    }
    .videos-list .video-img {
        width: 175px;
        height: 111px;
    }
}
@media (max-width: 1200px) {
    .videos-page .row > div:first-child {
        max-width: 320px;
    }
}
@media (max-width: 815px) {
    .videos-page .row > div {
        width: 100%;
        flex-basis: auto;
    }
    .videos-page .row > div:first-child {
        order: 2;
        max-width: none;
    }
    .videos-page .row > div:last-child {
        padding: 0;
    }
    .videos-list .video-img {
        width: 50%;
        height: 170px;
        object-fit: cover;
    }
}

.video-categorys-list ul::-webkit-scrollbar {
    display: none;
}
.video-categorys-list {
    margin-inline: 20px;
    position: relative;
}
.video-categorys-list button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-red);
}
.video-categorys-list button#rigth {
    right: -10px;
}
.video-categorys-list button#left {
    left: -10px;
}

.video-categorys-list ul {
    padding: 5px 0;
    cursor: grab;
    overflow: auto;
}
.video-categorys-list ul li a {
    background: #ddd;
    color: var(--dark-red);
    border-radius: 100px;
    padding: 5px 10px;
    font-size: 13px;
    transition: 0.3s;
    border: 1px solid #ccc;
    width: max-content;
    display: block;
    transition: 0.3s;
}
.video-categorys-list ul li a:is(:hover, .active) {
    background-color: var(--dark-red);
    color: white;
}
@media (max-width: 500px) {
.videos-list .video-info .video-title h6 {
    -webkit-line-clamp: 2;
    }
    .videos-list .video-img {
        width: 35%;
        height: 20%;
    }
    .videos-list li a {
        /* flex-direction: column; */
    }
}

.video-box .video {
    border-radius: 15px;
    overflow: hidden;
    height: calc(50vw - 100px);
}

@media (max-width: 815px) {
    .video-box .video {
        height: calc(50vw + 100px);
        min-height: 350px;
        border-radius: 0;
    }
}

@media (min-width: 1024px) {
    .video-box .video {
        height: 483px;
    }
}
@media (min-width: 1100px) {
    .video-box .video {
        height: 540px;
    }
}
@media (min-width: 1200px) {
    .video-box .video {
        height: 540px;
    }
}
@media (min-width: 1440px) {
    .video-box .video {
        height: 540px;
    }
}
@media (min-width: 1600px) {
    .video-box .video {
        height: 540px;
    }
}

.about {
    margin-bottom: 3rem;
}

.about .main h1 {
    text-align: center;
    margin: 50px 0px;
    font-size: 30px;
}

.images_content {
    width: 100%;
    max-height: 680px;
    position: relative;
    padding-top: 110px;
    overflow: hidden;
}
@media (min-width: 1199px) {
    .images_content .container {
        max-width: 1140px;
    }
}
.images_content .about_bg {
    width: 100%;
    height: 450px;
    position: absolute;
    top: 110px;
    left: 0px;
}

@media (max-width: 1199px) {
    .images_content .about_bg {
        height: 340px !important;
    }
}

@media (max-width: 991px) {
    .images_content .about_bg {
        height: 230px !important;
    }
}

@media (max-width: 767px) {
    .images_content .about_bg {
        height: 160px !important;
    }
}
@media (max-width: 467px) {
    .images_content .about_bg {
        top: 50px;
    }
}

.images_content .container {
    height: 100%;
    position: relative;
}

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

.images_content .image_parts {
    width: 100%;
    height: 100%;
    position: relative;
}

.images_content .image_parts .part {
    float: right;
    width: 25%;
    padding: 3px;
    position: relative;
}

.images_content .image_parts .part:nth-child(1),
.images_content .image_parts .part:nth-child(3) {
    top: -630px;
    opacity: 0;
}

.images_content .image_parts .part.show:nth-child(1),
.images_content .image_parts .part.show:nth-child(3) {
    top: -30px;
    opacity: 1;
    transition: all 1s;
}

@media (max-width: 1199px) {
    .images_content .image_parts .part.show:nth-child(1),
    .images_content .image_parts .part.show:nth-child(3) {
        top: -40px !important;
    }
}

@media (max-width: 991px) {
    .images_content .image_parts .part.show:nth-child(1),
    .images_content .image_parts .part.show:nth-child(3) {
        top: -52px !important;
    }
}

@media (max-width: 500px) {
    .images_content .image_parts .part.show:nth-child(1),
    .images_content .image_parts .part.show:nth-child(3) {
        top: -69px !important;
    }
}

.images_content .image_parts .part:nth-child(2),
.images_content .image_parts .part:nth-child(4) {
    top: 400px;
    opacity: 0;
}

.images_content .image_parts .part.show:nth-child(2),
.images_content .image_parts .part.show:nth-child(4) {
    top: -86px;
    opacity: 1;
    transition: all 1s;
}
.images_content .image_parts .part img {
    float: right;
    width: 100%;
    -webkit-box-shadow: 5px 5px 16px -4px rgba(0, 0, 0, 0.49);
    box-shadow: 5px 5px 16px -4px rgba(0, 0, 0, 0.49);
    border-radius: 16px;
}

@media (max-width: 991px) {
    .about > .container {
        max-width: 100%;
    }
}

.about .about-text {
    background-color: #fff;
    box-shadow: 0 3px 6px rgb(171 171 171/0.5);
    border-radius: 15px;
    padding: 15px;
    font-size: 18px;
}

.about .about-video {
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 3px 6px rgb(171 171 171/0.5);
    margin-block: 20px;
}
.about .about-video h2 {
    font-size: 30px;
    text-align: center;
}
.about .about-video .video-box {
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}
@media (max-width: 767px) {
    .about .about-video .video-box {
        height: 250px;
    }
}

.services img {
    width: 100%;
}
.services {
    position: relative;
}
.services .service-flag {
    width: 240px;
    position: absolute;
    top: 20px;
    left: calc(50% - 14px);
    transform: scaleX(-1);
    z-index: 123;
}
.service-flag span {
    color: white;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%) scaleX(-1);
    font-size: 20px;
}
body.ar .service-flag span {
    font-size: 28px;
}
.services .line {
    width: 10px;
    height: 100%;
    background: white;
    box-shadow: 0 0 10px #ddd;
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 50%;
    z-index: 20;
    transform: translateX(-50%);
}

.services-list {
    padding-top: 130px;
}

.services-list .services-box {
    width: 42%;
    padding: 15px 30px;
    background-color: #fff;
    text-align: center;
    border-radius: 25px;
    border: 0;
    box-shadow: 0 0 10px #eee;
    position: relative;
    z-index: 1234;
}

@media (max-width: 815px) {
    .services-list .services-box {
        margin-inline: auto 0px;
    }
}
.services-list .services-box::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
    border: 20px solid transparent;
    border-right-color: white;
}
.services-list .services-box:nth-child(odd)::after {
    right: -40px;
    border-right-color: transparent;
    border-left-color: white;
    left: auto;
}
body:not(.ar) .services-list .services-box:nth-child(odd)::after {
    left: -40px;
    right: auto;
    border-left-color: transparent;
    border-right-color: white;
}

body:not(.ar) .services-list .services-box::after {
    right: -40px;
    border-right-color: transparent;
    border-left-color: white;
    left: auto;
}

.services-list .services-box:nth-child(odd) {
    margin-inline-start: auto;
}
.services-list .services-box .dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23%;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background-color: red;
    z-index: 1234;
}
.services-list .services-box .dot::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
}

.services-list .services-box:nth-child(odd) .dot {
    right: -23%;
}
body:not(.ar) .services-list .services-box .dot {
    left: auto;
    right: -23%;
}
body:not(.ar) .services-list .services-box:nth-child(odd) .dot {
    right: auto;
    left: -23%;
}

@media (max-width: 815px) {
    body:not(.ar) .services-list .services-box:nth-child(odd) .dot {
        left: -13%;
    }
}

.services-list .services-box .service-img {
    width: 165px;
    margin-top: -20px;
    margin-inline: auto;
    margin-bottom: 20px;
}
@media (max-width: 1199px) and (min-width: 815px) {
    .services-list .services-box .service-img {
        width: 100px;
    }
}
.services-list .services-box .service-title h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 815px) {
    .services .line {
        left: 0;
    }
    .services .service-flag {
        left: -14px;
    }
    .services .services-box {
        width: 90%;
        margin-bottom: 25px;
    }
    body.ar .services .services-box {
        margin-inline-end: auto;
        margin-inline-start: 0 !important;
    }
    .services-list .services-box:nth-child(odd)::after {
        right: auto;
        left: -40px;
        border-right-color: white;
        border-left-color: transparent;
    }
    .services-list .services-box .dot {
        left: -13%;
    }
    .services-list .services-box:nth-child(odd) .dot {
        right: unset;
    }
}

@media (max-width: 567px) {
    .services-list {
        padding-inline-end: 20px;
    }
    .services-list .services-box .service-img {
        width: 100px;
    }
    .services-list .services-box .dot {
        left: calc(-14% - 20px);
    }
}

.services-list .services-box.serv-1 h6 {
    color: #f8a71d;
}
.services-list .services-box.serv-1 .dot {
    background-image: linear-gradient(to right, #f7a21e 0, #ffde17 100%);
}
.services-list .services-box.serv-2 h6 {
    color: #45993e;
}
.services-list .services-box.serv-2 .dot {
    background-image: linear-gradient(to right, #3c9140 0, #97e329 100%);
}
.services-list .services-box.serv-3 h6 {
    color: #038989;
}
.services-list .services-box.serv-3 .dot {
    background-image: linear-gradient(to right, #00809b 0, #02c2da 100%);
}
.services-list .services-box.serv-4 h6 {
    color: #008ca7;
}
.services-list .services-box.serv-4 .dot {
    background-image: linear-gradient(to right, #037dfd 0, #00d8ff 100%);
}
.services-list .services-box.serv-5 h6 {
    color: #009189;
}
.services-list .services-box.serv-5 .dot {
    background-image: linear-gradient(to right, #007189 0, #00a389 100%);
}
.services.team .services-box {
    padding: 0;
}
@media (mai-width: 816px) {
    .services.team .services-box {
        max-width: 300px;
    }
}

@media (min-width: 1400px) {
    .services.team {
        padding-inline: 150px;
    }
}

.services.team .services-box .service-img {
    width: 100%;
    margin-top: 0;
    height: 125px;
    border-radius: 25px 25px 0 0;
    overflow: hidden;
    position: relative;
}
.services.team .services-box.serv-2 .service-img::after {
    background-color: rgb(85, 167, 58, 0.3);
}
.services.team .services-box.serv-3 .service-img::after {
    background-color: rgb(1, 141, 138, 0.3);
}
.services.team .services-box.serv-4 .service-img::after {
    background-color: rgb(16, 135, 161, 0.3);
}
.services.team .services-box.serv-5 .service-img::after {
    background-color: rgb(0, 198, 254, 0.3);
}
.services.team .services-box .service-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(254, 215, 24, 0.5);
    background-blend-mode: multiply;
    mix-blend-mode: color;
}
.services.team .services-box .service-img img {
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.services.team .services-box .service-text {
    padding: 20px 15px;
    padding-top: 0;
}

.services.team .services-box .team-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid;
    margin-inline: auto;
    margin-top: -65px;
    position: relative;
    z-index: 10;
    margin-bottom: 10px;
    box-shadow: 0px 5px 15px #ccc;
}

.services.team .services-box .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services.team .services-box .team-name h4 {
    font-size: 17px;
    color: #8c8c8c;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
}
.garanting {
    margin-block: 75px;
}
.garanting h2 {
    text-align: center;
    font-size: 30px;
}
.clouds {
    position: relative;
}

.clouds div {
    position: absolute;
    top: 0;
    width: 50%;
    animation: cloud-1 20s ease-in infinite alternate;
}
.clouds div:nth-child(2) {
    animation: cloud-2 18s ease-in infinite alternate;
    z-index: -1;
}
.clouds div:nth-child(3) {
    animation: cloud-3 14s ease-in infinite alternate;
}

@keyframes cloud-1 {
    0% {
        left: 10%;
    }
    100% {
        left: 50%;
    }
}
@keyframes cloud-2 {
    0% {
        left: 20%;
    }
    100% {
        left: 60%;
    }
}
@keyframes cloud-3 {
    0% {
        left: 60%;
    }
    100% {
        left: 30%;
    }
}

.garanting-text {
    min-height: 300px;
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 6px rgb(171 171 171/0.5);
    border-radius: 25px;
    padding: 120px 15px 15px;
    margin-top: -145px;
    z-index: -1;
}

@media (max-width: 567px) {
    .garanting-text {
        margin-top: -125px;
    }
}
.testimonials h2 {
    text-align: center;
    font-size: 30px;
}
.testimonials .testimonials-text {
    background-color: #fff;
    box-shadow: 0 3px 6px rgb(171 171 171/0.5);
    border-radius: 15px;
    padding: 15px;
    font-size: 18px;
    margin-bottom: 20px;
}
.locations-list .location-box {
    background-color: white;
    direction: ltr;
    text-align: left;
    border-radius: 20px;
}

.locations-list .location-box .contact-list > div a:hover {
    color: var(--dark-red);
}
.locations-list .location-box .contact-list > div {
    justify-content: end;
    padding-inline: 15px;
    padding-bottom: 20px;
}
.locations-list .location-box svg {
    flex-shrink: 0;
    width: 17px;
}
.locations-list .location-box svg path {
    fill: var(--dark-red);
}

.come-to-us {
    margin-top: 25px;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
}
.come-to-us h2 {
    text-align: center;
    font-size: 30px;
    color: var(--dark-red);
}

.come-to-us video {
    width: 100%;
    min-height: 350px;
    border-radius: 20px;
}
.come-to-us .go-map {
    background: var(--dark-red);
    color: white;
    padding: 10px 40px;
    border-radius: 100px;
    width: fit-content;
    margin-inline: auto;
}
.come-to-us .social-icon-list {
    color: var(--dark-red);
    font-size: 19px;
}
@media (max-width: 815px) {
    #homeNav {
        display: none;
    }
}

#map .boxmarker {
    color: #fff;
    background-color: var(--dark-red);
}
.slidebot .action-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.slidebot .action-box a {
    border: 1px solid white;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    display: -ms-grid;
    display: grid;
    place-content: center;
    color: white;
    cursor: pointer;
}
.share button {
    border: 1px solid white;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: -ms-grid;
    display: grid;
    place-content: center;
    color: var(--dark-red);
    cursor: pointer;
}
.share button::after {
    display: none;
}
.share button + ul {
    min-width: auto;
    border: none;
    padding: 0;
    background: white !important;
    padding: 6px;
    border-radius: 20px;
}
.share button + ul.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
}
.share a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.share a.facebook {
    color: #1877f2 !important;
}
.share a.whatsapp {
    color: #25d366 !important;
}
.share a.twitter {
    color: #1da1f2 !important;
}
.share a.mail {
    color: #ffa930 !important;
}
/*.share button + ul a:is(:active, :hover) {*/
/*    background-color: var(--dark-red) !important;*/
/*    color: white !important;*/
/*}*/

#listcarousel .item {
    width: 100%;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
}

/* @media (min-width: 992px) {
    #listcarousel .item {
        height: 630px;
    }
}
@media (min-width: 1200px) {
    #listcarousel .item {
        height: 550px;
    }
} */

.boxsliderdetail .slidetop img {
    height: 100%;
}
.boxsliderdetail .slidetop {
    height: initial;
}
@media (max-width: 500px) {
    #listcarousel .item {
        height: 320px;
    }
}

/* @media (max-width: 815px) {
    .boxsliderdetail .slidetop {
        margin-top: 65px;
    }
} */
.mfp-wrap {
    z-index: 1000001 !important;
}
.mfp-bg {
    z-index: 100000 !important;
}
/************ New Styles  *******/

.nationality .mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("../images/img/natioanlity-background.jpg") 0% 0% / cover
        repeat;
    z-index: -1;
}

body.nationality-page header .mask {
    /* display: none; */
}
.nationality-page .page-bg {
    background: url("../img/page-bg.jpg") 50% 50% / contain repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.nationality {
    /* position: relative;
    z-index: 10; */
}

.nationality h1 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
}

.dark-text {
    color: var(--dark);
}

.decisions {
    padding-top: 40px;
    margin-bottom: 15px;
}
.decisions .title {
    text-align: center;
    margin-bottom: 35px;
    color: var(--dark);
}
.decisions .card-list {
    overflow-x: auto !important;

    text-align: center !important;
    /* height: 370px; */
}
.decisions .card-list::-webkit-scrollbar {
    display: none;
}
.decisions .card-list:hover::-webkit-scrollbar {
    display: block;
}
.decisions .card-list::-webkit-scrollbar-track {
    display: none;
}

.decisions .line {
    width: 100%;
    height: 13px;
    border-radius: 20px;
    background-color: white;
    position: relative;
    top: 5px;
}

.decisions .decision-card {
    background: white;
    border-radius: 30px;
    padding: 15px 10px;
    height: 250px;
    flex-shrink: 0;
    /* max-width: 250px; */
    position: relative;
    /* margin-top: 40px; */
    width: 325px;
}

.decisions .decision-card .date {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--dark);
    font-weight: 600;
}

.decisions .decision-card .flag {
    width: 30px;
}

.decisions .decision-card::after {
    content: '';
    position: absolute;
    top: -63px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-color: rgb(162, 143, 143);
    border-radius: 50%;
    z-index: 30;
    border: 5px solid white;
    background: var(--dark-red) !important;
    box-shadow: 0 0 10px #00000015;
    display: none;
}

.nationality .container > .row > .col:last-child {
    max-width: calc(100% - 350px);
}

.decisions .decision-card .card-order::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140%;
    left: -20%;
    height: 21px;
    background: url("../img/shadow-title.png") 50% 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    z-index: 99;
    mix-blend-mode: multiply;
    opacity: 0.8;
}
.decisions .decision-card .card-order {
    position: relative;
    width: 45%;
    height: 71px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 0 0 71px 71px;
    font-size: 39px;
    color: #fff;
    position: relative;
    padding-top: 4px;
    margin-bottom: 25px;
}

.decisions .decision-card .action {
    color: white;
    padding: 7px 20px;
    width: fit-content;
    margin-inline: auto;
    border-radius: 20px;
}

.decisions .decision-card .desc {
    height: 130px;
    padding-bottom: 10px;
    overflow: hidden;
}
.decisions .decision-card .desc p {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    max-height: 120px;
    line-height: 23px;
    font-size: 17px;
}

.decisions .decision-card:nth-child(1n)::after,
.decisions .decision-card:nth-child(1n) .card-order,
.decisions .decision-card:nth-child(1n) .action {
    background: transparent linear-gradient(180deg, #05595a 0%, #069199 100%) 0%
        0% no-repeat padding-box;
}
.decisions .decision-card:nth-child(2n)::after,
.decisions .decision-card:nth-child(2n) .card-order,
.decisions .decision-card:nth-child(2n) .action {
    background: transparent linear-gradient(180deg, #196491 0%, #56c4cd 100%) 0%
        0% no-repeat padding-box;
}
.decisions .decision-card:nth-child(3n)::after,
.decisions .decision-card:nth-child(3n) .card-order,
.decisions .decision-card:nth-child(3n) .action {
    background: transparent linear-gradient(180deg, #568741 0%, #b7d07a 100%) 0%
        0% no-repeat padding-box;
}

.decisions .decision-card:last-child::after,
.decisions .decision-card:last-child .card-order,
.decisions .decision-card:last-child .action {
    background: transparent linear-gradient(to bottom, #dc6300 0, #fcd600 100%);
}

.nationality .steps .steps-img {
    text-align: center;
}
.nationality .steps .nationality-info {
    background-color: white;
    border-radius: 25px;
    padding: 15px;
    margin-top: 165px;
    max-width: 500px;
    margin-inline: auto;
}
.nationality .steps .info-img {
    text-align: center;
    margin-top: -121px;
    width: 270px;
    margin-inline: auto;
}
.nationality .steps .info-img img {
    width: 100%;
}
.nationality .steps .feature-list li {
    padding-bottom: 7px;
    padding-inline-start: 20px;
    position: relative;
}
.nationality .steps .feature-list li::after {
    content: "\f00c";
    font-family: var(--fa-style-family-classic);
    font-weight: 900;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    color: var(--dark-red);
    font-size: 13px;
}
.ar .nationality .steps .feature-list li::after {
    right: 0;
    left: auto;
}

.nationality .steps .prominent-countries {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    margin-inline: 10px;
    text-align: center;
}
.nationality .info-text-box .text-box {
    /*max-height: 150px;*/
    overflow: hidden;
    transition: 0.5s;
}
.nationality .info-text-box .read-more {
    padding: 7px 30px;
    background: linear-gradient(to bottom, #977d34, var(--dark-red));
    border-radius: 100px;
    color: white;
}

.nationality .faq {
    margin-top: 75px;
}
.nationality .faq .head-img {
    margin-top: -63px;
}
.nationality .nationality-info {
    margin-inline: auto;
    max-width: 350px;
    box-shadow: 0 0 10px #cccc;
    border-radius: 20px;
}
.card-item .icons .dropup a {
    opacity: 0.75;
}

.card-item .icons .dropup a:hover {
    opacity: 1;
}

nationality .steps .prominent-countries li {
    font-size: 14px;
}
.nationality .steps .prominent-countries li img {
    width: 50px;
}

.apartment-info-box {
    padding: 15px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 3px 6px 0 rgb(171 171 171 / 50%);
}

.apartment-info-box .video-box img {
    width: 100%;
    object-fit: contain;
}

.apartment-info-box .property-description-wrap *,
.apartment-info-box p,
.apartment-info-box p *,
.apartment-info-box .details-box *,
.apartment-info-box span,
.apartment-info-box span *,
.blogs .blog-box .blog-text *:not(i) {
    font-family: "Al-Jazeera-regular", Montserrat !important;
}

.blogs .blog-box .blog-text ul,
.apartment-info-box .info-box .details-box ul {
    padding-inline-start: 20px;
}
.blogs .blog-box .blog-text li,
.apartment-info-box .info-box .details-box li {
    list-style: inherit;
}

.blogs .blog-text {
    /*max-height: 85px;*/
    overflow: hidden;
    transition: 0.4s;
}

/*@media (max-width: 767px) {*/
/*    .blogs .blog-text {*/
/*        max-height: 235px;*/
/*    }*/
/*}*/

.blogs .blog-share {
    margin-top: 15px;
}

.table {
    margin-bottom: 0;
}
.table .table-row {
    display: flex;
}
.table .table-row .table-box {
    text-align: center;
    background-color: #f4f2f2;
    border-radius: 5px;
    margin: 3px;
    padding: 0;
    border: none;
    height: 45px;
    display: grid;
    place-content: center;
    flex: 1 0;
}

.table .table_head .table-box {
    color: white;
    background-color: var(--dark);
}

.apartment-info-box.scheme {
    background-color: var(--dark-red);
}
.apartment-info-box.scheme .card-list::-webkit-scrollbar-track {
    background-color: #e2e6e9;
}
.apartment-info-box.scheme .card-list::-webkit-scrollbar-thumb {
    background-color: #979a9c;
}
.apartment-info-box.scheme .card-list .scheme-card {
    width: 270px;
    height: 270px;
    flex-shrink: 0;
}
.apartment-info-box.scheme .card-list .scheme-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.apartment_features li {
    padding-inline-start: 22px;
    position: relative;
    width: calc(25% - 22px);
}
@media (max-width: 767px) {
    .apartment_features li {
        width: calc(50% - 22px);
    }
}
@media (max-width: 576px) {
    .apartment_features li {
        width: 100%;
    }
}
.apartment_features li::after {
    content: "\f00c";
    font-family: var(--fa-style-family-classic);
    font-weight: 900;
    position: absolute;
    top: 2px;
    color: var(--dark-red);
    left: 0;
}
.ar .apartment_features li::after {
    left: auto;
    right: 0;
}

.feature_list ul li {
    height: 135px;
}

.features li {
    height: auto !important;
    padding: 10px;
}
.features .row {
    row-gap: 0 !important;
}
.features .row > div {
    border-bottom: 1px solid #dedee2;
}
.features .row > div:nth-child(odd){
    border-inline-end: 1px solid #eee;
}
.features .row > div .title {
    text-align: start;
    width: 220px;
}
.features .row > div .title h6{
    color: var(--dark-red);
}
.features .row > div .desc {
    text-align: start;
    font-weight: bold;
}


.feature_img {
    height: 50px;
}
li.stat-float.active {
    background-color: var(--dark-red);
    color: white;
}
.boxsliderdetail .slidebot {
    background: none;
    padding-inline: 0px;
}
.boxsliderdetail .slidebot .row {
    background: none !important;
}
.boxsliderdetail .slidebot #listcarouselthumb {
    height: 115px;
    padding: 0;
}

.boxsliderdetail .slidebot img {
    border: none;
    border-radius: 5px;
    height: 83px;
    transition: 0.3s;
}

@media (max-width: 576px) {
    /* .boxsliderdetail .slidebot img {
        height: 123px;
    } */
}
/*
.owl-carousel.owl-drag .owl-item {
    padding-top: 10px;
} */
.boxsliderdetail .slidebot .item {
    margin: 0;
    width: 160px;
}

@media (min-width: 768px) {
    .owl-carousel .owl-stage-outer {
        /* padding-top: 0.5rem; */
    }
    .boxsliderdetail .slidebot .owl-item.center img {
        height: 110px;
        /* margin-top: -0.5rem; */
    }
}

#listcarousel.owl-carousel .owl-nav button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 1.5rem !important;
    background: #37404d !important;
    color: #fff !important;
}

@media (max-width: 576px) {
    #listcarousel.owl-carousel .owl-nav button {
        /* background-color: transparent;
        box */
        display: none !important;
    }
}
#listcarousel.owl-carousel .owl-nav button.owl-next,
#listcarousel.owl-carousel .owl-nav button.owl-prev {
    padding: 1rem !important;
}
#listcarousel.owl-carousel .owl-nav button.owl-prev {
    left: 1px;
    border-radius: 0 10px 10px 0;
}
#listcarousel.owl-carousel .owl-nav button.owl-next {
    right: 0;
    border-radius: 10px 0 0 10px;
}
#listcarouselthumb .owl-nav button {
    top: 27px;
    font-size: 25px;
}
#listcarouselthumb .owl-nav .owl-next {
    right: 30px;
}
#listcarouselthumb .owl-nav .owl-prev {
    left: 30px;
}

/* @media (max-width: 450px) {
    .boxsliderdetail .slidebot img {
        height: 120px;
    }
} */

#shareModale {
    z-index: 12348;
}

.modal {
    padding-top: calc(50vh - 70px);
}

#exampleModalLabel {
    color: var(--dark-red);
}

@media (min-width: 815px) {
    .blogs .container > .row > div:last-child {
        width: calc(100% - 350px);
    }
}

/* New Steps Style */

.step-border {
    background: #0672a3;
    padding: 20px;
    border-radius: 22px;
    position: relative;
}
.step-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 20px;
    width: 100%;
    height: 50%;
    background: white;
}
.step-border .shape {
    position: absolute;
    top: calc(50% - 20px);
    border: 10px solid white;
    border-top-color: #0672a3;
}
.step-border .shape.shape-left {
    left: 0;
    border-left-color: #0672a3;
}
.step-border .shape.shape-right {
    right: 0;
    border-right-color: #0672a3;
}
.step-border .step-box {
    background: white;
    padding: 60px 20px;
    border-radius: 20px;
    position: relative;
    box-sizing: border-box;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1803921569); */
    box-shadow: 0 0 7px #00000015;
    width: 320px;
    display: grid;
    place-content: center;
    text-align: center;
    z-index: 10;
}
.step-border .step-box .step-icon {
    width: 85px;
    height: 85px;
    background: #067bb0;
    border-radius: 50%;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}
.step-border .step-box .step-icon .icon {
    background: white;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    /* box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.1882352941); */
    box-shadow: 0 0 7px #00000015;
}
.step-border .step-box .step-icon .icon img {
    width: 45px;
}
.step-border .step-box .order {
    font-size: 22px;
    font-weight: lighter;
    color: #a2a2a2;
}
.step-border .step-box .title h3 {
    margin: 0 0;
    font-weight: bold;
    color: #067bb0;
}
.step-border .step-box .title p {
    margin: -10px 0 5px;
    font-size: 22px;
    color: #a2a2a2;
}
.step-border .step-box .step-desc p {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    height: 70px;
    line-height: 23px;
    font-size: 15px;
    margin-bottom: 0;
}
.step-border:nth-child(odd)::after {
    bottom: auto;
    top: 0;
    border-radius: 20px 20px 0 0;
}
.step-border:nth-child(odd) .shape {
    top: 50%;
    border-top-color: white;
    border-bottom-color: #0672a3;
}
.step-border:nth-child(odd) .step-icon {
    top: auto;
    bottom: -50px;
}
.step-border:nth-child(2) {
    background-color: #38b5ae;
}
.step-border:nth-child(2) .step-icon {
    background: #38b5ae;
}
.step-border:nth-child(2) .step-box .title h3 {
    color: #38b5ae;
}
.step-border:nth-child(2) .shape {
    border-top-color: #38b5ae;
}
.step-border:nth-child(2) .shape-left {
    border-left-color: #38b5ae;
}
.step-border:nth-child(2) .shape-right {
    border-right-color: #38b5ae;
}
.step-border:nth-child(3) {
    background-color: #78bc39;
}
.step-border:nth-child(3) .step-icon {
    background: #78bc39;
}
.step-border:nth-child(3) .step-box .title h3 {
    color: #78bc39;
}
.step-border:nth-child(3) .shape {
    border-bottom-color: #78bc39;
}
.step-border:nth-child(3) .shape-left {
    border-left-color: #78bc39;
}
.step-border:nth-child(3) .shape-right {
    border-right-color: #78bc39;
}
.step-border:nth-child(4) {
    background-color: #fea905;
}
.step-border:nth-child(4) .step-icon {
    background: #fea905;
}
.step-border:nth-child(6) {
    background-color: #38b4ae;
}
.step-border:nth-child(6) .step-icon {
    background: #38b4ae;
}
.step-border:nth-child(7) .step-icon {
    background: #78bb39;
}
.step-border .step-box .title h3 {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    height: 80px;
    line-height: 38px;
}
.step-border:nth-child(4) .step-box .title h3 {
    color: #fea905;
}

.step-border:nth-child(6) .step-box .title h3 {
    color: #38b4ae;
}
.step-border:nth-child(4) .shape {
    border-top-color: #fea905;
}
.step-border:nth-child(4) .shape-left {
    border-left-color: #fea905;
}
.step-border:nth-child(4) .shape-right {
    border-right-color: #fea905;
}
.step-border:nth-child(6) .shape-left {
    border-left-color: #38b4ae;
    border-top-color: #38b4ae;
}
.step-border:nth-child(6) .shape-right {
    border-right-color: #38b4ae;
    border-top-color: #38b4ae;
}

.siq_bR {
    /* bottom: 80px !important; */
    left: 5px !important;
    right: auto !important;
    z-index: 1500 !important;
}

.ar .siq_bR {
    right: 5px !important;
    left: auto !important;
}

@media (min-width: 576px) {
    .zsiq-newtheme.zls-sptwndw {
        left: 5px;
        right: auto;
    }
    .ar .zsiq-newtheme.zls-sptwndw {
        right: 5px;
        left: auto;
    }
}

.thanks-page {
    height: calc(100vh - 3rem);
    display: grid;
    place-content: center;
    text-align: center;
    position: relative;
}

.thanks-card {
    background: white;
    padding: 50px 0 0;
    box-shadow: 0 0 25px #dddd;
    border-radius: 100px 100px 0 0;
    width: 95%;
    max-width: 550px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.tanks-icon {
    width: 170px;
    margin-inline: auto;
    margin-bottom: 25px;
}
.tanks-icon img {
    width: 100%;
}
.thanks-text {
    margin-bottom: 35px;
    padding-inline: 40px;
}

.thanks-text h1 {
    font-size: 30px;
    margin-bottom: 30px;
    color: var(--dark-red);
}
.thanks-action a {
    width: 100%;
    border-radius: 0;
    padding: 10px !important;
}

.thanks-copyright {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    background: var(--dark-red);
    padding: 10px;
}

.leaflet-popup-content {
    font-family: "Al-Jazeera-Bold", "Montserrat";
}
.ar .leaflet-popup-content {
    text-align: start;
}

.leaflet-popup-content .status {
    background: #8c041ca1;
    color: white;
    padding: 3px 10px;
    border-radius: 7px;
    top: 5px;
    left: 5px;
    right: auto;
}

.ar .leaflet-popup-content .status {
    right: 5px;
    left: auto;
}

.leaflet-popup-close-button {
    color: black;
}
.ar .leaflet-popup-close-button {
    right: auto;
    left: 0;
}
@media (max-width: 767px) {
    .about [data-aos] {
        opacity: 1;
        transform: none;
        /* transition: 0.5s; */
    }
}

.nationality .video-box {
    height: 450px;
}

@media (max-width: 767px) {
    .nationality .video-box {
        height: 250px;
    }
}

.ratio {
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .main-homes {
        padding-top: 4rem !important;
    }
}
@media (max-width: 815px) {
    .main-homes {
        padding-top: 5rem !important;
    }
}

.videos-page .main-video {
    position: sticky;
    top: 56px;
    background: white;
    padding-block: 10px 5px;
}
.blog-box .blog-text .fa-solid {
    font-family: "Font Awesome 6 Free" !important;
}

.blogs .blog-text a * {
    color: red !important;
    /* text-decoration: underline; */
}

.videos-page .video-box {
    position: sticky;
    top: 110px;
}

.apartment-info-box .details-box a,
.apartment-info-box .details-box a * {
    color: red !important;
    text-decoration: underline;
}

.apartment-info-box .details-box ul {
    padding-inline-start: 20px;
}
.apartment-info-box .details-box ul li {
    list-style: disc;
}

@media (min-width: 1400px) {
    .blogs .blog-text .card-item .img-card {
        width: 310px !important;
    }
}
#landing {
    background: url("../images/img/header-mask.png") 0% 0% / 15% repeat;
}

#landing a {
    color: initial;
    text-decoration: none;
}
#landing .row {
    margin-inline: 0;
}
#landing .header,
#landing #footer {
    background-color: #8c041c;
    position: relative;
}
#landing .header {
    height: 95px;
}
#landing .main .img-item img {
    object-fit: cover;
    width: 100%;
}
@media (min-width: 992px) {
    #landing .main .img-item img,
    #landing .main .vid-item {
        height: 30vw;
    }
}
@media (max-width: 991px) {
    #landing .main .img-item img,
    #landing .main .vid-item {
        height: 500px;
    }
}
@media (max-width: 767px) {
    #landing .main .img-item img,
    #landing .main .vid-item {
        height: 350px;
    }
}

#landing .main .content {
    max-width: 530px;
}
@media (max-width: 991px) {
    #landing .main .content {
        text-align: center;
    }
}
#landing .main .content h1 {
    line-height: 1.4;
}
#landing .main .content h1 .dark {
    color: #8c041c;
}
#landing .contact-us {
    width: fit-content;
    margin-inline: auto;
}
#landing .contact-us a,
#landing .main .contact-whats a {
    color: white;
    text-decoration: none;
    display: block;
    transition: 0.3s;
    margin-inline: auto;
    max-width: fit-content;
}
#landing .contact-us a {
    background-color: #8c041c;
}
#landing .main .contact-whats a {
    background-color: #4ac959;
}
@media (min-width: 992px) {
    #landing .main .content .langs ul {
        position: absolute;
        top: 0;
        left: 10px;
        color: #909090;
    }
}
@media (max-width: 767px) {
    .slick-list.draggable {
        padding-inline: 15px !important;
    }
}
#landing .main .content .langs ul a {
    padding-inline: 10px;
    padding: 3px;
    border-radius: 6px;
    background-color: white;
    color: var(--dark-red);
    display: block;
    border: 1px solid var(--dark-red);
    transition: .3s;
}
#landing .main .content .langs ul a:hover {
    background: var(--dark-red);
    color: white;

}

#landing .landing-title {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 50px;
}
#landing .landing-title::after,
#landing .landing-title::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8c041c;
    height: 1px;
}
#landing .landing-title::before {
    width: 180px;
    bottom: -10px;
}
#landing .landing-title::after {
    width: 124px;
    bottom: -19px;
}
#landing .services-list .service {
    padding: 10px;
}
#landing .services-list .service .service-box {
    background-color: white;
    /*border: 1px solid #ccc;*/
    height: 325px;
    transition: 0.3s;
}
#landing .services-list .service .service-box .service-img {
    height: 210px;
    display: flex;
    align-items: center;
}
#landing .services-list .service .service-box .service-img img {
    margin-inline: auto;
}
#landing .services-list .service .service-box:hover {
    background-color: #8c041c;
    border: 1px solid #8c041c;
    color: white;
}
#landing #contact-banner {
    margin-bottom: 3rem;
    position: relative;
}
@media (min-width: 992px) {
    #landing #contact-banner {
        height: 650px;
        margin-bottom: 5rem;
    }
}
#landing #contact-banner .sec-mask {
    /* z-index: -1; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#landing #contact-banner .sec-mask img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 10;
}
#landing #contact-banner .contact-box-wrapper {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline-start: auto;
    max-width: 100%;
    position: relative;
    z-index: 10;
}
@media (max-width: 991px) {
    #landing #contact-banner .contact-box-wrapper {
        margin-inline: auto;
    }
}
@media (min-width: 992px) {
    #landing #contact-banner .contact-box-wrapper {
        transform: translateY(180px);
    }
}
#landing #contact-banner .contact-box-wrapper .contact-box {
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.0823529412); */
    box-shadow: 0 0 7px #00000015;
    width: 450px;
    max-width: 90%;
}
@media (min-width: 992px) {
    #landing #faq-sec .faqs {
        max-width: 570px;
    }
}
#landing #faq-sec .faqs .accordion-button::after {
    margin-inline-end: 0;
}
#landing #faq-sec .faqs .accordion-item {
    margin-bottom: 20px;
    border: none !important;
    border-radius: 10px !important;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.0823529412); */
    box-shadow: 0 0 7px #00000015;
}
#landing #faq-sec .faqs .accordion-button:not(.collapsed) {
    background-color: white;
    color: #8c041c;
    box-shadow: none;
    border: 1px solid #8c041c;
    border-bottom: none;
}
#landing #faq-sec .faqs .accordion-button:focus {
    box-shadow: none;
}
#landing #faq-sec .faqs .accordion-collapse.show {
    border: 1px solid #8c041c;
    border-top: none;
}
@media (min-width: 576px) {
    #landing #footer {
        border-radius: 100px 100px 0 0;
    }
}
#landing #footer a {
    color: white;
    text-decoration: none;
}
#landing #footer .phone a {
    border: 1px solid;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
#landing #footer .social-links-list a {
    width: 50px;
    height: 50px;
    border-radius: 7px;
    background-color: white;
    color: #8c041c;
    display: grid;
    place-content: center;
    transition: 0.3s;
}
#landing #footer .social-links-list a:hover {
    background-color: #8c041c;
    color: white;
}
#landing .video-card {
    margin-inline: auto;
}
#landing .slick-dotted .slick-dots {
    bottom: -35px;
}
#landing .slick-dotted .slick-dots button {
    width: 14px;
    height: 14px;
    background-color: #dee2e6;
    border-radius: 50%;
    border: 2px solid #eeeeee;
    position: relative;
    position: relative;
}
#landing .slick-dotted .slick-dots button::before {
    display: none;
}
#landing .slick-dotted .slick-dots .slick-active button {
    border-color: #8c041c !important;
    background-color: white;
}
#landing .slick-dotted .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: grid;
    place-content: center;
    z-index: 10;
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1450980392); */
    box-shadow: 0 0 7px #00000015;
}
#landing .slick-dotted .slick-arrow::before {
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--main);
    font-size: 22px;
}
#landing .slick-dotted .slick-arrow.slick-prev {
    left: -45px;
}
#landing .slick-dotted .slick-arrow.slick-prev::before {
    content: "\f104";
}
#landing .slick-dotted .slick-arrow.slick-next {
    right: -45px;
}
#landing .slick-dotted .slick-arrow.slick-next::before {
    content: "\f105";
}
#landing .slick-dotted.light .slick-dots button {
    border-color: black;
}
#landing .cards-carousel {
    max-width: 1100px;
    margin-inline: auto;
}
#landing .cards-carousel .item {
    padding: 20px;
}
#landing .video-description p {
    height: 85px;
    overflow: hidden;
}
#landing .cards-carousel .item {
    padding: 20px;
}
@media (max-width: 576px) {
    #landing .cards-carousel .item {
        padding: 10px;
    }
}
#landing .cards-carousel .item .card-item {
    width: 330px;
    max-width: 100%;
}
#landing .cards-carousel .item .card-item .img-card {
    max-width: 100%;
}
@media (max-width: 576px) {
    #landing .cards-carousel .item .card-item .img-card {
        height: 50%;
    }
    #landing .cards-carousel .item .card-item .img-card img {
        -o-object-fit: contain;
        object-fit: contain;
    }
    #landing .cards-carousel .item .card-item .img-card > div {
        margin-bottom: 0;
    }
}
#landing .cards-carousel .item .video-card .card-img {
    max-width: 100%;
}
@media (max-width: 576px) {
    #landing .cards-carousel .item .video-card .card-img {
        height: 50%;
    }
    #landing .cards-carousel .item .video-card .card-img img {
        -o-object-fit: contain;
        object-fit: contain;
    }
    #landing .cards-carousel .item .video-card .card-img > div {
        margin-bottom: 0;
    }
}
#landing .modal {
    padding: 0;
}
#landing .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

#landing .float-help {
    /* bottom: 40px; */
}


.fi {
    background-size: cover;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}



.js-cookie-consent {
    background: var(--dark-red) !important;
    width: 350px;
    margin-inline-start: auto;
    border-radius: 15px;
    margin-inline-end: 10px;
    margin-bottom: 10px;
    /* box-shadow: 0 0 10px #00000020; */
    box-shadow: 0 0 7px #00000015;
}
.cookie-consent .cookie-consent__message {
    height: auto !important;
    font-size: 14px;
    margin-bottom: 10px;
}

.cookie-consent .cookie-consent__agree {
    border-radius: 5px !important;
    font-size: 12px;
    background: white !important;
    color: var(--dark-red) !important;
    border: 1px solid white !important;
    transition: .3s;
}

.nationality .scroll-btns {
    display: none;
}

@media (min-width: 992px) {

.nationality  .container .row > div:last-child {
    max-width: calc(100% - 350px);
}
}
.play-v-icon  {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-red);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    font-size: 23px;
    box-shadow: 0 0 10px #00000015;
    cursor: pointer;
    transition: .3s;
}
.play-v-icon:hover {
    color: var(--dark-red);
    background-color: white;
}

.gm-style .gm-style-iw-c {
    width: 300px;
}
.gm-style-iw.gm-style-iw-c * {
    font-family: "Al-Jazeera-Light", "Montserrat";
}
.gm-style .gm-style-iw-c .blii {
    padding-top: 0px;
}
.gm-style .gm-style-iw-c .blii .status {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #8c041ca8;
    color: white;
    padding: 0 10px;
    border-radius: 8px;
    width: fit-content;
}

.infomarker h5 {
    height: auto;
}

.blog-box .card-item,
.blog-box .card-item .img-card{
    width: 330px;
    max-width: 100%;
}

@media (max-width: 400px) {
.blog-box .card-item .img-card{
    height: 190px;
}
}
.autoContents ul li {
    list-style: inside !important;
    margin-bottom: 5px;
}
.autoContents ul li:hover {
    text-decoration: underline;
}
