:root {
    --gray900: #282829;
    --white: #ffffff;
    --gray500: #5F6062;
    --gray50: #EFEFEF;
    --yellow500: #918360;
    --yellow: #FED812;
    --yellow900: #3D3728;
    --lightgray: #F7F7F7;
    --offwhite: #B5B6B7;

    --midspace: 60px;
}

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,600;1,700&display=swap'); */

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

body.rtl {
    direction: rtl;
}

.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--gray500);
}

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

.theam-btn-efct {
    border: 1px solid var(--gray900);
    color: var(--gray900);
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    padding: 8px 24px;
    border-radius: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    position: relative;
    z-index: 2;
    background: linear-gradient(#918360 0 0) var(--p, 0)/var(--p, 0) no-repeat;
    transition: .5s, background-position 0s;
}

.theam-btn-efct:hover {
    --p: 100%;
    color: var(--white);
}


.title h6 {
    font-size: 24px;
    font-weight: 400;
}

.title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 60px;
    font-style: italic;
    color: var(--gray900);
    font-weight: 600;
}

.title h4 {
    font-size: 36px;
    line-height: 54px;
    font-weight: 400;
}

/* Header CSS Start */

header {
    z-index: 999;
    position: relative;
}

header .bg-body-tertiary {
    background-color: rgba(248, 249, 250, 0.3) !important;
}

.header-button {
    border: none;
}

.header-button:focus {
    box-shadow: none;
}

.header-button .plus-icon {
    display: flex;
    align-items: center;
}

.btn_wrapper {
    gap: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-button .plus-icon:before {
    /* content: "MENU"; */
    font-size: 14px;
    margin-right: 10px;
    height: 42px;
    display: flex;
    align-items: center;
}

.header-button .plus-icon::after {
    content: "";
    background-image: url('../images/plus.png');
    width: 16px;
    height: 16px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease;
}

.header-button .plus-icon:hover::after {
    background-image: url('../images/minus.png');
    width: 16px;
    height: 16px;
    background-size: cover;
    background-repeat: no-repeat;
}

.offcanvas-header .minus-icon {
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
}

.offcanvas-header .minus-icon::before {
    /* content: "MENU"; */
    font-size: 14px;
    margin-right: 10px;
    height: 72px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.offcanvas-header .minus-icon::after {
    content: "";
    background-image: url('../images/white-minus.png');
    width: 16px;
    height: 16px;
    background-size: cover;
    background-repeat: no-repeat;
}

.offcanvas {
    /*background-color: var(--gray900);*/
    background-color: #282829ed;
    color: var(--white);
}

.header-menu {
    height: 75vh;
}

.header-menu ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
    text-align: end;
}

.header-menu ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    transition: all .3s ease;
}

.header-menu ul li a sup {
    font-size: 10px;
    margin-right: 5px;
    transition: all .3s ease;
}

.header-menu ul.main-menu-list li a:hover {
    font-weight: 900;
}

.header-menu ul.main-menu-list li a:hover sup {
    border: 1px solid #fff;
    border-radius: 100px;
    width: 15px;
    height: 15px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.header-menu ul li ul.dropdown {
    display: none;
    transition: all .5s ease;
}

.header-menu ul li ul.dropdown.show {
    top: 100px;
    left: auto;
    background: transparent;
    height: auto;
    display: inherit;
    border: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* width: 30%; */
    gap: 40px;
    /*transition: all .5s ease;*/
    margin-right: 30px;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.50);
    border-radius: 0px;
    animation: SlowtoShowMenu 3s;
}

@keyframes SlowtoShowMenu {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.header-menu ul li ul.dropdown div ul {
    display: block;
    height: auto;
}

.header-menu ul li ul.dropdown div ul li {
    margin-top: 10px;
}

.header-menu ul li ul.dropdown div h3 {
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
}

.header-menu ul li ul.dropdown div ul li a {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.header-menu ul li ul.dropdown.sub.show {
    grid-template-columns: repeat(1, 1fr);
}

.header-menu ul li ul.dropdown.sub.show div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
}

header .header-social {
    margin-top: 250px;
}

header .header-social .link {
    display: flex;
    justify-content: end;
}

header .header-social .link a {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    color: var(--white);
    text-decoration: none;
}

header .header-social .social {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 50px;
}

header .header-social .social a {
    text-decoration: none;
    color: var(--white);
}

.news {
    /* box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.4), 0 5px 10px rgba(0, 0, 0, 0.5); */
    width: 100%;
    height: 100%;
    /* margin: 20px auto; */
    overflow: hidden;
    border-radius: 4px;
    /* padding: 3px; */
    /* -webkit-user-select: none */
}

.news ul {
    float: left;
    padding-left: 20px;
    animation: ticker 20s cubic-bezier(0, 0, 0, 0) infinite;
    -webkit-user-select: none
}

.news ul li {
    line-height: 30px;
    list-style: none
}

.news ul li a {
    color: #fff;
    text-decoration: none;
    font: 14px Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none
}

@keyframes ticker {
    0% {
        margin-top: 0
    }

    50% {
        margin-top: -1000px
    }

    100% {
        margin-top: 0
    }
}

.vertical-txt {
    writing-mode: vertical-lr;
    /*opacity: 85%;*/
    opacity: 1;
    font-size: 60px;
    font-weight: 600;
}

/* Header CSS End */


/* Footer CSS Start */

footer {
    overflow: hidden;
}

footer .newsletter .newsltr-box {
    border-radius: 12px;
    margin-bottom: -100px;
    background-color: #fff;
    position: relative;
    margin-top: var(--midspace);
    padding: 5%;
}

footer .newsltr-box .cont {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

footer .newsltr-box .cont h3 {
    font-size: 30px;
    font-weight: 500;
    color: var(--gray900);
    margin-bottom: 12px;
}

footer .newsltr-box .cont p {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray500);
    margin-bottom: 0px
}

footer .newsltr-box .btn {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

footer .main-footer {
    background-color: var(--yellow900);
    padding-top: 200px;
    padding-bottom: var(--midspace);
    color: var(--white);
}

footer .main-footer .footer-about p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 24px;
    margin-bottom: 24px;
}

footer .main-footer .footer-about a {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
}

footer .main-footer h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

footer .main-footer .quick-box .quick-list ul {
    list-style: none;
    position: relative;
}

footer .main-footer .quick-box .quick-list ul li {
    margin-top: 16px;
    transition: all 0.5s ease;
}

footer .main-footer .quick-box .quick-list ul li::before {
    content: '';
    background-image: url('../images/arrow-right.png');
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    transition: all 0.5s ease;
}

footer .main-footer .quick-box .quick-list ul li a {
    text-decoration: none;
    color: var(--white);
}

footer .main-footer .quick-box .quick-list ul li:hover {
    margin-left: 10px;
}

footer .main-footer .quick-box .quick-list ul li:hover::before {
    margin-left: 10px;
    background-image: url('../images/arrow-right-yellow.png');
}

footer .main-footer .quick-box .quick-list ul li:hover a {
    color: var(--yellow500);
}

footer .main-footer .property-box .property-list ul {
    list-style: none;
    position: relative;
}

footer .main-footer .property-box .property-list ul li {
    margin-top: 16px;
    transition: all 0.5s ease;
}

footer .main-footer .property-box .property-list ul li::before {
    content: '';
    background-image: url('../images/arrow-right.png');
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    transition: all 0.5s ease;
}

footer .main-footer .property-box .property-list ul li a {
    text-decoration: none;
    color: var(--white);
}

footer .main-footer .property-box .property-list ul li:hover {
    margin-left: 10px;
}

footer .main-footer .property-box .property-list ul li:hover::before {
    margin-left: 10px;
    background-image: url('../images/arrow-right-yellow.png');
}

footer .main-footer .property-box .property-list ul li:hover a {
    color: var(--yellow500);
}

footer .main-footer .address-box h4 {
    margin-bottom: 8px;
}

footer .main-footer .address-box .email-form {
    margin-bottom: 24px;
}

footer .main-footer .address-box .email-form input {
    border: none;
    border-radius: 100px;
}

footer .main-footer .address-box .email-form button img {
    width: 24px;
    height: 24px;
}

footer .main-footer .address-box .email-form button {
    background-color: var(--yellow500);
    border: none;
    border-radius: 100px;
}

footer .main-footer .address-box ul {
    list-style: none;
    position: relative;
    margin-top: 24px
}

footer .main-footer .address-box .address-list ul li::before {
    content: '';
    background-image: url('../images/location.png');
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
}

footer .main-footer .address-box .phone-list ul li{
        direction: ltr;
}

footer .main-footer .address-box .phone-list ul li::before {
    content: '';
    background-image: url('../images/call-calling.png');
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
}

footer .main-footer .address-box .email-list ul li::before {
    content: '';
    background-image: url('../images/sms.png');
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
}


footer .main-footer .address-box .address-list ul li a {
    text-decoration: none;
    color: var(--white);
}

footer .main-footer .address-box .phone-list ul li a {
    text-decoration: none;
    color: var(--white);
}

footer .main-footer .address-box .email-list ul li a {
    text-decoration: none;
    color: var(--white);
}

footer .main-footer .copy-right {
    margin-top: var(--midspace);
    border-top: 1px solid;
    padding-top: 16px;
}

footer .main-footer .copy-right p {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

footer .main-footer .copy-right a {
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--gray900);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.5s ease;
}

#back-to-top:hover {
    background-color: #918360;
}

/* Footer CSS End */







/* hero-slider CSS Start */

.hero-main-sec {
    height: 100vh;
    /* height: calc(100% - 125px); */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0px;
    position: relative;
    animation: moverighttolefthome 4s;
    animation-delay: 4s;
    animation-fill-mode: forwards;
    visibility: hidden;
    transition: all .5s ease;
    /* overflow: hidden; */
}

@keyframes moverighttolefthome {
    from {
        left: 1200px;
    }

    to {
        left: 0px;
        visibility: visible;
    }
}

.bg-show-hide {
    background-image: url('../images/over-img.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: showtohideonfirst 3s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
    position: absolute;
    width: 98vw;
    height: 100vh;
    overflow: hidden;
}

@keyframes showtohideonfirst {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.hero-main-sec .containers {
    height: 100%;
    aspect-ratio: 1.5 / 1.5;
    display: flex;
    width: 98%;
}

.hero-main-sec .containers img {
    height: 100%;
    width: calc(100% / 5);
    min-width: 15%;
    object-fit: cover;
    overflow: hidden;
    /* border: 2px solid #141414; */
    transition: all 0.4s cubic-bezier(0.32, 0, 0.67, 0);
    cursor: pointer;
    margin: 6px;
}

.hero-main-sec .containers .active {
    width: 200%;
    min-width: 50%;
}

.hero-main-sec #hero-slider {
    overflow: hidden;
    overflow-x: scroll;
}

.hero-main-sec #hero-slider::-webkit-scrollbar {
    display: none;
}

/* hero-slider CSS End */









/* Home Page CSS Start */

.bg-building {
    /*background-image: url('../images/buildings-1.png');*/
    background-image: url('../images/image 60.png');
    padding-top: 150px;
    /* margin-top: -150px; */
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    animation: fixtomovetop 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    overflow: hidden;
}

@keyframes fixtomovetop {
    0% {
        margin-top: 0px;
    }

    100% {
        margin-top: -150px;
    }
}

.about-sec {
    margin-top: var(--midspace);
    padding-top: var(--midspace);
    padding-bottom: var(--midspace);
}

.about-sec .title {
    margin-bottom: 40px;
}

.about-sec .title h6 {
    font-size: 24px;
    font-weight: 400;
}

.about-sec .title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 60px;
    font-style: italic;
    color: var(--gray900);
    font-weight: 600;
}

.about-sec .title h4 {
    font-size: 36px;
    line-height: 54px;
    font-weight: 400;
}

.about-sec .over-img {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 225px;
}

.why-choose-sec {
    margin-top: var(--midspace);
    padding-top: var(--midspace);
    padding-bottom: var(--midspace);
}

.why-choose-sec .custom-slider {
    position: relative;
    width: 100%;
    padding-top: 80px;
}

.why-choose-sec .slider-track {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.why-choose-sec .slider-inner {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.why-choose-sec .slider-item {
    flex: 0 0 100%;
    max-width: 100%;
    /* padding: 20px; */
}

.why-choose-sec .slider-control {
    position: absolute;
    /* top: 50%; */
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    /* background-color: rgba(255, 255, 255, 0.7); */
    /* padding: 10px; */
    z-index: 2;
    border: 1px solid #918360;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(#918360 0 0) var(--p, 0)/var(--p, 0) no-repeat;*/
    background: transparent;
    transition: .5s, background-position 0s;
}

.why-choose-sec .slider-control:hover {
    /*--p: 100%;*/
    background: #918360;
    color: var(--white);
}

.why-choose-sec .prev {
    left: 3rem;
}

.why-choose-sec .next {
    left: 7rem;
}

.why-choose-sec #textSlider .slider-item h3 {
    font-size: 32px;
    color: var(--gray900);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: left;
}

.why-choose-sec .background-gray-clr {
    background-color: var(--gray50);
}

.why-choose-sec .behind-row {
    position: absolute;
    width: 100%;
    height: 100%;
}

.popular-property {
    margin-top: var(--midspace);
    padding-top: var(--midspace);
    padding-bottom: var(--midspace);
    position: relative;
}

.popular-property .pslider {
    position: relative;
}

.owl-carousel {
    display: block;
}

.popular-property .pslider .item {
    overflow: hidden;
}

.popular-property .pslider .property-card .card-1 {
    background-image: url('../images/slider-1.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider .property-card:hover .card-1 {
    transform: scale(1.1);
}

.popular-property .pslider .property-card .card-2 {
    background-image: url('../images/slider-2.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider .property-card:hover .card-2 {
    transform: scale(1.1);
}

.popular-property .pslider .property-card .card-3 {
    background-image: url('../images/slider-3.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider .property-card:hover .card-3 {
    transform: scale(1.1);
}

.popular-property .pslider .property-card .card-4 {
    background-image: url('../images/slider-4.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider .property-card:hover .card-4 {
    transform: scale(1.1);
}

.popular-property .pslider .property-card .card-5 {
    background-image: url('../images/slider-5.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider .property-card:hover .card-5 {
    transform: scale(1.1);
}

.popular-property .pslider .property-card .card-6 {
    background-image: url('../images/slider-6.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider .property-card:hover .card-6 {
    transform: scale(1.1);
}

.popular-property .pslider .property-card .card-7 {
    background-image: url('../images/slider-7.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider .property-card:hover .card-7 {
    transform: scale(1.1);
}




















.popular-property .pslider #propertySlider .property-card .card-1 {
    background-image: url('../images/Sukoon Tower/1. Exterior.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-1 {
    transform: scale(1.1);
}

.popular-property .pslider #propertySlider .property-card .card-2 {
    background-image: url('../images/Hilton/1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-2 {
    transform: scale(1.1);
}

.popular-property .pslider #propertySlider .property-card .card-3 {
    background-image: url('../images/Busaiteen-Villas/Buisateen Exterior 1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-3 {
    transform: scale(1.1);
}

.popular-property .pslider #propertySlider .property-card .card-4 {
    background-image: url('../images/Mannai Sea Plaza/SP 1.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-4 {
    transform: scale(1.1);
}

.popular-property .pslider #propertySlider .property-card .card-5 {
    background-image: url('../images/Mannai Mansions/MM 1.JPG');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-5 {
    transform: scale(1.1);
}

.popular-property .pslider #propertySlider .property-card .card-6 {
    background-image: url('../images/Tubli Villas/TV 2.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-6 {
    transform: scale(1.1);
}

.popular-property .pslider #propertySlider .property-card .card-7 {
    background-image: url('../images/Wyndham/1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-7 {
    transform: scale(1.1);
}



.popular-property .pslider #propertySlider .property-card .card-8 {
    background-image: url('../images/Ali-Villa/Ali Villa.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-8 {
    transform: scale(1.1);
}


.popular-property .pslider #propertySlider .property-card .card-9 {
    background-image: url('../images/Mannai Plaza/MP 1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-9 {
    transform: scale(1.1);
}


.popular-property .pslider #propertySlider .property-card .card-10 {
    background-image: url('../images/Ramada/1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-10 {
    transform: scale(1.1);
}




.popular-property .pslider #propertySlider .property-card .card-11 {
    background-image: url('../images/Mannai House 1/MH 1.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-11 {
    transform: scale(1.1);
}


.popular-property .pslider #propertySlider .property-card .card-12 {
    background-image: url('../images/Mannai House 2/MH 1.1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-12 {
    transform: scale(1.1);
}


.popular-property .pslider #propertySlider .property-card .card-13 {
    background-image: url('../images/Mannai Suites/MS 1.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-13 {
    transform: scale(1.1);
}


.popular-property .pslider #propertySlider .property-card .card-14 {
    background-image: url('../images/Zinj Building/Z 1.1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-14 {
    transform: scale(1.1);
}


.popular-property .pslider #propertySlider .property-card .card-15 {
    background-image: url('../images/Hamad Town Building/HT 1.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.popular-property .pslider #propertySlider .property-card:hover .card-15 {
    transform: scale(1.1);
}



























.pslider #propertyHotels .property-card .card-1 {
    background-image: url('../images/Hilton/1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyHotels .property-card:hover .card-1 {
    transform: scale(1.1);
}

.pslider #propertyHotels .property-card .card-2 {
    background-image: url('../images/Wyndham/1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyHotels .property-card:hover .card-2 {
    transform: scale(1.1);
}

.pslider #propertyHotels .property-card .card-3 {
    background-image: url('../images/Ramada/1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyHotels .property-card:hover .card-3 {
    transform: scale(1.1);
}







.pslider #propertyAppartment .property-card .card-1 {
    background-image: url('../images/Sukoon Tower/1. Exterior.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyAppartment .property-card:hover .card-1 {
    transform: scale(1.1);
}

.pslider #propertyAppartment .property-card .card-2 {
    background-image: url('../images/Mannai Sea Plaza/SP 1.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyAppartment .property-card:hover .card-2 {
    transform: scale(1.1);
}

.pslider #propertyAppartment .property-card .card-3 {
    background-image: url('../images/Mannai Mansions/MM 1.JPG');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyAppartment .property-card:hover .card-3 {
    transform: scale(1.1);
}

.pslider #propertyAppartment .property-card .card-4 {
    background-image: url('../images/Mannai Plaza/MP 1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyAppartment .property-card:hover .card-4 {
    transform: scale(1.1);
}

.pslider #propertyAppartment .property-card .card-5 {
    background-image: url('../images/Mannai House 1/MH 1.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyAppartment .property-card:hover .card-5 {
    transform: scale(1.1);
}

.pslider #propertyAppartment .property-card .card-6 {
    background-image: url('../images/Mannai House 2/MH 1.1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyAppartment .property-card:hover .card-6 {
    transform: scale(1.1);
}

.pslider #propertyAppartment .property-card .card-7 {
    background-image: url('../images/Mannai Suites/MS 1.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyAppartment .property-card:hover .card-7 {
    transform: scale(1.1);
}

.pslider #propertyAppartment .property-card .card-8 {
    background-image: url('../images/Zinj Building/Z 1.1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyAppartment .property-card:hover .card-8 {
    transform: scale(1.1);
}

.pslider #propertyAppartment .property-card .card-9 {
    background-image: url('../images/Hamad Town Building/HT 1.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyAppartment .property-card:hover .card-9 {
    transform: scale(1.1);
}




.pslider #propertyVillas .property-card .card-1 {
    background-image: url('../images/Busaiteen-Villas/Buisateen Exterior 1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyVillas .property-card:hover .card-1 {
    transform: scale(1.1);
}

.pslider #propertyVillas .property-card .card-2 {
    background-image: url('../images/Tubli Villas/TV 2.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyVillas .property-card:hover .card-2 {
    transform: scale(1.1);
}

.pslider #propertyVillas .property-card .card-3 {
    background-image: url('../images/Ali-Villa/Ali Villa.jpeg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyVillas .property-card:hover .card-3 {
    transform: scale(1.1);
}

.pslider #propertyVillas .property-card .card-4 {
    background-image: url('../images/slider-3.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyVillas .property-card:hover .card-4 {
    transform: scale(1.1);
}






.pslider #propertyLand .property-card .card-1 {
    background-image: url('../images/Hilton/1.jpg');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyLand .property-card:hover .card-1 {
    transform: scale(1.1);
}

.pslider #propertyLand .property-card .card-2 {
    background-image: url('../images/slider-2.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyLand .property-card:hover .card-2 {
    transform: scale(1.1);
}

.pslider #propertyLand .property-card .card-3 {
    background-image: url('../images/slider-3.png');
    height: 470px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s;
}

.pslider #propertyLand .property-card:hover .card-3 {
    transform: scale(1.1);
}






















.property-card:hover .header {
    margin-top: -75px;
}

.property-card .header {
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #282829cc;
    width: 135px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 0 100%, 85% 100%, 100% 0%, 100% 0);
    transition: all .5s ease;
}

.property-card .header p {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
}

.property-card .footer {
    position: absolute;
    width: 100%;
    bottom: 30px;
    text-align: center;
    transition: all .5s ease;
}

.property-card:hover .footer {
    bottom: 100px;
}

.property-card .footer p {
    margin-bottom: 0px;
    font-size: 20px;
    color: var(--white);
    line-height: 27px;
    text-align: center;
    font-weight: 400;
    transition: all 0.5s ease;
}

.property-card:hover .footer p {
    font-size: 21px;
}

.property-card .footer-below {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -75px;
    transition: all .5s ease;
}

.property-card:hover .footer-below {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 40px;
}

.property-card:hover .footer-below a {
    font-size: 16px;
}

.property-card .footer-below a {
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 18px;
    line-height: 24px;
    border-radius: 100px;
    padding: 8px 24px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    transition: all 0.5s ease;
    background: linear-gradient(#918360 0 0) var(--p, 0)/var(--p, 0) no-repeat;
    transition: .5s, background-position 0s;
}

.property-card .footer-below a:hover {
    --p: 100%;
    color: var(--white);
    font-weight: 500;
}

.popular-property .owl-nav {
    position: absolute;
    top: 500px;
    left: 120px;
    margin-top: 0px;
}

.popular-property .title {
    margin-bottom: 40px;
}

.popular-property #propertySlider .owl-nav button {
    border: 1px solid var(--white);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: transparent;
    color: var(--white);
    /*background: linear-gradient(#fff 0 0) var(--p, 0)/var(--p, 0) no-repeat;*/
    background: transparent;
    transition: .5s, background-position 0s;
}

.popular-property #propertySlider .owl-nav button:hover {
    /*--p: 100%;*/
    background: #fff;
    color: var(--gray900);
}

.test-bg {
    background-image: url('../images/testimonial-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.testimonial {
    margin-top: var(--midspace);
    padding-top: var(--midspace);
    padding-bottom: var(--midspace);
    overflow: hidden;
}

.testimonial .title {
    margin-bottom: var(--midspace);
}

.testimonial .title h6 {
    color: var(--white);
    text-align: center;
}

.testimonial .title h2 {
    color: var(--white);
    text-align: center;
}

.testimonial .tslider .testimonial-card {
    background-color: #ffffff50;
    margin-left: 10%;
    margin-right: 10%;
    color: var(--white);
    padding: 32px;
}

.testimonial .tslider .testimonial-card .left-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-right: 1px solid var(--white);
}

.testimonial .tslider .testimonial-card .left-sec img {
    width: 100%;
    max-width: 206px;
    border-radius: 100px;
    border: 10px solid #918360;
}

.testimonial .tslider .testimonial-card .left-sec h5 {
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    line-height: 32px;
    margin-bottom: 8px;
    margin-top: 16px;
    font-family: 'Playfair Display', serif;
}

.testimonial .tslider .testimonial-card .left-sec p {
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 24px;
}

.testimonial .tslider .testimonial-card .right-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 20px;
}

.testimonial .tslider .testimonial-card .right-sec img {
    width: 100%;
    max-width: 70px;
}

.testimonial .tslider .testimonial-card .right-sec p {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-top: 32px;
}

.testimonial .tslider .testimonial-card .right-sec .start-rating .checked {
    color: var(--yellow);
}

.owl-theme .owl-dots {
    margin-top: 30px !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--yellow500);
    width: 15px;
    height: 15px;
    margin: 3px 7px;
    transition: all .3s ease;
}

/* Home Page CSS End */



/* Aboutus Page CSS Start */

.bg-aboutus-hero {
    background-image: url('../images/common-bg.png');
    padding-top: 200px;
    margin-top: -150px;
    margin-bottom: var(--midspace);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.test-bg.about-us-page {
    background-size: cover;
    overflow: hidden;
    padding-bottom: var(--midspace);
}

.test-bg.about-us-page .popular-property {
    display: none;
}

.vission-mission {
    background-color: var(--yellow900);
    padding-top: var(--midspace);
    padding-bottom: var(--midspace);
    color: var(--white);
}

.vission-mission .title h2 {
    color: var(--white);
    margin-bottom: var(--midspace);
}

.vission-mission .mission {
    margin-bottom: var(--midspace);
}

.vission-mission .mission h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
}

.vission-mission .mission p {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: justify;
}

.vission-mission .vission h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
}

.vission-mission .vission p {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: justify;
}

.our-team {
    margin-top: var(--midspace);
    margin-bottom: var(--midspace);
}

.our-team .title {
    margin-bottom: 20px;
}

.our-team .cont p {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: justify;
}

.about-us-slider {
    margin-top: var(--midspace);
    margin-bottom: var(--midspace);
    display: flex;
    justify-content: center;
}

.main-box-ani {
    display: flex;
    justify-content: center;
    overflow: auto;
}

.main-box-ani::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, and Opera */
}

.new-ani-box {}

.new-ani-box.active-cut-img .img-cut-1 {
    animation: moverighttoleft 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    margin-top: -50px;
    margin-right: 10px;
}

.new-ani-box.active-cut-img .img-cut-3 {
    animation: moverighttoleft 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    margin-top: -50px;
    margin-right: 10px;
}

.new-ani-box.active-cut-img .img-cut-7 {
    animation: moverighttoleft 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    margin-top: -50px;
    /* margin-left: 0px; */
    margin-right: 10px;
}

@keyframes moverighttoleft {
    100% {
        margin-top: 0px;
        /* margin-left: -5px; */
        margin-right: 0px;
    }
}

.new-ani-box.active-cut-img .img-cut-2 {
    animation: movelefttoright 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    margin-top: 100px;
    margin-right: 10px;
}

.new-ani-box.active-cut-img .img-cut-4 {
    animation: movelefttoright 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    margin-top: 100px;
    margin-right: 10px;
}

.new-ani-box.active-cut-img .img-cut-6 {
    animation: movelefttoright 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    margin-top: 100px;
    margin-right: 10px;
}

@keyframes movelefttoright {
    100% {
        margin-top: 0px;
        /* margin-left: -5px; */
        margin-right: 0px;
    }
}

.new-ani-box.active-cut-img .img-cut-5 {
    animation: moveuptodown 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    margin-top: -50px;
    margin-right: 10px;
}

@keyframes moveuptodown {
    100% {
        margin-top: 0px;
        margin-right: 0px;
    }
}

.left-side-box-down {
    display: flex;
    align-items: end;
    height: 100%;
    margin-right: 100px;
    width: 300px;
}

.left-side-box-up {
    display: flex;
    align-items: start;
    height: 100%;
    margin-right: 100px;
    width: 300px;
    animation: leftnonetoshow 2s;
    animation-delay: 2s;
    visibility: hidden;
    animation-fill-mode: forwards;
}

@keyframes leftnonetoshow {
    100% {
        visibility: visible;
    }
}

.right-side-box-down {
    display: flex;
    align-items: end;
    height: 100%;
    margin-left: 100px;
    width: 300px;
    animation: rightnonetoshow 2s;
    animation-delay: 2s;
    visibility: hidden;
    animation-fill-mode: forwards;
}

@keyframes rightnonetoshow {
    100% {
        visibility: visible;
    }
}

.right-side-box-up {
    display: flex;
    align-items: start;
    height: 100%;
    margin-left: 100px;
    width: 300px;
}

/* Aboutus Page CSS End */


/* Contactus Page CSS Start */

.bg-contactus-hero {
    background-image: url('../images/common-bg.png');
    padding-top: 200px;
    margin-top: -150px;
    margin-bottom: var(--midspace);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.bg-contactus-hero .bg-inner-img {
    background-image: url('../images/buildings-1.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 100px;
    padding-bottom: 100px;
}

.bg-contactus-hero .bg-inner-img .bg-box {
    background-color: var(--lightgray);
    padding: 80px;
}

.bg-contactus-hero .bg-inner-img .bg-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 12px;
}

.bg-contactus-hero .bg-inner-img .bg-box p {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray500);
    margin-bottom: 0px;
}

.bg-contactus-hero .contactus-btn {
    background-color: var(--gray900);
    border: none;
    color: var(--white);
    padding: 30px;
    font-size: 34px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 1s ease;
    width: 100px;
}

.bg-contactus-hero .contactus-btn:hover {
    width: 250px;
}

.bg-contactus-hero .contactus-btn::after {
    content: '';
}

.bg-contactus-hero .contactus-btn:hover::after {
    content: 'ontact Us';
    animation: contactshow 2s;
}

@keyframes contactshow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.bg-contactus-hero .contact-popup {
    display: flex;
    align-items: center;
}

.modal-content {
    background-color: var(--gray900);
    color: var(--white);
}

.modal h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 40px !important;
    font-weight: 600;
}

.modal label {
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.modal input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--offwhite);
    border-radius: 0px;
    padding: 5px;
    color: var(--white);
}

.modal input::placeholder {
    color: var(--offwhite);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
}

.modal .theam-btn-efct {
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    padding: 8px 24px;
    border-radius: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    position: relative;
    z-index: 2;
    background: linear-gradient(#918360 0 0) var(--p, 0)/var(--p, 0) no-repeat;
    transition: .5s, background-position 0s;
}

.modal .btn-close {
    /* background-image: url('../images/close.png'); */
    --bs-btn-close-bg: url('../images/close.png');
    opacity: 1;
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: cover;
}

.contact-details .details-box {
    border: 1px solid var(--gray50);
    border-radius: 12px;
    padding: 24px;
    background-color: var(--white);
    height: 100%;
}

.contact-details .details-box img {
    width: 70px;
    height: 70px;
    margin-bottom: 100px;
}

.contact-details .details-box h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray900);
}

.contact-details .details-box p {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray500);
}

.contact-details .details-box .link {
    color: var(--gray900);
    font-size: 18px;
    font-weight: 600;
    word-wrap: break-word;
}

.contact-details {
    margin-bottom: -100px;
}

.start-clr {
    color: var(--yellow500);
}

/* Contactus Page CSS End */


/* Properties Page CSS Start */

.properties-page .popular-property #propertyHotels .owl-nav button {
    border: 1px solid var(--gray900);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: transparent;
    color: var(--gray900);
    background: linear-gradient(#A79C80 0 0) var(--p, 0)/var(--p, 0) no-repeat;
    transition: .5s, background-position 0s;
}

.popular-property #propertyHotels .owl-nav button:hover {
    --p: 100%;
    color: var(--gray900);
}

#propertyAppartment {
    position: relative;
}

.properties-page .popular-property #propertyAppartment .owl-nav button {
    border: 1px solid var(--gray900);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: transparent;
    color: var(--gray900);
    background: linear-gradient(#A79C80 0 0) var(--p, 0)/var(--p, 0) no-repeat;
    transition: .5s, background-position 0s;
}

.popular-property #propertyAppartment .owl-nav button:hover {
    --p: 100%;
    color: var(--gray900);
}

.popular-property #propertyAppartment .owl-nav {
    position: absolute;
    top: 500px;
    right: 120px;
    margin-top: 0px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.properties-page .popular-property #propertyVillas .owl-nav button {
    border: 1px solid var(--gray900);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: transparent;
    color: var(--gray900);
    background: linear-gradient(#A79C80 0 0) var(--p, 0)/var(--p, 0) no-repeat;
    transition: .5s, background-position 0s;
}

.popular-property #propertyVillas .owl-nav button:hover {
    --p: 100%;
    color: var(--gray900);
}

#propertyLand {
    position: relative;
}

.properties-page .popular-property #propertyLand .owl-nav button {
    border: 1px solid var(--gray900);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: transparent;
    color: var(--gray900);
    background: linear-gradient(#A79C80 0 0) var(--p, 0)/var(--p, 0) no-repeat;
    transition: .5s, background-position 0s;
}

.popular-property #propertyLand .owl-nav button:hover {
    --p: 100%;
    color: var(--gray900);
}

.popular-property #propertyLand .owl-nav {
    position: absolute;
    top: 500px;
    right: 120px;
    margin-top: 0px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.properties-page .popular-property {
    margin-top: 0px;
    margin-bottom: var(--midspace);
    padding-top: var(--midspace);
    padding-bottom: var(--midspace);
    position: relative;
}

/* Properties Page CSS End */


/* About Bahrain Page CSS Start */

.bg-aboutbahrain-hero {
    background-image: url(../images/common-bg.png);
    padding-top: 200px;
    margin-top: -150px;
    margin-bottom: var(--midspace);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* About Bahrain Page CSS End */

/* Properties Details Page CSS Start */

.bg-pro-details-hero {
    background-image: url(../images/common-bg.png);
    padding-top: 200px;
    margin-top: -150px;
    margin-bottom: var(--midspace);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.bg-pro-details-hero .properties-img {
    /*height: 200px;*/
    width: 100%;
    object-fit: cover;
    object-position: center;
    /*transition: height 1s ease-in-out;*/
    border-radius: 12px 12px 0px 0px;
}

/*.bg-pro-details-hero .properties-img:hover{*/
/*    height: 500px;*/
/*}*/


.bg-pro-details-hero #carouselExample {
    height: 200px;
    overflow: hidden;
    transition: height 1s ease-in-out;
}

.bg-pro-details-hero #carouselExample:hover {
    height: 100%;
}


.bg-pro-details-hero .hero-img-below {
    background-color: var(--yellow900);
    color: var(--white);
    border-radius: 0px 0px 12px 12px;
    padding: 60px;
    text-align: center;
}

.bg-pro-details-hero .hero-img-below img {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
}

.bg-pro-details-hero .hero-img-below h5 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
}

.properties-details-page .aminity {
    background-color: var(--yellow900);
    color: var(--white);
    padding: 60px 0px;
    margin-top: var(--midspace);
}

.properties-details-page .aminity .aminity-card {
    border: 1px solid var(--white);
    text-align: center;
    padding: 30px 0px;
}

.properties-details-page .aminity.multiple .aminity-card {
    padding: 30px 10px;
    height: 100%;
}

.properties-details-page .aminity .aminity-card img {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
}

.properties-details-page .aminity .aminity-card h4 {
    font-family: 'Playfair Display', serif;
}

.properties-details-page .find-prop {
    margin-bottom: 20px;
}

.properties-details-page .find-prop img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.properties-details-page .find-prop a {
    color: var(--gray900);
    font-weight: 600;
}

/* Properties Details Page CSS End */



/* Mannai Trading Page CSS Start */

.mannai-trading-con-page {
    position: relative;
}

.mannai-trading-con-page .details {
    margin-top: 20px;
}

.mannai-trading-con-page .list ul {
    padding-left: 10px;
    list-style: circle;
}

.mannai-trading-con-page .list ul li {
    margin-bottom: 10px;
}

.panorama-con-engi-page .list ul {
    padding-left: 10px;
    list-style: circle;
}

.panorama-con-engi-page .list ul li {
    margin-bottom: 10px;
}

.mannai-trading-con-page .owl-nav {
    position: absolute;
    top: -80px;
    right: 10px;
    margin-top: 0px;
}

.mannai-trading-con-page #mannaiTrading .owl-nav button {
    border: 1px solid var(--gray900);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: transparent;
    color: var(--gray900);
    background: linear-gradient(#918360 0 0) var(--p, 0)/var(--p, 0) no-repeat;
    transition: .5s, background-position 0s;
}

.mannai-trading-con-page #mannaiTrading .owl-nav button:hover {
    --p: 100%;
    color: var(--gray900);
}

.mannai-trading-con-page .slider {
    position: relative;
    margin-top: var(--midspace);
    margin-bottom: var(--midspace);
    padding-top: 30px;
}

/* Mannai Trading Page CSS End */


/* Pranorama Page CSS Start */

.panorama-con-engi-page {
    position: relative;
}

.panorama-con-engi-page .owl-nav {
    position: absolute;
    top: -80px;
    right: 10px;
    margin-top: 0px;
}

.panorama-con-engi-page #panorama .owl-nav button {
    border: 1px solid var(--gray900);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: transparent;
    color: var(--gray900);
    background: linear-gradient(#918360 0 0) var(--p, 0)/var(--p, 0) no-repeat;
    transition: .5s, background-position 0s;
}

.panorama-con-engi-page #panorama .owl-nav button:hover {
    --p: 100%;
    color: var(--gray900);
}

.panorama-con-engi-page .slider {
    position: relative;
    margin-top: var(--midspace);
    margin-bottom: var(--midspace);
    padding-top: 30px;
}


/* Pranorama Page CSS End */

.property-video .owl-carousel .owl-item img {
    object-fit: cover;
    height: 420px;
    object-position: center;
}

body.rtl footer .main-footer .address-box .email-form .input-group {
    flex-direction: row-reverse;
}

body.rtl footer .main-footer .address-box .address-list ul li::before {
    right: 0px;
}

body.rtl footer .main-footer .address-box .phone-list ul li::before {
    right: 0px;
}

body.rtl footer .main-footer .address-box .email-list ul li::before {
    right: 0px;
}

body.rtl footer .main-footer .property-box .property-list ul li::before {
    right: 0px;
}

body.rtl footer .main-footer .quick-box .quick-list ul li::before {
    right: 0px;
}

#google_translate_element .skiptranslate {
    font-size: 0px;
}

#google_translate_element .skiptranslate span {
    display: none;
}

/*Custom Modal Css Start*/
.custom-modal-dialog .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

.custom-modal-dialog .modal-content .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.custom-modal-dialog .modal-content .modal-header .modal-title {
    font-weight: 700;
    color: #000000;
}

.custom-modal-dialog .modal-content .modal-body {
    padding: 1rem;
}

.custom-modal-dialog .modal-content .modal-body .input-text-field-wrapper {
    margin-bottom: 16px;
}

.custom-modal-dialog .modal-content .modal-body .input-text-field-wrapper label {
    text-transform: capitalize;
    color: #25223f;
    letter-spacing: 0px;
    font-size: 16px;
    line-height: 20.11px;
    margin: 0px;
}

.custom-modal-dialog .modal-content .modal-body .input-text-field-wrapper .form-control {
    border: 1px solid #D3D3D9;
    padding: 0.438rem 0.75rem;
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border-radius: 5px;
}

.custom-modal-dialog .modal-content .modal-body .input-text-field-wrapper .form-control:focus {
    box-shadow: unset;
}

.custom-modal-dialog .modal-content .btn {
    width: 100%;
    margin: 10px 0 0;
    border-color: #dddddd;
}

.custom-modal-dialog .modal-content .btn.btn-primary {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}

.custom-modal-dialog .modal-content .btn.btn-secondary {
    background-color: #ffffff;
    color: #dc3545;
}

@media screen and (min-width: 576px) {
    .custom-modal-dialog {
        max-width: 400px;
    }
}

/*Custom Modal Css End*/








.bg-center-img {
    background-position: center;
}

.bg-pro-details-hero #carouselExample:hover .hover-sml-images {
    max-height: 800px;
    object-fit: contain !important;
}

.bg-pro-details-hero #carouselExample .carousel-item.smal-img {
    max-height: 800px;
}

.bg-pro-details-hero #carouselExample:hover .carousel-item.smal-img .hover-sml-images {
    max-height: 800px;
    object-fit: contain !important;
}



.carousel-control-next-icon {
    background-image: url('../images/right-arrow.png');
}

.carousel-control-prev-icon {
    background-image: url('../images/left-arrow.png');
}

.iti{
    display: block !important;
}

.iti--separate-dial-code .iti__selected-dial-code, .iti__country-name{
    color: #000;
}