@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 25px;
    font-size: 14px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'montserrat-medium';
    src: url(../fonts/montserrat-medium.ttf);
    font-weight: 400;
    font-style: normal
}



@font-face {
    font-family: 'Revans-Medium';
    src: url(../fonts/Revans-Medium.ttf);
    font-weight: 400;
    font-style: normal
}
/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}



.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Revans-Medium';
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
    text-transform: uppercase;
}

h2 {
    font-family: 'Revans-Medium';
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Revans-Medium';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Revans-Medium';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Revans-Medium';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Revans-Medium';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 10px 0;
}
header {
    position: absolute;
    width: 100%;
    z-index: 99;
}
.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: uppercase;
    display: flex;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 10px 23px;
    font-size: 13px;
}

.menuSec ul li a:after {
    /* content: ''; */
    /* position: absolute; */
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */

.banner_img a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 225px;
    background: #3d3c41;
    border-radius: 50px;
    color: #fff;
}

.banner_img.wow.bounceIn {
    display: flex;
    justify-content: end;
    /* position: absolute; */
    right: 100px;
    top: 38%;
    align-items: center;
    margin-right: 80px;
}
/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.banner_text.inner-bannner h1 {
    font-size: 40px;
}
.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}




.custom-pagination-container {
    display: flex;
    align-items: center;
    gap: 15px;
    /* background: #111; */ /* Dark background like your image */
    padding: 20px;
    /* font-family: 'Arial Black', sans-serif; */
    color: white;
    position: absolute;
    bottom: 8%;
    z-index: 3;
    right: 33%;
}

.current-slide {
    font-size: 24px;
    font-weight: bold;
}

.total-slides {
    font-size: 20px;
    color: #ffffff; /* Faded color for the target number */
}

/* Progress Bar Styling */
.progress-bar-wrapper {
    width: 270px; /* Line ki lambai */
    height: 2px;
    background: #53719d; /* Background line color */
    position: relative;
    overflow: hidden;
}

.progress-line-active {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%; /* Initial width */
    background: white;
    transition: width 0.4s ease; /* Smooth animation */
}
.banner_text h1 span {
    font-size: 30px;
}
.banner_text p {
    color: #898688;
}
/* Arrows */
.nav-arrow {
    cursor: pointer;
    opacity: 1.6;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    background: #fff;
    border-radius: 50px;
}
.next-btn {
    /* position: absolute; */
    /* left: -223%; */
    /* bottom: 0; */
}

.prev-btn {
    /* position: absolute; */
    /* left: -238%;
    bottom: 0; */
}
.nav-arrow:hover {
    opacity: 1;
}


.theme_btn {
    /* padding: 15px 25px; */
    border: unset;
    /* border-radius: 15px; */
    color: #ffffff;
    z-index: 1;
    background: #24288900;
    position: relative;
    font-size: 15px;
    overflow: hidden;
    display: inline-block;
}

/* .theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
} */

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.btn-side {
    display: flex;
    align-items: center;
}

.btn-side-text {
    border-radius: 50px;
    padding: 12px 26px;
    text-transform: uppercase;
    font-family: 'montserrat-medium';
    background-image: -moz-linear-gradient( 90deg, rgb(128,94,29) 0%, rgb(132,95,30) 0%, rgb(68,52,24) 63%, rgb(46,37,18) 99%);
    background-image: -webkit-linear-gradient( 90deg, rgb(128,94,29) 0%, rgb(132,95,30) 0%, rgb(68,52,24) 63%, rgb(46,37,18) 99%);
    background-image: -ms-linear-gradient( 90deg, rgb(128,94,29) 0%, rgb(132,95,30) 0%, rgb(68,52,24) 63%, rgb(46,37,18) 99%);
    color: #fff !important;
}
.btn-side-img img {
    width: auto;
}

.btn-side-img {
    height: 49px;
    width: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-image: -moz-linear-gradient( 90deg, rgb(128,94,29) 0%, rgb(132,95,30) 0%, rgb(68,52,24) 63%, rgb(46,37,18) 99%);
    background-image: -webkit-linear-gradient( 90deg, rgb(128,94,29) 0%, rgb(132,95,30) 0%, rgb(68,52,24) 63%, rgb(46,37,18) 99%);
    background-image: -ms-linear-gradient( 90deg, rgb(128,94,29) 0%, rgb(132,95,30) 0%, rgb(68,52,24) 63%, rgb(46,37,18) 99%);
}

.theme_btn:hover .btn-side-text {
    background: #000;
    color: #fff;
}
.banner-img img {
    height: 100vh;
    width: 100%;
}

.carousel-item.active {
    height: 100vh;
}
.carousel-item.inner-bannner.active {
    height: 70vh;
}
/*banner css end*/

.btn-side-text.heade {
    color: #000 !important;
    background: #FFF;
}

.btn-side-img.heade {
    background: #fff;
}


.btn-side-img.heade img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7460%) hue-rotate(340deg) brightness(84%) contrast(108%);
}
/*---------------------------------------------------- Services Section Start ------------------------------------------------------------- */

.service-sec {
    padding: 64px 24px 70px;
    /* margin-bottom: 100px; */
    /* background-color: #0f2042; */
    background-image: url(../images/serv-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.howwork-sec.inner {
    margin-bottom: 40px;
}

.service-sec.inner {
    background: unset;
    padding: unset;
}

.service-head {
    margin-bottom: 20px;
}

.service-head h2 {
    color: #fff;
}

.service-main {
    overflow: hidden;
    border-radius: 20px;
    /* background-color: #061024; */
    transition: 0.7s all;
    z-index: 1;
    position: relative;
}

.serv-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.5s all;
}

.service-main.inr {
    margin-bottom: 50px;
}

.service-main:hover .serv-image img {
    /* transform: scale(1.3); */
    /* filter: brightness(0.5); */
}

.serv-image {
    /* overflow: hidden; */
    position: relative;
    z-index: 2;
}

.service-main:hover {
    /* background: #3390dc; */
}

.serv-text {
    padding: 45px 25px 40px;
    position: relative;
    z-index: 1;
}

/* .slick-current .service-main {
    background-image: -webkit-linear-gradient(-3deg, rgb(15, 124, 133) 0%, rgb(13, 108, 116) 24%, rgb(10, 92, 99) 52%, rgb(21, 67, 75) 79%, rgb(31, 41, 51) 100%);
} */

.service-main * {
    color: #000;
    text-align: center;
}
.serv-image.servis img {
    height: 442px;
}
.serv-text p {
    margin: 10px 0 18px;
    opacity: 50%;
    /*height: 94px;*/
    color: #000;
}

.serv-text a {
    /* border: 1px solid #fff; */
}

.serv-text h4 {
    font-size: 30px;
    text-transform: uppercase;
    color: #000;
}

.serv-slider .slick-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #000000;
    border-radius: 50%;
    transition: 0.7s all;
    top: -48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serv-slider .slick-arrow:hover {
    background: #fff;
    border-color: #fff;
}

.serv-slider .slick-arrow:before {
    content: '';
    background-image: url(../images/btn-img.png);
    width: 20px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1 !important;
    transform: rotate(180deg);
    top: -4px;
    position: relative;
    filter: brightness(0) saturate(100%) invert(0%) sepia(5%) saturate(0%) hue-rotate(306deg) brightness(104%) contrast(104%);
}

.service-sec button.slick-prev {
    left: 92.6%;
}

.service-sec button.slick-next {
    right: 10px;
}

.serv-slider button.slick-prev:before {
    transform: rotate(356deg);
    top: -1px;
    height: 9px;
}

.serv-slider .slick-arrow:hover:before {
    filter: unset;
}

/* SERVICE DETAIL CSS START  */

.serv-detail-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 30px;
    object-position: 0 -100px;
}

.service-detail-sec {
    margin-bottom: 100px;
}

.serv-detail-text p {
    margin-bottom: 30px;
    opacity: 60%;
}

.serv-detail-text h2 {
    margin-bottom: 13px;
}
.serv-icon {
    /* position: absolute; */
    bottom: -20px;
    left: 0;
    right: 0;
    /* height: 80px; */
    /* width: 90px; */
    /* background: #1c8ae4; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* margin: 0 auto; */
    /* border-radius: 10px; */
    /* z-index: 3; */
}

.serv-icon img {
    width: auto;
    height: auto;
}


.service-main:hover .serv-image .serv-icon img {
    filter: brightness(0);
}

.service-main:hover .serv-icon {
    background: #fff;
}
.slick-active {
    opacity: 1;
}


/*---------------------------------------------------- Services Section End ------------------------------------------------------------- */
.why_list img {
    background-color: #000;
    padding: 11px 14px;
    border-radius: 10px;
    height: 52px;
    width: 62px;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(110deg) brightness(98%) contrast(108%); */
    /* object-fit: cover; */
}

.why_list {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid;
    padding: 17px;
    margin-bottom: 20px;
}

.why_list h5 {
    margin: 0;
    color: #000;
}

.why_list p {
    margin: 0;
}

.why_owner {
    padding: 0 25px 100px;
}
.wht_owner_txt h2 {
    margin: 0;
    color: #000;
    font-size: 45px;
}
.owner_img img {
    height: 671px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}
.why_list:hover {
    background: #000;
}

.why_list:hover h5 {
    color: #fff;
}

.why_list:hover p {
    color: #fff;
}

.why_list:hover img {
    background: #ffff;
    
}
.rent_txt h6 {
    text-align: center;
    margin: 0;
    font-size: 30px;
    text-transform: uppercase;
    color: #000;
}
.rent_txt {
    padding: 30px 0 30px 0;
    background: #f9f9f9;
    border-radius: 0 0 10px 10px;
}
.rent_txt p {
    text-align: center;
}
.rent_map {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-bottom: 12px;
    gap: 10px;
}
.rent_map img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(7500%) hue-rotate(342deg) brightness(106%) contrast(91%);
}
.rent_map h4 {
    margin: 0;
    text-align: start;
}
.rent_map a {
    margin:  0 auto;
    text-align: center;
}

.rent_txt {
    text-align: center;
}
.rent_map p {
    margin: 0;
    text-align: start;
}
.rent_img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.rent-img img {
    height: 213px;
    width: 201px;
    text-align: center;
}

.rent-img {
    position: absolute;
    z-index: 999;
    left: 33%;
    right: 0;
    bottom: 5px;
    margin: auto;
    display: block;
    align-content: center;
}
.rent_img {
    position: relative;
    z-index: 1;
}

.rent_img:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #00000070;
    z-index: 0;
    border-radius: 10px  10px 0 0;
}
.rent_txt:hover {
    background: #000;
}

.rent_txt:hover h6 {
    color: #fff;
}

.rent_txt:hover p {
    color: #fff;
}

.rent_txt:hover h4 {
    color: #fff;
}

.rent_txt:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(15%) hue-rotate(357deg) brightness(103%) contrast(104%);
}
.in-house {
    padding: 100px;
    background-image: url(../images/house-in.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.in-house::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: #000000ed;
}
.in_house_cont {
    text-align: center;
}

.in_house_cont h2 {
    margin: 0;
    color: #fff;
}

.house_box {
    padding: 58px 19px;
    border-radius: 10px;
    background: #ffff;
    height: 270px;
}

.house_box img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(7500%) hue-rotate(342deg) brightness(106%) contrast(91%);
    margin-bottom: 10px;
}

.house_box h5 {
    margin: 0;
    color: #000;
}

.house_box:hover {
    background: #0b0b0b;
    border-color: #fff;
    border: 2px solid;
}

.house_box:hover h5 {
    color: #fff;
}

.house_box:hover p {
    color: #fff;
}

.house_box:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(201deg) brightness(106%) contrast(106%);
}
.house_img {
    position: relative;
    z-index: 1;
}

.house_img:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(
360deg, rgba(0, 0, 0, 1) 0%, rgb(255 255 255 / 0%) 100%);
}
.house_img img {
    height: 270px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.in_house_cont p {
    color: #7f7f7f;
}
.Money_sec {
    padding: 100px 50px;
}

.money_cot {
    display: flex;
    justify-content: space-between;
    gap: 0;
}

.money_cot h2 {
    color: #000;
    font-size: 45px;
    width: 100%;
}

.money_box {
    background: #f9f9f9;
    padding: 30px;
    height: 325px;
    border-radius: 10px;
}

.money_box h5 {
    font-size: 31px;
    color: #000;
    margin: 0;
}

.money_box p {
    color: #7f7f7f;
}

.btn-side-text.money {
    background: #000;
}

.btn-side-img.money {
    background: #000;
}
.money_box:hover .btn-side-text.money {
    background: #fff;
    color: #000 !important;
}
.money_box:hover .btn-side-img.money{
    background: #fff;
    
}
.money_box:hover .btn-side-img.money img{
   filter: brightness(0) saturate(100%) invert(0%) sepia(9%) saturate(13%) hue-rotate(183deg) brightness(97%) contrast(99%);
    
}
.money_box img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(320deg) brightness(80%) contrast(102%);
}

.btn-side-img.money img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(2%) hue-rotate(289deg) brightness(107%) contrast(101%);
}

.money_box:hover {
    background: #000;
}

.money_box:hover  img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(2%) hue-rotate(289deg) brightness(107%) contrast(101%);
}

.money_box:hover h5 {
    color: #fff;
}

.money_box:hover p {
    color: #fff;
}
 .hm_contact {
    padding: 100px 20px 100px;
}

.hm_contact_img img {
    height: 550px;
    object-fit: cover;
    border-radius: 5px;
}

.hm_contact_text h3 {
    font-size: 50px;
    font-weight: 500;
    margin: 0;
}
.hm_contact_text p {}

.hm_contact_text input {
    padding: 10px;
    width: 100%;
    height: 52px;
    margin-bottom: 10px;
    border-radius: 50px;
    border: 1px solid #7c7c7c;
}


.hm_contact_text input::placeholder {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.hm_contact_text textarea {
    height: 234px;
    width: 100%;
    padding: 16px;
    border-radius: 30px;
}

.hm_contact_text textarea::placeholder {position: absolute;bottom: 30px;color: #000;font-weight: 600;}




/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

footer {
    background: #141313;
    padding: 55px 12px 0;
    position: relative;
}
.foter-lastline p {
    margin: 0;
}
.foter-lastline {
    border-top: 1px solid #6f828c;
    padding: 18px 0;
    text-align: center;
    margin: unset;
    background: #141313;
    position: relative;
    z-index: 2;
}

footer * {
    color: #fff;
}

.container-fluid.lastftr {
    padding: 0;
}

footer h4 {
    position: relative;
    border-bottom: 2px solid #ffffff36;
    width: 84%;
    padding-bottom: 23px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

footer h4:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #fff;
    width: 40%;
    height: 2px;
    border-radius: 10px;
}

.foter-links ul li {
    margin-bottom: 4px;
}

.foter-links a {
    font-weight: 600;
    font-size: 14px;
}

.foter-links {
    margin-bottom: 63px;
}

.newsletter-main {
    display: flex;
    align-items: center;
    margin-bottom: 65px;
    position: relative;
    padding: 0px 0px 0px 29px;
    background: #0e0d0d;
    border-radius: 50px;
    justify-content: space-between;
}

.footer-info p {
    margin-bottom: 20px;
    width: 80%;
    margin-top: 10px;
}

.footer-info ul li {
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'montserrat-medium';
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 70px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.7s all;
}

.social-links a:hover {
    border-color: transparent;
    background: #523080;
}

.newsletter-main h5 {
    text-transform: uppercase;
    margin: 0;
}

.newsletr-field input {
    width: 100%;
    height: 60px;
    border: unset;
    border-radius: 51px;
    padding: 10px 30px;
    color: #ffffff;
    background: #090808;
    font-family: 'montserrat-medium';
}

.newsletr-field {
    position: relative;
    width: 452px;
}

.newsletr-field button {
    position: absolute;
    right: -2px;
    bottom: 0;
    border: unset;
    height: 100%;
    border-radius: 0px;
    padding: 7px 30px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    background: #ffffff;
    border-radius: 50px;
    color: #000;
}

.newsletr-field input::placeholder {
    color: #ffffff;
    font-family: 'montserrat-medium';
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 31%;
    background: #6f828c;
    width: 1px;
    height: 100%;
}

.foter-links.navs ul li {
    margin-bottom: 10px;
}
.foter-links.navs ul {
    column-count: 0;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */
.Testimonials{
    background-image: url(../images/Testimonials.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 100px 0;
}
.Testimonials::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #000000e0;
    z-index: -1;
    left: 0;
    top: 0;
}
.Our_Testi_cont {
    text-align: center;
}

.Our_Testi_cont h2 {
    color: #fff;
    margin: 0;
}

.Our_Testi_cont p {
    color: #7f7f7f;
}

.Testimonials .col-md-6 {
    padding: 0;
}

.testi_txt {
    background: #fff;
    padding: 50px 34px;
    height: 100%;
    border-radius: 0 15px 15px 0;
}
.testi_img img {
    width: 100%;
    height: 576px;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

.testi_slid .row {
    width: 100%;
    margin: auto;
}

.testi_txt h4 {
    padding-top: 88px;
    font-size: 33px;
    color: #000;
}

.testi_txt p {
    font-size: 14px;
    line-height: 31px;
}

.testi_txt p i {
    font-size: 20px;
    color: #000;
}

 .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1.2;
}


.testi_slid .slick-prev {
    left: 20%;
}
.testi_slid .slick-next {
    right: 19%;
}
.testi_slid .slick-prev, .testi_slid .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #ffffff;
    opacity: 1;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

 .testi_slid .slick-prev:before {
    content: '';
    position: absolute;
    background-image: url(../images/gallery-silder-left.png);
    height: 13px;
    width: 22px;
    background-repeat: no-repeat;
    background-size: cover;
}
.testi_slid.testi_slid .slick-next:before {
    content: '';
    position: absolute;
    background-image: url(../images/gallery-silder-right.png);
    height: 11px;
    width: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}
 .testi_slid .slick-prev:before,  .testi_slid .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Properties Detail page Css Start  */




.productdetailfor .slick-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.productdetailsmallportion img {
    width: 160px;
    /* padding: 12px 20px; */
    transition: 0.5s;
    position: relative;
    z-index: 999999999999999;
    height: 100px;
    border-radius: 0;
    object-fit: cover;
    border-radius: 5px;
}

.productdetailportion {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    background-color: #eaeaea;
    border-radius: 10px;
    margin: 0 10px 20px;
}

.productdetailportion img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

.productdetailnav .slick-slide {
    opacity: 1;
    z-index: 9999;
    position: relative;
    margin-top: 0;
    cursor: pointer;
    margin: 0 9px;
}


section.tour-detail-sec {
    /* margin: 100px 0px; */
    padding: 100px 12px;
}

.tour-deatil-txt-lst p {
    margin-bottom: 20px;
}

.feature-detl-tour h5 {
    color: #000;
    font-size: 35px;
    margin-bottom: 25px;
}

.feature-detl-tour .col {
    text-align: center;
    cursor: pointer;
}

.feature-icon {
    width: 90px;
    border: 1px solid #000;
    border-radius: 50%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 7px;
}



.feature-detl-tour a {
    margin-top: 30px;
}

.tour-deatil-txt-lst {
    margin: 30px 0 60px;
}

.tour-detail-usr {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}

.tour-detail-usr span {
    font-size: 21px;
    text-transform: uppercase;
    color: #646b4a;
}

.tour-detail-usr h3 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 500;
}

.tour-detail-txt h6 {
    font-size: 18px;
    font-family: 'Montserrat';
    margin-bottom: 15px;
}

.tour-detail-txt p {
    margin-bottom: 10px;
    line-height: 28px;
}




.features {
    max-width: 1100px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box h3 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    border-bottom: 2px solid #8c8c5a;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    width: 85%;
}

.feature-box h3 i {
    font-size: 24px;
    color: #8c8c5a;
}

.feature-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-box ul li {
    margin-bottom: 12px;
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    opacity: 66%;
}

.feature-box ul li.diamond:before {
    content: "Ã¢â€”â€ ";
    color: #8c8c5a;
    font-size: 14px;
}

.feature-box ul li.check i {
    color: #8c8c5a;
    opacity: 1 !important;
}

.tour-detail-txt {
    padding-left: 20px;
}

.feature-detl-tour .col small {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

.feature-icon:hover img {
    transform: scale(1.5);
}

.feature-icon img {
    transition: 0.5s all;
}

.feature-box h3.garge {
    width: 100%;
}

li.diamond.rty {
    margin-bottom: 20px;
}

li.diamond {
    color: #666666;
    opacity: 1;
}

/* Features */
.features-section {
    margin-top: 60px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

/* Golden Dot */
.features-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Bold items */
.features-list li.bold {
    font-weight: 600;
    color: #333;
}

h2.section-title {
    font-size: 36px;
    margin-bottom: 23px;
    color: #000;
    text-transform: uppercase;
}


/* Properties Detail Page Css End  */
/*Contact Start*/
 /*contact us*/
.contact1 h2, .contact2 h2 {
    
font-size: 45px;
    
color: #000000;
    
text-transform: capitalize;
    
font-weight: 400;
    
margin-bottom: 0px;
}
.contact1 p,
.contact2 > p {
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 1%;
  margin-bottom: 5%;
}
.contact2 ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}
.contact2 ul li {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  width: 100%;
}
section.contact-map {
    padding-bottom: 100px;
}
.contact2 ul li h4 {
    margin-bottom: 3px;
    font-weight: 100;
    text-transform: capitalize;
    color: #000;
    font-size: 24px;
}
.contact2 ul li p {
  color: #000000;
  line-height: 1.5;
  font-size: 12px;
  font-weight: 400;
  width: 95%;
}
.contact2 .icon {
  height: 100px;
  width: 100px;
  /* border: dashed 2px #000; */
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  background-color: #000000;
}
.contact2 .icon i {
  font-size: 26px;
  color: #348e38;
}
.map {
  margin-top: 50px;
}
.book-form.contact-form form {
  padding: 0 5% 0 0;
}
section.contact_us {
  position: relative;
  padding: 100px 0px 30px 0px;
}

.book-form.contact-form input {
    height: 50px;
    border-radius: 50px;
    padding: 12px;
    border-color: #000;
}

.book-form.contact-form input::placeholder {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.book-form.contact-form textarea {
    height: 222px;
    border-radius: 25px;
    padding: 12px;
    border-color: #000;
}

.book-form.contact-form textarea::placeholder {
    position: absolute;
    bottom: 13px;
    left: 23px;
    color: #000f;
    font-size: 14px;
    font-weight: 500;
}

.book-form.contact-form button {
    background-image: -moz-linear-gradient( 90deg, rgb(128,94,29) 0%, rgb(132,95,30) 0%, rgb(68,52,24) 63%, rgb(46,37,18) 99%);
    background-image: -webkit-linear-gradient(90deg, rgb(128, 94, 29) 0%, rgb(132, 95, 30) 0%, rgb(68, 52, 24) 63%, rgb(46, 37, 18) 99%);
    background-image: -ms-linear-gradient( 90deg, rgb(128,94,29) 0%, rgb(132,95,30) 0%, rgb(68,52,24) 63%, rgb(46,37,18) 99%);
    height: 50px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 500;
}
.Property-management {
    padding: 100px 37px;
}

.Property_text h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 46px;
}

.Property_text h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: 37px;
    font-weight: 100;
    padding-bottom: 15px;
    border-bottom: 1px solid  #ddd;
}
.Property_text p {
    padding-top: 11px;
    margin: 0;
}
.Property_img img {
    height: 750px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.renting_sec {
    padding: 101px 46px 0;
}

.renting_img img {
    height: 700px;
    width: 100%;
    object-fit: cover;
}
.book-form.contact-form input, .book-form.contact-form select {
    height: 50px;
    border-radius: 50px;
    padding: 12px;
    border-color: #000;
    background-color: transparent;
}
.renting_txt h2 {
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.renting_txt h3 {
    text-transform: uppercase;
    font-size: 40px;
    margin: 0;
    padding-bottom: 14px;
}

.schedula_sec {
    padding: 101px 0;
}

.Schedul_form input {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 50px;
    border-color: #000;
}

.Schedul_form input::placeholder {
    font-size: 13px;
    color: #000;
    font-weight: 500;
}

.Schedul_form ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Schedul_form ul li input {
    height: 23px;
    width: 39px;
    accent-color: #d0a469;
    color: #fff;
    border: 1px solid #796649;
}

.Schedul_form textarea {
    width: 100%;
    height: 220px;
    padding: 10px;
    border-radius: 26px;
    margin-bottom: 11px;
}

.Schedul_form textarea::placeholder {
    position: absolute;
    bottom: 10px;
    left: 17px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}
/* reviews */

.reviews_heading {
    text-align: center;
    margin-bottom: 30px;
}

.reviews_heading h2 {
    margin-bottom: 10px;
}

.reviews_heading p {
    width: 60%;
    margin: 0 auto;
}

.avatar ul li h3 {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin: unset;
    line-height: 22px;
}

.avatar ul li p {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
    color: #000;
}

.stars i {
    color: #ffffff;
    transition: color 0.3s ease-in;
    font-size: 29px;
}

.avatar ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 10px;
}

.avatar {
    margin-top: 30px;
}

.stars {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 46px;
    width: 45px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.review_txt {
    padding: 10px 20px 10px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    transition: background-color 0.3s ease-in;
    box-shadow: 0px 0px 6px 0px #0000004d;
}

.review_txt::before {
    content: "";
    position: absolute;
    top: -10%;
    width: 65px;
    height: 45px;
    left: 9%;
    background-image: url(../images/shape.PNG);
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 0.3s ease-in;
}


.review_txt p {
    transition: color 0.3s ease-in;
    color: #000;
}

.box {
    transition: all ease-in 0.3s;
}

.box:hover .review_txt::after {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(66%) sepia(46%) saturate(5481%) hue-rotate(185deg) brightness(99%) contrast(90%);
}

.box:hover .review_txt::before {
    opacity: 1;
}

.box:hover .review_txt {
    background-color: #000000;
}

.box:hover .review_txt p {
    color: #ffffff;
}

.box:hover .stars i {
    color: #000000;
}

.review_slider .slick-slide {
    opacity: 1;
}

.avatar ul li img {
    height: auto;
    width: 100%;
    object-fit: cover;
    transition: border 0.3s ease-in;
}

.review_slider .slick-track {
    margin-top: 50px;
}

.reviews {padding: 100px 0px;}

.box:hover .review_txt h3 {
    color: #fff;
}

.box:hover .review_txt .stars {
    background: #fff;
}



.review_slider .slick-prev, .review_slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    /* top: 0; */
    display: block;
    width: 0px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.review_slider .slick-prev {
    /* left: 90%; */
}
.review_slider .slick-next {
    right: 19px;
}
.review_slider .slick-prev:before {
    content: '';
    position: absolute;
    background-image: url(../images/banner-slider-left.png);
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}
.review_slider .slick-next:before {
    content: '';
    position: absolute;
    background-image: url(../images/banner-slider-right.png);
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}
.pro_heading h2 {
    font-size: 50px;
    line-height: 60px;
    margin: unset;
    color: #000000;
}

.pro_heading p {
    font-size: 14px;
    color: #040404;
    width: 73%;
    line-height: 22px;
    margin: 0 0 0 auto;
}

/* reviews */

/* Neww */

.container-fluid {
    padding: 0 4%;
}

.buyy-sec {
    padding: 100px 0;
}

.buyy-image {
    position: relative;
    z-index: 1;
    padding: 20px 20px 0 0;
    height: 100%;
}

.buyy-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.buyy-image::before {
    position: absolute;
    content: '';
    width: 60%;
    height: 50%;
    border: 15px solid #000;
    right: 0;
    top: 0;
    z-index: -1;
}

.row.sell-second {
    margin-top: 60px;
}

.buyy-content h2 {
    font-size: 45px;
    margin-bottom: 10px;
    color: #000000;
    text-transform: uppercase;
}


/* Properties */

.properties-buy-sec {
    padding: 80px 0;
    background: #1e1e1e;
    position: relative;
    z-index: 1;
    background-image: url(../images/prprbg.jpg);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sec-head.text-center h2 {
    font-size: 55px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.sec-head.text-center p {
    color: #fff;
}

.property-card {
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
    padding: 10px 10px 30px;
}

.property-bottom h5 {
    margin: 0;
    font-family: 'montserrat-medium';
    font-size: 18px;
    color: #000;
}

.propert-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
}

.propert-content {
    padding: 20px 0 0 0;
}

.propert-content h3 {
    font-size: 24px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 0;
}

.propert-content span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #000000;
    margin: 3px 0 6px;
}

.propert-content span img {
    width: fit-content;
}

.propert-content p {
    font-size: 14px;
    color: #6a6a6a;
    line-height: 20px;
}

.propertie-slider .slick-slide {
    margin: 0 12px;
}

ul.property-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #d0cfcf;
    border-bottom: 1px solid #d0cfcf;
}

ul.property-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

ul.property-list li img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

ul.property-list span {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.property-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Sell Form */

.sell-fom-sec {
    padding: 80px 0;
}

.sell-fom-sec .sec-head h2 {
    color: #000;
}

.sell-fom-sec .sec-head p {
    color: #7f7f7f;
}

.sell-fom-sec form {
    padding: 0 !important;
}

.sell-fom-sec form .form-control {
    margin: 15px 0;
}

.sell-fom-sec form button.theme_btn {
    width: 100%;
}


/* Sell Form */

.banner-profile a {
    background: #000;
    color: #fff;
    font-family: 'montserrat-medium';
    font-size: 16px;
    text-transform: uppercase;
    padding: 18px 29px;
    display: block;
    width: fit-content;
    border-radius: 4px;
}

.banner-profile {
    position: absolute;
    right: 51px;
    bottom: -100px;
}
.carousel-inner {
    overflow: visible;
}
.ban-btm-text {
    position: absolute;
    bottom: 0;
    text-align: center;
    font-size: 14px;
    width: 100%;
    font-family: 'montserrat-medium';
    opacity: 0.8;
    color: #fff;
}
/* Neww */