/* Adding Font */
@font-face {
    font-family: Poppins;
    src: url('../fonts/Poppins-Regular.ttf');
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Poppins;
}
body{
    background-color: var(--white);
}

:root{
    --primarycolor: #d4ae55;
    --white: #f8f8f8;
    --black: #050505;
    --gray: rgba(0, 0, 0, 0.705);
    --footercolor: #303441;
    --lightblack: rgba(0, 0, 0, 0.9);
}

.logo{
    width: 100px;
}

/* ========= Button Styling Start ========= */

.button-sm{
    background-color: var(--primarycolor);
    color: var(--white);
    padding: 5px 20px;
    border: 1px solid var(--primarycolor);
    border-radius: 5px;
    font-weight: bold;
}
.button-sm:hover{
    background-color: var(--white);
    color: var(--primarycolor);
    border: 1px solid var(--primarycolor);
    border-radius: 5px;
}


.button{
    background-color: var(--primarycolor);
    color: var(--white);
    padding: 15px 20px;
    border: 1px solid var(--primarycolor);
    border-radius: 5px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}
.button::after{
    content: '';
    width: 0%;
    height: 0%;
    left: 0px;
    top: 0px;
    position: absolute;
    transition: .5s all;
}

/* .button:hover.button::after{
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    content: '';
    opacity: 0.5;
    background-color: var(--primarycolor);
} */
.button:hover{
    background-color: var(--white) !important;
    color: var(--primarycolor);
    border: 1px solid var(--primarycolor);
    border-radius: 5px;
}
.button > i{
    position: relative;
    margin-left: 0px;
    transition: .5s all;
}
.button:hover > i{
    margin-left: 10px;
}
/* ========= Button Styling End ========= */

a{
    text-decoration: none;
}

/* Form Styling Start Here */
.form-select:focus {
    border: 1px solid #ced4da;
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    border: 1px solid #ced4da;
    outline: 0;
    box-shadow: none;
}

/* Form Styling End Here */


/* ========= Navbar Styling Start Here ========= */

/* Navbar Styling */
.navbar{
    background-color: var(--white);
    padding: 0px !important;
    transition: .5s all;
}

.navbar.scroll{
    background-color: var(--primarycolor);
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 9999;
}
.navbar.scroll .nav-link, .navbar.scroll .dropdown .nav-link{
    color: var(--white) !important;

}
.navbar.scroll .nav-link:hover{
    color: var(--white) !important;
}
.active{
    color: var(--primarycolor) !important;
}

.nav-item{
    margin: auto 10px;
    border-radius: 5px;
}
.nav-item:hover, .nav-item:hover > .nav-link{
    color: var(--primarycolor) !important;
}

/* Dropdown on Hover */
.dropdown:hover > .dropdown-menu{
    display: block;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: var(--primarycolor) !important;
    color: var(--white) !important;
}


/* Mega Drop Down */
.mega-dropdown{
    width: 800px;
    position: absolute;
    right: 0%;
    padding: 10px;
}
.mega-dropdown h6{
    padding-left: 15px;
    font-weight: bold !important;
    color: var(--primarycolor);
}
.mega-dropdown .dropdown-item{
    font-size: 1rem !important;
}

.mega-dropdown-2{
    width: 500px;
    position: absolute;
    left: 0%;
    padding: 10px;
}
.mega-dropdown-2 h6{
    padding-left: 15px;
    font-weight: bold !important;
    color: var(--primarycolor);
}
.mega-dropdown-2 .dropdown-item{
    font-size: 1rem !important;
}


/* Media Quries */
@media (max-width: 991px) {
    .mega-dropdown, .mega-dropdown-2{
        width: 100%;
    }
    .navbar.scroll{
        background-color: var(--primarycolor);
        width: 100%;
        position: fixed;
        transition: .5s all;
        top: 0px;
        z-index: 9999;
        max-height: 500px;
        overflow-y: scroll;
    
    }
}

/* ========= Navbar Styling End Here ========= */


/* Navbar 2 Styling Start Here */
.navicon > a{
    width: 40px;
    height: 40px;
    border: 1px solid var(--primarycolor);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}
.navicon > a:hover{
    background-color: var(--primarycolor);
}
.navicon > a > i{
    color: var(--primarycolor);
}
.navicon > a:hover > i{
    color: var(--white);
}

.navbar-2{
    background-color: var(--primarycolor);
}
.navbar-2 .navbar-nav .nav-link{
    padding-top: 20px;
    padding-bottom: 20px;
    color: var(--white) !important;
}
.navbar-2 .navbar-nav .nav-item .nav-link{
    padding-left: 5px;
    padding-right: 5px;
}
.navbar-2 .navbar-nav .nav-link:hover,
.navbar-2 .navbar-nav .active > .nav-link{
    color: var(--primarycolor) !important;
    background-color: var(--white);
}
.navbar-toggler{
    margin-top: 20px;
    margin-bottom: 20px;
}
.navbar-toggler{
    border:none;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.toogle{
    color: var(--white) !important;
    font-size: 40px;
}
/* Navbar 2 Styling End Here */

/* ========= Home Page Main Heading Styling Start Here ========= */
.mainheading{
    border-left: 15px solid var(--primarycolor);
    padding-left: 30px;
}
.mainheading > p{
    text-transform: uppercase;
    font-size: 1.3rem;
}
.mainheading > h1{
    color: var(--primarycolor);
    text-transform: uppercase;
    font-weight: bolder;
    margin-top: -20px;
}
/* ========= Home Page Main Heading Styling End Here ========= */

/* ========= Sub Heading Styling Start Here ========= */

.heading{
    text-align: center;
}
.heading h3{
    font-weight: bold;
}
.heading h3>span{
    color: var(--primarycolor);
}

/* =========== Sub Heading Styling End Here =========== */

/* =========== Menu Section Styling Start ========== */
menu.mainmenu{
    width: 100%;
    height: 550px;
    background: linear-gradient( to left, rgba(0, 0, 50, .5), rgba( 0, 0, 50,.5)), url("../images/bg-img/home-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

menu.mainmenu> div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: inherit;
}
menu.mainmenu> div > h1, menu> div > p{
    color: var(--white);
}


/* Home Icon Start Here */

.homeicon{
    background-color: transparent;
    margin: 10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s all;
    margin-top: 20px;
}
.homeicon:hover{
    background-color: var(--primarycolor);

}
.homeicon > a{
    font-size: 2rem;
    color: var(--primarycolor);
    padding: 15px;
}
.homeicon:hover > a{
    color: var(--white);
}
/* Home Icon End Here */

.locationSearchDiv{
    position: absolute;
    bottom: -50px;
}
.locationsearch{
    background-color: var(--white);
    padding: 10px 30px;
    border-radius: 10px;
}

menu.submenu{
    width: 100%;
    height: 300px;
    background: linear-gradient( to left, rgba(0, 0, 50, .5), rgba( 0, 0, 50,.5)), url("../images/bg-img/home-bg2.jpg");
}
menu.submenu > div{
    padding-top: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.submenu h1{
    color: var(--primarycolor);
    font-weight: bolder;
}
.breadcrumb-item > a{
    color: var(--primarycolor) !important;
}
li.breadcrumb-item.active{
    color: var(--white) !important;
}


/* Section STart Here */
.sectiondetail{
    text-align: center;
    display: grid !important;
    position: relative;
    transition: .5s all;
    background-size: cover;
    background-position: center;
}
.sectiondetail:hover{
    /* background-position: center;
    background-size: cover; */
    background-repeat: no-repeat;
}
.sectiondetail1:hover{
    background: linear-gradient(rgba(212, 174, 85, 0.9), rgba(212, 174, 85, 0.7)) , url('../images/property/p-1.png');
}
.sectiondetail2:hover{
    background: linear-gradient(rgba(212, 174, 85, 0.9), rgba(212, 174, 85, 0.7)) , url('../images/property/p-2.png');
}
.sectiondetail3:hover{
    background: linear-gradient(rgba(212, 174, 85, 0.9), rgba(212, 174, 85, 0.7)) , url('../images/property/p-3.png');
}
.sectiondetail4:hover{
    background: linear-gradient(rgba(212, 174, 85, 0.9), rgba(212, 174, 85, 0.7)) , url('../images/property/p-4.png');
}

.deatildicondiv{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    border: 1px solid var(--primarycolor);
    background-color: var(--white);
    transition: .2s all;
}
.deatildicondiv > i{
    font-size: 2rem;
    color: var(--primarycolor);
}
.sectiondetail:hover .deatildicondiv{
    background-color: var(--black);
    border: 4px solid var(--primarycolor);
}
.sectiondetail:hover .deatildicondiv > i{
    color: var(--white);
}
.content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 50px;
}

.content > h5{
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primarycolor);
}
.sectiondetail:hover .content > h5{
    color: var(--black);
}
.content > span{
    width: 100px;
    height: 3px;
    display: block;
    background-color: var(--primarycolor);
    border-radius: 3px;
}
.sectiondetail:hover .content > span{
    background-color: var(--white);
}
.sectiondetail:hover .content > p, .sectiondetail:hover .content > h6{
    color: var(--white);
}
.content > .pdeatoil{
    font-size: 1rem;
    color: var(--gray);
}
/* Section End Here */


/* Countup Section Start Here */
.countupdiv{
    background:  linear-gradient(rgba(0,0,0,.7), rgba(0, 0, 0, .5)), url('../images/property/p-5.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.aboutproperty{
    text-align: center;
}
.aboutproperty > i{
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primarycolor);
}
.aboutproperty > h4{
    text-transform: uppercase;
    color: var(--primarycolor);
}
.aboutproperty > h1{
    color: var(--primarycolor);
    font-weight: bolder;
    color: var(--white);
}
/* Countup Section End here */

/* ========== Home Page Styling Start Here ========== */

/* ========== Home Page 2 Styling Start Here ========== */
.mainmenumap{
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.mainmenumap .map{
    position: absolute;
    width: 100%;
    height: 100%;
}

.mainmenumap > form{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.26);

}

.filterpropertyform{
    background-color: var(--white);
    /* min-height: 200px; */
    border-radius: 5px;
    padding: 10px;
}

.chooseus2{
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,0.5)), url('../images/property/p-6.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    background-attachment: fixed;
}

/* ========== Home Page 2 Styling End Here ========== */

/* Partner Styling Start */
.partnerslider .item img{
    width: 100px !important;
    margin: auto;
    filter: opacity(50%);
    transition: .2s;
}
.partnerslider .item:hover img{
    filter: opacity(100%);
    transform: scale(1.2);
}
/* Partner Styling End */

/* Testimonial Section Styling Start Here */
.messagediv{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/property/p-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.msg{
    background-color: #d4ae55b7;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 20px;
}
.item > div{
    margin: auto;
    text-align: center;
}
.clintimage{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.cname{
    color: var(--white);
}
.cname:hover{
    color: var(--primarycolor);
}
.star{
    justify-content: center;
}
.star > i{
    color: var(--primarycolor);
}
.cdiscrption{
    /* color: var(--gray) !important; */
    color: var(--white);
}

/* Testmonial Section Styling End Here */

/* ========== Home Page Styling End Here ========== */


/* ========== About Page Styling Start Here ========== */
.name{
    font-weight: bold;
    text-transform: uppercase;
    background: none !important;
}
.name > span:nth-child(1){
    color: var(--black);
    margin-right: 5px;
    text-decoration: underline;
}
.name > span:nth-child(2){
    color: var(--primarycolor);

}

.about p{
    color: var(--gray);
}

/* Choose Us Styling Start */
.white{
    color: var(--white);
}
.chooseusdiv{
    background: linear-gradient( rgba(0,0,0,.5), rgba(0,0,0,.9)), url('../images/property/p-4.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.choose{
    cursor: pointer;
    position: relative;
    top: 0;
    transition: .5s all;
    background-color: var(--white);
}
.choose:hover{
    top: 10px;
}
.choose > i{
    font-size: 5rem;
    color: var(--primarycolor);
    margin-bottom: 20px;
}
.choose > p{
    color: var(--gray);
}
/* Choose Us Styling End */

/* ========== About Page Styling End Here ========== */


/* ========== Contact Page Styling Start Here ========== */
.contact i{
    color: var(--primarycolor);
    margin-right: 5px;
}
/* ========== Contact Page Styling End Here ========== */


/* ========== Blog Page Styling Start Here ========== */

/* Blog Grid View Styling End Here */
.detail{
    font-size: .8rem;
    display: flex;
}
.detail > span{
    margin: auto 5px ;
    cursor: pointer;
}
.detail > span.date{
    color: var(--primarycolor);
    cursor: default;
}

.detail > span> i{
    margin-right: 3px;
    color: var(--primarycolor);
}

.detail > span:hover{
    color: var(--primarycolor);

}
.blog .title{
    color: var(--primarycolor) !important;
    font-size: 1.5rem !important;
}

.blog img{
    height: 250px;
}
.blog .title{
    color: var(--primarycolor);
    font-size: 1.5rem;
    line-height: 50px;
}
.blog .description{
    margin-top: 20px;
    color: var(--gray);
}
.blog .button{
    color: var(--black);
    border: none;
    background: none;
    padding: 0px;
}

.blog .button:hover{
    color: var(--primarycolor);
}
/* Blog Grid View Styling End Here */

/* Blog List Vie Styliung Start Here */
.blog img{
    width: 100%;
    height: 100%;
    max-height: 300px;
} 
.blog .title{
    color: var(--primarycolor);
    font-size: 2rem;
    line-height: 50px;
}
.blog .description{
    margin-top: 20px;
    color: var(--gray);
}
.blog .button{
    color: var(--black);
    border: none;
    background: none;
    padding: 0px;
}

.blog .button:hover{
    color: var(--primarycolor);
}
/* Blog List View Styling End Here */

/* Blog Sidebar Styling Start Here */
.search{
    background-color: var(--white);
    color: var(--primarycolor);
    padding: 6px 10px;
    border: 1px solid var(--primarycolor);
    border-radius: 0px 2px 2px 0px;
}
.search:hover{
    color: var(--white);
    background-color: var(--primarycolor);
}

.sidebar ul{
    list-style: none;
    padding: 0px;
}
.sidebar ul > li{
    border-bottom: 1px solid var(--gray);
    line-height: 40px;
}
.sidebar ul > li::before{
    content: '► ';
    color: var(--primarycolor);
}
.sidebar ul > li > a{
    color: var(--black);
}

.sidebar ul > li:hover > a{
    color: var(--primarycolor);
}

.tag{
    border: 1px solid var(--primarycolor);
    color: var(--primarycolor);
    padding: 5px 10px;
    display: inline-block;
    margin: 5px;
}
.tag:hover{
    color: var(--white);
    background-color: var(--primarycolor);
}
/* Blog Sidebar Styling End Here */


/* ========== Blog Page Styling End Here ========== */


/* ========== Blog Detail Page Styling End Here ========== */

/* Clint Comment Styling */
.clint{
    display: flex;
}
.clint > img{
    width:  60px;
    height: 60px;
    border-radius: 50%;
}
.clint > div{
    margin-left: 10px;
}
.clint > div > p{
    color: var(--orange);
    font-size: 16px !important;
}
.clint > div > p:nth-child(1){
    font-weight: bold !important;
    
}
.clint > div > p:nth-child(2){
    margin-top: -10px;
}

/* Clint Section Styling Eng Here */

/* Reply Form Styling Start Here */
.replyform > div input, .replyform > div > textarea{
    border: 1px solid #4f4f4f;
    width: 100%;
    outline: none;
}
.replyform  input[type='submit']{
    background-color: var(--white);
    color: var(--primarycolor);
    border: 1px solid var(--primarycolor);
    padding: 10px 20px;
}
.replyform  input[type='submit']:hover{
    background-color: var(--primarycolor);
    color: var(--white);
}
/* Replay Form Styling End Here */

/* ========== Blog Detail Page Styling End Here ========== */


/* ========= Property Page Styling Start Here ========= */

/* Property Image Zoom Styling Start Here */
.property{
    overflow: hidden;
    height: 250px;
    background-color: var(--primarycolor);
    border-radius: 25px;
    position: relative;
}
.property .title{
    width: 100%;
    position: absolute;
    top: 20px;
    display: flex;
    justify-content: space-between;
}

.property .title .tag{
    font-size: 1rem;
    height: 35px;
}
.property .title .price{
    font-size: 1rem;
}
.property img{
    height: 100%;
    width: 100%;
    transition: .5s;
}
.property:hover img{
    transform: scale(1.1);
}
.property .title > div{
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--white);
}
.property .title > .price{
    background-color: var(--green);
    margin-left: 20px;
}
.property .title > .tag{
    background-color: var(--primarycolor);
    margin-right: 20px;
}
.pdata{
    width: 100%;
    position: absolute;
    bottom: -70px;
    transition: .5s all;
}
.pdata:hover{
    bottom: 0px;
}

.property .name{
    width: 100%;
    height: 70px;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.5) !important;
}
.name > h4, .name > h6{
    margin-left: 20px;
    text-transform: capitalize;
}
.name > h4 > a{
    color: var(--white);
}

.pdetail{
    background-color: var(--primarycolor);
    color: var(--white);
    display: flex;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.pdetail > div{
    margin-left: 20px;
}
/* Property Image Zoom Styling End Here */


/* Property Grid Display View Styling Start Here */
.featureProduct{
    background: linear-gradient( to left, rgba(0, 0, 50, .5), rgba( 0, 0, 50,.5)), url("../images/bg-img/home-bg.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.propertyclip{
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}
.featureHeading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: var(--white);

}
.fproduct{
    border-radius: 20px;
    position: relative;
    top: 0px;
    transition: .5s all;
    
}
.fproduct:hover{
    top: 10px;
}
.fproductimgdiv{
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 20px 20px 0px 0px;
}

.fproductimgdiv img{
    height: 100%;
}
.fproductimgdiv .top{
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 20px;
}

.fproductimgdiv .top .ftag{
    background-color: var(--primarycolor);
    color: var(--white);
    padding: 5px 10px;
    height: 35px;
    border-radius: 3px;
    margin-left: 20px;
}

.fproductimgdiv .top .tag{
    background-color: var(--green);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 20px;
}

.fproductimgdiv .bottom{
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: absolute;
    bottom: 20px;
}
.fproductimgdiv .bottom .price{
    background-color: var(--primarycolor);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fproductimgdiv .bottom .icon{
    background-color: var(--lightblack);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.fproductimgdiv .bottom .icon i{
    color: var(--white);
}

.fproductimgdiv .bottom .icon:hover i{
    color: var(--primarycolor);
}
.fproductdetail{
    padding: 10px auto;
    background-color: var(--white);
    border-radius: 0px 0px 20px 20px;
}

.fproductdetail .fname{
    color: var(--black);
    font-size: 1.5rem;
    padding-bottom: 20px;
}
.fproductdetail .fname:hover{
    color: var(--primarycolor);
}
.fproductdetail .address{
    color: var(--gray);
}
.fproductdetail .address > i{
    margin-right: 5px;
}

/* Property Grid Display View Styling End Here */

/* Property List Display View Styling Start Here */

.product{
    background-color: var(--white);
    margin: auto;
}

/* .fproductdetail .fname{
    color: var(--black);
    font-size: 1.5rem;
    display: inline-block;
} */

.fproductdetail .row .col-6 span{
    margin: 5px auto;
    display: inline-block;
}

/* Button Styling Start */
.fproductdetail .button{
    color: var(--black) !important;
    padding: 0px;
    border: none;
    background: none !important;
}
.fproductdetail .button:hover{
    color: var(--primarycolor) !important;
}
/* Button Styling End */


/* Property List Display View Styling End Here */

/* ========= Property Page Styling End Here ========= */

/* ========= Property Detail Page Styling Start Here ========= */
.subimage > div{
    height: 80px;
    overflow: hidden;
    margin: var(--m2) auto;
}
.subimage > div > img{
    width: 100%;
}
.bdicsription .title{
    color: var(--primarycolor) !important;
    font-size: 2rem !important;
}
.bdicsription > p{
    font-size: 17px !important;
}


.hdetail{
    display: flex;
}
.hdetail > p{
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-right: 5px;
}
.hdetail > i{
    margin-top: 5px;
    margin-right: 5px;
    color: var(--orange);
}

/* Nearby Section Styling */
.data{
    display: flex;
}
.data p{
    font-size: 14px !important;
}
.datap > p:nth-child(1){
    font-weight: bold;
}
.datap > p:nth-child(2){
    margin-top: -15px;
}

.star{
    display: flex;
}
.star > i{
    font-size: 13px;
    margin-top: -10px;
    color: #ffda00;
}
/* Latest Blog */
.latestblog > img{
    margin-top: 20px;
    border-radius: 10px;
}
.latestblog > h3.price{
    font-size: 1.5rem !important;
    margin: var(--m2) var(--m);
}
.latestblog > p.name{
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--primarycolor);
}
.latestblog > p.address{
    font-size: 12px !important;
    margin-top: -10px;
}
.roomdetail {
    display: flex;
}
.roomdetail > span{
    display: flex;
    color: var(--orange);
    margin-right: 10px;
    cursor: pointer;
}
.roomdetail > span > p{
    font-size: 12px !important;
    font-weight: 600;
    margin-top: -1px;
    margin-left: 5px;
    
}

.roomdetail > span > i{
    color: var(--primarycolor);
}
/* ========= Property Detail Page End Here ========= */



/* ========= Faq Page Styling Start Here ========= */
.faq{
    background-color: #f5f5f5;
    display: flex;
    justify-content: left;
    align-items: center;
    color: var(--black) !important; 
    transition: .5s all; 
}

.faq[aria-expanded="true"]{
    background-color: var(--primarycolor);
    color: var(--white) !important;
}
.faq > p{
    padding: 10px auto;
    margin-top: 15px;
}
/* ========= Faq Page Styling End Here ========= */



/* ========= Agent Page Styling Start Here ========= */

/* Agent Section Styling Start Here */
.agent{
    margin: auto;
    max-width: 300px;
    overflow: hidden;
}

.agent .imgdiv{
    max-width: 300px;
    height: 300px;
    overflow: hidden;
}

.agent .imgdiv img{
    width: 100%;
    height: auto;
}

.agent p{
    font-weight: bold;
    line-height: 15px;
}

.aname{
    color: var(--black);
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 20px !important;
}
.aname:hover{
    color: var(--primarycolor);
}
.agent p > span{
    font-weight: normal;
}

.social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.social > .icon{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gray);
    color: var(--white);
}
.social > .icon:hover{
    background-color: var(--primarycolor);
}
/* Agent Section Styling End Here */

/* ========= Agent Page Styling End Here ========= */

/* ========= Partner Page Styling Start Here ========= */
.partner{
    min-width: 300px;
    max-width: 400px;
    overflow: hidden;
    margin: auto;
}

.imgdiv{
    min-width: 300px;
    max-width: 400px;
    height: 300px;
    overflow: hidden;
}
.imgdiv > img{
    height: 100%;
}
.partner p{
    font-weight: bold;
    line-height: 15px;
}
.partner p > span{
    font-weight: normal;
}
/* ========= Partner Page Styling End Here ========= */

/* ========= 404 Page Styling Strat Here ========= */
.error404{
    text-align: center;
}
.error404 .heading{
    font-size: 8rem !important;
    color: var(--primarycolor);
}
.error404 h5{
    font-size: 2rem !important;
}
.error404 p{
    margin: 20px auto;
}
/* ========= 404 Page Styling End Here ========= */

/*========== Login Signin & Forget Page Styling Start Here ========== */
.formdiv{
    display: flex;
    justify-content: center;
    align-items: center;
}
.formdiv .link{
    color: var(--primarycolor) !important;
}
/*========== Login Signin & Forget Page Styling End Here ========== */


/* Owl Caurosel Slider */
.owl-theme .owl-dots .owl-dot span{
    background-color: var(--white);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: var(--primarycolor);
}


/* ========= Footer Styling Start Here ========= */

footer{
    background-color: var(--footercolor);
    color: var(--white);
}
.footerdiv ul{
    list-style-type: none;
    padding: 0px;
}
.footerdiv ul li{
    margin-bottom: 10px;
}
.footerdiv ul li a{
    color: var(--white);
}
.footerdiv ul li a > i{
    margin-right: 5px;
    color: var(--primarycolor);
}
.footerdiv ul li a:hover{
    color: var(--primarycolor);
}

.footerbottom{
    background-color: var(--primarycolor);
    color: var(--white);
}

.slinks{    
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto 10px;
}
.slinks:hover{
    background-color: var(--footercolor);
}
.slinks > i{
    color: white !important;
}

/* ========= Footer Styling End Here ========= */





/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .locationSearchDiv{
        position: absolute;
        bottom: -50px;
    } 

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    menu.mainmenu> div{
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: center;
        padding-top: 100px;
    } 
    /* Home Icon Start */
    .homeicon{
        background-color: transparent;
        margin: 10px;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .5s all;
    }
    .homeicon:hover{
        background-color: var(--primarycolor);
    }
    .homeicon > a{
        font-size: 1.5rem;
        color: var(--primarycolor);
        padding: 15px;
    }
    .homeicon:hover > a{
        color: var(--white);
    }
    /* Home Icon End */

    .locationSearchDiv{
        position: absolute;
        bottom: -200px;
    }

    /* Property Detail Page Styling STart */
    .subimage > div{
        height: 50px;
    }
    /* Property Detail Page Styling End */
    .propertyclip{
        clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 100%);
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
    /* Navbar 2 Styling Start Here */
    .navicon > a{
        width: 30px;
        height: 30px;
    }

/* Navbar 2 Styling End Here */
    menu.mainmenu> div{
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: center;
        padding-top: 100px;
    }

    .homeicon{
        background-color: transparent;
        margin: 10px;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .5s all;
    }
    .homeicon:hover{
        background-color: var(--primarycolor);
    }
    .homeicon > a{
        font-size: 1.5rem;
        color: var(--primarycolor);
        padding: 15px;
    }
    .homeicon:hover > a{
        color: var(--white);
    }


    .locationSearchDiv{
        position: absolute;
        bottom: -200px;
    }

    /* Property Detail Page Styling STart */
    .subimage > div{
        height: 50px;
    }
    /* Property Detail Page Styling End */


}




