:root{
    --main-color: #B2D235;
    --second-color: #465851;
    --white-color: #fff;
    --black-color: #000;

    /* --font-family-shlager-regular: 'FbShlager-Regular';
    --font-family-shlager-bold: 'FbShlager-Bold'; */

    --font-family-FbPracticaNarrow-Regular: 'FbPracticaNarrow-Regular';
    --font-family-FbPracticaNarrow-Bold: 'FbPracticaNarrow-Bold';
    --font-family-FbElectronSansEng-Light: 'FbElectronSansEng-Light';
    --font-family-FbElectronSansEng-Regular: 'FbElectronSansEng-Regular';
    --font-family-FbElectronSansEng-Bold: 'FbElectronSansEng-Bold';

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
html{
    scroll-padding-top: 105px;
    scroll-behavior: smooth;
    overflow: auto;
}
body{
    direction: rtl;
    font-family: var(--font-family-FbPracticaNarrow-Regular);
    font-weight: var(--font-weight-regular);
    font-size: 25px;
    line-height: 30px;
    color: var(--second-color);
    background-color: var(--main-color);
}
.eng{
    font-family: var(--font-family-FbElectronSansEng-light) !important;
}
.eng strong{
    font-family: var(--font-family-FbElectronSansEng-Regular);
}
h1,h2,h3,h4,h4,h5{
    font-family: var(--font-family-FbPracticaNarrow-Bold);
    font-weight: var(--font-weight-bold);
}
ul, ol{
    padding-right: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
p{
    margin-bottom: 0;
}
.global-btn, .submit-btn {
    background-color: var(--main-color);
    font-size: 25px;
    line-height: 30px;
    border-radius: 15px;
    font-weight: var(--font-weight-regular);
    padding: 14px 30px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    position: relative;
    text-align: center;
}
.global-btn:hover, .submit-btn:hover{
    background: none;
    color: var(--main-color);
}
.global-btn.secondary.transparent{
    background: none;
    color: var(--second-color);
}
.global-btn.secondary.transparent:hover{
    background-color: var(--second-color);
    color: var(--white-color);
}
.global-btn.transparent{
    background: none;
    color: var(--main-color);
}
.global-btn.transparent:hover{
    background-color: var(--main-color);
    color: var(--white-color);
}
.global-btn > i{
    margin-left: 10px;
}
.global-btn.secondary{
    background-color: var(--second-color);
    border: 1px solid var(--second-color);
    color: var(--white-color);
}
.global-btn.secondary:hover, .submit-btn:hover{
    background: none;
    color: var(--second-color);
}
.submit-btn{
    background-color: var(--second-color);
    border: 1px solid var(--second-color);
    color: var(--white-color);
}
.submit-btn:hover{
    background: none;
    color: var(--second-color);
}
.w-fit-content{
    width: fit-content;
}
.max-w-fit-content{
    max-width: fit-content;
}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"]{
    direction: unset;
}
.wpcf7 form .wpcf7-response-output{
    margin: 20px 0 20px;
    text-align: center;
}
.text-justify{
    text-align: justify;
}
.text-justify-center{
    text-align: justify;
    text-align-last: center;
}
.my-30{
    margin-top: 30px;
    margin-bottom: 30px;
}
.mt-10{
    margin-top: 10px;
}
.mt-40{
    margin-top: 40px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-40{
    margin-bottom: 40px;
}
.mb-50{
    margin-bottom: 50px;
}
.mb-100{
    margin-bottom: 100px;
}
.object-fit-cover {
    object-fit: cover;
}
.gap-x-30{
    gap: 0 30px;
}
.gap-x-50{
    gap: 0 50px;
}
.gap-x-70{
    gap: 0 70px;
}
.mx-w-fit-content{
    max-width: fit-content;
}
.mx-w-930{
    max-width: 930px;
}
.mx-w-900{
    max-width: 900px;
}
.bg-img{
    background-size: cover;
    background-position: center center;
}
.bg-second{
    background-color: var(--second-color);
}
.color-second{
    color: var(--second-color);
}
.color-main{
    color: var(--main-color) !important;
}
.container{
    padding-right: 16px;
    padding-left: 16px;
}
.title-area .title {
    font-size: 70px;
    line-height: 70px;
    font-weight: var(--font-weight-bold);
}

/**** Header css start ****/
.header{
    background-color: var(--main-color);
}
.header-container{
    padding: 23px 16px;
    background-color: var(--second-color);
}
.header.sticky{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.navbar{
    padding: 0;
}
.navbar-light .navbar-toggler{
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.navbar-brand .logo {
    max-width: 130px;
}
.navbar-nav li{
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}
.navbar-nav li a{
    font-size: 26px;
    line-height: 32px;
    font-weight: var(--font-weight-regular);
    color: var(--white-color);
}
.navbar-nav li a:hover{
    color: var(--main-color);
}

/**** Banner css start ****/
.home-banner{
    min-height: calc(100vh - 130px);
    margin: 10px 0;
}
.banner-video{
    width: 100%;
    min-height: calc(100vh - 80px);
}
.banner-logo{
    max-width: 40%;
    -webkit-filter: drop-shadow(0px 0px 30px #465851);
    filter: drop-shadow(0px 0px 30px #465851);
}
.banner-content {
    top: 100px;
}

/**** Contact Form css start ****/
.wpcf7-spinner{
    display: none;
}
.contact-form{
    position: fixed;
    width: 100%;
    bottom: 20px;
    z-index: 99;
}
.contact-form .form-area{
    padding: 20px 60px;
    background-color: var(--white-color);
    border: 3px solid var(--main-color);
    gap: 60px;
}
.field-col label {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: end;
}
.field-col label .wpcf7-form-control-wrap, .field-col label input{
    width: 100%;
}
.field-col label > span:first-child{
    min-width: fit-content;
    font-size: 25px;
    line-height: 30px;
    font-weight: var(--font-weight-regular);
    color: var(--second-color);
}
.contact-form .form-heading{
    font-size: 30px;
    line-height: 30px;
    font-weight: var(--font-weight-bold);
    color: var(--second-color);
    min-width: fit-content;
}
.field-col label input{
    background: none;
    border: none;
    border-bottom: 2px solid var(--second-color);
    color: var(--second-color);
    font-size: 22px;
    line-height: 30px;
    font-weight: var(--font-weight-regular);
}
.field-col label input:focus{
    outline: none;
    box-shadow: none;
}
.check-col{
    margin-top: 20px;
}
.wpcf7-checkbox .wpcf7-list-item-label{
    font-size: 14px;
    line-height: 16px;
    font-weight: var(--font-weight-regular);
    color: var(--second-color);
}
.wpcf7-checkbox label{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}
.wpcf7-not-valid-tip{
    position: absolute;
    font-size: 16px;
    line-height: 22px;
}

.wpcf7-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--second-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: var(--white-color);
}
.wpcf7-checkbox input[type="checkbox"]:checked {
    background-color: var(--white-color);
    border: 2px solid var(--second-color);
}
.wpcf7-checkbox input[type="checkbox"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--second-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wpcf7 form.invalid .wpcf7-response-output{
    color: #ffb900;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
    color: #dc3232;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

/**** Footer css start ****/
.footer-sec{
    background-color: var(--second-color);
    padding: 100px 0 200px;
}
.form-area > .row > .col-12 {
    padding: 0 10px;
}
.footer-form-wrapper .form-area{
    gap: 50px;
    margin-bottom: 50px;
}
.footer-form-wrapper :where(.wpcf7-checkbox .wpcf7-list-item-label, .field-col label > span:first-child, .form-heading, .field-col label input) {
    color: var(--white-color) !important;
}
.footer-form-wrapper .field-col label input{
    border-color: var(--white-color) !important;
}
.footer-form-wrapper .submit-btn{
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}
.footer-form-wrapper .submit-btn:hover{
    background: transparent !important;
    color: var(--main-color) !important;
}
.footer-form-title{
    font-family: var(--font-family-FbPracticaNarrow-Regular) !important;
    font-weight: var(--font-weight-regular) !important;
}
.footer-form-wrapper .footer-form-title.form-heading{
    display: block !important;
    margin-bottom: 30px !important;
}
.footer-form-wrapper .form-heading{
    display: none;
}
.footer-form-wrapper .wpcf7-checkbox input[type="checkbox"]{
    border: 2px solid var(--white-color) !important;
    background-color: var(--second-color) !important;
}
.footer-form-wrapper .wpcf7-checkbox input[type="checkbox"]:checked::before {
    background-color: var(--white-color) !important;
}
.footer-form-wrapper .wpcf7-checkbox input[type="checkbox"]:checked {
    background-color: var(--second-color) !important;
    border: 2px solid var(--white-color) !important;
}
.footer-form-wrapper .col-12:not(:last-child) {
    margin-bottom: 10px;
}
.footer-form-wrapper .wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 18px;
    line-height: 22px;
}
.footer-sec .footer-desc{
    margin-bottom: 50px;
    max-width: 800px;
    font-size: 22px;
    line-height: 26px;
}
.copyright-text {
    font-size: 22px;
    line-height: 26px;
}
.footer-sec .copyright-text > a{
    text-decoration: underline;
}
.whatsapp-btn{
    position: fixed;
    bottom: 20%;
    left: 10px;
    width: 50px;
    height: 50px;
    background-color: var(--second-color);
    padding: 8px 8px 10px 10px;
    border-radius: 12px;
    z-index: 99;
}
.sticky-button-group{
    position: fixed;
    bottom: 10px;
    width: 100%;
    gap: 6px;
    background-color: var(--main-color);
    border-top: 1px solid var(--second-color);
    padding: 10px 20px;
    z-index: 99;
}
.sticky-button-group > .global-btn{
    padding: 12px;
    width: 50%;
    font-size: 20px;
    line-height: 25px;
    border-width: 1px;
}
.sticky-button-group > .global-btn > img{
    margin-right: 10px;
}
.commercial-video{
    width: 100%;
    margin-bottom: 50px;
}

/* Iframe Video CSS */
.video-area{
    position: relative;
}
.video__play-button{
    margin:0 0 0;
    padding:0;
    cursor:pointer;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: none;
    -webkit-appearance: none;
    z-index: 2;
    transition: all 200ms ease-in-out;
    border-radius: 14px;
}
.video-area video {
    display: block;
    width: 100%;
    pointer-events: none;
}
.video-area video:hover, .video-area video.playing {
    pointer-events: auto;
}
.video__play-button-icon{
    width:60px;
    margin-left: auto;
    margin-right: auto;
    transition: all 200ms ease-in-out;
    margin-bottom: -40px;
    fill: none !important;
    background: var(--main-color);
    border-radius: 50px;
}
.video__play-button-icon--play polygon{
    transform-origin: 50% 50%;
    transition: all 200ms ease-in-out;
}
.video__play-button-icon--play polygon, .video__play-button-icon--pause rect{
    fill: var(--second-color);
}
.video__play-button[data-button-state="pause"] .video__play-button-icon--pause{
    display:none;
}
.video__play-button[data-button-state="play"] .video__play-button-icon--play{
    display:none;
}
.video__play-button[data-button-state="play"] .video__play-button-icon{
    opacity:0;
}
.video__play-button[data-button-state="play"]:hover .video__play-button-icon, .video__play-button-icon--pause{
    opacity:1;
}

/**** Video Modal css start ****/
.video-modal .modal-dialog{
    max-width: 900px;
}
.video-modal .commercial-video{
    margin-bottom: 0;
}
.video-modal .btn-close, .plan-modal .btn-close{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
    opacity: 1;
    background: none;
    padding: 0;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 50%;
    line-height: 40px;
}
.btn-close:focus{
    box-shadow: none;
    outline: none;
}
.btn-close::before{
    content: url('../images/close-icon.svg');
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
}
.video-modal .video__play-button{
    height: calc(100% - 16px);
}
.video-modal .video-area iframe{
    margin-bottom: -10px;
}
.video-modal .modal-content{
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid transparent;
}

.header-logos {
    gap: 20px;
    position: absolute;
    top: 50%;
    left: 68px;
    transform: translateY(-50%);
}
.header-logos > img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

/********************
Living Experience CSS
*********************/
.content-row .content-col-wrapper{
    padding: 110px 150px;
}
.living-title-area .highlighted{
    margin-right: calc(100% - 20%);
    right: unset !important;
}
.dual-title .highlighted{
    /* margin-right: calc(100% - 20%); */
    right: 50%;
    position: relative;
}
.border-list .item{
    font-size: 30px;
    line-height: 36px;
    border-top: 1px solid var(--white-color);
    border-bottom: 1px solid var(--white-color);
    padding: 26px 0;
    width: calc(100% / 5 - 50px);
}
.border-list.floor-list .item{
    width: calc(100% / 4 - 50px);
}
.border-list.floor-list .item.top{
    border-bottom: 0;
}
.floor-desc{
    max-width: 690px;
}

/*******************
Features section CSS
********************/
.features-sec {
    padding: 150px 0 120px;
}
.feature-box{
    max-width: 175px;
}
.feature-box > .feature-icon-wrapper {
    margin-bottom: 40px;
}
.feature-box > .feature-icon-wrapper img{
    max-height: 75px;
    object-fit: contain;
}

/*****************
Luxury section CSS
******************/
.luxury-sec{
    padding: 150px 0;
}
.luxury-desc{
    max-width: 825px;
}

/************************
Gallery section css start
*************************/
.gallery-slider :where(.slick-slide, .slick-slide > img){
    height: 75vh;
    object-fit: cover;
    object-position: center center;
}
.gallery-pills .nav-item {
  width: calc(100% / 2);
}
.gallery-pills .nav-item .nav-link {
    background: var(--white-color);
    border: none;
    color: var(--second-color);
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 0px;
    padding: 25px;
    position: relative;
    width: 100%;
    font-weight: var(--font-weight-regular);
}
.gallery-pills .nav-item .nav-link.active {
    background-color: var(--second-color);
    color: var(--white-color);
}
.gallery-pills .nav-item .nav-link span {
  z-index: 2;
  position: relative;
}
.placeholder-logo > img {
    position: absolute;
    bottom: 30px;
    right: 70px;
    max-width: 490px;
    object-fit: contain;
    display: block;
    opacity: 0.7;
}

/***********
Location CSS
************/
.location-sec{
    position: relative;
    overflow: hidden;
    padding: 130px 0;
}
.location-sec .title-area{
    max-width: 1060px;
}
.location-img.apartment {
    margin-top: -101px;
}
.location-img {
    position: relative;
}
.location-img > img.y-icon {
    position: absolute;
    top: 124px;
    left: -118px;
}
.location-img.apartment > img:not(.y-icon){
    height: 750px;
}
.location-img > img:not(.y-icon){
    height: 650px;
    object-fit: cover;
    object-position: top center;
}

/************
Developer CSS
*************/
.dev-content-wrapper{
    padding: 150px 16px;
}
.dev-logo img{
    max-width: 600px;
}
.dev-features{
    gap: 30px 50px;
}
.dev-features .item {
    width: calc(100% / 5 - 50px);
    max-width: 220px;
}
.dev-features .item > img {
    height: 65px;
    object-fit: contain;
    margin-bottom: 20px;
}
.dev-features .item .title {
    font-weight: var(--font-weight-bold);
}

.property-wrapper{
    gap: 60px 40px;
}
.property-wrapper .item {
    width: calc(100% / 3 - 30px);
}
.property-wrapper .item img{
    height: 234px;
    object-fit: cover;
    object-position: center center;
}
.property-wrapper .item .name{
    background-color: var(--main-color);
    padding: 5px 12px;
    color: var(--white-color);
}

/***************
Architecture CSS
****************/
.architecture-sec{
    padding: 150px 0;
}
.architect-list{
    gap: 20px 150px;
}
.architect-list .item {
    width: calc(100% / 2 - 75px);
    height: inherit !important;
}
.architect-list .item .name{
    background-color: var(--white-color);
    padding: 10px 12px;
    font-size: 30px;
    line-height: 36px;
}
.architect-list .item .content-wrap{
    padding: 50px;
}
.architect-list .item .content-wrap .architect-logo {
    margin-bottom: 50px;
}
.architect-list .item .content-wrap .architect-logo > img {
    max-height: 120px;
    object-fit: contain;
    object-position: center center;
    height: 120px;
}
.modal-content{
    border-radius: 20px;
}
.modal-content .footer-form-wrapper .footer-form-title.form-heading{
    text-align: center;
    margin-bottom: 16px !important;
}
.modal-close-btn > svg{
    width: 23px;
    fill: var(--main-color);
}


/* Privacy pages */
.privacy-banner{
    min-height: 360px;
    padding: 16px;
    margin-bottom: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.privacy-banner::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}
.page-content{
    margin-bottom: 80px;
}
.page-content ul {
    list-style: disc;
    margin-right: 16px;
}
.page-content h2, .page-content h3 {
    margin-top: 26px;
    font-weight: 500;
}
.page-content p {
    margin-bottom: 8px;
    line-height: 28px;
}
.page-content p a{
    color: var(--white-color);
}
.page-content p a:hover{
    color: var(--second-color);
}
.privacy-banner h1 {
    font-size: 50px;
    line-height: 56px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--white-color);
}
.privacy-banner-content{
    z-index: 9;
    position: relative;
}
.breadcrumbs {
    gap: 10px;
    margin-bottom: 0;
}
.breadcrumbs li {
    color: var(--white-color);
    font-size: 24px;
    line-height: 24px;
    font-weight: var(--font-weight-semibold);
}
.breadcrumbs li a{
    color: var(--main-color);
}
.privacy-links {
    gap: 20px;
    margin-top: 16px;
}
.privacy-links a{
    color: var(--main-color);
    text-decoration: underline;
}
.page-template-template-privacy .navbar-brand{
    display: block !important;
}