/* Import Fonts */

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

/******************** CSS RESET ********************/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --heading-font: "Rubik", sans-serif !important;
    --secondary-font: "Questrial", sans-serif !important;
    --heading-font-weight: 600;
    --heading-font-extra-bold: 800;
    --color-white: #fff;
    --primary-color: #037fa2;
}

html,
body {
    width: 100vw;
    overflow-x: hidden;
}

section {
    position: relative;
}

a {
    text-decoration: none;
    color: var(--color-white);
}

li {
    list-style: none;
}

/******************** HEADER STYLING ********************/

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
header > .mycontainer {
    padding-top: 15px;
    padding-bottom: 15px;
}
.mycontainer {
    width: 100%;
    padding: 0 8%;
}

.myrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    mix-blend-mode: darken;
    width: 190px;
    filter: brightness(0) invert(1);
    max-height: 100% !important;
}

.mynav {
    display: flex;
    gap: 40px;
}

.mynav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.mynav ul li {
    position: relative;
}
.mynav a {
    color: var(--color-white);
    font-family: var(--heading-font) !important;
    font-weight: var(--heading-font-weight);
    font-size: 16px !important;
}

.mynav .my-custom-menu > li:last-child > a {
    padding: 10px 20px;
    border: 1px solid #fff;
}
.mynav a i {
    font-size: 10px !important;
    margin-left: 3px;
    transition: all 0.3s ease-in-out;
}
.hover-mydropdown ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 150%;
    left: 0;
    background-color: #000;
    width: 150px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}
.hover-mydropdown:hover ul{
    visibility: visible;
    opacity: 1;
}
.hover-mydropdown:hover i{
    transform: rotate(180deg);
}
.hover-mydropdown ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.topbar {
    background-color: #000;
    /* position: absolute; */
    /* top: 0;
    left: 0; */
    padding: 10px 20px;
    width: 100%;
}
.topbar ul {
    display: flex;
    gap: 20px;
}
.topbar ul li a{
    color: var(--color-white);
    font-family: var(--heading-font) !important;
    font-size: 12px !important;
}
.topbar ul li a i{
    margin-right: 5px;
}
.topbar .sign-in {
    color: var(--color-white);
    font-family: var(--heading-font) !important;
    font-size: 12px !important;

}
/******************** HERO SECTION STYLING ********************/
section.hero {
    width: 100%;
    height: 930px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

section.hero::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: 2;
}

section.hero .content {
    position: relative;
    width: 55%;
    z-index: 2;
}

section.hero .content h1 {
    color: var(--color-white);
    font-family: var(--heading-font) !important;
    font-weight: 700;
    font-size: 60px !important;
    margin-bottom: 3rem;
    text-transform: uppercase;
    width: 100%;
}

a.btn {
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 12px 40px;
    font-family: var(--heading-font) !important;
    text-transform: uppercase;
    font-size: 12px !important;
}

.scroll {
    position: absolute;
    bottom: 14%;
    right: 5%;
    font-family: var(--heading-font) !important;
    transform: rotate(90deg);
    z-index: 9;
}
/******************** SCROLL MOVE TEXT SECTION STYLING ********************/
.moving-text {
    padding: 60px 0;
}

.moving-text h2 {
    font-size: 42px !important;
    font-family: var(--heading-font) !important;
    font-weight: var(--heading-font-extra-bold);
    text-transform: uppercase;
    background: url(../images/img/textmask.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 40% 60%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.moving-text h2:nth-child(2){
    text-align: right;
    background-position: 50% 70%;
}
.moving-text6 {
    padding: 0px 0 60px 0;
    margin-top: -60px;
}

.moving-text6 h2 {
    font-size: 42px !important;
    font-family: var(--heading-font) !important;
    font-weight: var(--heading-font-extra-bold);
    text-transform: uppercase;
    background: url(../images/img/textmask.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 40% 60%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.moving-text6 h2:nth-child(2){
    text-align: right;
    background-position: 50% 70%;
}
.about{
    padding: 60px 0;
}
.about .myrow .col-4{
    width: 40%;
}
.about .myrow .col-4 img{
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.about .myrow .col-8{
    width: 50%;
}
.process {
    display: flex;
    width: 50%;
    align-items: center;
    margin: 10px 0;
}
.process .number{
    font-size: 62px !important;
    font-family: var(--heading-font) !important;
    font-weight: var(--heading-font-extra-bold);
    -webkit-text-stroke: 2px var(--primary-color);
    color: transparent;
    margin-right: 10px;
    line-height: 1;
}
.process .text{
    font-family: var(--heading-font) !important;
    font-weight: 800;
    font-size: 12px !important;
    height: 12px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    line-height: 1;
}
.process:nth-child(even){
    align-self: flex-end;
    margin-left: 50%;
}

.col-8 h2{
    font-size: 72px !important;
    font-family: var(--heading-font) !important;
    font-weight: 800;
    text-transform: uppercase;
    color: #e4e4e4;
}
.col-8 p{
    font-family: var(--heading-font) !important;
    line-height: 24px;
    margin-bottom: 20px;
}
.col-8 p:nth-child(2){
    font-weight: 800;
    margin: 40px 0;
   text-transform: uppercase;
}
.col-8  .btn{
    border-color: var(--primary-color);
    color: var(--primary-color);
    margin-top:20px;
}
.my-carousel-progress {
    background: #ccc;
  }
  
  
  .my-carousel-progress-bar {
    background: greenyellow;
    height: 2px;
    transition: width 400ms ease;
    width: 0;
  }
  .Cta{
    padding: 20px 0 60px;
    background: url(../images/img/cta-bg.jpg);
    background-size: cover;
  }
  section.Cta::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    z-index: 2;
}
.Cta .moving-text {
    margin-bottom: 60px;

}
  .Cta .moving-text .move-with-scroll{
    font-size: 82px !important;
    margin-bottom: -20px;
    background: none;
    color: #fff;
    background-clip: unset;
    -webkit-background-clip: unset;
    mix-blend-mode: overlay;
  }

  .Cta .myrow .col-6{
    position: relative;
    z-index: 9;
    width: 50%;
  }

  .Cta .myrow .col-6 h2{
    font-size: 42px !important;
    color: var(--color-white);
    font-family: var(--heading-font) !important;
    margin-bottom: 20px;
  }
  .Cta .myrow .col-6 p{
    font-family: var(--heading-font) !important;
    color: var(--color-white);
    margin-bottom: 40px;
  }

  .sales-area {
    padding: 60px 0;
    background-color: #e4eaec;
  }
  .sales-area .mycontainer{
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .sales-area .mycontainer h2{
    width: 60%;
    margin: auto;
    font-family: var(--heading-font) !important;
    font-size: 90px !important;
    font-weight: 800;
    color: #2a3037;
    line-height: 20rem;
    margin-top: -60px;
    text-transform: uppercase;
  }
  .sales-area .mycontainer p{
    font-family: var(--heading-font) !important;
    line-height: 24px;
    color: #6a6a6a;
    margin-bottom: 40px;
  }
  .sales-area .mycontainer a{
    border-color: var(--primary-color);
    color: #2a3037;
    font-weight: 800;
  }
  .sales-area .images {
    width: 300%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2%;
    margin-left: -10%;
    animation: move 10s linear infinite;
  }
@keyframes move{
    0%{
        margin-left: -10%;;
    }
    100%{
        margin-left: -90%;;
    }
}
  .sales-area .images a{
    width: 30%;
  }
  .sales-area .images img{
    width: 200px;
  }
.sales-area .images a:nth-child(1) img{
    width: 320px;
    margin-top: 20%;
}
.sales-area .images a:nth-child(2) img{
    width: 520px;
}
.sales-area .images a:nth-child(3) img{
    width: 380px;
    margin-top: 30%;
}
.sales-area .images a:nth-child(4) img{
    width: 380px;
    margin-top: -50px;
}
.sales-area .images a:nth-child(5) img{
    width: 480px;
    margin-top: 25%;
}
.map iframe {
    width: 100%;
    height: 100vh;
    -webkit-filter:  grayscale(1) invert(1); /* Safari 6.0 - 9.0 */
    filter: grayscale(1) invert(1);
    margin-bottom: -5px;
}
.map .content {
    position: absolute;
    left: 6%;
    top: 25%;
    width: 450px;
    padding: 60px 60px 120px 40px;
    z-index: 9;
    background-color: #ffffffcc;
}

.map .content h2 {
    font-family: var(--heading-font) !important;
    font-weight: 800;
    color: #2a3037;
    margin-bottom: 20px;
    font-size: 24px;
}
.map .content p {
    font-family: var(--heading-font) !important;
    color: #6a6a6a;
    margin-bottom: 60px;
}
.map .content .greybox{
    padding: 15px;
    background-color: #353c44;
    margin-bottom: -50%;
}
.map .content .greybox h3 {
    font-family: var(--heading-font) !important;
    color: var(--color-white);
    font-weight: 600;
    font-size: 12px !important;
    margin-bottom: 20px;

}
.map .content .greybox p{
    margin-bottom: 15px;
    color: var(--color-white);
    font-size: 12px !important;
    font-weight: 700;
}
section.contact {
    padding: 60px 0;
    background-color: #121414;
    padding-left: 8%;
}
section.contact .col-6{
    width: 50%;
}

section.contact .col-6 img {
    height: 600px;
    object-fit: cover;
}

section.contact .col-6 h2{
    font-family: var(--heading-font) !important;
    font-weight: 800;
    -webkit-text-stroke: 1px var(--color-white);
    color: transparent;
    font-size: 90px !important; 
    margin-bottom: 40px;
}
section.contact .col-6 h3{
    font-family: var(--heading-font) !important;
    color: var(--color-white);
    font-size: 14px !important;
    margin-bottom: 20px;
}
section.contact .col-6 p {
    width: 130px;
    font-family: var(--heading-font) !important;
    color: var(--color-white);
    font-size: 12px !important;
    margin-bottom: 40px;
}
section.contact .col-6 a {
    border-color: var(--primary-color);
    padding: 8px 15px;
    font-weight: 700;
    font-size: 10px !important;
}
footer{
    padding: 60px 0;
    background-color: #e8eaec;
}
footer .myrow {
    align-items: flex-start;
}
footer .col img{
    mix-blend-mode: darken;
    width: 160px;
    margin-bottom: 15px;
    margin-left: -20px;
}
footer .social{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .social i {
    width: 30px;
    color: #5d5d5d;
}
footer .col h3{
    font-family: var(--heading-font) !important;
    font-weight: 800;
    font-size: 14px !important;
}
footer .col ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}
footer .col ul li a{
    font-family: var(--heading-font) !important;
    font-size: 12px !important;
    color: #414243;
}


/************************** About Page Styling **********************************/

.about-page section.hero{
    height: 600px;
    margin-top: 45px;
}
.about-page section.about .col-4{
    padding-right: 40px;
}
.home section.about .col-8{
    padding-right: 40px;
}
.about-page section.about .col-4 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.home section.about .col-4 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.about-page section.about .myrow .col-4{
    width: 50%;
}
.home section.about .myrow .col-4{
    width: 50%;
}
.home section.about .myrow .col-8 p{
    margin-bottom: 30px;
}
.home section.about .myrow .col-8 ul p{
    margin-bottom: 20px;
}
.home section.about .myrow .col-8 ul{
    margin-bottom: 40px;
   
}
.home section.about .myrow .col-8 ul li{
    list-style: circle;
    margin-left: 30px;
}
.paragraph{
    padding: 60px 0;
}
.paragraph p{
    font-family: var(--heading-font) !important;
    font-size: 28px !important;
    color: #414243;
    text-align: center;
    width: 70%;
    margin: auto;
}

.about-page section.Cta .mycontainer .mycontainer {
    padding: 0;
}

section.Cta .mycontainer h4.accordion-title {
    position: relative;
    font-family: var(--heading-font) !important;
    font-size: 32px !important;
    color: #d3d3d3;
    margin-bottom: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
section.Cta .mycontainer h4.accordion-title::before{
    content: "";
    position: absolute;
    top: 48%;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #0083a5;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
section.Cta .mycontainer h4.accordion-title.open{
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 25px !important;
}
section.Cta .mycontainer h4.accordion-title.open::before{
    width: 150%;
}
section.Cta .mycontainer .accordion-content p{
    color: #fff;
    font-size: 18px !important;
    font-family: var(--heading-font) !important;
    margin-bottom: 40px;
}
section.values{
    padding: 60px 0 60px 10%;
    background-color: #292f36;
    margin-right: -20%;
}
section.values .card-value {
    background-color: rgba(82, 87, 89, .5);
    margin: 15px;
}

section.values .card-value .content {
    padding: 30px;
}
.card-value .content .number{
    font-family:var(--heading-font) !important;
    color: #fff;
}
.card-value .content h4{
    font-family:var(--heading-font) !important;
    font-size: 32px !important;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.card-value .content p{
    font-family:var(--heading-font) !important;
    color: #fff;
    line-height: 26px;
}
.owl-dots{
    display: none;
}
.owl-mynav{
    text-align: left !important;
    padding-left: 20px;
    margin-top: 20px;
}
.owl-theme .owl-mynav button span{
    padding: 10px 22px 14px !important;
    border-radius: 50% !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    font-size: 32px !important;
}

/************************** FAQ Page Styling **********************************/

.faq-page section.hero{
    height: 600px;
    margin-top: 45px;
}
.hero{
    background: url("https://demo-l.ink/propsparks/public/storage/custom-images/hero-bg.jpg") no-repeat center;
}
section.faqs {
    padding: 60px 0;
}
section.faqs2 {
    padding: 0 0 60px 0;
}

section.faqs .col-6{
    width: 100%;
}
section.faqs .col-6 h2{
    font-family:var(--heading-font) !important;
    font-size: 36px !important;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}
section.faqs .col-6 h3{
    font-family:var(--heading-font) !important;
    font-size: 20px !important;
    color: #000000;
    margin-bottom: 40px;
    font-style: italic;
}
section.faqs .col-6 h4.accordion-title{
    font-family:var(--heading-font) !important;
    font-size: 18px !important;
    color: #000;
    margin-bottom: 40px;
    font-weight: 600;
    border-bottom: 2px solid #f3f3f3;
    padding-bottom: 20px;
}
section.faqs .col-6 h4.accordion-title.open{
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: none;
    padding-bottom: 0px;
}
section.faqs .col-6 .accordion-content p{
    color: #000;
    font-family: var(--heading-font) !important;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #e7e7e7;
}
/* section.faqs2 img{
    width: 80%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}
section.faqs2 p{
    font-family:var(--heading-font) !important;
    font-size: 14px;
    line-height: 24px;
    padding-left: 40px;
}
section.faqs2 .myrow .col-6{
    width: 50%;
}
section.faqs2 .myrow .col-6 img{
    width: 100%;
    height: 500px;
} */
.ck-content ul {
    list-style-type: disc;
    padding-left: 40px;
    
}
.ck-content ul li{
    list-style-type: circle;
}
.ck-content ul li p{
    margin-bottom: 20px;
}
/************************** Purpose Page Styling **********************************/

.purpose-page section.hero{
    height: 600px;
    margin-top: 45px;
}
.mission {
    padding: 60px 0;
}
.mission .col-6{
    width: 50%;
}
.mission .col-6 img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.mission .col-6:nth-child(2){
    padding: 7%;
}
.mission .col-6:nth-child(2) h2{
    font-family:var(--heading-font) !important;
    font-size: 42px !important;
    margin-bottom: 15px;
}
.mission .col-6:nth-child(2) p{
    font-family:var(--heading-font) !important;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333333;
    font-size: 18px !important;
}
.mission .col-6:nth-child(2) ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mission .col-6:nth-child(2) ul li{
    font-family:var(--heading-font) !important;
    color: #333333;
}
.vission{
    padding: 0 0 60px;
}
.vission .col-6:nth-child(1) {
    padding: 7%;
}
.vission .col-6:nth-child(1) h2{
    font-family:var(--heading-font) !important;
    font-size: 42px !important;
    margin-bottom: 15px;
}
.vission .col-6:nth-child(1) p{
    font-family:var(--heading-font) !important;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333333;
    font-size: 18px !important;
}
.vission .col-6:nth-child(1) ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.vission .col-6:nth-child(1) ul li{
    font-family:var(--heading-font) !important;
    color: #333333;
}
.vission .col-6{
    width: 50%;
}
.vission .col-6 img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
/************************** blogs Page Styling **********************************/
.blogs-page section.hero{
    height: 600px;
    padding-top: 10%;
}
/************************** News Page Styling **********************************/
section.news{
    padding: 60px 0;
}
section.news .col-4{
    width: 33%;
    margin: 10px;
    box-shadow: 0px 0px 15px 0px #d8d8d8ab;
}
section.news .col-4 .card-value{
    padding: 10px;
    border: 1px solid #f3f3f3;
}
section.news .col-4 .card-value img{
    width: 100%;
    margin-bottom: 10px;
}
section.news .col-4 .card-value .content{
   padding: 20px;
 
}
section.news .col-4 .card-value .content .number{
    font-family: var(--heading-font) !important;
    color: #474747;
}
section.news .col-4 .card-value .content h4{
    font-family: var(--heading-font) !important;
    color: #474747;
}
section.news .col-4 .card-value .content p{
    font-family: var(--heading-font) !important;
    color: #474747;
}
body.contact-page section.hero{
    height: 600px;
    margin-top: 45px;
}
body.contact-page section.hero h1{
   margin-bottom: 0;
}
body.contact-page .news .card-value{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    height: 180px;
    justify-content: center;
    background-color: #000;
    border-radius: 20px;
}
body.contact-page .news .card-value i{
    color: #ffffff;
    font-size: 32px !important;
    margin-bottom: 20px;
}
body.contact-page .news .card-value a{
    color: #ffffff;
    font-family: var(--heading-font) !important;
    font-size: 18px !important;
    font-weight: 600;
    text-align: center;
}
section.contacts{
    padding: 0 0 60px 0;

}
section.contacts .mycontainer .myrow{
    border-radius: 20px;
    /* box-shadow: 0px 0px 20px 0 #a8a8a8d5; */
    padding: 30px;
}
section.contacts .mycontainer .myrow h2{
    font-family: var(--heading-font) !important;
}

section.contacts .mycontainer .myrow form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
}
section.contacts .mycontainer .myrow form input, section.contacts .mycontainer .myrow form textarea{
    width: 100%;
    padding: 10px;
    font-family: var(--heading-font) !important;
    margin-bottom: 10px;
    font-weight: 600;
    border-radius: 10px;
    outline: none;
    border: 1px solid #b6b6b6;
}
body.contact-page .contacts .col-6{
    width: 50%;
    padding: 20px;
}
body.contact-page .contacts .col-6 iframe{
    width: 100%;
    height: 300px;
    border-radius: 20px;
}
body.contact-page header{
    background-color: #000;
}
body.contact-page header .logo img {
    mix-blend-mode: normal;
}

/************************** Properties Page Styling **********************************/

.properties-page header{
    background-color: #000;
}
*:has(+ .properties-page) {
    position: relative !important;
    background-color: #000;
  }
  *:has(+ .properties-page) .logo img{
    filter: brightness(0) invert(1) !important;
    mix-blend-mode: normal;
  }
.properties-page header .logo img {
    mix-blend-mode: normal;
}
.properties-page .listing-detail{
    width: 70%;
    margin: 30px 0;
}
.properties-page .properties{
    width: 35%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
.property{
    box-shadow: 0px 0px 20px 0px #c9c9c9d8;
    margin-bottom: 15px;
}
.property .property-header{
    display: flex;
    padding: 20px;
    justify-content: space-between;
    font-family: var(--heading-font) !important;
    font-weight: 600;
    border: 1px solid #e4e4e4d3;
    font-size: 14px !important;
}
.property .property-image{
    width: 48%;

}
.property .property-image img{
    width: 100%;
    height: 430px;
    object-fit: cover;
}
.property .content{
    width: 100%;
    font-family: var(--heading-font) !important;
    line-height: 28px;
    font-size: 14px !important;
}
.property .content .user{
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
}
.property .content .user img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50px;
}
.listing-detail{
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
.listing-detail h2{
    font-family: var(--heading-font) !important;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 32px;
}
.listing-detail h3{
    font-family: var(--heading-font) !important;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}
.listing-detail img{
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.listing-detail .description{
    font-family: var(--heading-font) !important;
    line-height: 28px;
    padding: 30px;
}
.listing-detail table{
    width: 95%;
    margin: auto;
    border-collapse: collapse;
    border: 1px solid #ccccccbb;
    margin-bottom: 30px;
}
.listing-detail table tr{
    border-bottom: 1px solid #ccccccbb;
}
.listing-detail table tr:nth-child(1){
    background-color: #ccccccbb;
}
.listing-detail table tr th, .listing-detail table tr td {
    padding: 14px 0;
    text-align: center;
}
.listing-detail iframe{
    width: 100%;
    height: 400px;
    filter: grayscale(1) invert(1);
}
.purpose-page section.about .myrow .col-4 {
    width: 50%;
}
.purpose-page section.about .col-4 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.purpose-page section.about .col-4 {
    padding-right: 40px;
}

.owl-nav.disabled {
    display: none;
}

.flat-location .swiper img {
    max-height: 550px;
    height: 300px;
}
.flat-slider-detail-v1 {
    margin-bottom: 5% !important;
}
.post-author {
    display: none;
}span.date-post {
    color: #fff;
}
.card-value .content .title {
    margin: 20px 0;
}
a.btn-read-more {
    width: 150px;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    padding: 9px;
    margin-top: 20px;
}
section.values .card-value .content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}
a.w-100.text-truncate{
    color: #fff !important;
}
section.values .card-value .content a.btn{
    width: 200px;
    margin-top: 30px;
}
section.values .card-value .content a.btn:hover{
    color: #fff;
}
a.w-100.text-truncate {
    color: #000;
}
.blog-tag {
    background-color: #000000;
}
.flat-tab.flat-tab-form {
    z-index: 99;
}
.properties-page .col-6.properties section.flat-section.flat-recommended.wow.fadeInUpSmall.animated.animated .archive-top {
    display: flex;
}
.properties-page .col-6.properties section.flat-section.flat-recommended.wow.fadeInUpSmall.animated.animated .homeya-box .images-group {
    width: 40%;
}
.properties-page .col-6.properties section.flat-section.flat-recommended.wow.fadeInUpSmall.animated.animated .homeya-box .images-group img {
    height: 230px;
    object-fit: cover;
}
.properties-page .col-6.properties section.flat-section.flat-recommended.wow.fadeInUpSmall.animated.animated .for-merge {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.properties-page .col-6.properties .row.row-cols-1.row-cols-sm-2.row-cols-md-2.row-cols-xl-3 .archive-top {
    display: flex;
}
.properties-page .col-6.properties .row.row-cols-1.row-cols-sm-2.row-cols-md-2.row-cols-xl-3 .homeya-box .images-group {
    width: 40%;
}
.properties-page .col-6.properties .row.row-cols-1.row-cols-sm-2.row-cols-md-2.row-cols-xl-3 .homeya-box .images-group img {
    height: 230px;
    object-fit: cover;
}
.properties-page .col-6.properties .row.row-cols-1.row-cols-sm-2.row-cols-md-2.row-cols-xl-3 .for-merge {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
ul.nav-tab-recommended.justify-content-center {
    margin-bottom: 30px;
    margin-top: -15px;
}
.properties-page .single-property-overview.single-property-element {
    padding: 30px;
    margin-bottom: 0;
}
a#float-goto-btn {
    background: #037fa2;
    width: 180px;
    text-align: center;
    padding: 8px;
    border-radius: 20px;
    position: absolute;
    top: 20px;
    right: 3%;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    padding: 8px 24px;
    z-index: 999;
}
.tf-btn.primary:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.tf-btn.primary, .tf-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.wd-find-select {
    border-radius: 20px;
}
.wd-find-select .tf-btn {
    border-radius: 0 20px 20px 0;
}
.btn:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.header-property-detail .content-bottom .info-box p.meta-item {
    margin-bottom: 0;
}
span.ms-1 {
    color: #fff !important;
}
section.hero .wd-find-select {
    background-color: hsla(0, 0%, 100%, .1);
}
section.hero .form-group-1.search-form.form-style{
    background-color: transparent;

}
section.hero .wd-find-select .inner-group .form-style .form-control {
    background: transparent;
}
section.hero .wd-find-select .inner-group .form-style label, section.hero .wd-find-select .inner-group .form-style .form-control,section.hero .wd-find-select .inner-group .form-style .form-control::placeholder, section.hero .wd-find-select .inner-group .form-style .nice-select {
    color: #fff !important;
}
section.hero .wd-find-select .inner-group .form-style .nice-select {
    background: transparent;
}
section.hero svg.icon.svg-icon-ti-ti-current-location path {
    stroke: #fff;
}
section.hero .nice-select:after {
    border-bottom: 1.7px solid #ffffff;
    border-right: 1.7px solid #ffffff;
}
section.hero .wd-find-select .inner-group .box-filter .filter-advanced {
    color: #ffffff;
}

body[id="page-22"] main.properties-page .wd-search-form {
    position: relative;
    display: block !important;
}
body[id="page-22"] main.properties-page .group-box.group-price {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}
body[id="page-22"] main.properties-page .widget-price{
    width: 50%;
}
body[id="page-22"] main.properties-page .wd-search-form .box-title-price{
    flex-direction: column;
}
span.ms-1 {
    color: #000000;
}
body[id="page-22"] main.properties-page .wd-search-form .group-select {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
body[id="page-22"] main.properties-page .box-select {
    width: 47%;
}
body[id="page-22"] main.properties-page button.tf-btn.primary.search-box-offcanvas-button{
    display: block !important;
    margin-top: 20px;
}
svg.icon{
    color: var(--primary-color) !important;
}
.contact-info .box .box-social .item:hover svg path {
    fill: unset !important;
}
a.item:hover svg.icon{
    color: #fff !important;
}
@media screen and (max-width:1366px){
    .properties-page .properties{
        width: 40%;
    }
}
.banner-video{
    position: relative;
    z-index: 9;
}
a.btn-video {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 90px;
 
}


.post-author a:hover, .post-author span:not(:first-child) a:hover, .post-navigation a:hover, .single-detail.ck-content a:hover, .single-property-contact .box-avatar a:hover, .title a:hover {
    color: #fff;
}
section.hero .content {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.item:hover .icon, .box-icon.social .icon, .homeya-box .images-group .box-icon.w-32 .icon, .navigation:hover .icon {
    color: #fff !important;
}
.single-property-floor .floor-item .faq-body .box-img {
    padding: 0;
}
.single-property-floor .floor-item .faq-body .box-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.single-property-overview.single-property-element {
    overflow: hidden;
    padding: 20px;
}
.info-box {
    padding-bottom: 18px;
}
section.hero .content h1:last-child {
    width: 100%;
}
.flat-blog-detail a.box-icon.w-40.social.square svg.icon {
    color: var(--primary-color) !important;
}
section.flat-section.flat-latest-post .card-value .content * {
    color: #000 !important;
}
section.flat-section.flat-latest-post .card-value .content a.btn{
    border-color: #000 !important;
    width: 150px;
}
section.flat-section.flat-latest-post .owl-stage-outer .card-value{
    margin: 0 20px;
}
section.flat-section.flat-latest-post .card-value img{
    height: 250px;
}
section.sales-area section.flat-section-v5.bg-surface.flat-recommended.flat-recommended-v2 {
    background: transparent;
    padding:  0 !important;
}
section.sales-area section.flat-section-v5.bg-surface.flat-recommended.flat-recommended-v2 .property-item.homeya-box {
    background: #fff;
}
section.sales-area section.flat-section-v5.bg-surface.flat-recommended.flat-recommended-v2 .row.wow.fadeInUpSmall.animated.animated {
    flex-wrap: nowrap;
}
section.sales-area section.flat-section-v5.bg-surface.flat-recommended.flat-recommended-v2 {
    animation: moves linear infinite;
    animation-duration: 10s;
}
@keyframes moves {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-150%);
    }
}
span.cat-tabs {
    font-size: 11px;
    padding: 3px 6px;
    background: #037fa2;
    border-radius: 14px;
    white-space: nowrap;
    color: #fff;
}
.close {
   display: none;
}
.nav-icon {
   display: none;
} 
.box-img {
    position: relative;
}
button.box-icon.w-52.att_wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 10px;
    border: none;
}
div#map {
    filter: grayscale(1) invert(1);
}
div.inquire_now a {
    color: #037fa2;
    font-weight: 700;
    margin-bottom:15px;
}
.text-1.name a {
    color: #000;
}
.inquire_now {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 1024px){
    .myicon-list{
        display: none;
    } 
    .mycontainer {
        padding: 0 5%;
    }
    .topbar ul {
        gap: 10px;
    }
    .topbar .d-flex.align-items-center > a {
        font-size: 12px;
    }
    .scroll {
        bottom: 4%;
        font-size: 12px;
        right: 5%;
    }
    .mynav {
        position: fixed;
        height: 100vh;
        width: 80%;
        background: #000;
        top: 0;
        right: -100%;
        padding: 30px;
        transition: all 0.5s ease-in-out;
        padding-top: 20%;
    }
    .mynav ul {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
        height: 60%;
    }
    section.hero{
        height: 980px;
    }
    section.hero .content h1 {
        font-size: 38px !important;
        margin-top: 40%;
        margin-bottom: 0;
        text-transform: uppercase;
    }
    section.hero .content {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin: 30px 0;
    }
    header .logo img {
        width: 160px;
    }
    .nav-icon{
        display: block;
    }
    .nav-icon i {
        color: #fff;
        font-size: 22px;
    }    
    .moving-text h2 {
        font-size: 26px !important;
    }
    .moving-text6 h2 {
        font-size: 26px !important;
    }
    .myrow {
        flex-direction: column;
    }
    .about .myrow .col-4 {
        width: 105%;
    }
    .about .myrow .col-8 {
        width: 100%;
        margin-bottom: 40px;
    }
    .col-8 h2 {
        font-size: 42px !important;
        margin-top: 40px;
    }
    .Cta .moving-text .move-with-scroll {
        font-size: 32px !important;
    }
    .Cta .myrow .col-6 {
        width: 100%;
    }
    .Cta .myrow .col-6 h2 {
        font-size: 32px !important;
    }
    .sales-area .mycontainer h2 {
        width: 100%;
    }
    .sales-area .mycontainer h2 {
        font-size: 36px !important;
    }    
    .flat-recommended-v2 {
        margin-top: 0px;
    }
    .sales-area .mycontainer h2 {
        line-height: 6rem;
        margin: 30px 0 !important;
    } 
    .map .content {
        width: 250px;
        padding: 20px;
    }
    .map .content h2 {
        font-size: 22px !important;
    }
    .map .content p {
        margin-bottom: 30px;
    }
    section.contact .col-6 {
        width: 100%;
        padding-bottom: 30px;
    }
    section.contact .col-6 h2 {
        font-size: 42px !important;
    }    
    section.contact {
        padding-left: 4%;
    }
    section.contact .col-6 img {
        height: 300px;
        object-fit: cover;
    }
    .footer .content-footer-bottom .menu-bottom a {
        font-size: 12px;
    }
    header .myrow {
        flex-direction: row;
    }
    .mynav .my-custom-menu > li:last-child > a {
        padding: 8px 30px;
    }
    .close {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 22px;
        color: #fff;
        display: block;
    }
    .blogs-page section.hero {
        height: 400px;
    } 
    section.hero .content h1 {
        margin-top: 0%;
        width: 100%;
    }
    li.hover-mydropdown ul {
        width: 200px;
    }
    .paragraph {
        padding: 20px 0 60px;
    }
    .paragraph p {
        font-size: 18px !important;
        width: 100%;
    }
    section.Cta .mycontainer h4.accordion-title {
        font-size: 20px !important;
    }  
    section.Cta .mycontainer h4.accordion-title.open::before {
        width: 100%;
    }
    
    section.Cta .mycontainer .accordion-content p {
        line-height: 18px;
        font-size: 14px !important;
    }
    .owl-carousel .owl-item img {
        height: 220px;
    }
    .card-value .content .title {
        font-size: 20px;
    }
    .card-value .content p {
        font-size: 12px;
    }
    section.values .card-value .content {
        padding: 20px;
    }
    section.faqs .col-6 h2 {
        font-size: 20px !important;
    }
    .mission .col-6 {
        width: 100%;
    }
    .mission .col-6 img {
        height: 300px;
    } 
    .mission .col-6:nth-child(2) h2 {
        font-size: 28px !important;
        margin-top: 30px;
    } 
    .mission .col-6:nth-child(2) p {
        font-size: 16px !important;
    }
    .vission .col-6 {
        width: 100%;
    }
    .vission .col-6:nth-child(1) h2 {
        font-size: 28px !important;
    }
    .vission .col-6 img {
        height: 300px;
    }
    section.vission .myrow {
        flex-direction: column-reverse;
    }
    a.btn-video {
        top: 38%;
        left: 42%;
        font-size: 49px;
    }
    .vission {
        padding: 0 0 25px;
    }
    .about {
        padding: 25px 0;
    }
    .properties-page .properties {
        width: 100%;
    }
    .properties-page .listing-detail {
        width: 100%;
        margin: 0px 0;
    }
    section.listings .myrow {
        flex-direction: column-reverse;
    }
    .listing-detail h2 {
        font-size: 18px !important;
        margin-top: 100px;
    }
    .listing-detail h3 {
        font-size: 28px !important;
    }
    h2.section-title {
        font-size: var(--h4-size);
    }
    .single-property-contact .box-avatar .name a {
        color: #000 !important;
    }
    li.hover-mydropdown ul {
        height: auto;
        background: #000;
        z-index: 999;
    }
    .single-property-overview .info-box .item {
        width: 100%;
    }
    .process {
        justify-content: center;
    }       
}
@media screen and (max-width:600px) {
    .blogs-page section.hero {
        padding-top: 25%;
    }
}
a.btn_grey {
    color: #9b9b9b !important;
}
a.undefined {
    color: #9b9b9b !important;
}



