@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: 29px;
    font-family: 'poppins-regular';
    font-size: 16px;
}


/***** Font Files *****/

@font-face {
    font-family: 'poppins-semiBold';
    src: url(../font/Poppins-SemiBold.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'poppins-regular';
    src: url(../font/Poppins-Regular.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'poppins-medium';
    src: url(../font/Poppins-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;
}

.theme_btn {
    padding: 12px 20px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #ff6957;
    position: relative;
    font-size: 17px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    border-radius: 50px;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #000000;
    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: #ffffff;
}

.theme_btn:hover::before {
    width: 100%;
}

.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: 'poppins-semiBold';
    font-size: 68px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'poppins-semiBold';
    font-size: 68px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 8px;
}

h3 {
    font-family: 'poppins-semiBold';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 8px;
}




h4 {
    font-family: 'poppins-semiBold';
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 4px;
}

h5 {
    font-family: 'poppins-regular';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 600;
    margin: 0 0 8px;
}

h6 {
    font-family: 'poppins-medium';
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 4px;
}

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: 30px 0px 0px;
    position: absolute;
    z-index: 1;
    width: 100%;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.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: 18px;
    font-family: 'poppins-semiBold';
}



.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: #ff6957;
}

.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 */


/* 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;
}

.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: rgb(0 0 0 / 33%);
}

.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;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */

.container-fluid {
    padding: 0px 120px;
}
.dis-block {
    display: block;
}

.banner-img img {
    width: 100%;
    height: 110vh;
    object-fit: cover;
}

.banner-text-it {
    background: #ff6957;
    padding: 20px;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 50px;
}

.banner-text-it p {
    margin-bottom: 0px;
    font-style: italic;
    font-size: 19px;
}

.banner_text p {
    width: 64%;
    font-size: 18px;
}

ul.banner-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    background: #fff;
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    color: #000;
    margin-bottom: 0px;
}

ul.banner-info li p {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'poppins-medium';
}

.banner-info-loca {
    display: flex;
    align-items: anchor-center;
    color: #00000078;
    font-family: 'poppins-regular';
    font-size: 12px;
}

.banner-info-loca i {
    color: #ff6957;
    font-size: 18px;
}

.banner-text-it p {
    width: 100%;
}

.banner-search-icon {
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6957;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
}

.sign-btn-header {
    background: #fff;
    color: #000 !important;
    padding: 10px 14px !important;
    border-radius: 50px;
}

.nice-place-img-inner-text {
    background: #ffffff;
    display: inline-block;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 6px 0px #00000040;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    right: 60px;
}

.nice-place-img-inner-text h4 {
    font-size: 26px;
}

.nice-place-img {
    position: relative;
}

.nice-place-img-inner-text p {
    color: #000;
    font-weight: 600;
}

section.nice-place-sec {
    margin: 100px 0px;
}







.counter-box .counter{
font-size:40px;
font-weight:700;
color:#000;
}

.counter-box .counter::after{
content:"+";
}

.counter-box p{margin-top:5px;color: #000000;font-size: 19px;}
.counter-box {
    margin-top: 20px;
}
.search-available-slider-box-text h3 {
    font-size: 28px;
    font-family: 'poppins-medium';
    color: #fff;
}

.search-available-slider-box-text ul li h4 {
    font-family: 'poppins-medium';
    font-size: 21px;
    margin-bottom: 0px;
    color: #fff;
}

.search-available-slider-box-text ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-available-slider-box-text ul li i {
    font-size: 17px;
    color: #fff;
}

.search-available-slider-box {
    position: relative;
    margin-bottom: 20px;
}

.search-available-slider-box img {
    height: 680px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.search-available-slider-box-text {
    position: absolute;
    bottom: 10px;
    left: 20px;
}
.search-available-slider .slick-active {
    opacity: 1;
}


.search-available-slider .slick-prev, .search-available-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: -9%;
    display: block;
    width: 50px;
    height: 50px;
    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: #ff6957;
    border-radius: 50%;
    color: #000 !important;
}

.search-available-slider .slick-prev:hover, .search-available-slider .slick-prev:focus, .search-available-slider .slick-next:hover, .search-available-slider .slick-next:focus {
    outline: none;
    background: #000000;
    border: 1px solid #000;
    color: #000 !important;
}



.search-available-slider .slick-next:before {
    content: '\f105';
    font-family: 'FontAwesome';
    color: #fff ;
    font-size: 20px !important;
    opacity: 1;
}
.search-available-slider .slick-prev:before {
    content: '\f104';
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 20px !important;
    opacity: 1;
}
.search-available-slider .slick-prev {
    left: 85%;
}
.search-available-slider {
    width: 112%;
}
.search-available-slider .slick-next {
    right: 9%;
}
 .search-available-top-heading {
    padding-left: 36px;
}
section.search-available-sec {
    margin-bottom: 100px;
}
section.turn-your-property {
    background-image: url(../images/turn-your-property.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    margin-bottom: 100px;
}

.turn-your-text {
    text-align: center;
}

.turn-your-text p {
    width: 62%;
    margin: 0 auto;
    margin-bottom: 20px;
    color: #fff;
}

.turn-your-text h2 {
    color: #fff;
}
.list-property-top-heading {
    margin-bottom: 70px;
}

.list-property-box-img img {
    width: 100%;
    /* margin-bottom: 20px; */
}

ul.list-property-box-text-ulone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.list-property-box-text {
    padding: 30px 34px;
}

.list-property-box {
    box-shadow: 0px 0px 6px 0px #000;
    border-radius: 30px;
}

ul.list-property-box-text-ulone li h5 {
    margin-bottom: 0px;
    color: #ff6957;
}

ul.list-property-box-text-ulone li a i {
    color: #fbc210;
}

ul.list-property-box-text-ultwo li i {
    color: #ff6957;
}

ul.list-property-box-text-ultwo {
    border-top: 2px solid #777777;
    padding-top: 20px;
    margin-bottom: 10px;
}

.list-property-box-text p {
    font-size: 13px;
    color: #000;
    line-height: 22px;
}

section.list-property-sec {
    margin-bottom: 100px;
}
.why-choose-top-heading {
    margin-bottom: 40px;
    text-align: center;
}

.why-choose-box {
    box-shadow: 0px 0px 6px 0px #000;
    padding: 38px 24px;
    border-radius: 10px;
    text-align: center;
}

.why-choose-box img {
    margin-bottom: 18px;
}

.why-choose-box p {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 0px;
}

section.why-choose-sec {
    margin-bottom: 100px;
}













.what-users-slider-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    margin: 30px 0px; 
    transition: all 0.3s ease;
    text-align: center;
    opacity: 1; 
    transform: scale(0.9);
    box-shadow: 0px 0px 6px 0px #000;
}

.what-users-slider .slick-center .what-users-slider-box {
    opacity: 1;
    transform: scale(1.1); 
    box-shadow: 0px 0px 6px 0px #0000007a;
    margin: 30px 0px;
}

.what-users-slider-box-ul ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.what-users-slider-box-ul ul li img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
}

.what-users-slider-box-ul h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.what-users-slider-box-ul p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 0px;
}
 
.what-users-slider .slick-dots li button:before {
    font-size: 12px;
    color: #808080;
    opacity: 1;
}
.what-users-slider .slick-dots li.slick-active button:before {
    color: #000;
    opacity: 1;
}
.what-users-top-heading {
    text-align: center;
    margin-bottom: 20px;
}


section.what-users-top {
    margin-bottom: 100px;
}


footer.footerSec {
    background: #000;
    padding-top: 80px;
}

.footer-logo-sd img {
    margin-bottom: 30px;
    width: 50%;
}

.footer-logo-sd p {
    color: #fff;
    width: 59%;
    margin-bottom: 38px;
}

ul.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0px;
}

ul.footer-social-icons li a i {
    height: 38px;
    width: 38px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #000;
    font-size: 26px;
}

.footer-quick-lonk h5 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 26px;
}

ul.linkList li a {
    display: flex;
    align-items: start;
    gap: 10px;
    color: #fff;
}

ul.linkList li {
    margin-bottom: 9px;
}

ul.linkList li a p {
    margin-bottom: 0px;
}

ul.linkList li a i {
    margin-top: 8px;
}

.footer-btm-line {
    border-top: 1px solid #fff;
    padding: 20px 0px;
    margin-top: 30px;
}

.footer-btm-text p {
    margin-bottom: 0px;
    color: #fff;
}

.footer-btm-img {
    text-align: end;
}

ul.footer-social-icons li a i:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 19px;
}
ul.linkList li a:hover {
    color: #ff6957;
}

.banner-img.inner-banner img {
    height: 72vh;
}

.banner_text.inner-banner-text p {
    width: 59%;
}
.nice-place-img.inner-nice-img > img {
    width: 82%;
}

section.about-counter {
    margin-bottom: 80px;
}

.row.about-counter-sd {
    background: #ff6957;
    padding: 10px 0px;
    border-radius: 20px;
}

.row.about-counter-sd .counter-box .counter {
    color: #fff;
    font-size: 54px;
}

.row.about-counter-sd .counter-box p {
    color: #fff;
}
section.search-available-sec.search-available-inner {
    margin: 100px 0px;
}

.search-available-top-heading.available-top-heading-iner-page {
    padding-left: 0px;
    margin-bottom: 30px;
}

.search-available-top-heading.available-top-heading-iner-page p {
    width: 77%;
}
.list-property-top-heading p {
    width: 80%;
}
section.list-property-sec.list-property-innerpage {
    margin: 100px 0px;
}

section.list-property-sec.list-property-innerpage .list-property-box {
    margin-bottom: 50px;
}
section.contact-sec-sec {
    margin: 100px 0px;
}

.contact-left > p {
    width: 67%;
    color: #000;
}

.follow-us h2 {
    font-size: 37px;
}

.contact-info {
    display: flex !important;
    align-items: center !important;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info a p {
    color: #000;
    line-height: 20px;
    margin-bottom: 0px;
}

.contact-panel.bg-gray {
    background: #f6f6f6;
    padding: 60px 80px;
    border-radius: 30px;
}

.form-group input {
    border: unset;
    border-bottom: 1px solid #000;
    border-radius: unset;
    margin-bottom: 50px;
    background: transparent;
    padding: 0px;
}

.form-group label {
    font-size: 22px;
}

h2.contact-panel-title {
    margin-bottom: 20px;
    font-size: 60px;
}

.form-group textarea {
    border: unset;
    border-bottom: 1px solid #000;
    border-radius: unset;
    margin-bottom: 50px;
    background: transparent;
    padding: 0px;
    height: 90px;
}

.contact-input-text button {
    text-align: end;
    border: unset;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 20px;
    float: right;
}




/* Account Page Start */


    /* Login */

    .signin_sec {
        padding: 0px 0px 50px;
        position: relative;
        margin: 100px 0;
        /* padding-top: 0; */
    }

    h2.sign_up_heading {
        text-align: center;
        margin-bottom: 40px;
        text-transform: capitalize;
        font-size: 36px;
        color: #000;
        line-height: 24px;
        font-family: 'Poppins';
        margin: 40px 0 40px 0;
    }

    .input-icons i {
        position: absolute;
        font-size: 20px;
        z-index: 99;
        margin-top: 5px;
    }

    .input-icons {
        width: 100%;
    }

    .input-icons .icon {
        padding-top: 15px;
        padding-left: 12px;
        min-width: 40px;
    }

    .input-field {
        position: relative;
        display: flex;
        width: 100%;
        padding-left: 45px;
        margin-bottom: 30px;
        border: none;
        padding: 10px 50px;
        border-radius: 0;
        background-color: #ebebeb;
        height: 60px;
        border-radius: 100px;
    }

    .input-field::placeholder {
        font-weight: 300;
    }

    .signup_form button {
        border: none;
        width: 100%;
    }

    .social_btn a i {
        border-right: 1px solid #fff;
        padding-right: 10px;
    }

    .social_btn a {
        padding: 10px 20px;
        color: #fff;
        font-size: 20px;
        display: flex;
        gap: 20px;
    }

    .social_btn {
        margin: 20px auto;
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .social_btn a:first-child {
        background-color: #4267B2;
    }

    .social_btn a:last-child {
        background-color: #02abee;
    }

    .login {
        background-color: #d7d7d770;
        padding: 164px 50px;
    }
    
    .sign_up-bg {
        background-color: #fbfafa;
        padding: 14px 40px 60px 40px;
    }

    .login h3 {
        color: #000000;
        font-size: 36px;
        line-height: 40px;
        text-align: center;
        font-family: 'Poppins';
        margin-bottom: 20px;
        text-transform: capitalize;
        font-weight: 400;
    }

    .login_form input {
        background-color: #fff;
        border-radius: 0;
    }

    .login_form .remeber {
        text-align: center;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login_form button {
        border: none;
        height: 50px;
    }

    .forgot_pass button.btn-theme {
        padding: 10px 40px;
        font-size: 19px;
        line-height: 24px;
        color: #fff;
        background-color: #05193c;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .forgot_pass {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }

    .login_form label,
    .forgot_pass a {
        font-size: 20px;
        color: #000;
        font-weight: 500;
    }

    .btn-1 {
        height: 60px;
        padding: 0 40px;
        background: #f00f8f;
        color: #fff;
        font-weight: 600;
        font-size: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .bg-from-clr {
        /* background: #e9e9e96b; */
        padding-left: 20px;
    }

    .bg-from-clr .col-lg-5 {
        padding-right: 0;
    }

    .signup_form .btn-wrapper button {
        background: #3f5c9f;
        font-size: 24px;
        border-radius: 50px;
        width: 100%;
        height: 60px;
        color: #fff;
    }

    section.signin_sec::after {
        position: absolute;
        content: "";
        background: url(../images/squares.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 220px;
        height: 328px;
        left: -2%;
        bottom: -15%;
        z-index: -5;
    }

    button.btn.theme_btn {
        background: #191919;
        color: #fff;
        border-radius: 50px;
        padding: 20px;
        display: flex;
        align-items: center;
        font-family: 'Exo 2';
        justify-content: center;
    }

    .remeber input {
        width: 20px;
        height: 20px;
        color: #000;
    }

    .remeber {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }


    /* login */

    .signin-btns {
        justify-content: space-between;
        width: 30%;
    }

    .signin-btns-main {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
    }

    .signin-facebook {
        background: #3a589a;
        display: flex;
        align-items: center;
    }

    .signin-facebook:hover {
        background: #4d74c9;
    }

    .signin-facebook-txt h5, .signin-twitter-txt h5 {
        font-size: 25px;
        line-height: 1;
        color: #fff;
        padding: 10px 15px;
        margin: 0;
    }

    .signin-facebook-i i, .signin-twitter-i i {
        color: #fff;
    }

    .signin-facebook-i, .signin-twitter-i {
        position: relative;
        padding: 20px;
    }

    .signin-facebook-i::before, .signin-twitter-i::before {
        content: '';
        position: absolute;
        top: 20%;
        right: 0;
        border-right: 1px solid #fff;
        height: 40px;
    }

    .signin-btns {
        justify-content: space-between;
        width: 58%;
    }

    .signin-twitter {
        background: #00ade9;
        display: flex !important;
        align-items: center;
    }

    .signin-twitter:hover {
        background: #087ba3;
    }

    .btn-wrapper .btn-theme:before {
        left: calc(-40% - 50% * var(--skew));
    }

    .btn-wrapper button.btn-theme{
        font-family: 'Poppins';
        font-weight: 400;
    }

/* Account Page End */


.hotel-header{
    padding: 40px 120px;
}

.breadcrumb-custom{
    font-size:14px;
    color: #000000;
}

.hotel-title{
    font-size:48px;
    font-weight:700;
    color: #000;
}

.info-row{
    font-size:16px;
    color:#555;
}

.info-row i{
    margin-right:6px;
}

.action-icons{
    display:flex;
    gap:10px;
}

.icon-btn{
    width:40px;
    height:40px;
    border:1px solid #ddd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.icon-btn:hover{
    background:#f5f5f5;
}

.rating{
    color: #ffcc33;
    font-weight:600;
}
.property-detail-imgone img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.property-detail-imgtwo img {
    width: 100%;
    height: 292px;
    margin-bottom: 20px;
}
.contact-info i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background: #000;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
}
.follow-icons a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background: #000;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
}

.follow-icons {
    display: flex;
    gap: 13px;
}



















/* Layout for the Navigation Container */
        .custom-tab-wrapper {
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            padding: 5px;
            margin-bottom: 40px;
        }

        .nav-pills .nav-link {
            color: #444;
            font-weight: 500;
            font-size: 14px;
            border-radius: 10px;
            padding: 10px 20px;
            transition: 0.3s;
        }

        /* Active Tab Black Style */
        .nav-pills .nav-link.active {
            background-color: #000 !important;
            color: #fff !important;
        }

        /* Booking Card */
        .booking-card {
            border: 1px solid #000;
            border-radius: 24px;
            padding: 25px;
            position: sticky;
            top: 20px;
        }

        .host-circle {
            width: 40px; height: 40px;
            background-color: #5d2b2b;
            border-radius: 50%;
        }

        .reserve-btn {
            background: #000; color: #fff;
            width: 100%; padding: 12px;
            border-radius: 10px; font-weight: bold;
            border: none; margin-top: 15px;
        }

        .input-outline {
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 8px;
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
ul.poperty-detail-ul-sd {
    column-count: 2;
    margin-bottom: 0px;
}

.ul-li-propertytwo {
    margin-top: -30px;
}
.property-detail-box img {
    width: 100%;
}

.property-detail-box ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.property-detail-box ul li h4 {
    color: #000;
    font-size: 18px;
}

.property-detail-box ul li i {
    color: #ffde01;
}

.property-detail-box ul li {
    color: #000;
}

section.property-detail-sec {
    margin: 100px 0px;
}
.poperty-boc-text-wi p {
    width: 92%;
    color: #000;
}

ul#pills-tab {
    border: 2px solid #000;
    padding: 10px 10px;
    border-radius: 10px;
}
/* .header-logo {
    background: #fff;
    border-radius: 10px;
} */