body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.btn-primary {
    --bs-btn-color: var(--btn-text, #ffffff);
    --bs-btn-bg: var(--btn-bg, #bf974f);
    --bs-btn-border-color: var(--btn-bg, #bf974f);
    --bs-btn-hover-color: var(--btn-text-hover, #ffffff);
    --bs-btn-hover-bg: var(--btn-bg-hover, #586c89);
    --bs-btn-hover-border-color: var(--btn-bg-hover, #586c89);
    border-radius: 0;
    font-family: 'Jost';
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 45px;
}

:focus-visible {
    outline: none !important;
}
.rmbtn {
  color: #9f8534;
  font-weight: 500;
  text-decoration: none;

}
.main-header {
    padding: 15px 0;
    background-color: #fff;
}

.navbar-brand img {
    max-width: 190px;
    width: 100%;
}

.main-header .nav .nav-link {
    color: #0e1217;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 16px 12px;
}

.main-header .nav .nav-link:hover {
    color: #bf974f;
}

.main-header .nav~div .nav-link {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.main-header .nav~div .nav-link i {
    color: #bf974f;
}


.nav-links {
    display: flex;
    justify-content: space-around;
    width: 50%;
    text-transform: uppercase;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 5px;
    transition: all 0.5s ease;
}
.sub-menu {
    position: absolute;
    z-index: 1;
    background: #fff;
    width: auto;
    min-width: 12em;
    max-width: 100px;
    padding-block: 10px;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
}
.main-header .nav.sub-menu .nav-link {
    padding: 5px 15px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
}
/*.dropdwon-menu:hover .sub-menu {
    display: block;
}*/

@media only screen and (max-width: 1200px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        min-height: 100vh;
        background: #bf974f;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        margin: 0;
        padding: 0;
        transform: translateX(100%);
        transition: All 0.5s ease-in;
        z-index: 9;
    }

    .nav-links a {
        opacity: 0;

    }

    .burger {
        display: block;
    }

    .main-header .nav .nav-link,
    .main-header .nav .nav-link:hover {
        color: #ffffff;
        text-align: center;
    }

    .main-header .nav~div .nav-link {
        color: #0e1217;
    }
     
}


.nav-active {
    transform: translateX(0);
}

@media only screen and (max-width: 460px) {
    .nav-links {
        width: 100%;
        transition: All 0.5s ease;
    }
}

.nav-active {
    transform: translateX(0);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #fff;
    z-index: 9;
    position: relative;
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
    z-index: 9;
    position: relative;
    background-color: #fff;
}


/* ----------------------------------------- */
.hero-section img {
    height: 730px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000008a;
    top: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.hero-content h2 {
    font-size: 52px;
    font-weight: 600;
    font-family: 'Jost';
    margin-bottom: 40px;
    color: #fff;
}

.hero-content h2 span {
    font-weight: 200;
    color: #bf974f;
}

.hero-content p {
    color: #eadec9;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Jost';
    line-height: 1.2;
    max-width: 70%;
    margin: 0 auto 45px;
}

/* ----------------------------------- */
.services-section {
    margin-top: -100px;
    position: relative;
}

.service-box {
    background: #fffaf1;
    flex: 0 0 24.25%;
    margin-right: 1%;
    padding: 40px 32px 40px;
}

.service-box:last-child {
    margin-right: 0;
}

.service-box>i {
    font-size: 40px;
    text-align: right;
    display: block;
    color: #bf974f;
    margin-bottom: 48px;
}

.service-box h4 {
    color: #0e1217;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
}

.service-box p {
    font-size: 17px;
    color: #616871;
    font-family: 'Roboto';
    line-height: 1.4;
}

.service-box a {
    text-decoration: unset;
    color: #586c89;
    padding-bottom: 3px;
    border-bottom: 2px solid #bdc8d7;
    font-size: 15px;
    font-family: 'Roboto';
    transition: all .3s ease;
}

.service-box a:hover {
    color: #0e1217;
    border-color: #bf974f;
}

/* --------------------------------------- */
.about-section {
    padding-top: 60px;
}

.about-section .container {
    max-width: 960px;
}

.about-content h3 {
    color: #0e1217;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Jost';
    margin-bottom: 30px;
}

.about-content p {
    font-size: 19px;
    font-family: 'Roboto';
    color: #5C636C;
    margin-bottom: 30px;
}

.about-section .nav-link {
    font-weight: 700;
    color: #5C636C;
}

.about-section .nav-link:hover {
    color: #bf974f;
}

.about-section .nav-link i {
    padding-top: 15px;
    color: #bf974f;
    padding-right: 2px;
}

/* --------------------------------------- */
.special-point {
    background: var(--blueBar-bg, #586c89);
}

.cube {
    text-align: center;
    margin: 0 auto;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    /* Animate the transform properties */
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    /* <-NB */
    height: 180px;
    width: 100%;
    padding: 10px 0;
}

.flip,
.flop {
    padding: 35px 20px;
}


.flip {
    -webkit-transform: translateZ(70px);
    transform: translateZ(70px);
    padding-top: 65px;
}

.flop {
    -webkit-transform: rotateX(-90deg) translateZ(-50px);
    transform: rotateX(-90deg) translateZ(-50px);
}

.flip i {
    color: #eadec9;
    font-size: 32px;
    margin-bottom: 18px;
}

.flip p {
    color: var(--blueBar-text, #ffffff);
    font-size: 18px;
    font-weight: 500;
}

.flop p {
    margin-bottom: 0;
    color: var(--blueBar-text, #ffffff);
    font-size: 14px;
    line-height: 1.3;
}

/* rotation */
.cube:hover {
    -webkit-transform: rotateX(89deg);
    transform: rotateX(89deg);
}

.special-point .row .col-xl-3 {
    border-left: 2px solid var(--blueBar-border, #ffffff30);
}

.special-point .row .col-xl-3:last-child {
    border-right: 2px solid var(--blueBar-border, #ffffff30);
}

/* ----------------------------------------- */
.featured-properties {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
}

.heading {
    font-size: 36px;
    font-weight: 600;
    font-family: 'Jost';
    color: #0e1217;
    margin-bottom: 18px;
}

.section-header p {
    font-size: 19px;
    max-width: 55%;
    margin: 0 auto;
    color: #5C636C;
}

.properti-text {
    border: 1px solid #dbe3ef;
    padding: 40px 32px;
    background-color: #fffaf1;
}

.properti-img img {
    transition: all .4s ease;
}

.properti-img img:hover {
    transform: scale(1.1);
}

.properti-img .nav {
    background: #2f4858;
    padding: 8px;
}
.properti-text .nav-link {
    color: #bdc8d7;
}
.properti-img .nav .nav-link {
    color: #fff;
    font-size: 17px;
}

.properti-img .nav .nav-link i {
    color: #D1B685;
    padding-right: 5px;
    font-size: 14px;
}

.pt-location {
    color: #586c89;
    font-size: 14px;
}

.pt-location i {
    color: #bf974f;
    padding-right: 4px;
}

.properti-text h4 {
    font-size: 22px;
    color: #0e1217;
    font-family: 'Jost';
    font-weight: 600;
}

.pt-details {
    font-size: 17px;
    color: #5C636C;
}

.pt-price {
    color: #bf974f;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 50px;
}

.pt-viewBtn {
    text-decoration: unset;
    color: #586c89;
    padding-bottom: 0px;
    border-bottom: 2px solid #bdc8d7;
    font-size: 15px;
    font-family: 'Roboto';
    transition: all .3s ease;
    display: block;
}

.pt-viewBtn:hover {
    color: #0e1217;
    border-color: #bf974f;
}

.properties-rightSide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.properti-right .properti-img {
    overflow: hidden;
    max-width: 280px;
    height: 200px;
    width: 100%;
}

.properti-right .properti-img img {
    object-fit: cover;
    height: 100%;
}

.properti-right .properti-text {
    border: 1px solid #dbe3ef;
    padding: 24px;
    background-color: #fffaf1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.properti-right .properti-text h4 {
    margin-bottom: 0;
    font-size: 18px;
}

.properti-right .nav-link {
    color: #0e1217;
    font-size: 14px;
    padding: 10px;
}

.properti-right .nav-link:first-child {
    padding-left: 0;
}

.properti-right .nav-link i {
    color: #bdc8d7;
    padding-right: 2px;
}

.properti-right .pt-price {
    font-size: 16px;
}

/* ----------------------------------------- */
.popular-neighborhoods {
    padding: 80px 0;
    background-color: #fffaf1;
}

.darkoverlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #bf984fc0;
    opacity: 0;
    transition: all .4s;
}

.popular-text {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    color: #eadec9;
    font-family: 'Jost';
    font-weight: 600;
    transition: all .4s;
}

.popular-text i {
    width: 28px;
    height: 28px;
    background-color: #bf974f;
    line-height: 28px;
    border-radius: 20px;
}

.popular-box img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    min-height: 240px;
    transition: all .4s;
}

.popular-box+.popular-box {
    margin-top: 12px;
}

.popular-boxCenter.popular-box img {
    height: 495px;
}

.popular-boxCenter .popular-text {
    top: 50%;
}

.popular-box:hover .darkoverlay {
    opacity: 1;
}

.popular-box:hover img {
    transform: scale(1.2);
}

.popular-box:hover .popular-text {
    color: #fff;
}

/* ----------------------------- */
.how-it-works {
    padding: 80px 0 0;
}

.how-Steps {
    display: flex;
    justify-content: space-between;
}

.steps-box {
    background-color: var(--howWork-bg, #586c89);
    padding: 40px 24px;
    text-align: center;
    min-height: 140px;
    position: relative;
    overflow: hidden;
    flex: 0 0 24%;
}

.label-side {
    background-color: var(--howWork-icon, #eadec9);
    transform: rotate(320deg);
    position: absolute;
    left: -40px;
    padding: 1px 55px;
    top: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0;
    color: var(--howWork-sideText, #0e1217);
}

.steps-box i {
    font-size: 35px;
    margin-bottom: 15px;
    color: var(--howWork-icon, #eadec9);
}

.steps-box h4 {
    font-size: 22px;
    color: var(--howWork-text, #ffffff);
    font-family: 'Jost';
}

.howStep-arrow {
    display: flex;
    align-items: center;
    color: #586c89;
}

.howStep-arrow i {
    color: #bf974f;
}

/* --------------------------- */
.benefits-section {
    padding: 80px 0;
}

.benefits-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.benefits-text p,
.benefits-text li {
    font-size: 17px;
    color: #5C636C;
    margin-bottom: 30px;
}

.benefits-text li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.benefits-text li:before {
    content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    color: #bf974f;
}

.benefits-text li i {
    color: #bf974f;
    margin-right: 10px;
}

.benefits-text .nav-link {
    color: #586c89;
    font-weight: 600;
    padding-top: 15px;
}

.benefits-text .nav-link i,
.benefits-text .nav-link:hover {
    color: #bf974f;
}

.benefits-text {
    padding-right: 40px;
}

/* ---- */
.photo-gallery {
    color: #313437;
    background-color: #fff;
}

.photo-gallery p {
    color: #7d8285;
}

.photo-gallery h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit;
}

@media (max-width:767px) {
    .photo-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px;
    }
}

.photo-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.photo-gallery .intro p {
    margin-bottom: 0;
}

.photo-gallery .item {
    padding-block: 10px;
}

.photo-gallery .item img {
    height: 325px;
    object-fit: cover;
}

.photo-gallery .item a {
    position: relative;
    display: block;
}

.photo-gallery .item a .overlay {
    opacity: 0;
    transition: all 0.3s ease;
}

.photo-gallery .item a:hover .overlay {
    opacity: .9;
}

/* ------------------------------ */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--testi-bg, #eadec9);
}
.testimonials-section .heading{
    color: var(--testi-title, #0e1217);
}

.testimonials-section .section-header p{
    color: var(--testi-text, #5C636C);
}

.testimonial-box {
    background-color: #fff;
    padding: 48px 32px;
    text-align: center;
    height: 100%;
}

.testimonial-box img {
    margin-bottom: 25px;
}

.testimonial-box h5 {
    font-size: 20px;
    color: #0e1217;
    margin-bottom: 18px;
    font-family: 'Jost';
}

.testimonial-box p {
    color: #5C636C;
    margin-bottom: 20px;
}

.review-star {
    color: #f0ad4e;
}

p.testi-name {
    font-weight: 500;
    color: #0e1217;
}

p.testi-name span {
    font-size: 12px;
    color: #5C636C;
}

.video-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(45deg, #000000ad, #000000b5), url(../img/couple-meeting-with-real-estate-agent.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.video-sec h5 {
    font-size: 22px;
    font-family: 'Jost';
    margin-bottom: 30px;
    font-weight: 700;
}

.video-sec h5~i {
    color: #eadec9;
    font-size: 48px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.video-sec h5~i:hover {
    transform: scale(1.1);
}

/* -------------------------- */
.contact-section {
    padding-top: 60px;
    background-color: #fffaf1;
}

.contact-box {
    background-color: #fff;
    padding: 50px;
    margin-left: -60px;
    margin-right: 75px;
}

.contact-box h3 {
    margin-top: -90px;
}

.contact-box p {
    color: #586c89;
    font-size: 18px;
    font-family: 'Jost';
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-box h5 {
    color: #0e1217;
    font-family: 'Jost';
    font-size: 18px;
    margin-bottom: 25px;
}

.contact-box h5 span {
    font-weight: 400;
    color: #bf974f;
}

.contact-box a:not(.btn) i {
    color: #bf974f;
    padding-right: 5px;
}

.contact-box a:not(.btn) {
    font-size: 18px;
    font-weight: 700;
    color: #586c89;
    padding-bottom: 10px;
}

.contact-box a:not(.btn):hover {
    color: #bf974f;
}

/* ----------------------- */
.subscribe-sec {
    padding: 60px 0;
    background: #586c89;
    color: #fff;
}

.subscribe-form input {
    width: calc(100% - 170px);
    height: 47px;
    padding: 15px;
    background-color: #dee2e7;
    border: 0;
    margin-top: 0px;
    margin-right: -10px;
}

.subscribe-form .btn-primary:hover {
    background: #000;
    border-color: #000;
}

/* ----------------------------- */
.insta-feed {
    padding-top: 60px;
}

.insta-feed h5 {
    color: #586c89;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.insta-feed h5:hover {
    color: #bf974f;
}

.instaFeed div img {
    width: 100%;
    height: 162px;
    object-fit: cover;
}

.instaFeed div:hover .darkoverlay {
    opacity: 1;
}
.instaFeed-prev:after, .instaFeed-next:after{
    display: none;
}
.instaFeed-next, .instaFeed-prev {
    background-color: #fff;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50px;
    color: #000;
}

/* ------------------------ */
.bootom-footer {
    padding: 60px 0 50px;
}

.footer-social a {
        display: block;
    padding: 0;
    background-color: #586c89;
    margin-left: 6px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    color: #fff;
    font-size: 17px;
    transition: all .3s ease;
}

.footer-social a:hover {
    background-color: #bf974f;
    color: #fff;
}

.footer-link a {
    color: #586c89;
    font-size: 18px;
    font-weight: 600;
}

.footer-link a:hover {
    color: #bf974f;
}

.footer-link a i {
    color: #bf974f;
    padding-right: 5px;
}

.footer-copyRight {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #dbe3ef;
}

.footer-copyRight .nav-link,
.footer-copyRight p {
    color: #5C636C;
    font-size: 14px;
}




/*------------------------------------------------------  Recent Sales */
.banner-section {
    padding-block: 130px;
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.page-title {
    font-size: 52px;
    font-weight: 600;
    font-family: 'Jost';
    color: #fff;
}
.banner-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0e1217ad;
}
.page-des {
    color: #eadec9;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Jost';
}
.para-19 {
    font-size: 19px;
    color: #5C636C;
}
.para-17 {
    font-size: 17px;
    color: #586c89;
}
.creating-future {
    padding-block: 80px;
}
.brand-color {
    color: #bf974f;
}
.list-properties {
    padding-bottom: 50px;
}
.list-properties .properti-right .properti-text {
    background: #fff;
}

/*------------------------------------------------- Services */
.serviceList-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
.list-check {
    list-style: none;
    padding: 0;
}
.list-check li {
    padding-bottom: 15px;
    position: relative;
    font-size: 17px;
    color: #5C636C;
    padding-left: 25px;
}
.list-check li:before {
    content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    font-size: 16px;
    color: #bf974f;
}
.contactlinks .nav-link {
    color: #586c89;
    font-weight: 600;
    padding-top: 25px;
}
.contactlinks i, .contactlinks .nav-link:hover {
    color: #bf974f;
}

/*------------------------------------------------- Testimonials*/
.video-review {
    margin-top: 60px;
}
.videoReview1{
    background: url(../img/couple-meeting-with-real-estate-agent.jpg);
}
.videoReview2{
    background: url(../img/man-and-woman-dancing-in-a-modern-interior.jpg);
}
.videoReview-box {
    padding: 64px;
    text-align: center;
    background-size: cover;
    position: relative;
}
.videoReview-box:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #0000008f;
}
.videoReview-box * {
    position: relative;
}
.videoReview-box h4 {
    color: #fff;
    font-size: 22px;
    font-family: 'Jost';
}
.videoReview-box a {
    font-size: 48px;
    margin: 30px 0;
    display: inline-block;
}
.videoReview-box a i{
    transition: all .3s ease;
    color: #fff;
}
.videoReview-box a:hover i{
    transform: scale(1.1);
    color: #eadec9;
}
.testimonials-text {
    margin-bottom: 80px;
}
/*.text-review {
    margin-top: 24px;
}*/
.textReview-box {
    border: 1px solid #dbe3ef;
    padding: 32px 20px;
}
.textReview-box img {
    width: 135px;
    height: 135px;
    object-fit: cover;
    margin-right: 24px;
}
.textReview-box h5 {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Jost';
}

.reasons-content h4,
.reasons-content .resons-num {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Jost';
}

/*------------------------------------------  Testimonials details*/
.reviewSec-left img {
    height: 500px;
    object-fit: cover;
}
.review-sec {
    margin: 80px 0;
}
.blockquote-footer{
    font-size: 17px;
    margin-top: 5px;
    font-weight: 500;
}

/*----------------------------------------------------- Bio*/
.bio-details a, .bio-details p {
    color: #586c89;
    text-decoration: none;
    margin-bottom: 5px;
 }
.bio-details i {
    color: #bf974f;
    margin-right: 10px;
    width: 16px;
}


/*---------------------------------------------------  Awards */
.award-gallery {
    margin: 80px 0;
}
.lightboxOverlay, .lightbox {
    position: fixed;
}
.lightbox {
    top: 50% !important;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column-reverse;
}
.lb-dataContainer{
    position: relative;
}
.lb-data .lb-close {
    background-color: #fff;
    background-size: 18px;
    background-position: center;
    border-radius: 50px;
    opacity: 1;
    background-blend-mode: exclusion;
    position: absolute;
    right: -10px;
    bottom: -20px;
    z-index: 999999;
}
.award-gallery .overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
}
.award-gallery .photo-gallery .item a {
    position: relative;
    display: block;
    background: #cccccc26;
    height: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 1px 3px 9px #cccccc61;
}
/*------------------------------------------------------- Free Apraisal*/
.apraisal-form {
    padding-bottom: 60px;
}
.dropdown-list {
    padding: 2px 10px;
    margin: 0;
    border: 1px solid #d2d2d2;
    border-radius: 6px;
    height: 80px;
    overflow-y: scroll;
}
.dropdown-list li:first-child {
    margin-bottom: 2px;
}
.dropdown-list li {
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
}
.dropdown-list li label {
    font-size: 16px;
    color: #000;
}
ul.dropdown-list li input {
    width: 13px !important;
    margin: 3px 8px -3px 0;
    accent-color: #6ebe43;
    height: 20px !important;
}


/* -------------------- Responsive CSS */

@media (max-width: 1400px) {
    .contact-box {
        margin-right: 20px;
    }

    .photo-gallery .item img {
        height: 255px;
    }
    .nav-links {
        width: 60%;}
        .footer-social a {
    margin-left: 5px;
    width: 31px;
    height: 31px;
    line-height: 31px;
    font-size: 15px;
}
}

@media (max-width: 1100px) {
    .services-section .d-flex {
        flex-wrap: wrap;
    }

    .service-box {
        flex: 0 0 49%;
        margin-right: 2%;
        margin-bottom: 20px;
    }

    .service-box:last-child,
    .service-box:nth-child(2) {
        margin-right: 0;
    }

    .special-point .row .col-xl-3:last-child {
        border-right: 0;
    }

    .special-point .row .col-xl-3:nth-child(1),
    .special-point .row .col-xl-3:nth-child(3) {
        border-left: 0;
    }

    .special-point .row .col-xl-3:nth-child(1),
    .special-point .row .col-xl-3:nth-child(2) {
        border-bottom: 2px solid #78889f;
    }

    .properties-rightSide .properti-card {
        margin-bottom: 18px;
    }

    .photo-gallery .item img {
        height: 300px;
        width: 100%;
    }

    .contact-section .w-75 {
        width: 100% !important;
    }

    .about-content {
        max-width: 90%;
        margin: 0 auto;
    }

    .about-section img.w-100 {
        width: 50% !important;
    }

    .section-header p {
        max-width: 80%;
    }

    .benefits-text {
        padding-right: 0px;
        padding-bottom: 40px;
    }

    .video-sec {
        padding: 130px 40px;
    }

    .testimonial-box {
        margin-top: 25px;
    }

    .bootom-footer .w-100 {
        width: 50% !important;
    }
     .sub-menu {
    position: unset;
    background: #0000;
    text-align: center;
    }
    .review-sec {
    margin: 50px 0;
}
}

@media (max-width: 992px) {

    .properties-rightSide .properti-card {
        margin-bottom: 0;
        margin-top: 30px;
    }
    .serviceList-img img {
        height: 450px;
    }
    .page-title {
    font-size: 40px;}
    .page-des {
    font-size: 18px; }

   .award-gallery {
        margin: 50px 0;
    }
}

@media(max-width: 767px) {
    .hero-content h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 22px;
        max-width: 90%;
        margin: 0 auto 20px;
    }

    .service-box {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 20px;
        padding: 40px 28px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h3 {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .about-section .nav-link i {
        padding-top: 0px;
    }

    .about-section .nav-link {
        padding-bottom: 0;
    }

    .about-section img.w-100 {
        width: 75% !important;
    }

    .section-header p {
        max-width: 100%;
    }

    .properti-right .properti-img {
        max-width: 100%;
        height: 220px;
        width: 100%;
    }

    .properties-rightSide .properti-card {
        margin-top: 20px;
    }

    .properti-right .properti-text .nav {
        justify-content: flex-start;
    }

    .heading {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .popular-boxCenter.popular-box img {
        height: 240px;
    }

    .col-md-6 .popular-box {
        padding: 12px 0;
    }

    .popular-boxCenter .popular-text {
        top: auto;
        bottom: 20px;
    }

    .how-Steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .steps-box {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }

    .photo-gallery .item img {
        height: 150px;
    }

    .benefits-text .nav-link {
        padding-bottom: 0;
    }

    .row.photos {
        padding: 0 10px;
    }

    .photo-gallery .item {
        padding: 5px;
    }

    .contact-box {
        margin-right: 0px;
        margin-left: 0;
        padding: 30px;
    }

    .contact-box h3 {
        margin-top: 0px;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }

    .instaFeed div img {
        height: 130px;
    }

    .footer-link a {
        display: block;
    }

    .bootom-footer {
        padding: 40px 0 20px;
    }

    .howStep-arrow {
        display: flex;
        align-items: center;
        color: #586c89;
        transform: rotate(90deg);
        height: 85px;
        margin-bottom: 10px;
    }
    .serviceList-img img {
        height: 320px;
    }
    .testimonials-text {
        margin-bottom: 40px;
    }
    .reviewSec-left img {
        height: 300px;
        object-fit: cover;
    }

    .award-gallery .photo-gallery .item img {
        height: auto;
    }
}