
  @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto:wght@100;300;700&display=swap');

  :root{
    --primary-color: #7f7f7f;
    --primary-color-darker: hsl(0, 0%, 93%);
    --secondary-color: #186e7b;
    --secondary-color2: #fff;


    --font-larger: 2rem;
    --font-large: 1.8rem;
    --font-medium: 1.54rem;
    --font-small: 1.3rem;
    --font-smaller: 1rem;

    --border-box: 1px solid hsl(0, 0%, 93%);
    --box-shadow: 0 0 10px hsl(0, 0%, 93%);
    --box-shadow-2: 0 0 10px hsla(0, 0%, 0%, 0.25);
    --padding-medium: 0.8rem;
    --padding-small: 0.5rem;

    --dark-color: rgb(24, 26, 26);
    --white-color: hsl(0, 100%,  100%);
    --dim-white-color: hsl(0, 0%, 93%);
}

*,::before,::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    transition: all .4s;
}

body {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    font-size: 100%;
    line-height: 1.4;
    color: var(--dark-color);
    background-color: var(--secondary-color2);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Merriweather', serif;
}

h1 {
    font-size: var(--font-large);
    font-weight: 800;
    line-height: 1;
}

h2 {
    font-size: var(--font-medium);
}

h3 {
    font-size: var(--font-small);
    font-weight: 600;
}

h4 {
    font-size: var(--font-smaller);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

input::placeholder {
    font: inherit;
}

img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

button {
    background: none;
    font: inherit;
    border: none;
    cursor: pointer;
}

i {
    cursor: pointer;
}

html {
    font-size: 95%;
    transition: all .6s;
}

html::-webkit-scrollbar {
    width: 1rem;
}


html::-webkit-scrollbar {
    width: 1rem;
    background-color: #fff;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--primary-color-darker);
    border-radius: 0 10px 10px 0;
}

/*----------------------
    RESUABLE STYLES
-----------------------*/

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1em;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-item {
    display: flex;
    align-items: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: var(--secondary-color)
}

.swiper-pagination-bullet.swiper-pagination-bullet-active-main{
    color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

.swiper-pagination-bullet{
    color: var(--secondary-color2) !important;
    background-color: var(--secondary-color2) !important;
}


.desktop-hide{display: none;}

.mobile-hide{display: block;}

/*-----
    Sidebar----*/

.siderbar {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 250px;
    height: 100%;
    /* left: -250px; */
    background: var(--primary-color-darker);
    z-index: 10;
}

.siderbar.show {
    left: 0px;
}

.siderbar .logo {
    color: var(--secondary-color);
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 65px;
    text-align: center;
    letter-spacing: 1px;
    border-bottom: 1px solid #d8dbdd;
    padding: 7px;
}

nav ul{
    background: var(--primary-color-darker);
    height: 100%;
    width: 100%;
    list-style: none;
}

nav ul li {
    line-height: 50px;
    /* border-bottom: 1px solid ; */
}

nav ul li a i::before{
    padding-right: 6px;
}

nav ul li.down {
    position: absolute;
    bottom: 0;
    cursor: pointer;
}

nav ul li.down .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
}

nav ul li.down .socials a{
    color: black;
    text-decoration: none;
    font-size: var(--font-medium);
    padding: 1em;
    font-weight: 600;
    display: block;
    width: 100%;
}

nav ul li.down .socials a:hover{
    color: var(--secondary-color);
    transform: scale(1.03);
    transition: all .5s !important;
    background: none !important;
}

nav ul li a {
    font-family: 'Playfair Display', serif !important;
}

nav ul li a{
    color: black;
    text-decoration: none;
    font-size: var(--font-small);
    padding: 10px 5px 10px 30px;
    font-weight: 500;
    display: block;
    width: 100%;
}

nav ul li a {
    display: flex;
    align-items: end;
    gap: 4px;
}

nav ul li .flex-item {
    position: relative;
}


nav ul li a:hover{
    color: var(--secondary-color);
    background: #c0c0c0;
    border-left: 3px;
    border-left-color:var(--secondary-color);
    transform: scale(1.01);
    /* transition: all .5s !important; */
}

nav ul li a:hover i{
    color: var(--secondary-color);
    transition: all .4s !important;
}

nav ul ul {
    display: flex;
    flex-direction: column;
    position: static;
    visibility: hidden;
    opacity: 0;
    height: 0;
}


nav ul .prop-show.show {
    visibility: visible;
    opacity: 1;
    height: max-content;
    transition: opacity .4s;
    transition: height .5s;
}

nav ul ul li {
    line-height: 46px;
    border-bottom: none;
}

nav ul ul li a{
    font-size: 17px;
    color: var(--dark-color);
    padding: 5px 10px 5px 44px;
}

nav ul ul li a:hover {
    color: var(--secondary-color2);
    background: #cbcbcb;
}

nav ul li span {
    position: absolute;
    top: 50%;
    right: 20px;
    padding: 1em;
    transform: translateY(-50%);
    font-size: 22px;
    transition: transform 0.5s !important;
    cursor: pointer;
}

nav ul li span.spin {
    transform: translateY(-50%) rotate(-180deg);
    transition: all .5s !important;
}

.menu-btn {
    position: fixed;
    top: 15px;
    left: 45px;
    width: 45px;
    border-radius: 5px;
    text-align: center;
    background: var(--primary-color-darker);
    cursor: pointer;
    box-shadow: 0px 0px 3px rgb(122, 122, 122);
    z-index: 9;
}

.menu-btn.click {
    left: 295px;
}

.menu-btn.click span:before {
    content: "\eb98";
}

.menu-btn span {
    color: var(--secondary-color2);
    font-size: var(--font-medium);
    line-height: 45px;
}

/*-------
    $Hero Section----*/


.hero,
.properties,
.testimonails,
.services,
.about,
.contact-us,
.pagination,
.PD,
.breadcrumbs,
.subscribe,
.contact{
    padding-left: 290px !important;
}

.hero .container{
    background: linear-gradient(to left, rgb(0 0 0 / 29%), rgb(0 0 0 / 35%)), url(../images/hero/hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 20px;
    position: relative;
    margin: 1em;
    margin-bottom: 3em;
    height: 80vh;
}


.hero-text {
    position: absolute;
    left: 108px;
    bottom: 20vh;
    width: 520px;
}

.hero-text .big-text{
    font-size: 4.3rem;
    color: var(--secondary-color2);
    font-family: 'Bona Nova', serif;
}

.hero-text .small-text{
    color: #bbb6b6;
    padding: 1em 0;
    text-transform: lowercase;
}

.hero-text .image {
    height: 2rem;
    width: 2rem;
}

.hero-text .heroContact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 18px 22px;
    background-color: var(--secondary-color);
    color: var(--secondary-color2);
    font-size: var(--font-medium);
    width: max-content !important;
    border-radius: 15px;
    cursor: pointer;
    transition: all .5s;
}

.hero-text .heroContact:hover {
    transform: scale(1.02);
}

.hero-text .heroContact i.b-phone {
    font-size: var(--font-large);
}

/*-------
    #Properties-----*/


.properties,
.testimonails {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.properties.pop,
.testimonails {
    background: #f1fbf4;
}

.headin {
    justify-content: space-between;
    align-items: center;
}

 .headin .title h1{
    color: var(--secondary-color);
    font-size: 2.5rem;
}

 .headin .view-more a{
    color: #a67979;
    font-size: var(--font-small);
    padding: 15px 20px;
    border-radius: 7px;
    text-align: center;
}

.headin .view-more a:hover {
    transition: all .6s;
    transform: translateX(10);
    text-decoration: underline;
}

.headin #filter {
    width: 150px;
    padding: 10px;
    border: 1px solid var(--primary-color-darker);
    outline: none;
    border-radius: 7px;
}

.Prop {
    margin: 6rem 0em;
    overflow-x: hidden;

}

.PropWrapper{
    padding: 20px 0 !important;
}

.PropWrapper.other{
    gap: 4rem 2rem;
    justify-content: center;
}

.PropWrapper .property{
    height: max-content;
}

.property .PropImage {
    position: relative;
    width: 350px;
    height: 300px;
}

.property .PropImage .tag {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
}

.property .PropImage .tag .text {
    padding: 10px 2em;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50% 50% 0px 0px;
}

.property .image img {
     object-fit: cover;
}

.property .PropContent {
    padding: 20px 30px;
    padding-bottom: 20px !important;
    font-size: 13px;
    width: 350px;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
    z-index: 2;
    box-shadow: var(--box-shadow-2);
    border-radius: 0 0 7px 7px;
}


.property .PropContent .price{
    font-weight: 600;
    font-size: var(--font-medium);
    color: var(--secondary-color);
    padding: 5px 0px;
    text-overflow: ellipsis; 
    overflow: hidden ;
    white-space: nowrap;
}

.property .PropContent .location {
    color:rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.property .PropContent .mainLocation {
    font-size: var(--font-large);
    color: var(--dark-color);
    font-weight: 600;
    padding: 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize !important;
    white-space: nowrap;
}

.property .PropContent .small-details {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    gap: 7px;
    color:rgba(0, 0, 0, 0.5) !important;
    padding: 3px 0;
}

.property .PropContent .small-details .flex-item{gap: 4px; padding: 0 1px;}



/*--------
    Testimonails------*/

.testimonial {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    height: max-content;
    width: 350px;
}

.testimonial-wrapper {
    padding-top: 2em;
}

.testimonial .image {
    width: 9rem;
    height: 9rem;
}

.testimonial .image img {
    border-radius: 50%;
}

.testimonial .name {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: var(--font-small);
    padding: 9px;
}


/*-------
    BreadCrumbs-----*/

.breadcrumbs {
    text-align: center;
    padding-top: 4em;
    padding-left: 2em;
}

.breadcrumbs .Blinks .Blink{
    text-transform: lowercase;
    color: #a9a4a4;
    font-size: var(--font-medium);
}

.breadcrumbs .Blinks .Blink::after{
    content: "/";
    padding: 2px;
}

/*------
    #Propety Details------*/

.PD {
    padding: 5rem 0;
    background-color: var(--secondary-color2);
}

.PD-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.PD-wrapper .PD-images {
    /* flex: 1; */
    width: 500px;
    height: 75vh;
    overflow-x: hidden;
}

.PD-wrapper .PD-images-wrapper .PD-image {
    width: 500px;
    height: 90vh;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


.PD-wrapper .PD-details {
    flex: 1;
}

.PD-wrapper .PD-details .head {
    font-size: var(--font-large);
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 1em;
}

.PD-wrapper .PD-details  .property-tag{
    width: min-content;
    font-size: var(--font-small);
    margin: 1em 0;
    padding: 7px 25px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 7px;
}

.PD-wrapper .PD-details .description {
    font-size: var(--font-small);
    padding-bottom: 19px;
}

.PD-wrapper .PD-details .smaller-details {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.PD-wrapper .PD-details .smaller-details .flex-item {
    color: #848080;
    gap: 5px;
}

/*------
    About Section----*/

.about-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
    padding: 1em;
    gap: 2em;
}

.about-wrapper .about-container .image{
    float: right;
    width: 400px;
    height: 400px;
}

.about-wrapper .head h1{
    color: var(--secondary-color);
    font-size: 2.7rem !important;
}

.about-wrapper .about-text {
    font-size: var(--font-smaller);
    line-height: 41px;
    letter-spacing: 1px;
}

.about-wrapper .about-text .he{
    font-weight: 600;
    font-size: var(--font-small);
    margin-top: 1em;
    color: var(--secondary-color);
}

.about-wrapper .about-text a {
    color: rgb(89, 89, 249);
}

.about-container .h{
    font-size: var(--font-medium);
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2em;

}

.certificate{
    float: left;
     width: 500px; 
    height: 500px;
}

.certificate .img {
    object-fit: cover;
    height: 100%;
}
 
/* ------
    #Pagination-----*/

.pagination {
    padding-bottom: 3rem;
    background-color: var(--white-color); 
    text-align: center;
}

.pagination .page {
    background-color: var(--dim-white-color);
    color: var(--dark-color);
    font-size: var(--font-small);
    border-radius: 50%;
    padding: 10px 15px;
    margin: 0em 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .6s;
}

.pagination .page.activate{
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.pagination .prev,
.pagination .next
 {
    padding: 15px;
 }

.pagination .page:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transition: all .6s;
}


/*-----
    #Contact-Us-----*/

.contact-us {
    padding: 5rem 0;
    background-color: var(--secondary-color2)
}

.contact-us .Cu-wrapper {
    justify-content: space-between;
    margin-top: 2rem;
    align-items: center;
}

.Cu-wrapper .image{
    flex: 1;
}

.Cu-wrapper .interaction{
    flex: 1.4;
    width: 95%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}


.Cu-wrapper .message {
    width: 100%;
    flex-direction: column;
    justify-content: center;
}

.Cu-wrapper .message .head {
    font-size: var(--font-medium);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.Cu-wrapper .locations .Cu a{
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: lowercase;
}

.Cu-wrapper .message a:hover{
    text-decoration: underline;
}

.Cu-wrapper .message .flex-item {
    width: 100%;
    justify-content: center;
    gap: 20px;
}

.Cu-wrapper .message .flex-item input {
    background: none;
    outline: none;
    margin-bottom: 1em;
    padding: 10px 15px;
    font-size: var(--font-small);
    color: var(--dark-color);
    width: 100%;
    border: 1px solid #bbb6b6;
    border-radius: 7px;
}

.Cu-wrapper .message .Mmessage{ width: 100%;}
.Cu-wrapper .message .Mmessage textarea{
    background: none;
    outline: none;
    margin-bottom: 1em;
    padding: 10px 15px;
    font-size: var(--font-small);
    color: var(--dark-color);
    width: 100%;
    border: 1px solid #bbb6b6;
    border-radius: 7px;
    resize: none;
}

.Cu-wrapper .send {
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: var(--font-small);
    padding: 10px 18px;
    border-radius: 7px;
    transition: all .6s;
}

.Cu-wrapper .send:hover {
    transform: scale(1.03);
    transition: all .6s;
}


.Cu-wrapper .locations {
    width: 100%;
    flex-direction: row;
    justify-content:  space-between;
    align-items: flex-start;
}   

.Cu-wrapper .locations {
    font-size: var(--font-small);
    font-weight: 500;
}

.Cu-wrapper .locations .Cu{
    display: flex;
    align-items: center;
    gap: 10px;
}

.Cu-wrapper .locations .Cu .head {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-color);
    padding: 2px 0 ;
    color: var(--secondary-color);
    
}

.Cu-wrapper .locations .Cu span {
    color: #848080;
}

.Cu-wrapper .locations .Cu i.big {
    font-size: var(--font-medium);
    color: var(--secondary-color);
}

.Cu-wrapper .locations .Cu i {
    color: var(--primary-color);
    font-size: var(--font-medium);
}

.Cu-wrapper .locations .Cu i:hover{
    color: var(--secondary-color);
}

.Cu-wrapper .locations .Cu .flex-item{
    flex-direction: column;
    align-items: flex-start;
}


/* ------
    #Subscribe ------*/

.subscribe {
    padding: 7rem 0;
}

.subscribe .subscribe-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 1em;
    max-height: 40vh;
}

.subscribe .subscribe-wrapper .image{
    width: 10rem;
    height: 45vh;
    flex: 1;
}

.subscribe .subscribe-wrapper .subs{
    flex-direction: column;
    align-items: center;
    gap: 1em;
    flex: 1.5;
}

.subscribe .subscribe-wrapper .head {
    font-size: var(--font-medium);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.subscribe .subscribe-wrapper p.descrip {
    font-size: var(--font-small);
    color: var(--primary-color);
    text-transform: lowercase;
}

.subscribe .subscribe-wrapper form.flex-item {
    flex-direction: row;
    justify-content: space-evenly;
    gap: 3rem;
    width: 100%;
}

.subscribe .subscribe-wrapper form.flex-item input {
    padding: 10PX 15px;
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    font-size: var(--font-small);
}

.subscribe .subscribe-wrapper form.flex-item input#sub {
    width: 100%;
    background: none;
}

.subscribe .subscribe-wrapper form.flex-item input#submit {
    width: 100px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    cursor: pointer;
    border: none;
}

.subscribe .subscribe-wrapper form.flex-item input#submit:hover {
    transform: scale(1.02);
}



/*-----------------------------------
    #Media Queries
------------------------------------*/

@media(max-width: 1200px){
    html{
        font-size: 85%;
    }

    .property .PropImage,
    .property .PropContent {
        width: 300px;
    }
}



@media(max-width: 1025px){

    .siderbar {
        left: -250px;
    }

    .hero,
.properties,
.testimonails,
.services,
.about,
.contact-us,
.pagination,
.PD,
.subscribe,
.breadcrumbs,
.contact{
    padding-left: 0px !important;
}

    .hero-text .heroContact {
        padding: 14px 22px;
    }

    .hero-text .big-text {
        font-size: 4.2rem;
    }

    .headin .title h1 {
        font-size: 2.6rem;
    }

    .headin .view-more a {
        padding: 13px 20px;
    }
}


@media ( max-width: 959px ) {
    .service-wrapper {
        padding: 2em 0;
    }

    .property .PropImage {
        height: 250px;
    }

    .property .PropImage,
    .property .PropContent {
        width: 300px;
    }


    .contact-us .Cu-wrapper {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 80%;
        margin: auto;
    }

    .Cu-wrapper .image {
        flex: none;
        height: 60vh;
    }
}

@media( max-width: 845px) {

    .headin .title h1 {
        font-size: 2.4rem;
    }

    .headin .view-more a {
        padding: 12px 20px;
    }

}

@media(max-width: 769px){

    .container {
        padding: 0 3em;
    }

    .Prop {
        margin: 5rem 0;
    }

    .desktop-hide{display: block;}

    .mobile-hide{display: none;}

    .nav .nav-items .navitem{
        display: none;
     }

     .headin .title h1 {
        font-size: 2.4rem;
    }

    .headin .view-more a {
        padding: 12px 15px;
    }

    .hero-text .big-text {
        font-size: 3.8rem;
    }

    .hero-text {
        position: absolute;
        bottom: 16vh;
        width: 520px;
    }
     
    .hero-text .heroContact {
        padding: 9px 22px;
    }

    .contact-us .Cu-wrapper {
        width: 100%;
    }

    
}




@media( max-width: 693px ) {

    .Prop {
        margin: 4rem 0;
    }

    .headin .title h1 {
        font-size: 2rem;
    }

    .headin .view-more a {
        padding: 9px 15px;
    }

    .property .PropImage,
    .property .PropContent {
        width: 250px;
    }

    .property .PropImage {
        height: 210px;
    }

    .property .PropContent .mainLocation {
        font-size: var(--font-medium);
    }

    .PD-wrapper .PD-images {
        width: 98%;
        height: 90vh;
    }

    .hero-text {
        position: absolute;
        left: 98px;
        bottom: 15vh;
        width: min-content;
    }

    .about-wrapper .about-container .image{
        float: right;
        width: 320px;
        height: 320px;
    }
    
    .subscribe .subscribe-wrapper {
        flex-direction: column;
        max-height: 40vh;
    }

    .subscribe .subscribe-wrapper .image {
        width: 15rem;
    }
    
}



@media(max-width: 569px){

    .container {
        padding: 0 2em;
    }

    .hero-text .big-text {
        font-size: 3.5rem;
    }

    .hero-text {
        position: absolute;
        left: 47px;
        bottom: 10vh;
        width: 350px;
    }

    .hero .container {
        border-radius: 13px;
        position: relative;
        margin: 1em;
        height: 70vh;
    }

    .hero-text .heroContact {
        padding: 7px 16px;
        font-size: var(--font-small);
    }

    .property .PropImage,
    .property .PropContent {
        width: 210px;
    }

    .property .PropImage {
        height: 160px;
    }

    .headin .view-more a {
        padding: 5px 10px;
        font-size: var(--font-smaller);
    }

    .PD-wrapper .PD-details .property-tag {
        font-size: var(--font-smaller);
        padding: 5px 20px;
        border-radius: 7px;
    }

    .property .PropContent .mainLocation {
        font-size: var(--font-small);
    }

    .service-wrapper .service {
        width: 200px;
        padding: 20px 0;
    }

    .Prop {
        margin: 3rem 0;
    }

    .swiper-button-next::after, .swiper-button-prev::after {
        display: none;
    }

    .headin #filter {
        width: 120px;
        padding: 8px 10px;
    }

    .subscribe .subscribe-wrapper form.flex-item input {
        padding: 8PX 15px;
        font-size: var(--font-smaller);
    }

    .subscribe .subscribe-wrapper form.flex-item {
        gap: 1rem;
        width: 100%;
    }

    .subscribe .subscribe-wrapper form.flex-item input#submit {
        width: 20%;
    }

    .subscribe .subscribe-wrapper form.flex-item input#sub {
        width: 80%;
    }

    .subscribe .subscribe-wrapper p.descrip {
        font-size: var(--font-smaller);
    }

    .subscribe .subscribe-wrapper .head {
        font-size: var(--font-medium);
    }

    .certificate{
        width: 80%; 
        height: 50vh;
    }

}


@media(max-width: 500px ){
    .property .PropImage, .property .PropContent {
        width: 200px;}

    .PropWrapper.other {
        gap: 4rem 1rem;
        justify-content: center;
    }
}



@media(max-width: 481px ){

    .container {
        padding: 0 5px;
    }

    .hero-text .big-text {
        font-size: 3.2rem;
    }

    .hero-text {
        position: absolute;
        left: 47px;
        bottom: 17vh;
        width: 350px;
    }

    .hero .container {
        border-radius: 10px;
        position: relative;
        margin: 1em;
        height: 64vh;
    }

    .Prop {
        margin: 2rem 0;
    }

    .headin .title h1 {
        font-size: 1.8rem;
    }

    .property .PropContent {
        width: 210px;
        padding: 10px;
        font-size: 12px;
    }

    .property .PropImage,
     .property .PropContent {
        width: 180px;
    }

    .property .PropImage {
        height: 150px;
    }

    .PD-wrapper .PD-details .description {
        font-size: var(--font-smaller);
        padding-bottom: 19px;
    }

    .PD-wrapper .PD-images-wrapper .PD-image {
        width: 500px;
        height: 75vh;
    }

    .PD-wrapper .PD-images {
        width: 98%;
        height: 75vh;
    }

    .certificate{
        width: 100%; 
        height: 50vh;
    }

    .about-wrapper .about-container .image{
        float: right;
        width: 300px;
        height: 300px;
    }

    .property .PropContent .price {
        font-weight: 600;
        font-size: var(--font-smaller);
    }
}



@media(max-width: 440px) {

    .hero-text .big-text {
        font-size: 3rem;
    }

    .hero-text {
        position: absolute;
        left: 34px;
        bottom: 13vh;
        width: 300px;
    }

    .hero-text .heroContact i.b-phone {
        font-size: var(--font-medium);
    }

    .hero-text .heroContact {
        padding: 7px 13px;
        font-size: var(--font-smaller);
    }

    .hero .container {
        border-radius: 13px;
        position: relative;
        margin: 5px;
        height: 55vh;
    }

    .property .PropImage,
    .property .PropContent {
       width: 165px;
   }

    .breadcrumbs .Blinks .Blink {
        text-transform: lowercase;
        color: #a9a4a4;
        font-size: var(--font-small);
    }

    .pagination .page {
        font-size: var(--font-smaller);
        padding: 8px 13px;
    }

    .about-wrapper .about-text {
        line-height: 32px;
    }

    .about-wrapper {
        padding: 6px;
    }

    .Cu-wrapper .locations .Cu i.big {
        font-size: 40px;
    }

    .Cu-wrapper .message .flex-item {
        justify-content: center;
        gap: 20px;
        flex-direction: column;
    }

    .service-wrapper {
        gap: 0px;
    }

    .about-wrapper .about-container .image{
        float: right;
        width: 280px;
        height: 280px;
    }

    .subscribe .subscribe-wrapper .image {
        width: 10rem;
    }
}

@media(max-width: 400px){

    .siderbar .logo {
        font-size: 20px;
        font-weight: 700;
        line-height: 46px;}

    .Cu-wrapper .send {
        font-size: var(--font-smaller);
    }

    .swiper-button-next,
        swiper-button-prev{ display: none;
     }

    .headin .view-more a {
        background-color: inherit;
        color: var(--dark-color);
        padding: 15px 7px;
        border-radius: 7px;
        text-align: center;
    }

    .service-wrapper .service {
        width: 150px;
        padding: 20px 0;
    }

    .service-wrapper {
        gap: 8px;
    }

    .testimonial .image {
        height: 7rem;
        width: 7rem;
    }

    .testimonial { padding: 1rem;}

    .testimonial .review{ font-size: .9em;}

    .property .PropImage .tag .text {
        padding: 7px 1em;
        font-size: 0.9em;
    }

    .PropWrapper.other {
        gap: 4rem 15px;
        justify-content: center;
    }

    .about-wrapper .about-con ta iner .image{
        float: right;
        width: 200px;
        height: 200px;
    }

}

@media(max-width: 356px){
    .property .PropImage, .property .PropContent {
        width: 159px;
    }
}

@media(max-width: 340px){

    .hero-text {
        width: 250px;
    }

    .property .PropContent .mainLocation {
        font-size: var(--font-smaller);
    }

    .property .PropImage,
    .property .PropContent {
       width: 150px;
   }

   .property .PropImage {
    height: 130px;
   }

   .headin .view-more a {
    background-color: inherit;
    color: var(--dark-color);
    padding: 15px 7px;
    border-radius: 7px;
    text-align: center;
    }

    .headin .title h1 {
        font-size: 1.3rem;
    }

    .hero-text .big-text {
        font-size: 2.5rem;
    }

    .menu-btn span {
        color: var(--secondary-color2);
        font-size: var(--font-small);
        line-height: 37px;
    }
    
    .menu-btn {
        width: 37px;
        left: 25px;
    }

    .menu-btn.click {
        left: 241px;
    }

    .siderbar {    width: 220px;}

    nav ul li a {
        font-size: 1.2rem;
        padding: 0px 5px 10px 23px;
    }

    nav ul ul li a {
        font-size: 15px;
        padding: 5px 10px 5px 34px;
    }

    .service-wrapper .service {
        width: 140px;
        padding: 20px 0;
    }

    .service-wrapper .service .image {
        height: 4rem;
        width: 4rem;
    }

    .service-wrapper .service .title {
        font-size: 1.2rem;
    }

    .service-wrapper .service .serviceContent {
        font-size: 0.85rem;
    }

    .service-wrapper .service .learnMore {
        margin: 10px 0;
        padding: 7px;
        font-size: 0.9rem;}
    
    .testimonial{
        padding: 4px;
    }

    .testimonial .image {
        width: 5rem;
        height: 5rem;
    }

    .testimonial .name {
        font-size: var(--font-smaller);
        padding: 6px 0px;
    }

    .testimonial .review {
        font-size: 0.9rem;
    }

    .PropWrapper.other {
        gap: 4rem 6px;
        justify-content: center;
    }

    .Cu-wrapper .image {
        flex: none;
        height: 50vh;
    }

    .PD-wrapper .PD-details {
        flex: 1;
        margin: 0 3px;   
    }
    
}

