@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400;1,500;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800&display=swap');

:root {
  --primary:#e76e1b;
  --secondary:#1874e2;
  --white:#fff;
  --black:#000;
}


body {
    margin: 0;
    padding: 0 !important;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    background: none;
    color: #777;
    font-size: 15px;
    line-height: normal;
    margin: 0 0 12px;
    padding: 13px;
    width: 100%;
    outline: 0;
    font-family: 'Roboto', sans-serif;
    border: none;
    border-radius: 4px;
    border: solid 1px #eee;
}
input[type="submit"] {
    color: var(--white);
    background: var(--primary);
    border: none;
    text-transform: capitalize;
    padding: 13px 26px;
    font-size: 16px;
    border: 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    font-weight: normal;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}
input[type="submit"]:hover {
  background: var(--primary);
  color: var(--white);
  transition: 0.8s;
}
textarea {
    height: 120px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px 0;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--black);
    font-weight: 600;
    text-transform: inherit;
    line-height: normal;
}
h1 {
  font-size:30px
}
h2 {
  font-size:28px
}
h3 {
    font-size: 25px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size:18px
}
h6 {
  font-size:16px
}
p {
padding: 0;
    margin: 0 0 10px 0;
    font-family: 'Nunito Sans', sans-serif;
    color: #555;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}
ul, li, a{
  list-style-type: none;
  font-family: 'Nunito Sans', sans-serif;
  color: #555;
    font-size: 16px;
    line-height: 25px;
}
a:hover {
  transition:0.8s;
  text-decoration:none;
}
.heading {
    margin-bottom: 35px;
    font-size: 32px;
    position: relative;
    background: url(../images/heading.png) no-repeat left;
    padding-left: 88px;
    display: inline-block;
    background-size: 75px;
}
.heading span {
    display: block;
    font-size: 17px;
    letter-spacing: .5px;
}
.subheading{
    width: 80%;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 17px;
    color: #121212;
    font-family: 'Roboto', sans-serif;
}

.zoomeffect {
    overflow: hidden;
    position: relative;
}
.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
  transform: scale(1.1);
}


/* Header */

header {
    position: relative;
}
header img{
    width: 170px;
}
header ul.hdrrgt {
    column-gap: 25px;
}
header li.nav-item.dropdown:hover ul.dropdown-menu {
    display: block;
}
header ul.navbar-nav{
    margin-left: 30px;
}

/* Main Banner */

.bannersec{
background: #f1e9e3;
}
.mainbanner {
    position: relative;
}
.bannercptn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    padding-left: 25px;
}
.bannercptn-content {
    width: 650px;
}

.mainbanner .bannercptn h1{
    font-size: 75px;
    line-height: 55px;
    font-weight: 800;
    text-transform: capitalize;
    opacity: 0;
    animation: lts .5s ease-in-out .3s forwards;
    margin: 0 0 30px;
    color: var(--primary);
}
@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.mainbanner .bannercptn p {
    font-size: 18px;
    margin: 15px 0 22px;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
    color: #333;
 width:90%;
}
.mainbanner .bannercptn .btn-primary {
    opacity: 0;
    animation: lts .5s ease-in-out 1.2s forwards;
    border: solid 1px #ffffff42;
}

/* PProperty Form */
.bannersec span.select2-selection.select2-selection--single {
    border: none;
    border-bottom: solid 1px #ddd;
}
.main-pagination.mt-4 .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}
.main-pagination a.page-link{
color: var(--primary);
}
.propertyform {
    box-shadow: 0px 5px 70px 0px rgba(38.00000000000003, 42.00000000000001, 76.00000000000006, 0.1);
    border-radius: 6px;
    padding: 15px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: var(--white);
}
.propertyform label {
    font-size: 14px;
    padding-bottom: 8px;
}
.propertyform input, .propertyform select {
    border: none;
    border-bottom: solid 1px #ddd;
    padding: 8px 0;
    border-radius: 0;
    width: 100%;
    font-size: 13.5px;
    margin: 0;
}
.propertyform select{
    cursor: pointer;
}
.propertyform .btn-secondary {
    width: 100%;
    padding: 12px;
}

/* Services */

.services{
    background: #f2f3f8;
    padding: 50px 0;
}
.services .heading {
    line-height: 60px !important;
}
.services .slick-track {
    margin: 10px 0;
}
.services-item {
    background: var(--white);
    padding: 35px 18px;
    border-radius: 16px;
    position: relative;
    transition: all ease-in-out .5s;
    box-shadow: 3px 3px 13px #ddd;
    height: 170px !important;
}
.services-item:before {
    content: '';
    position: absolute;
    right: 0;   
    top: 0;
    background: url(../images/services/payRent.0146408d.svg) no-repeat right top;
    background-size: 80px;
    width: 100px;
    height: 100px;
    transition: all ease-in-out .5s;
}
.services-item:hover::before{
    background: url(../images/services/payRent.0fe74a06.svg) no-repeat right top; 
}
.services-item img {
    height: 40px;
    object-fit: contain;
}
.services-item h3 {
    font-size: 18px;
    margin: 18px 0 5px;
}
.services-item p {
    font-size: 14px;
    line-height: 22px;
}
.explorebtn{
    color: var(--primary);
    text-decoration: underline;
    transform: translateY(-5px);
    display: inline-block;
}

/* Spotlight */


.spotlightbox{
    background: linear-gradient(83deg, #cefff4, #efbaba);
    padding:60px 0;
}
.spotlightbox, .spotlightbox img{
    border-radius: 16px;
}
.sportlightdvlpr figure {
    width: 20%;
}
.sportlightdvlpr  figure img {
    width: 80px;
}
.sportlightdvlpr {
    column-gap: 35px;
    margin-bottom: 30px;
}
.sportlightdvlpr h3 a {
    display: block;
    color: var(--primary);
    text-decoration: underline;
    padding-top: 5px;
}
.spotlightcnt h4, .spotlightcnt h5 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 700;
}
.spotlightcnt h4 span, .spotlightcnt h5 span {
    display: block;
    font-size: 15px;
    color: #444;
    padding-top: 4px;
    font-weight: normal;
}
.spotlightcnt .btn-primary {
    padding: 9px;
    font-size: 20px;
    letter-spacing: .5px;
    margin-top: 30px;
}
.spotlight-nav {
    display: flex !important;
    justify-content: flex-end !important;
    margin-bottom: 20px;
}
.spotlight-nav img {
    width: 100% !important;
    cursor: pointer;
    height: 90px !important;
    object-fit: cover;
    border-radius: 6px;
}
.spotlightbox .col-sm-8 img {
    height: 450px;
    object-fit: cover;
}
.spotlight-nav .slick-track {
    width: 100% !important;
}
.spotlight-nav li {
    width: 29% !important;
}
.spotlight-nav li img {
    opacity: .5;
}
.spotlight-nav li.slick-slide.slick-current.slick-active img {
    opacity: 1;
}
.spotlight-nav li h4 {
    font-size: 15px;
    text-align: center;
    margin: 10px 0 0;
}

/* Recommended */

.recommended {
    background: #eb67530d;
    padding: 40px 0 60px;
    margin-top: 50px;
}
.recommended-item {
    border: solid 1px var(--primary);
    border-radius: 16px;
    padding: 22px;
    column-gap: 20px;
    background: var(--white);
    margin: 15px 0;
}
.recommended-item img{
    width: 60px !important;
    height:60px !important;
    border: solid 2px #e76e1b;
    border-radius: 50%;
}
.recommended-content h3 {
    font-size: 13px;
    margin-bottom: 12px;
}
.recommended-content h3 span {
    background: linear-gradient(90.38deg,var(--primary) -4.71%, var(--secondary) 107.63%);
    padding: 3px 15px;
    color: var(--white);
    border-radius: 6px;
    margin-left: 6px;
}

.rcmndbtn {
    background: #efd9d6;
    font-size: 14px;
    color: #111;
    font-weight: 500;
    padding: 1px 8px;
    border-radius: 6px;
}
.recommended-content ul {
    display: flex;
    margin-top: 6px;
}

.recommended-content ul li {
    font-size: 14px;
    border-left: solid 1px #ddd;
    padding: 0 8px;
    line-height: normal;
}

.recommended-content ul li:first-child {
    padding-left: 0;
    border-left: none;
}

/* Project Focus */

.projectfocus-item figure::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(6deg,#120f2dbd 30%,#120F2D00 100%);
    border-radius: .5rem;
}
.projectfocus-item figure{
    border-radius: .5rem;
}
.projectfocus-item img {
    height: 245px;
    object-fit: cover;
}
.projectfocus-caption h3 {
    font-size: 20px;
}
.projectfocus-caption h4 {
    font-size: 18px;
}
.projectfocus-caption span {
    display: block;
    font-size: 13px;
    letter-spacing: .5px;
    font-weight: 300;
    padding-top: 3px;
}
.projectfocus-caption h3, .projectfocus-caption h4, .projectfocus-caption h5 {
    color: var(--white);
}
.projectfocus-caption h5 {
    font-size: 23px;
}
.projectfocus-caption h5 i {
    font-size: 21px;
}

/* Trending Projects */

.trendingprjcts-item {
    box-shadow: 3px 3px 13px #eee;
    border: 1px solid rgb(229, 229, 229);
    column-gap: 15px;
    border-radius: 6px;
    transition: all ease-in-out .5s;
    margin: 8px 0;
    position: relative;
}
.trendingprjcts-item:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 12px 0px;
}
.trendingprjcts-item h3  {
        font-size: 20px;
        font-weight: 600;
        color: #ffff;
    
}
.trendingprjcts-item h3 span {
    color: rgb(116, 116, 116);
    display: block;
}
.trendingprjcts-item h3 span, .trendingprjcts-item ul li{
    font-size: 12.5px;  
    color: #ffff;  
}
.trendingprjcts-item ul {
    margin: 10px 0;
}
.trendingprjcts-item ul li {
    line-height: 20px;
}
.trendingprjcts-item figure {
    width: 100%;
}
.trendingprjcts-item figure{
    overflow: hidden;
    border-radius: 6px 0 0 6px;
}
.trendingprjcts-item figure img {
    height: 100%;
    object-fit: cover;
    border-radius: 6px 0 0 6px;
    transition: all ease-in-out .5s;
}
.trendingprjcts-item:hover img{
    transform: scale(1.1);
}
.trendingprjcts-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffff;

}
.trendingprjcts-content {
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(rgb(0 0 0 / 17%), rgb(0 0 0));
    padding: 10px 8px 16px;
    color: rgb(255, 255, 255);
    width: 100%;
    min-height: 105px;
}


/* Properties By Area */

.propertyarea {
    background-image: linear-gradient(158deg,#F2F8FE 0%,#FAFCFF 100%);
}
.propertyarea .row{
    row-gap: 25px;
}
.propertyarea-box {
    box-shadow: rgb(0 0 0 / 6%) 0px 4px 5px 0px;
    contain-intrinsic-block-size: auto 100px;
}
.propertyarea-item {
    box-shadow: 0 1px 4px 0 rgba(0,106,194,0.2);
    column-gap: 20px;
}
.propertyarea-item figure {
    width: 40%;
}
.propertyarea-item img {
    height: 80px;
    object-fit: cover;
}
.propertyarea-item h3 {
    font-size: 20px;
}
.propertyarea-item h3 span {
    display: block;
    font-size: 15px;
    padding-top: 5px;
    color: #555;
}

/* Property Categories */

.propertycat-item {
    box-shadow: 0 1px 4px 0 rgba(0,106,194,0.2);
}
.propertycat-item img {
    width: 70px;
}
.propertycat-item .btn-secondary {
    padding: 7px 14px;
    letter-spacing: 0;
}
.propertycat-item i {
    transform: rotate(-45deg);
    font-size: 15px;
}
.propertycat-item p {
    line-height: 22px;
}

/* Blog Details */

.blogdetails .homebloglist img {
    height: 500px;
    object-fit: cover;
}

.blogdetails .homeblogbox h3 a {
    font-size: 26px;
}

.blogdetails .homeblogbox h3 {
    margin: 25px 0 15px;
}

.blogdetails .homebloglist:hover {
    transform: inherit;
}

/* Property Listing */

.propertylisting {
    overflow: hidden;
    background-image: linear-gradient(79deg,#F2F8FE 0%,#FAFCFF 100%);
}
.propertylisting-item img{
transition: all ease-in-out .5s;
}
.propertylisting-item:hover img{
    transform: scale(1.1);
}
.propertylisting-content {
    box-shadow: 0px 0px 11px #bdbdbd42;
}

.propertylisting-content ul {
    column-gap: 15px;
}
.propertylisting-content ul li {
    display: flex;
    align-items: center;
    column-gap: 7px;
}
.propertylisting-content ul li svg {
    width: 18px;
}
.propertylisting-content h3 {
    font-size: 20px;
    min-height: 80px;
    max-height: 80px;
}
.propertylisting-content h3 span {
    display: block;
    color: var(--primary);
    font-size: 19px;
    padding-top: 6px;
}
.propertylisting .slick-track {
    margin: 10px 0;
}
.propertylisting-caption>ul {
    column-gap: 10px;
    padding: 3px 12px;
}
.propertylisting-caption>ul li i {
    margin-right: 3px;
    font-size: 12px;
    color: var(--primary);
}
.propertylisting.rentlisting {
    background: #eb67530d;
}

/* Home Reviews */

.homereview {
    padding: 45px 0 35px;
    background: linear-gradient(#000000f0, #660408cf), url(../images/reviewbg.jpg);
    background-attachment: fixed;
    background-size: cover;
}
.homereview .heading {
    color: var(--white);
}
.clientrvw-item {
    padding: 25px;
    text-align: center;
    border-radius: 6px;
    position: relative;
    background: #fff8f9;
}  
.clientrvw-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: solid 20px transparent;
    border-bottom: solid 20px var(--primary);
    border-left: solid 20px transparent;
    border-top: solid 20px transparent;
}
/*
.clientrvw-item:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    content: '';
    background: #f6812114;
    width: 100%;
    z-index: -1;
    border-radius: 0 0 100% 100%;
}
*/
.clientrvw-slider .slick-slide {
    margin: 0 10px 30px;
}
.homereview .row{
	align-items:center;
}
.clientrvw-item i {
    color: #f4a708;
    margin: 0 2px;
}
.clientrvw-item h3 {
    margin: 18px 0 15px;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}
.clientrvw-item h3:before {
    content: '';
    position: absolute;
    border-bottom: solid 2px var(--secondary);
    width: 70px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
/*
.quote {
    background: var(--primary);
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 50px;
    margin-top: 15px;
}
*/
.clientrvw-item figure{
	margin:0;
}
.clientrvw-item figure img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}
.clientrvw-desc p {
    margin: 15px 0 30px;
    font-size: 17px;
    line-height: 33px;
    color: #767573;
}

/* Blog */

.homeblog {
    padding: 35px 0 50px;
}
.homebloglist {
    position: relative;
    overflow: hidden;
    transition: .5s;
    /* border: 1px solid #dddddd91; */
    height: 100%;
    /* background: var(--white); */
    border-radius: 6px;
    /* box-shadow: 3px 3px 13px #ddd; */
    text-align: left;
}
.mainTitle{
    font-weight: 800;
    font-size: 37px;
}
.widget :last-child {
    margin-bottom: 0;
}
.widget ul {
    text-align: left;
    padding-left: 0 !important;
}
.widget ul li {
    list-style-type: disclosure-closed;
    position: relative;
    font-size: 22px;
    margin-bottom: 8px;
    margin-left: 21px;
    font-weight: 700;
    padding-bottom: 0;
}
.widget ul li a:hover {
    color: var(--primary);
}
/* .homebloglist:hover {
    box-shadow: 0 0 15px #0000002b;
    transform: translateY(-10px);
} */
.homebloglist .zoomeffect img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	transition: all ease-in-out .5s;
}
.homeblogbox {
    padding: 15px 15px 10px;
    position: relative;
}
.homeblogbox h3 {
    margin: 10px 0 6px;
    line-height: 22px;
}
.homeblogbox h3 a {
    font-size: 19px;
    color: #444;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.homeblogbox a.readbtn i {margin-left: 3px;font-size: 14px;}

.homeblogbox a.readbtn {
    color: var(--primary);
}
.homeblogbox ul {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: center;
    background: #f9f9f9;
    padding: 5px;
    border-radius: 6px;
    border: solid 1px #eee;
}
.homeblogbox ul li{
	font-weight: 500;
	display: flex;
	align-items: center;
	column-gap: 7px;
}
.homeblogbox ul li i {
    color: var(--secondary);
    font-size: 14px;
}
.homeblog span.datetag {
    position: absolute;
    background: var(--primary);
    z-index: 11;
    top: 0;
    right: 30px;
    padding: 10px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    height: 55px;
    font-size: 13px;
    width: 55px;
    text-align: center;
    line-height: normal;
    border-radius: 0 0 12px 12px;
}

/* Footer */


footer {
    /* background: linear-gradient(#000000f5, #000000f0), url(../images/footerbg.jpg); */
    background: #0c0b0b;
    padding: 50px 0 0;
}
.ftr-contact {
    margin-bottom: 40px;
}
.footer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
ul.contact_details li {
    margin-bottom: 10px;
}
.contact-info span {
    font-size: 17px;
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
}
.contact-info a {
    font-size: 15px;
}
.contact-info p {
    font-size: 14px;
}
footer h3 {
    color: var(--white);
    letter-spacing: .8px;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}
.footerabout img {
    width: 230px;
    background: var(--white);
    padding: 20px;
    border-radius: 6px;
}
.footerabout ul {
    display: flex;
    column-gap: 8px;
	justify-content:center;
}
.footerabout ul li a {
    background: #4267b2;
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    transition: all ease-in-out .5s;
}
/*
.footerabout ul li:nth-child(2) a{
background: #38a1f3;
}
.footerabout ul li:nth-child(3) a{
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);    
}
*/
footer ul.socialicons li a:hover{
    text-decoration: none;
}
footer ul.socialicons {
    justify-content: flex-start;
}
footer ul.socialicons li {
    padding: 0;
}
footer  ul.socialicons li:before {
    display: none;
}
.contact_details li {
    padding: 0;
    display: flex;
}
.contact_details li:before {
    display: none;
}
.contact_details li i {
    color: #ccc;
    font-size: 16px;
    padding-right: 10px;
    position: absolute;
    top: 4px;
}
.contact-info {
    padding-left: 28px;
}
footer .footmenu li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}
footer .footmenu li:last-child {
    margin-bottom: 0;
}
footer .footmenu li:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 5px;
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    border-radius: 20px;
    font-weight: 600;
    font-size: 10px;
}
footer ul li a {
    display: inline-block;
}
ul.socialicons a:hover {
    background: #7a7a7a24;
    color: var(--white);
}
footer .readbtn{
    text-decoration: underline;
    color: var(--white);
}
.footerabout{
    padding-right: 50px;
    padding-left: 0;
    width: 100%;
}
.footerprprtysrch ul{
    row-gap: 8px;
}
.footerprprtysrch ul li {
    padding: 0 8px;
    border-left: solid 1px #777;
    line-height: 15px;
}
.footerprprtysrch ul li a{
    line-height: 0;
}
.footerprprtysrch ul li:first-child{
    padding-left: 0;
    border-left: none;
}
footer ul li, footer ul li a, footer p, footer p a, .copyright p a {
    color: #bebdbd;
    font-size: 15px;
}
footer ul li a:hover{
    text-decoration: underline;
}
.footermenu {
    background: #0000007d;
    padding: 8px 15px;
    border-radius: 6px;
    border: solid 1px #ffffff14;
    margin-top: 40px;
}
.footermenu ul {
    justify-content: space-between;
}
.disclaimer a{
    text-decoration: underline;
}

/* Copyright */

.copyright {
    padding: 20px 0;
    border-top: solid 1px #dddddd12;
}
.copyright p{
    margin: 0 !important;
}
ul.socialicons {
    display: flex;
    justify-content: flex-end;
    column-gap: 12px;
    margin-top: 20px;
}
ul.socialicons a {
    color: #ffffffb3;
    border: solid 1px #dddddd82;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 14px;
}

/* Listing Page */


.prprtylistings{
    display: flex;
    flex-wrap: wrap;
}
.prprtylistings-leftbox, .prprtylistings-right {
    padding: 30px;
}
.prprtylistings-left {
    width: 68%;
    border-right: solid 1px #ddd;
}
.prprtylistings-right{
    width: 32%;
    background: #f7f7f7;
}
.prprtylistings h2 {
    font-size: 15px;
    font-weight: normal;
    margin: 3px 0 15px;
}
.prprtylistings-item {
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 15px;
    transition: all ease-in-out .5s;
}
.prprtylistings-item:hover {
    box-shadow: 0 1px 10px 1px rgba(0,0,0,.15);
    border-radius: 6px;
}
.prprtylistings-item img {
    border-radius: 6px;
}
.prprtylistings-thumb{
    width: 35%;
}
.prprtylistings-content{
    width: 65%;
}

.prprtylistings-content ul.status {
    padding: 8px 12px 8px 0;
    border-top: solid 1px #ececec;
    border-bottom: solid 1px #ececec;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prprtylistings-content ul.status li strong {
    display: block;
}
.prprtylistingsthumb-slider {
    position: relative;
}
.prprtylistingsthumb-item.slick-slide {
    margin: 0;
}
.prprtylistingsthumb-slider ul.slick-dots {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.prprtylistings-item ul.years {
    display: flex;
    margin: 10px 0;
}
.prprtylistings-item ul.years li {
    border-left: solid 1px #ddd;
    line-height: normal;
    padding: 0 10px;
    color:#888;
}
.prprtylistings-item ul.years li:first-child {
    border-left: none;
    padding-left: 0;
}
.prprtylistings-item i{
    color:#ccc;
}
.prprtylistings-item:hover .fa-link, .prprtylistings-item:hover .fa-heart{
    color:var(--primary);
}
.prprtylistings-item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 14px;
}
.prprtylistings-content h3 {
    font-size: 16px;
    color:#999;
}
.prprtylistings-content h3 strong{
    color:#444;
}
.prprtylistings-content h3 span {
    display: block;
    color: #777;
    padding-top: 4px;
}
.prprtylistings-bottom {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.prprtylistings-bottom ul {
    display: flex;
    align-items: center;
    column-gap: 13px;
}

.prprtylistings-bottom i {
    font-size: 20px;
}
.builderdtls {
    display: flex;
    align-items: center;
    margin-top: 8px;
    justify-content: space-between;
}
.builderdtls h3 {
    font-size: 17px;
    margin: 0;
}

.builderdtls h3 span {
    display: block;
    font-size: 14px;
    color: #666;
    padding-top: 5px;
}
.builderdtls figure {
    background: #f8f8f8;
    padding: 2px;
    border: solid 1px #ddd;
    border-radius: 4px;
}
.builderdtls figure img {
    width: 40px;
}
ul.prprtyconnect li:first-child a {
    color: var(--primary);
}
.builderdtls-cnt {
    column-gap: 15px;
    width: 100%;
}
.builderdtls h5 {
    background: #eee;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prprtylistingsthumb-slider ul.slick-dots {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.prprtylistingsthumb-slider {
    position: relative;
}

.prprtylistingsthumb-slider .arrowbutton {
    width: 35px !important;
    height: 35px !important;
    background: #00000073 !important;
    visibility: hidden;
    transition: all ease-in-out .5s !important;
}
.prprtylistingsthumb-slider .arrowbutton.prev {
    left: 15px !important;
}
.prprtylistingsthumb-slider .arrowbutton.next {
    right: 15px !important;
}
.prprtylistingsthumb-slider .arrowbutton i {
    color: var(--white);
}
.prprtylistingsthumb-slider:hover .arrowbutton {
    visibility: visible;
}
.prprtylistingsthumb-slider ul.slick-dots li button {
    width: 8px;
    height: 8px;
    border: none;
}
.featuredprdct-item figure img {
    width: 35px;
    height: auto;
}
.featuredprdct-item figure {
    background: var(--white);
    width: fit-content;
    padding: 4px 20px;
    position: absolute;
    bottom: 0;
    left: 20px;
}
.featuredprdct-item img {
    height: 105px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}
.featuredprdct-box h4 {
    font-size: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.featuredprdct-box {
    padding: 10px;
}
.featuredprdct-item:hover{
    box-shadow: 2px 2px 8px rgba(0,0,0,.2);
}
.featuredprdct-item:hover {
    box-shadow: 2px 2px 8px rgba(0,0,0,.2);
    border-radius: 0 0 6px 6px;
}
.featuredprdct-box ul li {
    font-size: 13px;
    line-height: normal;
}

.featuredprdct-box h5 {
    font-size: 15px;
    margin: 6px 0 0;
}
.featuredprdctthumb .btn-primary:before, .featuredprdctthumb .btn-primary:after{
    display: none;
}
.featuredprdctthumb-cptn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-80%) translateX(-50%);
    width: 100%;
    text-align: center;
    opacity: 0;
}
.featuredprdct-item:hover .featuredprdctthumb img{
filter: brightness(.8);
}
.featuredprdct-item:hover .featuredprdctthumb figure img{
    filter: inherit;
    }
.featuredprdct-item:hover .featuredprdctthumb-cptn{
    opacity: 1;
}
.featuredprdct-item:hover h3{
    color: var(--primary);
}
.featuredprdctthumb .btn-primary {
    padding: 5px 10px;
    font-size: 15px;
}
.featuredprdct h3 {
    font-size: 18px;
}

.featuredprdct h3 span {
    font-weight: 400;
    color: #777;
}
.prprtylistingssptmnt {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.prprtylistingssptmnt h5 {
    font-size: 11px;
    background: var(--primary);
    color: var(--white);
    margin: 0;
    padding: 3px 6px;
    border-radius: 4px;
}

.prprtylistingssptmnt h5 i {
    color: var(--white);
    font-size: 10px;
    margin-right: 1px;
}

/* Breadcrumb */

ol.breadcrumb {
    display: flex;
}
ol.breadcrumb li, ol.breadcrumb li a {
    font-size: 14px;
}

/* Listing Filter */

.listingfilter {
    background-color: #fbfbfb;
    border: solid 1px #e0e0e0;
    padding: 0 15px;
    position: sticky;
    top: 0;
    z-index: 11;
}
.listingfilter .navfilter>li:first-child {
    padding: 8px 15px;
}
.listingfilter .navfilter li a{
    border-left: solid 1px #ddd;
    padding: 8px 10px;
    display: block;
    font-size: 14px;
}
.listingfilter ul li a i {
    color: #999;
    font-size: 14px;
    transform: translateY(1px) translateX(2px);
}
.listingfilter ul li a:hover{
    color:var(--primary);
}
.filtershort ul li span {
    display: block;
}
.filtershort ul li a {
    font-size: 11px;
    line-height: 15px;
}
.filtershort ul {
    column-gap: 20px;
}
.filtershort ul li {
    line-height: 21px;
}
.filtershort ul li i{
    font-size: 20px !important;
}
.navfilterdrpdwn{
    display: none;
}
.listingfilter ul li:hover .navfilterdrpdwn {
    display: block;
}
.navfilterdrpdwn {
    background: var(--white);
    padding: 10px;
    position: absolute;
    z-index: 1;
    border-top: solid 1px #ccc;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,.125);
}
.navfilterdrpdwn li{
    cursor: pointer;
    font-size: 15px;
}
.navfilterdrpdwn li:hover{
    color:var(--primary);
}

.builderdtls-cnt .tooltip {
    background: var(--white);
    bottom: 100%;
    display: block;
    left: 0;
    bottom: -50px;
    margin-bottom: 0;
    opacity: 0;
    padding: 15px;
    border-radius: 4px;
    pointer-events: none;
    position: absolute;
    width: 100%;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}
.builderdtls-cnt .tooltip:before {
    top: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
    }
    .builderdtls-cnt .tooltip:after {
        border-left: solid transparent 10px;
        border-right: solid transparent 10px;
        border-bottom: solid var(--white) 10px;
        top: -11px;
        content: " ";
        height: 0;
        left: 50%;
        margin-left: -13px;
        position: absolute;
        width: 0;
    }
    
    .builderdtls-cnt:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
       -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    .builderdtls-cnt  .tooltip {
    display: none;
    }    
    .builderdtls-cnt:hover .tooltip {
    display: block;
    }
    .builderdtls-cnt .tooltip i {
        background: #b7b7b7;
        width: 25px;
        height: 25px;
        border-radius: 4px;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .tooltipbox {
        display: flex;
        column-gap: 15px;
        align-items: center;
    }
    .tooltipbox h4 {
        font-size: 14px;
        margin: 0;
        color: #888;
    }
    .prfllist {
        border-top: solid 1px #ddd;
        padding-top: 10px;
        margin-top: 12px;
        column-gap: 12px;
    }
    .prfllist li a {
        font-size: 15px;
        color: var(--primary);
    }

    /* Land */

    .landbrdcrmb{
        column-gap: 25;
    }
    .landcntbox {
        background: var(--white);
        padding: 25px;
        border: 1px solid #d7d7d7;
        border-radius: 6px;
        margin-bottom: 25px;
    }
    .cntagnt{
        position: sticky;
        top: 0;
        background: var(--white);
        padding: 25px;
        border: 1px solid #d7d7d7;
        border-radius: 6px;
    }
    .cntagnt span i {
        color: #abff00;
        font-size: 15px;
    }    
    .landcnt ul.landbrdcrmb li+li{
        padding:0 15px;
    }
    .landcnt ul.landbrdcrmb li:last-child{
        border-left: solid 1px #ddd;
    }
    .landcnt ul.landbrdcrmb li a, .landcnt p.shrtdesc a{
        text-decoration: underline;
    }  
    .landcnt p.shrtdesc a i {
        font-size: 14px;
        margin-right: 2px;
    }
    .landcnt ul.landbrdcrmb li, .landcnt ul.landbrdcrmb li a {
        line-height: 15px;
    }
    .landcnt ul.landbrdcrmb li:first-child {font-weight: 700;}
    .landcnt .shrtdesc p{
        margin: 15px 0 0;
    }
    .landcnt p.shrtdesc {
        margin: 15px 0 0;
    }
    .landcnt p.shrtdesc .addr {
        font-weight: 700;
        padding-right: 6px;
    }
.landcntfloor-thumbnails {
    display: flex;
    column-gap: 20px;
}
.landcntfloor-thumbnails figure {
    width: 40%;
}
.landcntfloorcnt {
    width: 60%;
}
.landcntfloorcnt ul.aprvd {
    margin-bottom: 24px;
    background-color: #f5f5f5;
    display: flex;
    column-gap: 20px;
    padding: 20px 15px;
    border-radius: 6px;
}
.landcntfloorcnt ul.aprvd li i {
    margin-right: 10px;
}
.landcntfloorcnt ul.pltarea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
}
.landcntfloorcnt ul.pltarea li {
    width: 33%;
}
.landcntfloorcnt ul.pltarea li strong{
    display: block;
}
.landcntfloor-footer {
    border-top: solid 1px #ddd;
    margin-top: 25px;
    padding-top: 25px;
}
.landcntfloor-footer ul {
    column-gap: 15px;
}
.landcntfloor-footer p{
    text-align: right;
}
.landcntfloor-footer p i{
    color: var(--primary);
}
.landcnt-moredtls ul li {
    font-weight: 700;
}
.landcnt-moredtls ul li strong {
    width: 200px;
    display: inline-block;
    font-weight: 500;
}
.landcnt-moredtls ul li+li {margin-top: 15px;}
.likedprprty-item {
    border: solid 1px #ddd;
    border-radius: 6px;
}

.likedprprty-item figure img {
    height: 150px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
    transition: all ease-in-out .5s;
}

.likedprprty-cnt {
    padding: 12px;
}
.likedprprty-cnt p {
    margin: 20px 0 12px;
    font-size: 15px;
}
.likedprprty-item{
    position: relative;
}
.likedprprty-item figure{
    overflow: hidden;
}
.likedprprty-item:hover img{
transform: scale(1.1);
}
.likedprprty-cnt h4, .likedprprty-cnt h4 strong {
    font-weight: 600;
}
.likedprprty-cnt h4 {
    display: flex;
    justify-content: space-between;
}

.prvslvwdprprty-item {
    display: flex;
    border: solid 1px #ddd;
    border-radius: 6px;
    column-gap: 15px;
    transition: all ease-in-out .5s;
}
.prvslvwdprprty-item:hover{
    box-shadow: 0 3px 9px 0 rgba(48,48,48,.2);
}
.prvslvwdprprty-item figure {
    width: 40%;
    overflow: hidden;
}
.prvslvwdprprty-item figure img{
    transition: all ease-in-out .5s;
}
.prvslvwdprprty-item:hover figure img{
transform: scale(1.1);
}
.prvslvwdprprty-cnt {
    width: 60%;
    padding: 10px 0;
}
.prvslvwdprprty-item ul {
    display: flex;
}
.prvslvwdprprty-item ul li {
    border-left: solid 1px #ddd;
    padding: 0 10px;
    line-height: 15px;
    font-weight: 600;
    font-size: 17px;
}
.prvslvwdprprty-item ul li:first-child {border-left: none;padding-left: 0;}
.prvslvwdprprty-item ul {
    margin: 13px 0;
}
.prvslvwdprprty-cnt p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    -webkit-box-orient: vertical;
}
.prvslvwdprprty-item figure img, .invstmntdsti-item figure img {
    height: 100%;
    border-radius: 6px 0 0 6px;
}
.cntownrbtn{
    color: var(--primary);
    font-weight: 600;
}
.cntownrbtn i {
    font-size: 12px;
    padding-left: 2px;
}
.pplrlndmrk iframe{
    border-radius: 6px;
}
.prprtysrvcs-item, .invstmntdsti-item{
    border: solid 1px #ddd;
    border-radius: 6px;
}
.prprtysrvcs-item:hover, .invstmntdsti-item:hover{
    box-shadow: 0 3px 9px 0 rgba(48,48,48,.2);
}
.prprtysrvcs-content, .invstmntdsti-cnt{
    padding: 15px;
}
.prprtysrvcs-content h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.prprtysrvcs-item figure, .invstmntdsti-item figure{
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}
.prprtysrvcs-item figure img, .invstmntdsti-item figure img{
    transition: all ease-in-out .5s;
    border-radius: 6px 6px 0 0;
}
.prprtysrvcs-item:hover figure img, .invstmntdsti-item:hover figure img{
    transform: scale(1.1);
}
.invstmntdsti h3 {
    display: flex;
    justify-content: space-between;
}
.invstmntdsti h3 a {
    color: var(--primary);
}
.invstmntdsti-item ul li{
    margin: 5px 0;
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.invstmntdsti-item ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}
.toolsdecide-item {
    display: flex;
    column-gap: 15px;
    border: solid 1px #ddd;
    border-radius: 6px;
    padding: 12px;
    transition: all ease-in-out .5s;
}
.toolsdecide-item:hover{
    box-shadow: 0 3px 9px 0 rgba(48,48,48,.2);
}
.toolsdecide-item img {
    width: 34px;
}
.toolsdecide-item h4 {
    margin-bottom: 6px;
    font-size: 17px;
}
.toolsdecide-item p {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 20px;
}
.closersrch h4, .closersrch ul li{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.closersrch .viewbtn{
    color: var(--black);
}
.closersrch .viewbtn:hover{
color: var(--primary);
}
.closersrch-item ul li+li {
    margin-top: 10px;
}

/* Property Details */

.prprtydtlsbrdcrmb ul{
    column-gap: 15px;
    margin-bottom: 20px;
}
.contactdtlsmodal h4 i{
    color: #075e54;
}
.contactdtlsmodal .modal-dialog {
    max-width: 400px;
}
.contactdtlsmodal .modal-header {
    border: none;
    padding-bottom: 0;
}
.contactdtlsmodal h4 {
    padding: 12px 16px;
    border: 1px solid #ffc72c;
    border-radius: 8px;
    background-color: #fff7e1;
    font-size: 19px;
}
.contactdtlsmodal input {
    border: none;
    border-bottom: solid 1px #ddd;
    padding-left: 0;
    margin-bottom: 20px;
}
.contactdtlsmodal p, .contactdtlsmodal p a {
    font-size: 14px;
}
.contactdtlsmodal p a {text-decoration: underline;}
.contactdtlsmodal p a:hover {
    color: var(--primary);
}
.prprtydtls ul.aprvd {
    position: relative;
    width: 90%;
    margin: -25px auto 30px;
}
.prprtydtls .landcntfloorcnt ul.pltarea {
    justify-content: flex-start;
}
.prprtydtls .landcntfloorcnt ul.pltarea li {
    width: 25%;
}
.loanofr-slider li {
    border: solid 1px #ddd;
    border-radius: 6px;
    padding: 15px;
}
.loanofr-slider img {
    width: 100px !important;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
}
.landcntfloor-gallery {
    display: grid;
    grid-gap: 6px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.landcntfloor-gallery .landcntfloorthumb-item img {
    object-fit: cover;
    height: 140px;
}
.landcntfloor-gallery .landcntfloorthumb-item:nth-child(1) img {
    border-radius: 8px 0 0 8px;
    height: 286px;
}

.landcntfloorthumb-item:nth-child(3) img {
    border-radius: 0 8px 0 0;
}
.landcntfloorthumb-item:last-child img {
    border-radius: 0 0 8px 0;
}
.landcntfloorthumb-item {
    display: flex;
    justify-content: center;
    height: 100%;
}
.landcntfloorthumb-item:first-child{
    grid-column: span 2;
    grid-row: span 2;
}
.landgallery {
    display: grid;
    grid-gap: 6px;
    grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
    width: 40%;
}
.landgallery .landgallery-item:first-child {
    grid-column: span 4;
    grid-row: span 4;
}
.landgallery-item {
    display: flex;
    height: 100%;
}
.landgallery .landgallery-item:first-child img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.landgallery .landgallery-item:nth-child(2) img {
    border-radius: 0 0 0 8px;
}
.landgallery .landgallery-item:last-child img {
    border-radius: 0 0 8px 0;
}
.landgallery .landgallery-item img {
    object-fit: cover;
}

/* Services */

.serviceslist {
    border: solid 1px #ddd;
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    height: 100%;
    transition: all ease-in-out .5s;
    background: var(--white);
}
.serviceslist img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 5px;
}
.serviceslist h3 {
    margin: 15px 0 0;
    font-size: 20px;
}
.servicesec .row {
    row-gap: 25px;
}
.serviceslist:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Features Services */

.featureservices {
    background: #eee;
    padding: 60px 0;
}

.featureservices-item {
    background: var(--white);
    padding: 20px;
    border-radius: 6px;
    border: solid 1px #ddd;
    text-align: center;
    height: 100%;
}

.featureservices-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    outline: solid 2px #cdcc;
    outline-offset: 5px;
}

.featureservices .row {
    row-gap: 25px;
}

.featureservices h3 {
    font-size: 19px;
    margin: 20px 0 12px;
}
.featureservices-item ul {
    margin-bottom: 15px;
}

    @media only screen and (max-width:1199px){
        header ul.hdrrgt li:nth-child(2) {
            display: none;
        }
        .propertyform {
              margin: -30px auto 0;
        } 
        .services-item {
            padding: 15px;
        }  
        .sportlightdvlpr  figure img {
            width: 70px;
        } 
        .recommended-item {
            padding: 15px;
            margin: 15px 0;
        }  
        .propertyarea-item h3 {
            width: 50%;
        }         
    }
    @media only screen and (max-width:991px){
        header ul.navbar-nav {
            margin-left: 0;
        }   
    .sportlightdvlpr h3 {
        font-size: 20px;
    }
    .sportlightdvlpr  figure img {
        width: 60px;
    }
    .spotlightbox .col-sm-8 img {
        height: 370px;
    } 
    .spotlightcnt h4, .spotlightcnt h5 {
        margin-bottom: 15px;
    }
    .sportlightdvlpr h3 {
        font-size: 20px;
        line-height: 24px;
    }
    .propertycat-item h3 {
        font-size: 19px;
    } 
    .homeblog .row {
        row-gap: 20px;
    } 
    .footerprprtysrch {
        margin-top: 20px;
    }  
    .footerprprtysrch h3 {
        margin: 10px 0 8px;
    } 
    .footermenu ul {
        justify-content: inherit;
        flex-wrap: wrap;
        column-gap: 12px;
    }     
    .mainbanner img {
        height: 350px;
    }  
    .mainbanner .bannercptn p {
        font-size: 16px;
        margin: 10px 0 12px;
    }
    .mainbanner .bannercptn h1 {
        font-size: 30px;
        line-height: 35px;
        margin-top: 0;
    }  
    .propertyform {
        margin: 15px 0 0;
        width: 100%;
    }
    .spotlight .col-sm-5, .spotlight .col-sm-7 {
        width: 100%;
    }   
    .spotlight-nav {
        justify-content: flex-start !important;
    }   
    .spotlightbox .col-sm-8 img {
        height: 350px;
    }  
    div#navbarSupportedContent {
        position: absolute;
        top: 100%;
        z-index: 1111;
        background: var(--white);
        padding: 16px;
        width: 100%;
        box-shadow: 3px 3px 13px #ddd;
        left: 0;
    }
    .bannercptn {
        transform: translateY(-50%);
        padding-left: 20px;
    }
    .listingfilter .navfilter li a {
        text-align: center;
        font-size: 13px;
    }  
    .listingfilter .navfilter>li:first-child {
        padding: 0 10px;
    }    
        
}
@media only screen and (max-width:767px){
    .blogdetails .homebloglist img {
        height: auto;
    }
.spotlightbox .col-sm-4, .spotlightbox .col-sm-8 {
    width: 100%;
} 
.propertycat .row {
    row-gap: 15px;
}
.mainbanner img {
    height: 270px;
}
.propertyform label {
    font-size: 14px;
    padding: 8px 0 0;
}
.bannercptn {
    transform: translateY(-50%);
    padding-left: 20px;
    top: 50%;
}
.spotlightbox .col-sm-4, .spotlightbox .col-sm-8 {
    width: 100%;
}
.sportlightdvlpr {
    column-gap: 25px;
}
.heading {
    margin-bottom: 30px;
    font-size: 25px;
    padding-left: 88px;
    background-size: 65px;
}
.propertyarea .row, .propertycat .row {
    row-gap: 12px;
}
.propertylisting-item img {
    height: 250px;
    object-fit: cover;
}
.propertyarea-box {
    padding: 20px !important;
}
.propertyarea-item img {
    height: 90px;
}
.spotlightcnt .btn-primary {
    font-size: 18px;
    margin-top: 15px;
}
header .col-sm-2, header .col-sm-10 {
    width: 50%;
}
.prprtylistings-left {
    width: 100%;
    border-right: none;
}
.prprtylistings-right {
    width: 100%;
    background: #f7f7f7;
}
.featuredprdct-item img {
    height: 240px;
}
.featuredprdct .row {
    row-gap: 12px;
}
}
@media only screen and (max-width:568px){
ul, li, a {
    font-size: 14px;
}  
.landcntfloor.landcntbox h1 {
    font-size: 20px;
}
.landcntbox {
    padding: 15px;
}
.landcnt ul.landbrdcrmb li+li {
    padding: 0 10px;
}
ul.landbrdcrmb li, ul.landbrdcrmb li a {
    font-size: 13px;
}
.prprtydtls .landcntfloorcnt ul.pltarea li {
    width: 100%;
    line-height: 20px;
}
.landcntfloorcnt ul.pltarea {
    row-gap: 6px;
}
.landcntfloor-footer p {
    text-align: center;
    margin-top: 12px !important;
}
.landcntfloor-footer {
    border-top: solid 1px #ddd;
    margin-top: 14px;
    padding-top: 20px;
}
.landcntfloor-footer ul {
    flex-wrap: wrap;
}
h3 {
    font-size: 22px;
}
.likedprprty.landcntbox .row {
    row-gap: 15px;
}
.prvslvwdprprty-item figure, .prvslvwdprprty-cnt{
    width: 100%;
}
.prvslvwdprprty-item {
    flex-wrap: wrap;
}
.prvslvwdprprty-cnt {
    padding: 10px 10px 5px;
}
.landcntfloor-footer ul .btn-primary {
    display: block;
    margin: 4px 0;
}
    .heading span {
        font-size: 15px;
        letter-spacing: 0;
    }   
.arrowbutton.next.slick-arrow {
    right: 0 !important;
}
.arrowbutton.prev.slick-arrow {
    left: 0 !important;
}
.arrowbutton.prev.slick-arrow, .arrowbutton.next.slick-arrow {
    height: 35px !important;
    width: 35px !important;
}
.spotlightbox .col-sm-8 img {
    height: 280px;
}
.bannercptn-content {
    width: 90%;
}
.mainbanner .bannercptn p {
    line-height: 24px;
}
.prprtylistings-item{
    flex-wrap: wrap;
}
.prprtylistings-thumb, .prprtylistings-content {
    width: 100%;
}
.builderdtls {
    margin: 12px 0;
}
.prprtylistings-item .prprtylistings-thumb img {
    height: 250px;
    object-fit: cover;
}
.builderdtls figure img {
    width: 40px;
    height: auto !important;
}
ul.navfilter {
    flex-wrap: wrap;
}
ul.navfilter li {
    width: 100% !important;
}
.filtershort ul {
    display: none !important;
}
.listingfilter .navfilter li a {
    font-size: 15px;
    border: solid 1px #ddd;
    margin: 2px 0;
    background: var(--white);
}
.listingpage .navbar {
    width: 100%;
}
.listingfilter .navfilter>li:first-child {
    padding: 0;
    font-weight: 600;
    margin: 10px 0 2px;
}
nav.navbar.navbar-expand-lg ul {
    column-gap: 10px;
}
.landcntfloor-footer p {
    text-align: left;
    margin-top: 12px !important;
}
.prprtydtls .landcntfloorcnt ul.pltarea {
    column-gap: 8px;
}
.prprtydtls .landcntfloorcnt ul.pltarea li {
    width: 49%;
    border: solid 1px #ddd;
    padding: 12px;
}
}

@media only screen and (max-width:479px){
.spotlight-nav img {
    height: 75px !important;
}
.spotlight-nav li {
    width: 27% !important;
}
}

@media only screen and (max-width:414px){
header img {
    width: 140px;
}
p {
    line-height: 23px;
}
}
@media only screen and (max-width:414px){
 .prprtydtls .landcntfloorcnt ul.pltarea li {
    width: 48%;
}   
.prprtylistings-content ul li {
    font-size: 13px;
}
.prprtylistings-content .btn-primary {
    padding: 8px 12px;
}
.btn.btn-primary:after {
   padding-left: 5px;
}
ul.prprtyconnect li:first-child a {
    font-size: 15px;
}
.prprtylistings-item .prprtylistings-thumb img {
    height: 160px;
    object-fit: cover;
}
.prprtylistings-bottom {
    flex-wrap: wrap;
}
.landcntfloor-footer ul li {
    width: 100%;
}
}
@media only screen and (max-width:375px){
.mainbanner .bannercptn h1 {
    font-size: 24px;
    line-height: 30px;
}
.mainbanner .bannercptn p {
    line-height: 20px;
    font-size: 14px;
}
.mainbanner img {
    height: 240px;
}

.spotlight-nav img {
    height: 65px !important;
}
.spotlight-nav li {
    width: 27% !important;
}
ol.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.prprtylistings-content h3 {
    font-size: 15px;
    color: #999;
}
.prprtylistings-content ul.status {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}
.prprtylistingssptmnt h5 {
    padding: 5px 6px;
    width: 62px;
}
}
/*Blog*/
.blogdetails ul {
    display: block;
    padding-left: 30px;
}
.blogdetails .homeblogbox ul li {
    margin: 12px 0;
    list-style: disc;
    display: list-item;
}

.blogdetails ul li strong {
    background: none !important;
}

.blogdetails b {
    background: none !important;
    display: block;
    margin: 20px 0 10px;
}



/* Login/Register */

.bg-login {
    font-size: 14px;
    color: #4c5258;
    letter-spacing: .5px;
    background-color: #f4f4f4;
    overflow-x: hidden;
    font-family: Roboto, sans-serif;
}
input#password {
    padding: 6px 12px !important;
    margin-bottom: 0px !important;
}
.bg-login input {
    margin-bottom: 0px !important;
}