.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }

  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }

  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }

  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }

  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }

  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }

  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }

  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }

  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }

  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }

  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }

  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }

  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }

  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }


:root {
    --main-color: #015D2A;
    --sec-color: #6A9E3B;
    --tet-color: #E3E46D;
    --white-color: white;
    --grey-color: #EDEFF680;
    --yel-color: #FFCE22;
    --gray-color: #00000080;
    --faint-green: #6A9E3B33;
    --grelish-color: #F5F5F5;
    --yel-faint: #E3E46D33;
}

.pre-nav {
    background-color: var(--main-color);
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 60px;
    /* line-height: 16.97px; */
}

/* .socials {
    width: 18px;
} */

/* .socials1 {
    width: 20px;
}

.socials2 {
    width: 20px;
}

.socials3 {
    width: 40px;
} */

.socialstwitter {
    color: var(--main-color);
    transition: 0.5s all ease-in-out;
}

.socialstwitter:hover {
    transform: scale(1.5);
}


.welcome {
    animation: scaler 2.5s infinite;
}

@keyframes scaler {
    0% {transform: scale(1.0);}
    50% {transform: scale(1.2);}
    100% {transform: scale(1.0);}
}

/* .socials img:hover{
    transform: scale(1.2);
} */

.hero-bg-img {
    background-image: url('../images/hero-image.jpeg');
    height: 700px;
    width: 100%;
    background-size: cover;
}

.hero-bg-over {
    background-image: url('../images/hero-image-over.svg');
    height: 100%;
    width: 100%;
    position: relative;
}

.mic-logo {
    width: 190px;
    height: 90px;
}

.nav-menu a{
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
    border: 1.5px solid transparent;
    background-color: transparent;
}

.nav-menu a:hover{
    /* background-color: var(--sec-color); */
    border: 1.5px solid var(--sec-color);
    background-color: var(--main-color);
    color: white;
}
.nav-menu-mobile span {
    z-index: 1000;
}

.nav-menu-mobile a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
    border: 1.5px solid transparent;
    background-color: transparent;
    z-index: 1000;
}

.nav-menu-mobile a:hover{
    /* background-color: var(--sec-color); */
    border: 1.5px solid var(--sec-color);
    background-color: var(--main-color);
    color: white;
}

.mobile-nav-box {
    height: 100vh;
    background-color: var(--main-color);
    display: none;
    position: fixed;
    z-index: 1000;
    width: 100vw;
}

.mobile-nav-ball {
    background-color: var(--sec-color);
    height: 60px;
    width: 60px;
    position: absolute;
    animation: bounceKeep 7s infinite;
    background-image: linear-gradient(to bottom right, var(--main-color), var(--sec-color));
}

@keyframes bounceKeep {
    0% {top: 0; right: 0;}
    25% {top: 140px; right: 80%;}
    50% {top: 80%; right: 0;}
    75% {top: 130%; right: 90%;}
    100% {top: 0; right: 0;}
}


.signup-kit {
    height: 53px;
    width: 120px;
    color: var(--white-color);
    background-color: var(--main-color);
    border: 1.5px solid var(--tet-color);
    transition: all 0.5s ease-in-out;
}

.signup-kit:hover {
    height: 53px;
    width: 120px;
    color: black;
    border: 1.5px solid var(--main-color);
    transform: scale(0.9);
    background-image: linear-gradient(to bottom right, var(--sec-color), var(--tet-color));
}

.login-kit {
    height: 53px;
    width: 120px;
    color: var(--main-color);
    background-color: var(--white-color);
    border: 1.5px solid var(--main-color);
    transition: all 0.5s ease-in-out;
}

.login-kit:hover {
    height: 53px;
    width: 120px;
    color: black;
    border: 1.5px solid var(--tet-color);
    transition: all 0.5s ease-in-out;
    background-image: linear-gradient(to bottom right, var(--sec-color), var(--tet-color));
    transform: scale(0.9);
}

.main-nav1 {
    width: 100%;
    margin: auto;
    background-color: white;
    position: absolute;
    top: -45px;
    /* border-radius: 50px; */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: 300;
    /* margin-left: 5%; */
}

.main-nav2 {
    width: 100%;
    margin: auto;
    background-color: white;
    position: absolute;
    top: -45px;
    border-radius: 50px;
    z-index: 300;
    /* margin-left: 5%; */
}

.hero-content-box {
    width: 90%;
    background-color:rgba(1, 93, 42, 0.3);
    /* padding-top: 100px; */
}

.hero-heading-write {
    font-size: 28px;
    font-weight: 500;
    color: white;
}

.first-button {
    color: var(--sec-color);
    background-color: white;
    border: 1.5px solid white;
    font-size: 16px;
    font-weight: 600;
    height: 61px;
    width: 200px;
    border-top-left-radius: 10px;
}

.second-button {
    color: white;
    background-color: transparent;
    border: 1.5px solid var(--tet-color);
    font-size: 16px;
    font-weight: 600;
    height: 61px;
    width: 200px;
    border-top-right-radius: 10px;
}

.prop-search {
    background-color: transparent;
    border: 1.5px solid var(--sec-color);
}

.prop-search p{
    color: var(--sec-color);
}

.prop-search input{
    width: 100%;
    outline: none;
    color: var(--sec-color);
    background-color: transparent;
    border: none;
}

.prop-search input::placeholder{
    color: var(--sec-color);
}

/* .hero-search-btn {
    color: white;
    background-color: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
} */

.hero-search-btn {
    background-color: var(--main-color);
    color: white;
    padding: 5px 10px;
    border: 2px solid var(--main-color);
    transition: all 0.5s ease-in-out;
}

.hero-search-btn:hover {
    background-color: white;
    color: var(--sec-color);
    padding: 5px 10px;
    border: 2px solid var(--sec-color);
}


.hero-activate button:first-child, .hero-activate select{
    border: none;
    /* border: 1.5px solid var(--sec-color); */
    color: var(--sec-color);
    background-color: transparent;
}

.hero-act-btn {
    border: none;
    /* border: 1.5px solid var(--sec-color); */
    color: var(--sec-color);
    background-color: transparent;
}

.hero-activate-mobile {
    width: 94%;
    margin: auto;
    /* background-color: #E3E46D; */
}

.sellinText p{
    font-size: 18px;
    color: var(--sec-color);
}

.sellinText {
    width: 100vw;
    margin: auto;
}

.rentalText {
    width: 94vw;
    margin: auto;
}

.rentalText p{
    font-size: 18px;
    color: var(--sec-color);
}

.firstbox {
    color: var(--main-color);
}

.typeBtn {
    background-color: var(--sec-color);
    color: white;
}

.likeBtn {
    font-size: 24px;
    bottom: 10px;
    right: 10px;
}

.outrightPay {
    font-size: 12px;
}

.buyBtn {
    background-color: var(--sec-color);
}

.luxuriousRentals {
    background-color: var(--grey-color);
}



.initial-content {
    padding-top: 170px;
}

.initial-content-sub {
    padding-top: 80px;
}

.video-loop {
    height: 450px;
    width: 100%;
    /* background-image: url('../images/whatsay-placeholder.svg'); */
    background-size: cover;
    background-repeat: no-repeat;
}

.clients-say {
    width: 90%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.what-text {
    color: rgba(136, 144, 153, 1);
    font-size: 15.42px;
}

/* .testimonial-btn {
    background-color: var(--main-color);
    color: white;
    width: 240px;
    border: 1.5px solid var(--main-color);
    transition: all 0.5s ease-in-out;
} */

/* .testimonial-btn:hover {
    background-color: var(--sec-color);
    color: white;
    width: 240px;
    border: 1.5px solid var(--main-color);
} */

.name-field, .email-field {
    width: 100%;
    font-size: 20px;
}

.subject-field {
    font-size: 20px;
}

.subject-field input{
    border: 1.5px solid black;
    outline: none;
}

.form-field1 {
    width: 90%;
}

.name-field input {
    border: 1.5px solid black;
    outline: none;
}

.email-field input {
    border: 1.5px solid black;
    outline: none;
}

.message-field {
    font-size: 20px;
}

.message-field input {
    border: 1.5px solid black;
    outline: none;
}


.form-send-message {
    /* background-color: var(--main-color); */
    /* color: white; */
    font-size: 20px;
    /* border: 1.5px solid var(--main-color); */
    /* transition: all 0.5s ease-in-out; */
}

/* .form-send-message:hover {
    background-color: var(--sec-color);
    color: white;
} */

.getintouchBox {
    background-color: var(--grey-color);
}

.reach-out {
    font-size: 20px;
}

.reach-out2 {
    font-size: 16px;
}

.reach-box-1 {
    width: 85%;
    margin: auto;
    height: 220px;
    background-color: white;
    box-shadow: 2px 3px 5px var(--sec-color);
    transition: all 0.5s ease-in-out;
}

.reach-box-1:hover {
    box-shadow: 5px 6px 5px var(--main-color);
}

.footer-box {
    background-color: var(--main-color);
}

.footer1 {
    width: 90vw;
}

.footer1 img{
    width: 200px;
}

.footer1-box {
    width: 90vw;
    border-bottom: 2px solid white;
    border-right: 0;
}

.footer2-box {
    width: 90vw;
    /* background-color: blue; */
}

.news-field::placeholder {
    color: white;
}

.news-field {
    border: none;
    outline: none;
}

.newsletterBox {
    border: 2px solid white;
    width: 90vw;
}

.newsletterBox button{
    transition: all 0.5s ease-in-out;
}

.newsletterBox button:hover{
    background-color: var(--sec-color);
    color: white;
}

.footer-menu a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
    border: 1.5px solid transparent;
}

.footer-menu {
    width: 90vw;
}

.footer-menu-box {
    border-top: 2px solid white;
}

.footer-menu a:hover{
    /* background-color: var(--sec-color); */
    border: 1.5px solid white;
}

/* ABOUT US */
.hero-bg-imgAbout {
    background-image: url('../images/about-hero.svg');
    height: 500px;
    width: 100%;
    background-size: cover;
}

.hero-bg-overAbout {
    /* background-image: url('../images/hero-image-over.svg'); */
    background-color: rgb(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    position: relative;
}

.subPage {
    width: 94vw;
    height: 310px;
}

.subPage {
    padding-top: 80px;
    color: white;
}

.subPage-content h1{
    font-size: 48px;
}

.subPage-content p{
    font-size: 20px;
}

.nav-around h4{
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.nav-around p{
    padding: 8px 19px;
    border-radius: 60px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.nav-around p:hover{
    background-color: var(--main-color);
    color: white;
    padding: 8px 19px;
    border-radius: 60px;
}

/* ryan start */

.why{
    background-color: var(--grey-color);
}


.Mg{
    background-color: #6A9E3B33;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.Mg img{
    width: 24px;
}

/* .why-sect{
    display: grid;
    grid-template-columns: 23em 23em 23em;
    column-gap: 0.5rem;
} */

/* .why-us-sect{
    width: 23em
} */

.why-us-sect p{
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
letter-spacing: 0.5px;
}

.choose-why {
    color: var(--main-color);
}

.aboutfullimage {
    width: 100%;
    height: 400px;
    background-image: url('../images/image27about.png');
    background-size: cover;
}

.Clients h3{
    font-weight: bold;
    text-align: center;
}

.Clients p{
    font-size: 17px;
    text-align: center;
    margin-bottom: 3rem;

}

.Clients p span{
    color: lightgrey;
}

.testimonial-box::-webkit-scrollbar {
    display: none;
}

.navig-testimonial p:first-child {
    background-color: var(--grey-color);
    padding: 14px 20px;
    transition: all 0.5s ease-in-out;
}

.navig-testimonial p:first-child:hover {
    background-color: var(--main-color);
    padding: 14px 20px;
    color: white;
}

.navig-testimonial p:last-child {
    background-color: var(--main-color);
    padding: 14px 20px;
    color: white;
    transition: all 0.5s ease-in-out;
}

.navig-testimonial p:last-child:hover {
    background-color: var(--grey-color);
    padding: 14px 20px;
    color: black;
}

.xll:hover{
    box-shadow: 2px 2px 4px 2px var(--sec-color);
}

.xll{
    /* width: 365px; */
    border: solid 1px;
    border-color: lightgrey;
    border-radius: 14px;
    background-color: white;
    transition: all 0.5s ease-in-out;
}

.xll p{
    font-size: 18px;
}

.xll span{
    font-size: 21px;
}

.xll i{
    font-size: 20px;
}

.xll img{
    width: 40px;
    height: 40px;
    border-radius: 40px;
}

.IG-3{
    display: flex;
    align-items: center;
    margin-bottom: 1em;
    gap: 1em;
}

.Read-2{
    background-color: #F0F6FF;
    /* width: 144px; */
    border-radius: 18px;
    justify-content: center;
    display: flex;
    /* height: 33px; */
    padding: 5px 15px;
    align-items: center;
}

.Read-2:hover{
    background-color: var(--sec-color);
    /* width: 144px; */
    border-radius: 18px;
    justify-content: center;
    display: flex;
    /* height: 33px; */
    padding: 5px 15px;
    align-items: center;
}

.Read-2 a{
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    color: #015D2A;
    font-weight: 600;
}

.star-studed {
    color: var(--yel-color);
}


/* ryan end */

/* rent details */
.apartment-phts {
    overflow-x: auto;
}

.apartment-phts::-webkit-scrollbar {
    display: none;
}

.apartment-contact-us label{
    color: var(--main-color);
}

.contact-us-btn {
    background-color: var(--sec-color);
    color: white;
    padding: 5px 10px;
    border: 2px solid var(--sec-color);
    transition: all 0.5s ease-in-out;
}

.contact-us-btn:hover {
    background-color: white;
    color: var(--sec-color);
    padding: 5px 10px;
    border: 2px solid var(--sec-color);
}

.apartment-features li::marker{
    color: var(--sec-color);
    font-size: 30px;
}

.prop-id-box {
    border-bottom: 2px dashed var(--main-color);
}

.make-payment {
    background-color: var(--sec-color);
    color: white;
    border: 2px solid var(--sec-color);
    transition: all 0.5s ease-in-out;
}

.make-payment:hover {
    background-color: white;
    color: var(--sec-color);
}

.book-inspection {
    background-color: white;
    color: gray;
    border: 2px solid gray;
    transition: all 0.5s ease-in-out;
}

.book-inspection:hover {
    background-color: gray;
    color: white;
    border: 2px solid gray;
}

.search-btn1 {
    background-color: var(--sec-color);
    color: white;
    padding: 5px 10px;
    border: 2px solid var(--sec-color);
    transition: all 0.5s ease-in-out;
}

.search-btn1:hover {
    background-color: white;
    color: var(--sec-color);
    padding: 5px 10px;
    border: 2px solid var(--sec-color);
}



.socials img{
    transition: all 0.5s ease-in-out;
}

.socials img:hover{
    transform: scale(1.5);
}

/* testimonial page */
.clientsay-head h1{
    font-size: 30px;
}

.clientsay-head p{
    color: var(--main-color);
}

.sm-shadow {
    box-shadow: 1px 1px 3px 1px gray;
}

/* .testi-card {
    height: 450px;
} */

.getintouch {
    color: var(--main-color);
}

.send-us-a-mess {
    position: relative;
}

.send-us-a-message-box-inner {
    border: 1px solid rgb(233, 230, 230);
    background-color: white;
}

.send-us-a-message-box {
    position: absolute;
    top: -90px;
    right: 0;
}

.contact-whatclient {
    padding-top: 110px;
    padding-bottom: 30px;
}

/* blog page */
.guide-head {
    color: var(--main-color);
}

.list-items a{
    color: black;
}

.list-items a:hover{
    color: var(--sec-color);
    transform: scale(1.2);
}

.tips-adv span{
    background-color: var(--main-color);
    color: white;
}

.acti-sec span{
    background-color: var(--main-color);
    color: white;
}



/* Dashboards */
/* Webmaster dashboard */
.dashboard-body {
    background-color: var(--grey-color);
}
.dashboard-nav {
    background-color: var(--main-color);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dashboard-icon{
    width: 200px;
    margin: auto;
}

.dashboard-nav-btn-option {
    background-color: transparent;
    color: white;
    transition: all 0.5s ease-in-out;
}

.dashboard-nav-btn-option:hover {
    background-color: white;
    color: var(--main-color);
}


.textgreen {
    color: var(--sec-color);
    font-size: 24px;
}

.textgreenthick {
    color: var(--main-color);
    font-size: 24px;
}

.dashText {
    font-size: 14px;
    color: var(--gray-color);
}

.borderItIs {
    border-top: 1.5px solid var(--gray-color);
    border-bottom: 1.5px solid var(--gray-color);
}

.daily-visit {
    background-color: var(--tet-color);
}
.daily-visit1 {
    background-color: var(--tet-color);
    height: 20px;
}

.monthly-visit {
    background-color: var(--main-color);
}
.monthly-visit2 {
    background-color: var(--main-color);
    height: 20px;
}

.visit-wave {
    width: 150px;
    margin: auto;
}

.most-searched-text {
    font-size: 12px;
}

.date-wrap {
    background-color: var(--sec-color);
    width: 58px;
    height: 58px;
}

.post-over-bg {
    background-color: rgb(0, 0, 0, 0.7);
    color: white;
}

.top-nav-here {
    position: sticky;
    top: 0;
    /* background-color: var(--grey-color); */
    z-index: 900;
}

.cards-writeup {
    color: var(--main-color);
}

.prop-details p:last-child{
    color: var(--main-color);
}

.upload-img-box {
    border: 2px dashed gray;
    height: auto;
    width: 100%;
}

.contact-us-btn2 {
    background-color: white;
    color: var(--main-color);
    padding: 5px 10px;
    border: 2px solid var(--main-color);
    transition: all 0.5s ease-in-out;
}

.contact-us-btn2:hover {
    background-color: var(--main-color);
    color: white;
    padding: 5px 10px;
    border: 2px solid var(--main-color);
}

.contact-us-btn3 {
    background-color: var(--main-color);
    color: white;
    padding: 5px 10px;
    border: 2px solid var(--main-color);
    transition: all 0.5s ease-in-out;
}

.contact-us-btn3:hover {
    background-color: white;
    color: var(--main-color);
    padding: 5px 10px;
    border: 2px solid var(--main-color);
}

.img-btn {
    border: 0;
    border-bottom: 2px solid var(--main-color);
}

.det-btn {
    border: 0;
    border-bottom: 2px solid transparent;
}

#buyP {
    display: block;
}

#rentP {
    display: none;
}

/* Sign Up */
.sign-up-contain {
    color: var(--main-color);
}

.sign-up-contain input{
    color: var(--main-color);
    border: 1px solid var(--sec-color);
    outline: var(--sec-color);
}

.Signup-box {
    padding-top: 100px;
}

/* .signup-head {
    position: absolute;
    left: 37%;
    animation: signBounce 3s infinite;
} */

/* @keyframes signBounce {
    0% { top: 10px;}
    50% { top: 40px;}
    100% { top: 10px;}
} */


.total-balance-box {
    border-bottom: 2px solid var(--gray-color);
}

.total-balance-box p:last-child{
    color: var(--sec-color);
}

.users-search {
    border: 1.5px solid gray;
}

.users-search input{
    outline: 0;
    border: 0;
    background-color: transparent;
}

.client-dp {
    width: 50px;
    height: 50px;
}

.modify-user {
    border: 1.5px solid var(--sec-color);
    background-color: transparent;
}

.modify-user:hover {
    background-color: var(--sec-color);
    color: white;
}

.remove-user {
    border: 1.5px solid red;
    background-color: transparent;
}

.remove-user:hover {
    background-color: red;
    color: white;
}

tr {
    padding: 8px;
    margin-top: 40px;
}

td {
    padding: 5px;
}

table {
    width: 100%;
}

.admin-btn {
    color: var(--main-color);
    /* text-decoration: underline; */
}

.webmaster-btn {
    color: red;
}
.accountant-btn {
    color: var(--sec-color);
}

.property-purchased {
    background-color: var(--faint-green);
}
.property-offers {
    background-color: var(--yel-faint);
}

/* .duration-box {
    position: relative;
}

.duration-box p{
    position: absolute;
} */

.stated-price {
    color: var(--sec-color);
}

.paid-price {
    color: var(--main-color);
}

.remaining-price {
    color: red;
}

.table-row-bg {
    background-color: var(--grelish-color);
    border-radius: 10px;
    transition: 0.5s all ease-in-out;
}

.table-row-bg:hover {
    background-color: var(--faint-green);
}

.completed-btn {
    transition: 0.5s all ease-in-out;
}

.table-row-bg:hover {
    .completed-btn {
        background-color: var(--main-color);
        color: white;
    }
}

.recent-transaction-write {
    border-bottom: 2px solid var(--gray-color);
}

.services-cont p:first-child{
    color: #6A9E3B;
}

input[type=radio] {
    accent-color: var(--main-color);
}

.manage-payment {
    border: 0;
    border-bottom: 2px solid var(--main-color);
}

.manage-payment-not {
    border: 0;
}

.payment-search input{
    border: 0;
    outline: none;
}

.payment-search{
    border: 2px solid var(--gray-color);
}

th, td {
    font-size: 13px;
}

.reminder-btn {
    color: white;
    background-color: red;
    border: 1.5px solid red;
}

.sub-head {
    color: var(--main-color);
}

.pay-inp {
    border: 2px solid var(--sec-color);
    outline: none;
}

.pay-tit {
    color: var(--main-color);
}




/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .socials {
        width: 100px;
        margin: auto;
    }

    .send-us-a-message-box {
        position: relative;
        margin-top: 130px;
    }

    .cate-list-content {
        overflow-x: auto;
    }

    .dashboard-nav {
        background-color: var(--main-color);
        color: white;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        display: none;
    }
    .dashboard-icon{
        width: 150px;
        /* margin: auto; */
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .reach-box-1 {
        width: 50%;
        margin: auto;
        background-color: white;
    }

    .cate-list-content {
        overflow-x: auto;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .hero-content-box {
        width: 70%;
        background-color:rgba(1, 93, 42, 0.3);
        /* padding-top: 100px; */
    }

    .hero-heading-write {
        font-size: 42px;
        font-weight: 500;
        color: white;
    }

    .footer1 {
        width: 85vw;
    }
    .footer1-box {
        width: 85vw;
        border-right: 0;
        border-bottom: 2px solid white;
    }

    .footer2-box {
        width: 85vw;
        /* background-color: blue; */
    }

    .newsletterBox {
        border: 2px solid white;
        width: 85vw;
    }

    .sellinText {
        width: 50%;
        margin: auto;
    }

    .rentalText {
        width: 70%;
        margin: auto;
    }

    /* ABOUT US */
    .subPage {
        width: 700px;
        height: 200px;
    }

    .subPage {
        padding-top: 120px;
        color: white;
    }

    .subPage-content h1{
        font-size: 48px;
    }

    .subPage-content p{
        font-size: 20px;
    }

    .send-us-a-message-box {
        position: relative;
        margin-top: 130px;
    }


}



/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .hero-content-box {
        width: 690px;
        background-color:rgba(1, 93, 42, 0.3);
        /* padding-top: 100px; */
    }

    .hero-heading-write {
        font-size: 50px;
        font-weight: 500;
        color: white;
    }

    .main-nav1 {
        width: 90%;
        margin: auto;
        background-color: white;
        position: absolute;
        top: -45px;
        margin-left: 5%;
    }

    .video-loop {
        height: 517px;
        width: 100%;
        /* background-image: url('../images/whatsay-placeholder.svg'); */
        background-size: cover;
        background-repeat: no-repeat;
    }

    .clients-say {
        width: 70%;
        margin: auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .name-field, .email-field {
        width: 45%;
        font-size: 20px;
    }

    .form-field1 {
        width: 70%;
    }

    .reach-box-1 {
        width: 300px;
        background-color: white;
    }

    .footer1-box {
        width: 50%;
        border-right: 2px solid white;
        border-bottom: 0;
    }

    .footer1 {
        width: 390px;
    }

    .footer2-box {
        width: 500px;
        /* background-color: blue; */
    }

    .newsletterBox {
        border: 2px solid white;
        width: 100vw;
    }

    .footer-menu {
        width: 770px;
    }

    .newsletterBox {
        border: 2px solid white;
        width: 400px;
    }

    .send-us-a-message-box {
        position: relative;
        margin-top: 0px;
    }

    .send-us-a-message-box {
        position: absolute;
        top: -90px;
        right: 0;
    }

    .dasboard-push-down {
        position: absolute;
        bottom: 10px;
    }

    .dashboard-nav {
        background-color: var(--main-color);
        color: white;
        position: sticky;
        top: 0;
        z-index: 1000;
    }


}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .reach-box-1 {
        width: 300px;
        background-color: white;
    }
}
