@charset "utf-8";
/*======================================
 [ -Main Stylesheet-
  Theme: Renstate
  Version: 1.0
  Last change: 01/08/2024 ]
  ++fonts++
  ++general++ 
  ++header++ 
  ++footer++ 
  ++listing++ 
  ++content++   
  ++blog++ 
  ++responsive++ 
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --main-color: #1165ab;
    --second-color: #aab1bdaf;
    --main-font: "Poppins", sans-serif;
}

html {
    overflow-x: hidden !important;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 12px;
    background: #fff;

    height: 100%;
    text-align: center;
    color: #1e1e1e;
}
@-o-viewport {
    width: device-width;
}
@-ms-viewport {
    width: device-width;
}
@viewport {
    width: device-width;
}
/*--------------Typography---------*/
p {
    text-align: left;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
    color: #5e646a;
}
blockquote {
    float: left;
    padding: 10px 20px 0;
    margin: 0 0 20px;
    border-left: 10px solid #eee;
    position: relative;
}
blockquote p {
    font-style: italic;
    font-size: 13px;
    color: #333;
}
/* ---------Page preload-----------*/

.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo-loader {
    width: 120px;
    height: 120px;
    position: relative;
    margin-bottom: 30px;
}

.logo-loader img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logoPulse 2s ease-in-out infinite;
}

.logo-loader::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #1165ab;
    border-radius: 50%;
    animation: logoRing 2s ease-in-out infinite;
}

.logo-loader::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #1165ab;
    border-radius: 50%;
    animation: logoRing 2s ease-in-out infinite reverse;
}

.loader-text {
    color: black;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    opacity: 0.9;
}

.loader-subtitle {
    color: #1165ab;
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
}

@keyframes logoPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes logoRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.loader-text {
    animation: textFade 2s ease-in-out infinite;
}

@keyframes textFade {
    0%,
    100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.6;
    }
}

/* ---------Content Styles--------------------------------------*/
#main {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 1;
}
.wrapper {
    position: relative;
    z-index: 1;
    margin-top: 90px;
    background: #fff;
}
.main-content {
    position: relative;
    min-height: 100vh;
    z-index: 3;
    margin-top: 20px;
}
.ms_vir_height {
    min-height: auto;
}
.content {
    position: relative;
    z-index: 3;
    background: #fff;
    padding-bottom: 50px;
}
.container {
    width: min(100% - 25px, 1700px);
    margin-inline: auto;
    position: relative;
    z-index: 5;
}
.container.small-container {
    width: min(100% - 40px, 1100px);
}
.fl-wrap {
    float: left;
    width: 100%;
    position: relative;
}
.no-bg {
    background: none !important;
}
.full-height {
    height: 100%;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-repeat: repeat;
    background-origin: content-box;
}
.respimg {
    width: 100%;
    height: auto;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 2;
}
.fs-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.no-padding {
    padding: 0 !important;
}
/*------ Header -----------*/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    border-bottom: 1px solid #eee;
    background: #fff;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
}
.header-inner {
    position: relative;
    height: 90px;
    float: left;
    width: 100%;
    padding: 0 10px;
}
.logo-holder {
    position: relative;
    float: left;
    margin-left: 30px;
    height: 12px;
    line-height: 12px;
    margin-top: -6px;
}
.logo-holder img {
    height: 120px;
    width: auto;
}
.progress-bar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 123;
}
.progress-bar {
    position: relative;
    height: 100%;
    width: 0%;
    z-index: 2;
    top: 0;
    transition: all 0.2s ease-in-out;
    background: var(--main-color);
}
/* ------Navigation------------------------------------------------------------ */
.nav-holder {
    float: left;
    position: relative;
    top: 24px;
    margin-left: 80px;
    opacity: 1;
    right: 0;
    visibility: visible;
    z-index: 20;
}
.nav-holder nav {
    position: relative;
    float: right;
}
.nav-holder nav:before,
.nav-holder nav:after {
    content: "";
    position: absolute;
    top: -5px;
    bottom: 20px;
    width: 1px;
    background: #eee;
}
.nav-holder nav:before {
    left: -30px;
}
.nav-holder nav:after {
    right: -30px;
}
.nav-holder nav li {
    float: left;
    position: relative;
    margin-left: 6px;
    height: 66px;
}
.nav-holder nav li ul {
    margin: 30px 0 0 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    min-width: 220px;
    top: 67px;
    left: 0;
    z-index: 1;
    padding: 20px 0;
    background: #000;
    border-radius: 0 0 10px 10px;
    transition: all 0.2s ease-in-out;
    list-style: none;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
}
.nav-holder nav li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin: 0;
}
.nav-holder nav li ul li ul {
    top: -10px;
    left: 100%;
    margin-left: 25px;
    margin-top: 0;
    max-width: 220px;
    list-style: none;
    border-radius: 10px;
}
.nav-holder nav li ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin-right: 0px;
}
.nav-holder nav li ul li {
    width: 100%;
    float: left;
    height: auto;
    position: relative;
}
.nav-holder nav li a {
    float: left;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0px;
    color: #000;
    transition: all 100ms linear;
}
.nav-holder nav li a i {
    padding-left: 12px;
    transition: all 0.2s linear;
}
.nav-holder nav li a:hover,
.nav-holder nav li a i,
.nav-holder nav li a.act-link {
    color: var(--main-color);
}
.nav-holder nav li a:hover i {
    transform: rotateX(180deg);
}
.nav-holder nav li ul a {
    color: #fff;
    float: left;
    width: 100%;
    font-weight: 600;
    text-align: left;
    padding: 2px 15px;
}
nav li ul a:before,
nav li ul a:after {
    display: none;
}
.header-btn {
    position: relative;
    float: right;
    height: 60px;
    line-height: 60px;
    top: 15px;
    padding: 0 30px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    font-size: 0.9em;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
}
.header-btn:hover {
    color: #fff;
    background: #000;
}
.wish_btn {
    height: 90px;
    line-height: 90px;
    width: 30px;
    cursor: pointer;
    float: right;
    font-size: 2.1em;
    margin-right: 25px;
    position: relative;
}
.wish_btn i {
    transition: all 0.4s ease-in-out;
    font-weight: 400;
}
.wish_btn:hover i {
    font-weight: 900;
    color: #bbb;
}
.wish_count {
    position: absolute;
    width: 23px;
    height: 16px;
    line-height: 16px;
    border-radius: 4px;
    background: var(--main-color);
    bottom: 22px;
    left: -9px;
    color: #fff;
    z-index: 2;
    font-weight: 600;
    font-size: 9px;
    box-shadow: 0px 0px 0px 3px #fff;
}
.wish_btn-item {
    position: relative;
}
.wish_btn-item:before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    width: 1px;
    left: -30px;
    background: #eee;
}
.tolt {
    z-index: 10;
}
.show-reg-form {
    position: relative;
    float: right;
    font-weight: 600;
    margin-right: 50px;
    padding: 0 24px;
    /* border: 1px solid #eee; */
    border-radius: 36px;
    line-height: 36px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: red;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
}
.show-reg-form a {
    color: #fff;
}
.show-reg-form a:hover {
    color: red;
}
.show-reg-form i {
    margin-right: 10px;
    font-weight: 600;
    color: #fff;
}
.show-reg-form:hover {
    box-shadow: 0 10px 14px 0px rgba(0, 0, 0, 0);
    background: #fff;
    color: red;
    border: 1px solid red;
    border-radius: 36px;
}
/* .show-reg-form:hover i {
	color:var(--main-color);
} */
.ps-facts-item:hover h4 {
    color: #1165ab;
}
.header-search-btn {
    float: right;
    position: relative;
    width: 50px;
    font-size: 1.7em;
    height: 90px;
    line-height: 90px;
    font-weight: 900;
    cursor: pointer;
    margin: 0 10px 0 15px;
}
.hsbclose i:before {
    content: "\f00d";
}
.header-search-wrap {
    position: absolute;
    right: 0;
    width: 420px;
    top: 100%;
    margin-top: 20px;
    margin-right: -20px;
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: all 0.3s linear;
}
.header-search-nav {
    padding: 0 70px 0 0;
    position: relative;
}
.header-search-nav_container {
    background: #fff;
    position: relative;
    padding: 14px 14px 0;
    border: 1px solid #eee;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
    z-index: 2;
}
.header-search-nav_container:after {
    content: "";
    position: absolute;
    top: -8px;
    left: -9px;
    bottom: 8px;
    right: -9px;
    z-index: -1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px 10px 0 0;
}
.header-search-nav_container:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: #fff;
}
.header-search-container {
    position: relative;
    padding: 14px;
    border-radius: 0 10px 10px 10px;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
}
.vis-search {
    opacity: 1;
    visibility: visible;
    margin-right: 0;
}
.header-search {
    position: relative;
    z-index: 2;
}
.header-search-radio {
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    border-right: none;
    border-radius: 4px;
}
.button-label {
    width: 33.333333%;
    float: left;
    font-size: 0.9em;
    text-transform: uppercase;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    background: #f9f9f9;
    border-right: 1px solid #eee;
    transition: 0.3s;
    user-select: none;
}
.button-label:hover {
    color: #ccc;
}
.header-search-radio .radio-label:checked + .button-label {
    color: #000;
    background: #fff;
}
.hidden,
.close_mob-filter {
    display: none;
}
.body-overlay,
.wishlist-wrap-overlay,
.search-form-overlay,
.mob-nav-overlay,
.mob-filter-overlay {
    position: fixed;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: none;
}
.wishlist-wrap-overlay {
    z-index: 100;
}
.search-form-overlay {
    z-index: 19;
}
.mob-filter-overlay {
    z-index: 39;
}
.wish-list-wrap {
    position: fixed;
    right: 28px;
    top: 28px;
    bottom: 28px;
    width: 490px;
    background: #fff;
    z-index: 101;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
    opacity: 0;
    margin-right: -30px;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.wish-list-wrap:before {
    content: "";
    position: absolute;
    top: 90px;
    left: 20px;
    bottom: 120px;
    right: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    z-index: 1;
    border: 1px solid #eee;
}
.vis-wishlist {
    visibility: visible;
    opacity: 1;
    margin-right: 0;
}
.wish-list-close {
    position: absolute;
    width: 70px;
    height: 70px;
    line-height: 70px;
    right: 0;
    top: 0;
    font-size: 1.4em;
    cursor: pointer;
    z-index: 5;
}
.wish-list-container {
    position: absolute;
    top: 100px;
    left: 20px;
    right: 20px;
    bottom: 100px;
    overflow: auto;
    padding: 0 10px;
    z-index: 2;
}
.wish-list_header {
    position: absolute;
    left: 0;
    right: 70px;
    height: 70px;
    line-height: 70px;
    background: #f9f9f9;
    padding-left: 34px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    z-index: 3;
    overflow: hidden;
}
.wish-list-title {
    text-align: left;
    font-size: 1.3em;
    font-weight: 600;
    text-transform: uppercase;
}
.wish-list-title span {
    position: absolute;
    font-size: 12px;
    width: 50px;
    height: 36px;
    line-height: 36px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
    color: var(--main-color);
    right: 15px;
    top: 50%;
    margin-top: -18px;
    text-align: center;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.07);
}
.wish-list-item {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 10px;
}
.wish-list-item:before {
    content: "";
    position: absolute;
    left: calc(35% + 20px);
    width: 1px;
    background: #eee;
    height: 100%;
    top: 0;
}
.wish-list-img {
    float: left;
    width: 35%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
.wish-list-descr {
    float: left;
    width: 65%;
    padding: 10px 10px 0 40px;
}
.wish-list-img img {
    width: 100%;
    height: auto;
}
.wish-list-img:hover {
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0);
}
.wish-list-descr h4 {
    text-align: left;
    font-weight: 600;
    font-size: 1.2em;
    padding-bottom: 2px;
    text-transform: uppercase;
}
.wish-list-descr .geodir-category-location a {
    float: left;
    text-align: left;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}
.wish-list-descr .geodir-category-location {
    margin-top: 4px;
}
.wish-list-price {
    float: left;
    width: 100%;
    margin-top: 10px;
    text-align: left;
    color: #222;
    font-weight: 600;
}
.wish-list-price span {
    margin-right: 6px;
}
.clear-wishlist {
    position: absolute;
    right: -1px;
    bottom: -1px;
    background: #f9f9f9;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 10px 0 0 0;
    border: 1px solid #eee;
    border-right-color: #f9f9f9;
    border-bottom-color: #f9f9f9;
    cursor: pointer;
    font-size: 1.4em;
    color: var(--main-color);
}
.clear-wishlist:hover {
    color: #000;
}
.wish-list-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: #fff;
    z-index: 4;
    border-top: 1px solid #eee;
}
/* ---------tabs----------------*/
.tab-content {
    width: 100%;
    display: none;
    float: left;
}
.tab {
    width: 100%;
    float: left;
}
.first-tab {
    display: block;
}
/*------login-------------------*/

.main-register-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: auto;
    display: none;
    align-items: center;
    justify-content: center;
}
.main-register_box {
    position: relative;
    z-index: 12;
}
.main-register-holder {
    width: min(100% - 25px, 950px);
    margin-inline: auto;
    position: relative;
}
.main-register-wrap {
    padding-left: 500px;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    transform: scale(0.9);
    opacity: 0;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
    position: relative;
}
.vis_mr {
    opacity: 1;
    transform: scale(1);
}
.main-register_bg {
    position: absolute;
    left: 0;
    width: 500px;
    top: 0;
    bottom: 0;
    background: #fff;
    border-right: 1px solid #eee;
}
.main-register_bg-dec {
    position: absolute;
    height: 15px;
    top: 15px;
    background: #fff;
    left: 50%;
    z-index: 5;
    width: 150px;
    margin-left: -75px;
    border-radius: 0 0 20px 20px;
}
.main-register_bg-dec:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 1px;
    margin-left: -15px;
    background: #ddd;
}
.main-register_bg:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    border-radius: 20px;
    z-index: 1;
}

.mr_title {
    position: relative;
    top: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    z-index: 2;
    text-align: center;
}
.superposed-image {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}
.mr_title h4 {
    color: #fff;
    font-size: 2.2em;
    font-weight: 500;
    padding-bottom: 2px;
}
.mr_title h5 {
    color: #fff;
    font-size: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
}
.main-register_contacts-wrap {
    position: absolute;
    bottom: 15px;
    left: 100px;
    right: 100px;
    z-index: 10;
    background: #fff;
    border-radius: 30px 30px 0 0;
    padding: 15px 30px 0;
}
.main-register_contacts-wrap h4 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1.3em;
    color: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: -40px;
    text-shadow: 6px 22px 20px rgba(206, 89, 55, 0.56);
}
.main-register_contacts-wrap a {
    padding: 15px 0;
    width: 100%;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}
.main-register_contacts-wrap a:hover {
    background: #f9f9f9;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0);
}
.svg-corner {
    position: absolute;
    width: 40px;
    height: 40px;
}
.main-register {
    float: left;
    width: 100%;
    position: relative;
    padding: 100px 50px 30px;
    background: #fff;
    overflow: hidden;
}
.vis_mr {
    opacity: 1;
    transform: scale(1);
}
.main-register .tabs-menu {
    position: absolute;
    left: 0;
    top: 0;
    padding-right: 60px;
    right: 0;
    border-bottom: 1px solid #eee;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
}
.close-modal {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    font-size: 1.5em;
    transition: all 0.4s ease-in-out;
    background: #fff;
    border-bottom: 1px solid #fff;
}
.close-modal:hover {
    background: #f9f9f9;
    color: var(--main-color);
    border-bottom: 1px solid #eee;
}
.main-register .tabs-menu li {
    float: left;
    width: 50%;
}
.main-register .tabs-menu li a {
    height: 60px;
    line-height: 60px;
    float: left;
    width: 100%;
    background: #f9f9f9;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    color: #000;
    border-right: 1px solid #eee;
}
.main-register .tabs-menu li.current a,
.main-register .tabs-menu li.current a i {
    color: #000;
    background: #fff;
}
.main-register .tabs-menu li a i {
    margin-right: 10px;
    font-weight: 800;
}
.soc-log {
    padding: 5px 0;
}
.soc-log p,
.property-contacts-wrap p {
    margin-bottom: 12px;
    font-size: 11px;
    color: #454545;
    text-align: center;
}
.soc-log a {
    float: left;
    width: 100%;
    height: 60px;
    line-height: 60px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
}
.soc-log a:hover {
    background: #f9f9f9;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0);
}
.soc-log a i {
    font-size: 1.4em;
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    left: 0;
    line-height: 60px;
    background: #fff;
    border-right: 1px solid #eee;
}
.google_log i {
    color: #fbbc05;
}
.fb_log i {
    color: #4285f4;
}
.log-separator {
    position: relative;
}
.log-separator span {
    position: relative;
    width: 90px;
    display: inline-block;
    background: #fff;
    z-index: 2;
}
.log-separator:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
    z-index: 1;
}
.main-register .custom-form .commentssubmit {
    margin: 20px 0 10px;
}
.commentssubmit_fw,
.main-register .custom-form .commentssubmit {
    width: 100%;
}
.custom-form .log-submit-btn:hover,
.tags-widget a:hover,
.wish-list-descr h4:hover a,
.wish-list-close:hover,
.main-register .tabs-menu li a i {
    color: var(--main-color);
}
.main-register .filter-tags {
    float: left;
    margin: 2px 0 0 0;
}
.main-register .filter-tags input {
    float: left;
    position: relative;
    border: 1px solid #e5e7f2;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    color: #fff;
    background: #fff;
    -webkit-appearance: none;
}
.filter-tags input:checked:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f00c";
    font-size: 12px;
    position: absolute;
    top: 2px;
    left: 3px;
    z-index: 20;
    color: #000;
}
.main-register .filter-tags label {
    width: auto;
    margin: 0 0 0 8px;
}
.main-register .filter-tags,
.main-register .lost_password {
    margin-top: 10px;
}
.lost_password {
    margin-top: 4px;
    float: right;
}
.lost_password a {
    float: left;
    color: #666;
    font-weight: 500;
}
.lost_password a:hover {
    text-decoration: underline;
}
.tbhc_btn,
.mob-hid_btn {
    display: none;
}
.stp-bot {
    padding-bottom: 50px;
}
/*-------------Forms---------------------------------------*/
.cs-intputwrap {
    position: relative;
    margin-bottom: 14px;
}
.cs-intputwrap svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    color: var(--main-color);
    z-index: 10;
}
.custom-form textarea,
.custom-form input[type="text"],
.custom-form input[type="number"],
.custom-form input[type="email"],
.custom-form input[type="password"],
.custom-form input[type="button"],
.listsearch-input-item input[type="text"] {
    border: 1px solid #0099cc;
    background: #f9f9f9;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0);
    height: 56px;
    width: 100%;
    padding: 17px 20px 17px 50px;
    border-radius: 4px;
    color: #222;
    font-size: 12px;
    -webkit-appearance: none;
    outline: none;
    overflow: hidden;
    font-family: var(--main-font);
    font-weight: 500;
}
.custom-form textarea::-webkit-input-placeholder,
.custom-form input[type="text"]::-webkit-input-placeholder,
.listsearch-input-item input[type="text"]::-webkit-input-placeholder,
.custom-form input[type="password"]::-webkit-input-placeholder {
    color: #666;
    font-size: 0.95em;
    font-family: var(--main-font);
}
.custom-form textarea:focus,
.custom-form input[type="text"]:focus,
.custom-form input[type="email"]:focus,
.custom-form input[type="password"]:focus,
.listsearch-input-item input[type="text"]:focus {
    background: #fff;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
}
.nice-select {
    padding-left: 50px;
    height: 56px;
    line-height: 56px;
    border-radius: 4px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-weight: 500;
    font-size: 0.95em;
}
.nice-select:hover {
    background: #fff;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
}
.nice-select:after {
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
}
.nice-select .list {
    border-radius: 10px;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
    z-index: 11;
}
.custom-form textarea {
    height: 200px;
    resize: none;
    padding: 25px 20px;
    -webkit-appearance: none;
}
.filter-tags {
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.filter-tags li {
    float: left;
    margin-right: 10px;
    cursor: pointer;
}
.ds-tg li {
    width: 33.333333%;
    margin: 0 0 12px 0;
}
.filter-tags input,
.custom-form .filter-tags input {
    float: left;
    position: relative;
    border: 1px solid #ddd;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    color: #fff;
    background: #f9f9f9;
    -webkit-appearance: none;
}
.custom-form.dark-form .filter-tags input {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.21);
}
.filter-tags input:checked:after,
.custom-form .filter-tags input:checked:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f00c";
    font-size: 12px;
    position: absolute;
    top: 2px;
    left: 4px;
    z-index: 20;
    color: var(--main-color);
}
.filter-tags label,
.custom-form .filter-tags label {
    float: left;
    padding: 0 10px;
    position: relative;
    top: 2px;
    width: auto;
}
.custom-form.dark-form .filter-tags label {
    color: #fff;
}
.custom-form.dark-form label {
    color: rgba(255, 255, 255, 0.71);
}
.vis-label {
    margin-bottom: 10px;
    font-size: 12px;
}
.custom-form label.vis-label i {
    top: 44px;
}
.custom-form button {
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    font-family: var(--main-font);
}
.custom-form input[type="number"]::-webkit-inner-spin-button,
.custom-form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.custom-form input[type="number"] {
    -moz-appearance: textfield;
}
.custom-form .quantity {
    position: relative;
    overflow: hidden;
}
.custom-form .quantity input.minus,
.custom-form .quantity input.plus,
.custom-form .quantity input.qty {
    width: 44px;
    height: 54px;
    border-radius: 0;
    border: none;
    text-align: center;
    padding: 0;
    cursor: pointer;
    background: #f9f9f9;
    font-size: 1.4em;
    -webkit-appearance: none;
}
.custom-form .quantity input.plus {
    border-radius: 0 6px 6px 0;
}
.custom-form .quantity input.minus {
    border-radius: 6px 0 0 6px;
}
.quantity-item {
    float: right;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}
.custom-form .quantity input.qty {
    font-family: var(--main-font);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1em;
    cursor: default;
    color: var(--main-color);
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
}
.custom-form.no-icons input,
.custom-form.no-icons textarea {
    padding-left: 10px;
}
.custom-form.no-icons label {
    margin-bottom: 20px;
}
.quantity_wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 3px 3px 3px 20px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 10px;
}
.quantity_wrap_title {
    float: left;
    line-height: 54px;
}
.quantity_wrap_title i {
    color: var(--main-color);
    margin-right: 10px;
    font-size: 1.4em;
}
.radio {
    color: #999;
    font-size: 13px;
    position: relative;
    top: -2px;
}
.radio span {
    position: relative;
    padding-left: 30px;
    top: 1px;
}
.radio span:after {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #e5e7f2;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: -3px;
    box-sizing: border-box;
}
.radio input[type="radio"] {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}
.radio input[type="radio"]:checked + span {
    color: #666;
}
.radio input[type="radio"]:checked + span:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f00c";
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 4px;
    z-index: 20;
}
.fuzone {
    position: relative;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all 0.3s linear;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    min-height: 140px;
    margin-top: 0px;
    cursor: pointer;
    z-index: 1;
}
.fuzone input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 100;
    cursor: pointer;
}
.fuzone .fu-text {
    text-align: center;
    margin: 50px 0;
    font-size: 12px;
    color: #999;
    font-weight: 400;
    position: relative;
}
.fuzone .fu-text i {
    font-size: 44px;
    width: 100%;
    padding-bottom: 10px;
    transition: all 0.3s linear;
    color: var(--main-color);
}
.fuzone:hover .fu-text i {
    transform: translateY(-10px);
}
.photoUpload-files {
    margin-top: 6px;
    padding: 0 10px;
}
.photoUpload-files span {
    color: #666;
    margin: 0 3px;
    padding: 3px 6px;
    background: #fff;
    border-radius: 2px;
    display: inline-block;
    font-size: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.07);
}
.hid-input {
    display: none;
}
.onoffswitch {
    position: relative;
    width: 73px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}
.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 30px;
    font-size: 10px;
    color: #fff;
    font-weight: 500;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "ON";
    padding-left: 16px;
    text-align: left;
    background: var(--main-color);
    color: #fff;
}
.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 16px;
    background: var(--main-color);
    color: #fff;
    text-align: right;
}
.onoffswitch-switch {
    display: block;
    width: 16px;
    height: 16px;
    background: #fff;
    position: absolute;
    top: 7px;
    right: 48px;
    border-radius: 2px;
    transition: all 0.3s ease-in 0s;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.07);
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 10px;
}
.view-pass {
    position: absolute;
    right: 20px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    line-height: 20px;
    z-index: 5;
}
.view-pass:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f06e";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    font-weight: 900;
    color: var(--main-color);
}
.daterangepicker {
    border-radius: 20px;
    box-shadow: 0 9px 36px rgba(58, 87, 135, 0.15) !important;
}
.daterangepicker td.active,
.daterangepicker td.active:hover,
.searchform-submit,
.daterangepicker .drp-buttons .btn:hover,
.irs-bar,
.irs-slider,
.irs-bar-edge {
    background: var(--main-color);
}
.daterangepicker .calendar-table table {
    font-family: var(--main-font);
}
.daterangepicker .drp-buttons .btn.btn-primary {
    display: none;
}
.daterangepicker .drp-buttons .btn {
    border: none;
    border-radius: 20px;
    margin-top: 0;
    padding: 12px 22px !important;
    margin: 0;
    background: #000;
    width: 100%;
    transition: all 0.2s linear;
}
.daterangepicker.show-calendar .drp-buttons {
    display: block;
}
.daterangepicker .calendar-table td,
.daterangepicker .calendar-table th {
    font-weight: 600;
}
.price-range-wrap {
    margin-top: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0 20px 16px 110px;
}
.custom-form .price-range-wrap {
    margin-top: 0;
    transition: all 0.3s linear;
    border-radius: 4px;
    padding: 0 20px 14px 110px;
}
.custom-form .price-range-wrap:hover {
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
    background: #fff;
}
.irs-from,
.irs-single,
.irs-to {
    background: #000;
}
.price-range-wrap label {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: left;
    color: #666;
    font-size: 0.9em;
}
.irs-slider:before {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
}
.more_search-btn {
    position: relative;
    border: 1px solid #eee;
    background: #f9f9f9;
    height: 56px;
    padding: 0 20px;
    border-radius: 4px;
    line-height: 56px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s linear;
}
.more_search-btn i {
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--main-color);
    transform: translateY(-50%);
    transition: all 0.3s linear;
}
.more_search-btn:hover {
    background: #fff;
}
.more_search-btn.mfilopact i {
    transform: translateY(-50%) rotate(45deg);
}
.more_search-btn.mfilopact {
    background: #000;
    color: #fff;
}
.hidden-listing_search_wrap {
    position: relative;
}
.hidden-listing-filter {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 20px;
    width: 400px;
    padding: 30px 30px 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 34px 0px rgba(0, 0, 0, 0.09);
    display: none;
}
.hidden-listing-item {
    overflow: hidden;
}
.hidden-listing-item .filter-tags li {
    float: left;
    width: 50%;
    margin: 4px 0;
}
.filter-tags-title {
    padding-bottom: 15px;
    margin: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}
.home-hero-section .hero-section-container {
    padding: 80px 0;
}
.hero-section-title_sub {
    display: table;
    position: relative;
    font-size: 1.2em;
    color: #fff;
    text-align: left;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
.home-hero-section .hero-section-title h2 {
    text-align: left;
    font-size: 3.7em;
    line-height: 1.3em;
}
.home-hero-section .hero-section-title h2 a,
.home-hero-section .hero-section-title .geodir-category-location a,
.home-hero-section .hero-section-title p {
    color: #fff;
}
.home-hero-section .hero-section-title h5 {
    text-align: left;
    margin-top: 15px;
}
.home-hero-section .hero-section-title h5:before {
    display: none;
}
.home-hero-section .hero-section-title p {
    max-width: 550px;
}
.home-hero-section .hero-section-title .geodir-category-location {
    display: table;
    margin: 10px 0;
}
.hero-section-title.hs_align-title {
    margin-top: 90px;
}
.hero-notifer {
    text-align: right;
    color: #fff;
    font-weight: 500;
    margin-top: 40px;
}
.hero-notifer a {
    color: #fff;
    padding: 8px 14px;
    margin-left: 10px;
    border-radius: 4px;
    background: var(--main-color);
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.2s linear;
}
.hero-notifer a:hover {
    background: #000;
    color: var(--main-color);
}
.home-hero-section .hs-scroll-down-wrap {
    right: auto;
    left: 0;
    padding: 12px 30px;
}
.home-hero-section .hs-scroll-down-wrap:before {
    display: none;
}
.boxed-container {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    background: #f9f9f9;
    margin-bottom: 30px;
    border: 1px solid #eee;
}
.tags-widget,
.hidden-content {
    overflow: hidden;
}
.fixed-form,
.limit-box,
.sb-container,
.fixed-form-wrap {
    position: relative;
}
.boxed-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}
.fixed-form .boxed-content {
    margin: 0;
}
.boxed-content-title {
    padding: 25px 50px;
    border-bottom: 1px solid #eee;
    position: relative;
    background: #fff;
    border-radius: 20px 20px 0 0;
}
.boxed-content-title:before,
.boxed-content-title:after,
.lws_column .list-searh-input-wrap-title:before,
.lws_column .list-searh-input-wrap-title:after,
.contacts-card-item span:before,
.contacts-card-item span:after,
.help-item-title:before,
.help-item-title:after,
.testi-header:before,
.testi-header:after {
    content: "";
    position: absolute;
    right: 50px;
    height: 8px;
    background: var(--main-color);
    top: 50%;
    margin-top: -4px;
    border-radius: 10px;
}
.boxed-content-title:before,
.lws_column .list-searh-input-wrap-title:before,
.contacts-card-item span:before,
.help-item-title:before,
.testi-header:before {
    width: 20px;
}
.help-item-title:before,
.testi-header:before {
    right: 30px;
}
.hsc_flat .hero-section-title h2:before,
.lws_column .list-searh-input-wrap-title:before,
.contacts-card-item span:before {
    right: 0;
}
.hero-section-title {
    position: relative;
}
.boxed-content-title:after,
.lws_column .list-searh-input-wrap-title:after,
.contacts-card-item span:after,
.help-item-title:after,
.testi-header:after {
    width: 12px;
    right: 70px;
    background: #ddd;
}
.help-item-title:after,
.testi-header:after {
    right: 50px;
}
.lws_column .list-searh-input-wrap-title:after {
    right: 21px;
}
.lws_column .list-searh-input-wrap-title:after,
.contacts-card-item span:after {
    right: 21px;
}

.list-searh-input-wrap.lws_column {
    padding-bottom: 20px;
}
.list-searh-input-wrap.list-searh-input-wrap-hero {
    margin-top: 50px;
    border-radius: 4px;
    padding: 10px !important;
}
.list-searh-input-wrap.list-searh-input-wrap-hero .commentssubmit,
.lsw_mb-btn .commentssubmit {
    height: 56px;
    line-height: 56px;
}
.list-searh-input-wrap.lsw_mb-btn {
    padding-bottom: 20px;
}
.list-searh-input-wrap-hero .cs-intputwrap {
    margin-bottom: 0;
}
.boxed-content-title h3 {
    text-align: left;
    font-size: 1.5em;
    font-weight: 600;
}
.boxed-content-item {
    padding: 30px 50px;
}
.boxed-content-item.bc-item_smal_pad {
    padding: 20px 50px;
}
.boxed-content-item.bc-item_smal_pad2 {
    padding: 30px;
}
.scroll-content-wrap {
    position: relative;
    padding-left: 100px;
}
.share-holder {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    padding: 5px 0;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 10px 44px 0px rgba(0, 0, 0, 0.08);
}
.share-title {
    margin: 10px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-size: 11px;
    color: #666;
}
.share-container {
    position: relative;
    border: 1px solid #eee;
    display: inline-block;
    width: 50px;
    overflow: hidden;
    border-radius: 10px;
}
.share-container.visshare {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}
.share-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    font-size: 1.3em;
    transition: all 100ms linear;
}
.share-container .share-icon:first-child {
    border-top: none;
}
.share-icon:hover {
    background: #fff;
    color: var(--main-color);
}
.share-icon:before {
    font-family: Font Awesome\5 Brands;
}
.share-icon-facebook:before {
    content: "\f39e";
}
.share-icon-twitter:before {
    content: "\e61b";
}
.share-icon-tumblr:before {
    content: "\f173";
}
.share-icon-linkedin:before {
    content: "\f0e1";
}
.share-icon-pinterest:before {
    content: "\f231";
}
.ps-facts-wrapper {
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 20px;
}
.ps-facts-item {
    border-left: 1px solid #eee;
    padding: 20px 40px 20px 80px;
    overflow: hidden;
    text-align: left;
}
.ps-facts-item h4 {
    font-size: 1.2em;
    font-weight: 600;
    padding-bottom: 3px;
}
.ps-facts-item h5 {
    text-transform: uppercase;
}
.ps-facts-item i {
    position: absolute;
    top: 50%;
    left: 30px;
    font-size: 2em;
    color: var(--main-color);
    transform: translateY(-50%);
}
.ps-facts-wrapper .ps-facts-item:first-child {
    border-left: none;
}
.pp-single-opt-links {
    margin-top: 30px;
    position: relative;
}
.pp-single-opt-links ul {
    overflow: hidden;
}
.pp-single-opt-links li,
.pp-single-opt-links li a {
    float: left;
}
.pp-single-opt-links li a {
    padding: 14px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 30px;
    margin-right: 20px;
    transition: all 0.3s linear;
}
.pp-single-opt-links li a:hover {
    background: #000;
    color: #fff;
}
.pp-single-opt-links li a i {
    margin-right: 10px;
    color: var(--main-color);
    font-size: 16px;
}
.pp-single-opt-link_silngle {
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 4px;
    border: 1px solid #eee;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
    transition: all 0.3s linear;
}
.pp-single-opt-link_silngle:hover {
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0);
    background: #f9f9f9;
}
.pp-single-opt,
.content-table {
    overflow: hidden;
}
.nerby-list {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}
.nerby-title {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 1.4em;
    font-weight: 600;
    display: block;
    position: relative;
}
.nerby-title:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f0d7";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    font-weight: 900;
    color: var(--main-color);
}
.nerby-list-box {
    position: relative;
    padding: 20px;
}
.pp-single-features li {
    float: left;
    margin: 10px;
    font-size: 1.1em;
    text-align: left;
    font-weight: 500;
}
.pp-single-features li a {
    float: left;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 2px 30px 2px 2px;
    border-radius: 30px;
}
.pp-single-features li i {
    width: 40px;
    height: 40px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    position: relative;
    color: var(--main-color);
    margin-right: 10px;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
    font-size: 12px;
}
.nerby-list ul {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.nerby-list li {
    width: 100%;
    margin: 6px 0;
    padding: 8px 10px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eee;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95em;
    text-align: left;
    overflow: hidden;
    position: relative;
}
.nerby-list li span {
    position: absolute;
    top: 4px;
    bottom: 4px;
    right: 4px;
    color: #666;
    width: 50px;
    line-height: 30px;
    border-radius: 4px;
    background: #f9f9f9;
    border: 1px solid #eee;
    text-align: center;
}
.nerby-list li i {
    margin-right: 20px;
    color: var(--main-color);
    font-size: 17px;
    width: 15px;
}
.sb-widget,
.dec-title,
.ps-facts-wrapper,
.ps-facts-item {
    position: relative;
}
.dec-title_item {
    float: left;
    background: #000;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    padding: 23px 60px 0 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
}
.dec-title,
.ps-facts-wrapper {
    overflow: hidden;
}
.charts-item {
    border-radius: 0 20px 20px 20px;
    overflow: hidden;
    padding: 30px 10px 30px 20px;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.2);
}
.dark-bg {
    background: #000;
}
.gradient-bg {
    background: rgb(249, 219, 146);
    background: linear-gradient(
        180deg,
        rgba(249, 219, 146, 1) 0%,
        rgba(238, 120, 56, 1) 50%,
        rgba(249, 219, 146, 1) 100%
    );
}
.charts-container {
    margin-bottom: 20px;
    position: relative;
}
.graph-price-container {
    position: relative;
    display: grid;
    grid-template-columns: 65% 35%;
}
.graph-price-counter .num {
    font-size: 4.7em;
    color: #fff;
    position: relative;
    text-align: left;
    padding-left: 30px;
}
.price-perc {
    position: absolute;
    right: 20px;
    top: 30px;
    color: var(--main-color);
    font-size: 1.4em;
}
.graph-price-counter-wrap .num:before {
    content: "+";
    position: absolute;
    top: 50%;
    left: 0;
    color: #fff;
    font-size: 20px;
    transform: translateY(-50%);
}
.graph-price-counter-wrap {
    position: relative;
    margin-top: 30px;
    padding: 0 20px;
}
.graph-price-counter-wrap h4 {
    text-align: left;
    color: #fff;
}
.graph-price {
    position: relative;
    overflow: hidden;
}
.graph-price-item {
    position: relative;
    float: left;
    width: 25%;
    padding: 0 13px;
}
.graph-price-item-title {
    color: #fff;
    margin-top: 10px;
}
.graph {
    position: relative;
    cursor: pointer;
    border-radius: 30px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.gil {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    border-radius: 30px;
    bottom: 0;
    background: var(--main-color);
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.97);
}
.gil span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    background: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 10px;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 10px 34px 0px rgba(0, 0, 0, 0.3);
}
.gil:hover span {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
}
.section {
    position: relative;
    padding: 90px 0;
}
.hero-section {
    margin-top: 20px;
    padding: 0;
    overflow: hidden;
}
.hero-section-container {
    padding: 300px 0 70px;
    position: relative;
}
.hero-section_sin .hero-section-container {
    padding-top: 300px;
    padding-bottom: 150px;
}
.bg-parallax-wrap-gradien:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 20;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 90%
    );
}
.hero-section-wrap {
    z-index: 4;
    overflow: hidden;
    position: relative;
}
.bg-wrap {
    z-index: 1;
}
.bg-wrap .bg {
    top: -15%;
    height: 130%;
}
.bg-wrap .hero-blur-container_item .bg,
.slideshow-container_wrap .bg {
    top: 0;
    height: 100%;
}
.bg-wrap .overlay {
    opacity: 0.5;
}
.hero-section-wrap-item {
    position: relative;
    overflow: hidden;
}
.hero-section_categories {
    margin-bottom: 20px;
    overflow: hidden;
}
.hero-section_categories a {
    float: left;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    color: #fff;
    margin-right: 10px;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    transition: all 0.2s ease-in-out;
}
.list-single-opt_header .hero-section_categories a {
    background: #000;
    margin-right: 4px;
}
.hero-section_categories a:hover {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-section-title_container {
    position: relative;
    z-index: 5;
    padding: 0 320px 0 50px;
}
.hsc_flat {
    padding: 0 0 30px;
}
.hero-section-opt {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}
.hsc_flat .hero-section-opt {
    border-color: #eee;
    padding-top: 20px;
    margin-top: 20px;
    overflow: hidden;
}
.property-single-header-price,
.property-single-header-date,
.hero-section-agent_link {
    float: left;
}
.hsc_flat .property-single-header-date.author_avatar_ps {
    position: relative;
    top: 0;
    margin-left: 0;
}
.author_avatar_ps img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.hero-section-agent_link {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 60px;
    line-height: 60px;
    padding: 0 30px 0 4px;
    z-index: 10;
    text-transform: uppercase;
    font-size: 0.95em;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
    background: #fff;
    color: #000;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease-in-out;
}
.hero-section-agent_link:hover {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}
.hero-section-agent_link i {
    margin-left: 10px;
    color: var(--main-color);
    transition: all 0.3s ease-in-out;
    position: relative;
    left: 0;
}
.hero-section-agent_link:hover i {
    left: 6px;
    transition-delay: 0.3s;
}
.hero-section-agent_link img,
.property-contacts_profile_link img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: relative;
    top: -2px;
}
.hero-section-agent_link span,
.property-contacts_profile_link span {
    margin: 0 6px 0 15px;
}
.property-single-header-price {
    color: #fff;
    position: relative;
}
.hsc_flat .property-single-header-price,
.hsc_flat .property-single-header-date,
.hsc_flat .property-single-header-date a {
    color: #000;
}
.property-single-header-price strong,
.property-single-header-date {
    text-transform: uppercase;
    font-size: 0.95em;
    font-weight: 600;
}
.pshp_item {
    font-size: 1.7em;
    font-weight: 600;
    padding-left: 10px;
}
.pshp_item span {
    color: var(--main-color);
    font-size: 14px;
    padding-right: 6px;
    vertical-align: top;
}
.hsc_flat .property-single-header-price {
    position: absolute;
    top: 10px;
    right: 0;
    border-radius: 30px;
    padding: 15px 30px;
    background: var(--second-color);
}
.hsc_flat .property-single-header-price strong {
    position: relative;
    top: -4px;
}
.property-single-header-date {
    color: #fff;
    position: relative;
    margin-left: 20px;
    top: 10px;
}
.property-single-header-date a {
    color: #fff;
}
.property-single-header-date a:hover {
    color: var(--main-color);
}
.property-single-header-date span {
    margin-right: 10px;
}
.hero-section-title h2 {
    font-size: 4.4em;
    text-align: left;
    font-weight: 600;
    color: #fff;
    position: relative;
}
.hero-section_sin h2 {
    font-size: 3.4em;
    text-align: center;
    position: relative;
}
.section-title {
    position: relative;
    margin-bottom: 30px;
}
.section-title h2 {
    font-weight: 600;
    font-size: 3em;
    position: relative;
}
.hero-section-title h4 {
    font-size: 1.1em;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}
.section-title h4 {
    font-weight: 600;
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
}
.hsc_flat .hero-section-title h2 {
    color: #000;
    font-size: 3em;
}
.hero-section_sin .hero-section-title h2:before,
.hero-section_sin .hero-section-title h2:after,
.section-title h2:before,
.section-title h2:after {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
}
.section-title h2:before,
.section-title h2:after {
    top: auto;
    bottom: -20px;
}
.hero-section_sin .hero-section-title h2:before {
    width: 120px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}
.section-title h2:before {
    width: 120px;
    background: #eee;
    z-index: 3;
}
.hero-section_sin .hero-section-title h2:after,
.section-title h2:after {
    width: 30px;
    background: var(--main-color);
    z-index: 4;
}
.hero-section-title h6 {
    font-size: 1.1em;
    text-align: left;
    font-weight: 600;
    color: #fff;
}
.hsc_flat .hero-section-title h4 {
    color: #666;
    font-size: 1em;
    margin-top: 4px;
}
.hero-section-title h4 i {
    margin-right: 10px;
    color: var(--main-color);
}
.hero-section-title h5 {
    color: #fff;
    margin-top: 10px;
    position: relative;
}
.hero-section-title h5:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    left: 50%;
    bottom: -60px;
}
.hero-section-breadcrumbs {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.breadcrumbs-list {
    position: relative;
    height: 64px;
    line-height: 64px;
    padding: 0 150px 0 30px;
}
.breadcrumbs-list.bl_flat {
    background: #f9f9f9;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #eee;
}
.breadcrumbs-list a,
.breadcrumbs-list span {
    float: left;
    position: relative;
    margin-right: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95em;
    padding-right: 20px;
}
.hero-section-breadcrumbs .breadcrumbs-list a {
    color: #fff;
}
.hero-section-breadcrumbs .breadcrumbs-list span {
    color: rgba(255, 255, 255, 0.7);
}
.breadcrumbs-list a:before {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 11px;
    color: var(--main-color);
}
.breadcrumbs-list_dec {
    position: absolute;
    width: 54px;
    height: 54px;
    line-height: 60px;
    right: 6px;
    top: 50%;
    margin-top: -27px;
    border-radius: 50%;
    background: var(--main-color);
}
.breadcrumbs-list.bl_flat .breadcrumbs-list_dec {
    border-radius: 10px;
}
.breadcrumbs-list_dec i {
    font-size: 1.5em;
    transform: rotate(45deg);
    font-weight: 300;
}
.hs-scroll-down-wrap {
    position: absolute;
    right: 40px;
    bottom: 0;
    background: #fff;
    padding: 15px 30px;
    z-index: 10;
    border-radius: 30px 30px 0 0;
}
.hero-section_sin .hs-scroll-down-wrap {
    right: auto;
    left: 50%;
    padding: 12px 30px;
    transform: translateX(-50%);
}
.hero-section_sin .hs-scroll-down-wrap:before {
    display: none;
}
.hs-scroll-down-wrap:before {
    content: "";
    position: absolute;
    left: 30px;
    width: 100vw;
    height: 100%;
    top: 0;
    background: #fff;
}
.scroll-down-item span {
    float: left;
    margin-left: 30px;
    position: relative;
    top: 8px;
    font-weight: 500;
    font-size: 11px;
}
.mousey {
    float: left;
    width: 22px;
    height: 34px;
    border-radius: 10px;
    padding: 0 6px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    background: #f9f9f9;
    box-shadow: 0 10px 12px 0px rgba(0, 0, 0, 0.07);
    position: relative;
}
.mousey:before {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 1px;
    height: 10px;
    background: #ddd;
}
.scroller {
    position: relative;
    left: 50%;
    top: 6px;
    margin-left: -2px;
    width: 4px;
    height: 4px;
    border-radius: 25%;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
    background: var(--main-color);
}
@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}
.hs-pv_wrap {
    position: absolute;
    bottom: 100px;
    right: 30px;
    z-index: 10;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
    background: #fff;
    padding: 0 20px 0 50px;
    border-radius: 30px;
    height: 40px;
    line-height: 40px;
}
.hsc_flat .hs-pv_wrap {
    bottom: auto;
    right: 0;
    top: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
}
.hs-pv_wrap span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8em;
}
.hs-pv_wrap i {
    color: var(--main-color);
    font-size: 1.3em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

.hero-opt-btnns {
    position: absolute;
    bottom: 150px;
    right: 30px;
    z-index: 10;
    width: 46px;
}
.hero-opt-btnns a {
    float: left;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
    background: #fff;
    transition: all 0.2s ease-in-out;
    margin-bottom: 20px;
}
.hero-opt-btnns a i,
.geodir_save-btn i {
    color: var(--main-color);
    font-size: 1.3em;
    line-height: 46px;
    font-weight: 900;
    transition: all 0.2s ease-in-out;
}
.geodir_save-btn i {
    font-size: 1.1em;
}
.hero-opt-btnns a:hover {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.2);
}
.hero-opt-btnns a:hover i,
.geodir_save-btn:hover i {
    font-weight: 400;
}
.property-contacts-wrap,
.property-contacts-item {
    margin-bottom: 20px;
}
.property-contacts-item {
    position: relative;
    padding: 10px 10px 8px 10px;
    background: var(--second-color);
    border-radius: 40px;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.04);
}
.messenger-links-container {
    position: absolute;
    top: 66px;
    right: 0;
    padding: 0;
    min-width: 203px;
    border: 1px solid #eee;
    z-index: 20;
    display: inline-table;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 0px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s linear;
    opacity: 0;
    visibility: hidden;
    margin-top: 40px;
}
.mlc_vis {
    margin-top: 15px;
    visibility: visible;
    opacity: 1;
}
.messenger-links-container a:first-child {
    border-radius: 20px 0 0 20px;
}
.messenger-links-container a:last-child {
    border-radius: 0 20px 20px 0;
}
.messenger-links-container a {
    float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    border-left: 1px solid #eee;
    font-size: 1.9em;
    transition: all 100ms linear;
    font-weight: bold;
}
.messenger-links-container a:hover {
    color: var(--main-color);
    background: #f9f9f9;
}
.property-contacts-links {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 10;
    height: 46px;
    margin-top: -23px;
}
.pcl_btn {
    float: left;
    width: 46px;
    height: 46px;
    line-height: 46px;
    margin-left: 6px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    color: var(--main-color);
    font-size: 1.4em;
}
.pcl_btn:hover {
    color: #000;
}
.property-contacts_profile_link {
    position: relative;
    display: table;
}
.single-gallery-filters {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}
.gf_counter {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 600;
    padding: 12px;
    border-radius: 6px;
    background: #fff;
    font-size: 0.9em;
    border: 1px solid #eee;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
}
.gf_counter:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 1px;
    background: #ddd;
}
.gf_counter div {
    display: inline-block;
    margin: 0 10px;
}
.gallery-item,
.listing-grid-item {
    width: 33.3%;
    position: relative;
    float: left;
    padding: 2px;
}
.listing-grid_heroheader {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.listing-grid_heroheader h3 {
    text-align: left;
    font-size: 1.7em;
    font-weight: 600;
}
.listing-grid_heroheader .gallery-filters {
    position: absolute;
    top: -20px;
    right: 20px;
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 10px;
    padding: 6px;
    background: #fff;
    box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, 0.04);
}
.gallery-filters a {
    float: left;
    font-size: 0.9em;
    text-transform: uppercase;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    height: 42px;
    line-height: 42px;
    padding: 0 25px;
    border: 1px solid #eee;
    border-left: none;
    background: #fff;
}
.gallery-filters a:first-child {
    border-left: 1px solid #eee;
    border-radius: 4px 0 0 4px;
}
.gallery-filters a:last-child {
    border-radius: 0 4px 4px 0;
}
.gallery-filters a:hover {
    background: #f9f9f9;
}
.gallery-filters a.gallery-filter-active {
    color: #666;
    background: #f9f9f9;
}
.gisp .gallery-item,
.gisp .listing-grid-item {
    padding: 10px 20px 10px 0;
}
.gisp .gallery-item .grid-item-holder {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.gallery-item-second,
.grid-sizer-second {
    width: 66.6%;
}
.four-column .gallery-item {
    width: 25%;
}
.four-column .gallery-item.gallery-item-second {
    width: 50%;
}
.gallery-item img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}
.gal-link,
.box-media-zoom {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    z-index: 20;
    border-radius: 50%;
    background: #000;
    color: var(--main-color);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.7);
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
    font-size: 1.2em;
}
.hovzoom:hover .gal-link,
.hov_zoom:hover .box-media-zoom {
    opacity: 1;
    transform: scale(1);
}
.gallery-item .gal-link {
    top: 50%;
    right: 50%;
    margin: -20px -20px 0 0;
}
.box-media-zoom {
    top: 40px;
    right: 40px;
}
.gallery-item .listing-item {
    width: 100%;
    margin-bottom: 30px;
}
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 450px;
    border: 1px solid #eee;
}
.mapC_vis3 {
    height: 490px;
}

.mapzoom-in,
.mapzoom-out {
    position: absolute;
    z-index: 100;
    top: 50%;
    cursor: pointer;
    width: 38px;
    height: 38px;
    line-height: 38px;
    right: 10px;
    margin-top: -84px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
    color: var(--main-color);
}
.mapzoom-out {
    margin-top: -43px;
}
.mapzoom-in:before,
.mapzoom-out:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f068";
    font-size: 10px;
    font-weight: 600;
}
.mapzoom-in:before {
    content: "\f067";
}
.mapnavigation {
    position: absolute;
    bottom: 70px;
    right: 10px;
    z-index: 1030;
    overflow: hidden;
}
.mapnavigation li {
    float: left;
    position: relative;
    margin-left: 4px;
}
.mapnavbtn {
    width: 38px;
    height: 38px;
    float: left;
    font-size: 11px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    color: var(--main-color);
}
.mapnavbtn span {
    line-height: 40px;
}
.scrollContorl {
    position: absolute;
    bottom: 115px;
    right: 10px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    line-height: 38px;
    z-index: 1030;
    border-radius: 10px;
    background: #fff;
    color: var(--main-color);
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
}
.list-single-main-item .scrollContorl {
    bottom: 95px;
}
.scrollContorl:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f068";
    font-size: 10px;
    font-weight: 600;
}
.scrollContorl:before {
    content: "\f09c";
}
.scrollContorl.enabledsroll:before {
    content: "\f3c1";
}
.contacts-map .scrollContorl {
    bottom: 68px;
}
.map-popup-wrap {
    display: block;
    width: 220px !important;
    position: relative;
    z-index: 1 !important;
}
.map-popup-wrap:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -10px;
    left: 50%;
    margin-left: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
    z-index: 100;
}
.map-popup {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
    border-radius: 6px;
}
.info-window-content {
    text-align: center;
}
.info-window-content p {
    text-align: center;
    font-size: 10px;
    color: #566985;
}
.info-window-content h1 {
    font-size: 14px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    display: block;
}
.controls-mapwn {
    position: absolute;
    background: #fff url(../images/search-icon.png) right no-repeat;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
    width: 250px;
    z-index: 1000;
    border: none;
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    left: 10px !important ;
    top: 10px !important;
}
/*-------------accordion----*/
.accordion {
    position: relative;
}
.accordion a.toggle {
    border: 1px solid #eee;
    padding: 0 40px;
    height: 70px;
    line-height: 70px;
    display: block;
    position: relative;
    background: #fff;
    border-radius: 40px;
    box-sizing: border-box;
    text-align: left;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s linear;
    margin-bottom: 15px;
}
.accordion a.toggle i {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    font-size: 16px;
    background: #f9f9f9;
    text-align: center;
    color: var(--main-color);
}
.accordion a.toggle.act-accordion {
    color: #fff;
    border-color: transparent;
    background: #000;
}
.accordion a.toggle.act-accordion i {
    transform: rotateX(180deg);
    background: var(--main-color);
    color: #000;
}
.accordion-inner {
    display: none;
    position: relative;
    padding: 35px 40px 20px;
    background: #fff;
    margin: 0 0 15px;
    text-align: left;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
}
.accordion-inner.visible {
    display: block;
}
.banner-widget-wrap {
    padding: 90px 40px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin-bottom: 20px;
}
.banner-widget-wrap:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
}
.banner-widget_content {
    z-index: 4;
    position: relative;
}
.video-box-btn {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #fff;
    color: var(--main-color);
    border-radius: 50%;
    font-size: 1.2em;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
    transition: all 0.3s linear;
    cursor: pointer;
}
.video-box-btn:hover {
    box-shadow: 0px 0px 0px 14px rgba(255, 255, 255, 0.2);
    background: #000;
}
.banner-widget_content h5 {
    color: #fff;
    margin-top: 30px;
    font-size: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
}
.tags-widget a {
    float: left;
    padding: 10px 30px;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 4px;
    margin: 0 8px 8px 0;
    font-weight: 600;
    background: #000;
    transition: all 0.3s linear;
}
.clients-carousel-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 30px 30px 30px 200px;
}
.clients-carousel {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #f9f9f9;
    position: relative;
}
.clients-carousel-title {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    font-weight: 600;
    padding: 0 30px;
    width: 200px;
}
.clients-carousel-title:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -15px;
    width: 30px;
    height: 1px;
    background: var(--main-color);
}
.client-item img {
    width: 100%;
    aspect-ratio: 6/2;
    object-fit: contain;
    opacity: 0.6;
    transition: all 0.2s linear;
}
.client-item:hover img {
    opacity: 1;
}
.client-item {
    height: 110px;
    line-height: 110px;
    position: relative;
    z-index: 2;
    background: #fff;
    display: block;
    border-radius: 10px;
    border: 1px solid #eee;
}
.cc-button {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: -20px;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #eee;
    color: var(--main-color);
    cursor: pointer;
    z-index: 10;
    font-size: 1.3em;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.07);
}
.cc-button-next {
    right: 5px;
}
.cc-button-prev {
    left: 5px;
}
.half-carousel-container {
    margin: 20px 0 50px;
    position: relative;
    overflow: hidden;
}
.city-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 20px 20px 20px 450px;
}
.city-carousel-item {
    height: 650px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}
.city-carousel-content {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 40px;
    bottom: 60px;
    z-index: 10;
    opacity: 0;
    margin-bottom: -20px;
    transition: all 0.3s linear;
}
.city-carousel-content:before,
.half-carousel-title h2:before,
.parallax-section-content h3:before,
.home-hero-section .hero-section-title_sub:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 40px;
    width: 40px;
    height: 1px;
    background: var(--main-color);
}
.half-carousel-title h2:before,
.parallax-section-content h3:before,
.home-hero-section .hero-section-title_sub:before {
    bottom: auto;
    top: -20px;
    left: 0;
}
.city-carousel-content h3 {
    color: #fff;
    text-align: left;
    font-weight: 600;
    font-size: 2.1em;
    padding-bottom: 10px;
}
.city-carousel-content h3 a {
    color: #fff;
    transition: all 0.2s linear;
}
.city-carousel-content p,
.half-carousel-title p,
.city-carousel-content h3:hover a {
    color: rgba(255, 255, 255, 0.8);
}
.city-carousel-item .bg {
    width: 130%;
    left: -15%;
}
.city-carousel .swiper-slide-active .city-carousel-content,
.city-carousel .swiper-slide-next .city-carousel-content {
    margin-bottom: 0;
    opacity: 1;
    transition-delay: 0.3s;
}
.hc-counter {
    position: absolute;
    left: 40px;
    top: -60px;
    font-weight: 500;
    font-size: 0.9em;
    text-transform: uppercase;
    background: var(--main-color);
    border-radius: 6px;
    padding: 10px 24px;
    color: #fff;
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
}
.half-carousel-title-wrap {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    width: 410px;
    background: #292929;
    overflow: hidden;
    border-radius: 20px;
    z-index: 20;
}
.half-carousel-title {
    position: relative;
    padding: 0 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.half-carousel-title h2 {
    color: #fff;
    text-align: left;
    font-size: 1.9em;
    font-weight: 500;
    padding-bottom: 20px;
    position: relative;
}
.half-carousel-title-wrap .abs_bg {
    top: auto;
    height: 290px;
}
.sc-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.1);
}
.sc-controls.shc_controls2 {
    right: auto;
    left: 270px;
    bottom: 14px;
    background: none;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.1);
}
.sc-controls.shc_controls2.shc_controls3 {
    left: 370px;
}
.sc-controls .swiper-pagination-bullet {
    background: none;
    position: relative;
    margin: 0 10px;
    height: 6px;
    opacity: 1;
}
.sc-controls .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 6px;
    border-radius: 100%;
    background: #fff;
    margin-left: -3px;
    transition: all 0.5s ease;
}
.sc-controls .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    transition: all 0.3s ease;
    transform: scale(0);
}
.sc-controls .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background: var(--main-color);
}
.sc-controls .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    transform: scale(1);
}
.hero-slider-wrapper {
    position: relative;
}
.hero-carousel_item {
    padding: 0 0 20px 20px;
}
.hs-slider-controls {
    position: absolute;
    left: 290px;
    bottom: 20px;
    z-index: 10;
}
.hs-slider-button {
    float: left;
    margin-right: 20px;
    color: #fff;
    font-size: 1.4em;
    cursor: pointer;
    z-index: 20;
}
.hs-slider-button:hover {
    color: var(--main-color);
}
.hero-blur-container_item,
.hsbw_bg .bg {
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}
.hero-blur-container:before,
.hsbw_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    transition: all 0.2s ease-in-out;
}
.hero-blur-container.hideblur:before,
.hsbw_bg.hideblur:before {
    background: rgba(0, 0, 0, 1);
}
.hero-blur-container.hideblur .hero-blur-container_item,
.hsbw_bg.hideblur .bg {
    transform: scale(1.1);
    transition-delay: 0.1s;
}
/*-------------footer--------------*/
.main-footer {
    position: fixed;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    background: #555252;
}
.main-footer:before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    bottom: 0;
    z-index: -1;
}
.height-emulator {
    z-index: 1;
    position: relative;
}
.footer-social-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 30px 0 0;
}
.footer-social {
    float: right;
}
.footer-social-wrap {
    margin-top: 22px;
}
.footer-social-wrap a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    background: var(--main-color);
    margin-right: 10px;
    font-size: 1.3em;
    transition: all 0.2s linear;
}
.footer-social-wrap a:hover,
.subscribe-button:hover {
    background: #fff;
}
.footer-social-title,
.footer-social-wrap,
.footer-social-wrap a,
.subscribe-item,
.footer-inner,
.footer-bottom,
.copyright,
.footer-home_link {
    float: left;
}
.footer-inner {
    width: 100%;
    position: relative;
    padding: 90px 0 60px;
}
.subscribe-item {
    width: 100%;
    position: relative;
    margin-top: 24px;
    height: 60px;
}
.enteremail {
    height: 100%;
    font-family: var(--main-font);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #fff;
    border-radius: 10px;
    width: 100%;
    padding-left: 30px;
    color: #111;
}
.enteremail::-webkit-input-placeholder {
    color: #fff;
}
.subscribe-button {
    position: absolute;
    right: 0;
    width: 130px;
    top: 0;
    cursor: pointer;
    font-weight: 600;
    border: none;
    height: 60px;
    text-transform: uppercase;
    font-family: var(--secondary-font);
    border-radius: 10px;
    background: var(--main-color);
    transition: all 0.2s linear;
}
.subscribe-message {
    display: block;
    text-align: left;
    font-weight: 500;
    color: #fff;
    position: relative;
    top: 10px;
}
.footer-widget-title {
    color: #fff;
    text-align: left;
    font-size: 1.4em;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.footer-widget-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--main-color);
}
.footer-widget-content p {
    color: rgba(255, 255, 255, 0.7);
}
.footer-list li {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    padding-left: 20px;
    text-transform: uppercase;
    font-weight: 600;
}
.footer-list li:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f0da";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 11px;
    font-weight: 900;
    transition: all 0.2s linear;
    color: var(--main-color);
}
.footer-list li:hover:before {
    left: 4px;
}
.footer-list li a {
    color: #fff;
}
.footer-contacts span {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
}
.footer-contacts {
    display: block;
    margin-bottom: 30px;
}
.footer-widget-content-link {
    display: table;
    margin-top: 20px;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--main-color);
    transition: all 0.2s ease-in-out;
}
.api-links-wrap {
    overflow: hidden;
}
.api-links-wrap a {
    float: left;
    margin-right: 10px;
}
.footer-widget-content-link:hover {
    background: #fff;
    color: #000;
}
.footer-widget-content-link i {
    margin-left: 20px;
    color: var(--main-color);
}
.footer-bottom {
    height: 90px;
    line-height: 90px;
    position: relative;
    width: 100%;
    z-index: 10;
}
.footer-bottom:before,
.footer-bottom:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.footer-bottom:after {
    top: 35px;
    bottom: 35px;
    z-index: 2;
    background: var(--main-color);
}
.copyright {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 10;
}
.footer-home_link {
    font-size: 1.6em;
    color: var(--main-color);
    margin-right: 20px;
    transition: all 0.2s ease-in-out;
}
.footer-home_link:hover {
    color: #fff;
}
.to_top-btn-wrap {
    position: absolute;
    width: 220px;
    height: 60px;
    line-height: 60px;
    background: #fff;
    right: 13px;
    bottom: -110px;
    border-radius: 0 0 30px 30px;
}
.to-top_btn {
    position: relative;
    display: block;
    text-align: left;
    color: #000;
    cursor: pointer;
    padding-left: 40px;
}
.to-top_btn span {
    font-size: 1.1em;
    font-weight: 600;
}
.to-top_btn i {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    line-height: 40px;
    right: 20px;
    background: #000;
    color: var(--main-color);
    border-radius: 50%;
    text-align: center;
}
.to-top_btn:hover i {
    background: var(--main-color);
    color: #000;
}
/*-------------listing----------*/
.geodir-category-listing {
    background: #fff;
    border-radius: 20px;
}
.fw-listing-item .geodir-category-listing {
    border: 1px solid #eee;
}
.geodir-category-img_item {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    height: 320px;
}
.fw-listing-item2 .geodir-category-img_item {
    height: 270px;
}
.geodir-category-img_item .overlay {
    opacity: 0.25;
    transition: all 0.2s linear;
}
.geodir-category-img:hover .overlay {
    opacity: 0.4;
}
.geodir-category-img {
    border-radius: 0 0 30px 30px;
    z-index: 5;
}
.fw-listing-item .geodir-category-content {
    width: 55%;
    float: left;
}
.fw-listing-item .geodir-category-img {
    width: 45%;
    float: left;
}
.fw-listing-item .geodir-category-img {
    border-radius: 20px;
}
.fw-listing-item2 .geodir-category-img {
    border-radius: 0 20px 20px 0;
}
.geodir-category-content-details,
.geodir-category-img,
.geodir-category-listing,
.geodir-category-footer,
.single-carousel,
.single-carousel-wrap {
    overflow: hidden;
    position: relative;
}
.geodir-category-img img,
.card-info-media img {
    width: 100%;
    height: auto;
}
.geodir-category-img .geodir-category-location {
    position: absolute;
    left: 30px;
    bottom: 25px;
    z-index: 5;
    font-size: 1.1em;
}
.geodir-category-location i,
.geodir-category-listing_media-list i,
.gid_link i {
    margin-right: 6px;
    color: var(--main-color);
}
.gid_link i {
    margin: 0 0 0 10px;
}
.geodir-category-img .geodir-category-location a {
    color: #fff;
}
.geodir-category-img .list-single-opt_header_cat {
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 5;
}
.cat-opt,
.post_header_cat a {
    float: left;
    margin-bottom: 15px;
    padding: 8px 20px;
    color: #fff;
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.cat-opt:hover {
    background: #000;
}
.geodir_save-btn {
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 5;
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: #fff;
    color: var(--main-color);
    font-size: 1.2em;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
}
.geodir-category-content {
    padding: 25px 30px 20px;
    position: relative;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    background: #fff;
}
.fw-listing-item .geodir-category-content {
    border: none;
}
.geodir-category-content h3,
.agent-card-item_text h4 {
    text-align: left;
    padding: 0 0 5px 0;
    font-weight: 600;
    font-size: 1.3em;
    position: relative;
}
.geodir-category-content h3 a,
.agent-card-item_text h4 a {
    transition: all 0.2s ease-in-out;
}
.geodir-category-content h3:hover a,
.agent-card-item_text h4 a:hover {
    color: var(--main-color);
}
.geodir-category-content h3:before,
.post-item_content h3:before,
.agent-card-item_text h4:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 4px;
    background: var(--main-color);
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}
.geodir-category-content h3:hover:before,
.post-item_content h3:hover:before,
.agent-card-item_text h4:hover:before {
    width: 22px;
    background: #eee;
}
.geodir-category-content_price {
    text-align: left;
    font-weight: 500;
    font-size: 1.2em;
    margin-bottom: 15px;
}
.fw-listing-item .geodir-category-content_price {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.geodir-category-content-details {
    margin-top: 10px;
}
.geodir-category-content-details li,
.post-card-details li {
    float: left;
    margin: 0 12px 6px 0;
    padding: 2px 20px 2px 4px;
    background: #f9f9f9;
    border-radius: 30px;
    border: 1px solid #eee;
}
.geodir-category-content-details li i,
.post-card-details li i {
    width: 30px;
    height: 30px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    position: relative;
    color: var(--main-color);
    margin-right: 10px;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
    font-size: 12px;
}
.geodir-category-content-details li span,
.post-card-details li span {
    font-weight: 600;
    color: #333;
}
.geodir-category-content p:after {
    content: "...";
}
.geodir-category-footer {
    padding: 15px 30px;
    border: 1px solid #eee;
    border-radius: 0 0 20px 20px;
    width: 100%;
    background: #fff;
}
.fw-listing-item .geodir-category-footer {
    position: absolute;
    width: 55%;
    bottom: 0;
    right: 0;
    border: none;
    border-top: 1px solid #eee;
}
.fw-listing-item.fw-listing-item2 .geodir-category-footer {
    position: relative;
    width: 100%;
}
.gid_link {
    position: absolute;
    bottom: 14px;
    right: 30px;
    border: 1px solid #eee;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 20px;
    background: #f9f9f9;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.2s ease-in-out;
}
.gid_link:hover {
    background: #000;
    color: #fff;
}
.gcf-company {
    float: left;
}
.gcf-company img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    float: left;
    box-shadow: 0 10px 14px 0px rgba(0, 0, 0, 0.17);
}
.gcf-company span {
    font-weight: 500;
    color: #70778b;
    float: left;
    position: relative;
    top: 10px;
    transition: all 0.2s ease-in-out;
}
.gcf-company:hover span {
    color: #000;
}
.geodir-category-listing_media-list {
    position: absolute;
    bottom: 25px;
    right: 30px;
    color: #fff;
    z-index: 5;
    font-size: 1.1em;
}
.bcst_ca {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
}
.single-carousel-wrap {
    margin-top: 70px;
    padding-bottom: 30px;
}
.ss-carousel-pagination_wrap,
.fwc-controls_wrap {
    position: absolute;
    bottom: -1px;
    left: 40px;
    z-index: 10;
    background: #fff;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px 20px 0 0;
    border: 1px solid #eee;
    border-bottom: 1px solid #fff;
}
.fwc-controls_wrap {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.solid-pagination_btns .swiper-pagination-bullet {
    opacity: 1;
    background: #ccc;
    margin: 0 10px;
    display: inline-block;
    width: 6px;
    height: 6px;
    position: relative;
    border-radius: 100%;
    transition: all 300ms ease-out;
}
.solid-pagination_btns .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    transition: all 0.3s ease-out;
    transform: scale(0);
}
.solid-pagination_btns
    .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    transform: scale(1);
}
.solid-pagination_btns
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-color);
}
.ss-carousel-button-wrap {
    position: absolute;
    bottom: 14px;
    right: 40px;
    z-index: 5;
}
.ss-carousel-button {
    float: left;
    margin-left: 15px;
    cursor: pointer;
    color: var(--main-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    transition: all 0.3s ease-out;
    border-radius: 50%;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
}
.ss-carousel-button:hover {
    background: #000;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.07);
}
.fw-carousel-wrap {
    border: 1px solid #eee;
    overflow: hidden;
    padding: 20px 20px 55px;
}
.fwc-controls_wrap.synk_white,
.fw-carousel-wrap {
    background: #f9f9f9;
}
.fwc-controls_wrap.synk_white {
    border-bottom-color: #f9f9f9;
}
.fw-carousel-wrap,
.fw-carousel-container,
.fw-carousel {
    position: relative;
    overflow: hidden;
}
.fw-carousel {
    height: 600px;
    border-radius: 20px;
}
.fw-carousel .swiper-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.fw-carousel .swiper-slide {
    width: auto !important;
    height: 100% !important;
    display: inherit !important;
    overflow: hidden;
    border-radius: 20px;
}
.fw-carousel .swiper-slide img {
    width: auto !important;
    height: 100% !important;
    position: relative;
    z-index: 1;
}
.slider-button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: #000;
    z-index: 50;
    cursor: pointer;
    color: var(--main-color);
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.4);
}
.fw-carousel-button-prev {
    left: 40px;
}
.fw-carousel-button-next {
    right: 40px;
}
.slider-button:hover {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.4);
}
.show-info {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    z-index: 15;
}
.show-info span {
    float: right;
    font-weight: 600;
    position: relative;
    bottom: 35px;
    right: 40px;
    font-size: 0.9em;
    text-transform: uppercase;
    height: 26px;
    line-height: 26px;
    border-radius: 30px;
    padding: 0 20px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 1;
    transition: all 0.2s linear;
}
.show-info span:hover {
    color: var(--main-color);
    background: #000;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.2);
}
.tooltip-info {
    height: auto;
    line-height: 20px;
    padding: 15px 30px;
    font-size: 11px;
    color: #fff;
    text-indent: 0px;
    position: absolute;
    background: #fff;
    border-radius: 10px;
    bottom: 90px;
    opacity: 0;
    right: 30px;
    margin-top: 102px;
    visibility: hidden;
    pointer-events: none;
    text-align: left;
    z-index: 16;
    transition: all 0.3s linear;
}
.tooltip-info h5 {
    margin-top: 12px;
    padding: 5px 0;
    position: relative;
    font-weight: 600;
    font-size: 1.5em;
    color: #000;
}
.show-info:hover .tooltip-info {
    visibility: visible;
    opacity: 1;
}
.list-single-opt_header,
.synk-slider-wrap,
.synk-slider,
.synk-slider-thumbnails,
.synk-slider-thumbnails-wrap {
    position: relative;
}
.list-single-opt_header .hero-opt-btnns {
    bottom: auto;
    right: 0;
    width: auto;
    top: 0;
}
.list-single-opt_header .hero-opt-btnns a {
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
    margin-left: 10px;
}
.synk-slider {
    overflow: hidden;
    border-radius: 20px;
}
.synk-slider-thumbnails-wrap {
    overflow: hidden;
    background: #fff;
    padding: 40px 20px;
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    border-radius: 20px;
    border: 1px solid #eee;
    height: 100%;
}
.synk-slider-thumbnails img {
    border-radius: 4px;
    width: 100%;
    height: auto;
}
.synk-slider-wrap {
    margin-bottom: 20px;
    padding-right: 170px;
}
.synk-slider-thumbnails {
    overflow: hidden;
}
.synk-slider-thumbnails .swiper-slide {
    height: auto !important;
    opacity: 0.5;
}
.synk-slider-thumbnails .swiper-slide-active {
    opacity: 1;
}
.ss-thumb_btn {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 30px;
    line-height: 30px;
    color: var(--main-color);
    background: #f9f9f9;
    border: 1px solid #eee;
    cursor: pointer;
    z-index: 10;
    border-radius: 10px;
}
.ss-thumb_btn_next {
    bottom: 10px;
}
.ss-thumb_btn_prev {
    top: 10px;
}
.listing-item-container {
    position: relative;
    display: grid;
}
.three-columns-grid {
    grid-template-columns: auto auto auto;
}
.two-columns-grid {
    grid-template-columns: auto auto;
}
.three-columns-grid .listing-item,
.two-columns-grid .listing-item,
.fw-listing-item2.fw-listing-item .listing-item {
    padding: 8px;
}
.fw-listing-item .listing-item,
.one-column-grid .listing-item {
    padding: 8px 0;
}
.pagination-wrap {
    margin-top: 30px;
    position: relative;
}
.load-more_btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 54px;
    line-height: 54px;
    padding: 0 50px;
    background: #000;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
}
.load-more_btn i {
    margin-right: 15px;
    color: var(--main-color);
    font-size: 13px;
}
.pagination {
    text-align: center;
}
.pagination.float-pagination {
    display: table;
}
.pagination a {
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-sizing: border-box;
    position: relative;
    font-size: 1.1em;
    background: #fff;
}
.geodir-category-listing,
.pagination a,
.reset-btn {
    transition: all 0.3s linear;
}
.pagination.float-pagination a {
    float: left;
    margin-right: 3px;
}
.pagination a.current-page,
.pagination a:hover {
    color: var(--main-color);
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
}
.pagination a i {
    font-size: 12px;
}
.listing-item:hover .geodir-category-listing {
    box-shadow: 0 10px 26px 0px rgba(0, 0, 0, 0.04);
}
.list-searh-input-wrap {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 20px 30px 10px;
    background: #fff;
    z-index: 21;
    position: relative;
}
.lws_column .list-searh-input-wrap-title_wrap {
    margin-bottom: 70px;
}
.lws_column .list-searh-input-radio_wrap {
    top: calc(100% + 15px);
    right: 0;
    width: auto;
    left: 0;
}
.list-searh-input-wrap-title_wrap {
    position: relative;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 30px;
    z-index: 20;
}
.lsiw_dec {
    box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.2);
}
.hero_home_search {
    padding-bottom: 30px;
}
.list-searh-input-radio_wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    padding-right: 50px;
}
.reset-btn {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    height: 42px;
    line-height: 42px;
    width: 42px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    z-index: 10;
}
.reset-btn:hover {
    background: #000;
    color: var(--main-color);
}
.reset-btn:hover i,
.load-more_btn:hover i {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.list-searh-input-wrap-title {
    text-align: left;
    font-weight: 600;
    font-size: 1.4em;
    position: relative;
    top: 10px;
}
.list-searh-input-wrap-title i {
    margin-right: 20px;
    color: var(--main-color);
}
.list-searh-input-wrap .listsearch-input-item .price-rage-item {
    padding-left: 40px;
}
.listsearch-input-item .price-rage-item.pr-nopad {
    padding-left: 0;
}
.list-main-wrap-header {
    padding: 22px 0 22px 30px;
    z-index: 20;
    position: relative;
    margin: 20px 0;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 10px;
}
.list-main-wrap-title {
    display: table;
    position: relative;
}
.list-main-wrap-title h2 {
    text-align: left;
    font-weight: 600;
    font-size: 1.3em;
    position: relative;
}
.list-main-wrap-title h2 span {
    color: #666;
}
.list-main-wrap-title h2 strong {
    position: absolute;
    left: 100%;
    top: -2px;
    margin-left: 14px;
    background: #f9f9f9;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    color: var(--main-color);
    border: 1px solid #eee;
}
.list-main-wrap-opt {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    padding-left: 80px;
}
.list-main-wrap-opt_single {
    width: 180px;
    padding-left: 0;
}
.price-opt-title {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.back-tofilters-wrap {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}
.back-tofilters {
    background: var(--main-color);
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
    height: 56px;
    line-height: 56px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s linear;
}
.vis_btf .back-tofilters {
    opacity: 1;
    visibility: visible;
}
.back-tofilters:hover {
    color: var(--main-color);
    background: #000;
    border-radius: 50px;
}
.map-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    overflow: auto;
    display: none;
}
.map-modal-wrap-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.41);
}
.map-modal-item {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    padding: 0 20px 20px;
    background: #fff;
    box-shadow: 0px 0px 0px 14px rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.map-modal-container {
    padding: 0;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
}
.map-modal-container h3 {
    text-align: left;
    font-size: 1.3em;
    font-weight: 600;
    height: 60px;
    line-height: 60px;
    padding-left: 10px;
}
.map-modal #singleMap {
    margin-bottom: 0;
    height: 450px;
    border-radius: 20px;
}
.map-modal-close {
    position: absolute;
    right: 0;
    top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 10;
    border-radius: 50%;
    font-size: 1.3em;
    background: #f9f9f9;
    cursor: pointer;
    border: 1px solid #eee;
    color: var(--main-color);
    transition: all 0.2s ease-in-out;
}
.map-modal-close:hover {
    background: #000;
}
/*-------------blog-------------*/
.post-item {
    width: 50%;
    position: relative;
    padding: 0 20px 20px 0;
}
.post-items {
    z-index: 1;
}
.post-item_media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.post-item_media img {
    width: 100%;
    height: auto;
    transition: all 0.2s ease-in-out;
}
.post-item_media a:hover img {
    opacity: 0.7;
}
.post_header_cat {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}
.post-item_content {
    padding: 30px 30px 20px;
    border-radius: 0 0 20px 20px;
    border: 1px solid #eee;
    border-top: none;
    background: #fff;
}
.post-item_content h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    font-weight: 600;
}
.post-item_content h3 a {
    display: block;
    transition: all 0.2s ease-in-out;
}
.post-item_content h3:hover a {
    color: var(--main-color);
}
.post-card-details {
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0 5px;
    position: relative;
}
.post-card_link {
    display: table;
    border: 1px solid #eee;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 20px;
    background: #000;
    color: #fff;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.2s ease-in-out;
    margin-top: 20px;
}
.post-card_link i {
    margin: 0 0 0 10px;
    color: var(--main-color);
}
.post-card_link:hover {
    background: #f9f9f9;
    color: #000;
}
.pv-item_wrap {
    position: absolute;
    bottom: 54px;
    right: 54px;
    font-weight: 600;
}
.pv-item_wrap_single {
    bottom: 50%;
    margin-bottom: -18px;
    right: 0;
    padding: 0 12px;
    height: 36px;
    line-height: 36px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
}
.pv-item_wrap i,
.tc_single_title i {
    margin-right: 10px;
    color: var(--main-color);
}
.tagcloud_single {
    padding: 15px 0 10px 20px;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 10px;
}
.tc_single_title {
    text-transform: uppercase;
    margin-right: 20px;
    font-weight: 600;
    margin-top: 10px;
}
.tc_single_title i {
    font-size: 1.2em;
}
.tc_single_title .tags-widget,
.tc_single_title {
    float: left;
}
.search-widget {
    padding: 5px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}
.search-widget input.search-inpt-item {
    background: #f9f9f9;
    height: 60px;
    padding: 0 20px;
    width: calc(100% - 135px);
    float: left;
    border: 1px solid #eee;
    border-radius: 10px;
}
.search-submit {
    border: none;
    position: absolute;
    top: 5px;
    right: 5px;
    height: 60px;
    line-height: 60px;
    width: 130px;
    font-size: 1.2em;
    border-radius: 10px;
    background: var(--main-color);
    cursor: pointer;
    transition: all 0.3s linear;
}
.search-submit:hover {
    background: #000;
    color: var(--main-color);
}
.recent-post-widget {
    overflow: hidden;
    position: relative;
}
.recent-post-widget ul {
    list-style: none;
}
.recent-post-widget ul li {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid #eee;
    background: #f9f9f9;
    overflow: hidden;
    border-radius: 10px;
}
.recent-post-img {
    float: left;
    width: 140px;
    padding: 14px;
    border-right: 1px solid #eee;
    background: #fff;
}
.recent-post-widget ul li:hover {
    background: #f9f9f9;
}
.recent-post-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.2);
}
.recent-post-content {
    float: left;
    padding: 20px 0 0 20px;
}
.recent-post-content h4 {
    padding-bottom: 2px;
    text-align: left;
    font-size: 1.2em;
    font-weight: 600;
}
.recent-post-content h4 a:hover,
.category-widget .cat-item li a:hover {
    color: var(--main-color);
}
.recent-post-opt span.post-date {
    text-align: left;
    padding-right: 10px;
    position: relative;
    display: block;
    font-weight: 500;
}
.recent-post-opt span.post-date:before {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 1px;
    left: 0;
    background: var(--main-color);
}
.category-widget .cat-item li {
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}
.category-widget .cat-item li a {
    float: left;
    position: relative;
    font-weight: 600;
    z-index: 2;
    padding: 0 40px 0 0;
    top: 4px;
    font-size: 1.1em;
}
.category-widget .cat-item li:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 50px;
    border-top: 1px solid #eee;
    z-index: 2;
}
.category-widget .cat-item li span {
    float: right;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: var(--main-color);
    text-align: center;
    font-size: 0.9em;
    border-radius: 4px;
    background: #f9f9f9;
    border: 1px solid #eee;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.07);
}
.social-widget {
    overflow: hidden;
}
.social-widget a,
.contact-social-container a {
    float: left;
    width: 46px;
    height: 46px;
    line-height: 46px;
    background: #000;
    border-radius: 6px;
    color: var(--main-color);
    margin: 0 4px 4px 0;
    font-size: 1.2em;
    transition: all 0.3s linear;
}
.social-widget a:hover,
.contact-social-container a:hover {
    color: #000;
    background: var(--main-color);
}
.post-banner-widget {
    padding: 180px 50px 30px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.post-banner-widget_content {
    z-index: 14;
    position: relative;
}
.post-banner-widget_content h5 {
    text-align: left;
    color: #fff;
    font-size: 1.3em;
    font-weight: 600;
    position: relative;
}
.post-banner-widget_single .post-banner-widget_content h5 {
    font-size: 1.8em;
    margin-bottom: 10px;
}
.post-banner-widget_single .post-banner-widget_content p {
    color: #fff;
    max-width: 650px;
    padding-bottom: 0;
}
.post-banner-widget_single {
    margin-top: 50px;
    border-radius: 20px;
    padding-bottom: 50px;
}
.post-banner-widget_content a {
    padding: 13px 20px;
    background: var(--main-color);
    display: table;
    color: #fff;
    margin-top: 20px;
    border-radius: 4px;
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.3s linear;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}
.post-banner-widget_content a:hover {
    background: #000;
    color: var(--main-color);
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
}
.blog-media {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}
.blog-media img {
    width: 100%;
    height: auto;
}
.post-img-row {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 20px 0 30px;
    grid-gap: 10px;
}
.post-img-row img {
    border-radius: 10px;
}
.content-nav-fixed {
    position: relative;
    padding: 0 30px;
    height: 90px;
    background: #000;
    margin: 30px 0;
    border-radius: 50px;
}
.content-nav-fixed:before,
.content-nav-fixed:after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    background: var(--main-color);
    z-index: 100;
}
.content-nav-fixed:after {
    background: rgba(255, 255, 255, 0.18);
    top: 0;
    height: auto;
    bottom: 0;
    z-index: 99;
}
.content-nav-fixed ul {
    display: grid;
    grid-template-columns: 50% 50%;
    position: relative;
    z-index: 10;
}
.content-nav-fixed li {
    width: 100%;
    display: block;
    position: relative;
}
.content-nav-fixed li:first-child {
    border: none;
}
.content-nav-fixed li a.ln,
.content-nav-fixed li a.rn {
    color: #fff;
    position: relative;
    width: 100%;
    height: 90px;
    line-height: 90px;
}
.content-nav-fixed li a.ln {
    text-align: left;
    float: left;
    padding-left: 120px;
}
.content-nav-fixed li a.rn {
    text-align: right;
    float: right;
    padding-right: 120px;
}
.content-nav-fixed li a:hover:before {
    top: 0;
}
.content-nav-fixed li a.ln i,
.content-nav-fixed li a.rn i {
    position: relative;
    z-index: 50;
    transform: translateX(0);
    transition: all 0.3s linear;
    color: #fff;
}
.content-nav-fixed li a.ln:hover i {
    transform: translateX(-105px);
    transition-delay: 0.35s;
}
.content-nav-fixed li a.rn:hover i {
    transform: translateX(105px);
    transition-delay: 0.35s;
}
.content-nav-fixed li a span {
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 10;
}
.content-nav-fixed li a.ln span {
    padding-left: 15px;
}
.content-nav-fixed li a.rn span {
    padding-right: 15px;
}
.content-nav_mediatooltip {
    position: absolute;
    bottom: 50%;
    margin-bottom: -30px;
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.content-nav-fixed li .overlay {
    opacity: 0;
    transition: all 0.3s linear;
}
.content-nav-fixed li:hover .overlay {
    opacity: 0.7;
    transition-delay: 0.3s;
}
.content-nav_mediatooltip.cnmd_leftside {
    left: -10px;
}
.content-nav_mediatooltip.cnmd_rightside {
    right: -10px;
}
.comments-item {
    position: relative;
    padding-left: 100px;
}
.comments-avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.2);
}
.comments-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.comments-avatar:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    right: -4px;
    bottom: -50px;
    border-radius: 0 0 0 10px;
}
.comments-item-text {
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 10px;
}
.comments-wrap {
    margin-top: 30px;
}
.comments-item {
    margin-bottom: 30px;
}
.comments-wrap .comments-item:last-child {
    margin-bottom: 0;
}
.comments-header {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 1.2em;
    background: #fff;
    font-weight: 600;
    position: relative;
}
.comments-header:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    width: 30px;
    height: 1px;
    background: var(--main-color);
}
.comments-item-footer {
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
    border-top: 1px solid #eee;
}
.comments-item-text-wrap {
    padding: 20px 30px;
}
.comments-item-text-wrap p {
    text-align: left;
}
.comments-item-date {
    float: left;
    font-size: 0.9em;
    margin-top: 10px;
    font-weight: 600;
}
.comments-item-date i {
    margin-right: 10px;
    color: var(--main-color);
}
.reply-item {
    float: right;
    background: #fff;
    padding: 8px 20px;
    border: 1px solid #eee;
    font-size: 0.9em;
    border-radius: 10px;
    font-weight: 600;
}
#message {
    text-align: left;
    font-size: 1.1em;
}
#message div {
    padding: 15px 30px;
    background: #000;
    margin-bottom: 10px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}
#message div p {
    margin-top: 5px;
    color: #fff;
    padding-bottom: 0;
}
#message div strong {
    color: var(--main-color);
}
.commentssubmit {
    display: table;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    padding: 0 50px;
    border: none;
    -webkit-appearance: none;
    border-radius: 4px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    background: #000;
    font-weight: 600;
    font-size: 11px;
    font-family: var(--main-font);
    transition: all 0.2s linear;
}
.commentssubmit:hover {
    border-radius: 30px;
    color: var(--main-color);
}
.comment-form_title {
    text-align: left;
    font-size: 1.3em;
    font-weight: 600;
    margin: 30px 0;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
.csb-no-align {
    float: none;
    margin-top: 30px;
    display: inline-block;
}
.commentssubmit i {
    margin-left: 10px;
    color: var(--main-color);
    font-size: 1.3em;
    position: relative;
    top: 1px;
}
.commentssubmit:hover i {
    color: #fff;
}
.csb_color {
    background: var(--main-color);
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
}
.csb_color:hover {
    color: #000;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.2);
}
/*------contacts------------------------------------------------*/
.contacts-card-item {
    position: relative;
    padding: 30px 30px 30px 110px;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 20px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}
.contacts-card-item:before,
.contacts-card-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50px;
    height: 50px;
    width: 1px;
    background: #eee;
    z-index: 1;
}
.contacts-card-item:after {
    bottom: auto;
    top: 0;
}
.contacts-card-item:hover {
    background: #fff;
    box-shadow: 0px 10px 84px 0px rgba(0, 0, 0, 0.05);
}
.contacts-card-item i {
    position: absolute;
    top: 50%;
    left: 25px;
    font-size: 1.5em;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 6px;
    background: var(--main-color);
    box-shadow: 0px 10px 14px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}
.contacts-card-item:hover i {
    background: #000;
    border-radius: 50%;
    color: var(--main-color);
}
.contacts-card-item span {
    display: block;
    text-align: left;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}
.contacts-card-item p {
    font-size: 0.9em;
    line-height: 20px;
}
.contacts-card-item a {
    float: left;
    font-family: var(--secondary-font);
    margin: 10px 15px 0 0;
    font-weight: 500;
    color: var(--main-color);
    transition: all 0.2s ease-in-out;
    padding: 8px 15px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 30px;
}
.contacts-card-item a:hover {
    color: #666;
}
.contacts-cards-wrap {
    margin-bottom: 30px;
}
.contacts-opt-wrap {
    position: relative;
    overflow: hidden;
}
.contact-social {
    float: right;
}
.cs-title,
.contact-social-container,
.contact-wh_title,
.contact-wh {
    float: left;
}
.cs-title,
.contact-wh_title {
    margin: 18px 20px 0 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9em;
}
.contact-wh div strong {
    color: var(--main-color);
    padding-left: 10px;
}
.contact-wh div {
    float: left;
    position: relative;
    padding: 15px 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eee;
    margin-right: 10px;
    font-weight: 600;
}
.contacts-form-wrap {
    margin-top: 30px;
}
/*------faq------------------------------------------------*/
.faq-nav-wrap {
    padding: 20px 50px;
}
.faq-nav {
    position: relative;
    margin-bottom: 20px;
}
.faq-nav li {
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
}
.faq-nav li a {
    display: block;

    padding: 0 25px;
    height: 60px;
    line-height: 60px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 0.9em;
    transition: all 0.2s ease-in-out;
}
.act-scrlink,
.faq-nav li a:hover {
    background: #f9f9f9;
}
.faq-nav li a:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    color: var(--main-color);
    font-weight: 900;
    transition: all 0.2s ease-in-out;
}
.faq-nav li a.act-scrlink:before,
.faq-nav li a:hover:before {
    background: #fff;
}
.help-item-title {
    padding: 15px 40px;
    margin-bottom: 20px;
    text-align: left;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 1.6em;
    font-weight: 600;
    position: relative;
}
.help-item-wrap {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    background: #fff;
}
.help-item-wrap .accordion a.toggle {
    background: #f9f9f9;
}
.help-item-wrap .accordion a.toggle i {
    background: #fff;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
}
.help-item-wrap .accordion a.toggle.act-accordion {
    background: #000;
}
.help-item-wrap .accordion a.toggle.act-accordion i {
    background: var(--main-color);
}
/*------agent----------------*/
.agent-preofile-header {
    padding: 95px 50px 20px;
    font-weight: 600;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #eee;
    border-radius: 20px 20px 0 0;
}
.agent-preofile-header .property-contacts-links {
    transform: translateY(0);
    top: 70px;
    right: 30px;
}
.agent-preofile-header .messenger-links-container {
    position: absolute;
    top: 96px;
    right: 30px;
}
.agent-preofile-header-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(
        rgba(17, 101, 171, 1) 0%,
        rgba(17, 101, 171, 0.8) 50%,
        rgba(17, 101, 171, 0.6) 100%
    );
    z-index: 1;
}
.agent-preofile-header:after {
    content: "";
    position: absolute;
    height: 44px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 2;
}
.agent-preofile-content {
    position: relative;
    overflow: hidden;
    padding: 10px;
}
.agent-preofile-content-text {
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f9f9f9;
    padding: 20px;
}
.agent-preofile-content .tagcloud_single {
    padding: 10px 0 5px 10px;
    margin-top: 10px;
}
.agent-preofile-content .tagcloud_single .tags-widget a {
    padding: 10px 15px;
}
.agent-preofile-content h4 {
    text-align: left;
    font-weight: 600;
    font-size: 1.4em;
    margin-bottom: 10px;
}
.agent-preofile-content p {
    font-size: 0.95em;
}
.agent-preofile-content .contact-social {
    float: none;
    display: table;
}
.agent-preofile-header-avatar,
.agent-preofile-header-avatar-item {
    position: relative;
    z-index: 5;
}
.agent-preofile-header-avatar-item {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 9px 16px rgba(58, 87, 135, 0.2);
}
.agent-preofile-header-avatar-item:before {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    background: #fff;
    z-index: 1;
    border-radius: 50%;
}
.agent-preofile-header-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}
.abs_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-repeat: repeat;
    background-origin: content-box;
    background-image: url(../images/map.png);
    opacity: 0.3;
    z-index: 2;
}
.profile-card-stats {
    position: absolute;
    bottom: 18px;
    left: 180px;
    right: 30px;
    padding: 15px 0;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    z-index: 20;
    overflow: hidden;
    box-shadow: 0 6px 20px rgb(0 0 0 / 7%);
}
.profile-card-stats:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    top: 14px;
    bottom: 14px;
    background: #eee;
}
.profile-card-stats li {
    float: left;
    width: 50%;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
}
.profile-card-stats li span {
    padding-right: 6px;
    color: var(--main-color);
}
.agent-preofile-footer {
    border-top: 1px solid #eee;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 20px 20px;
}
.agent-preofile-footer_title,
.agent-preofile-footer-social a {
    float: left;
}
.agent-preofile-footer_title {
    line-height: 60px;
    padding-left: 30px;
    text-transform: uppercase;
    font-weight: 600;
}
.agent-preofile-footer-social {
    float: right;
}
.agent-preofile-footer-social a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-left: 1px solid #eee;
}
.agent-preofile-footer-social a:hover {
    background: #000;
    color: var(--main-color);
}
/*------pricing-table----------------*/
.pricing-column {
    padding: 40px 40px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-out;
    box-shadow: 0 10px 32px 0px rgba(0, 0, 0, 0.04);
}
.pricing-column:hover {
    transform: translateY(-10px);
}
.pricing-header h3 {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
}
.pricing-header h3 span {
    padding-right: 6px;
    font-size: 12px;
}
.price-num {
    padding: 10px 15px 0 0;
    overflow: hidden;
    text-align: left;
}
.price-num {
    padding: 10px 15px 0 0;
    overflow: hidden;
    text-align: left;
}
.pricing-header p {
    font-weight: 400;
}
.price-num span.curen {
    position: relative;
    top: -32px;
    padding-right: 7px;
    font-weight: 400;
    font-size: 19px;
    color: #ccc;
}
.price-num-item {
    font-size: 55px;
    position: relative;
    font-weight: 400;
    color: #292929;
    float: left;
}
.pricing-content {
    margin: 5px 0 0;
    padding: 15px 0 0;
    border-top: 1px solid #eee;
}
.price-num-desc {
    float: left;
    position: relative;
    margin: 30px 0 0 20px;
    font-weight: 500;
}
.price-num-desc span:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 4px;
    width: 1px;
    height: 12px;
    background: #ddd;
    transform: rotate(40deg);
}
.pricing-content li {
    float: left;
    width: 100%;
    margin-bottom: 12px;
    text-align: left;
    padding-left: 30px;
    position: relative;
    font-size: 12px;
    font-weight: 500;
}
.pricing-content li.not-included {
    color: #ccc;
    text-decoration: line-through;
}
.pricing-content li:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f00c";
    position: absolute;
    bottom: 3px;
    font-size: 11px;
    left: 0;
}
.pricing-content li.not-included:before {
    content: "\f307";
    color: var(--main-color);
}
.pprice-link {
    color: #fff;
    padding: 16px 0;
    border-radius: 6px;
    margin-top: 20px;
    transition: all 0.3s linear;
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.03);
    font-weight: 600;
    background: var(--main-color);
}
.pprice-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 12px 0px rgba(0, 0, 0, 0.07);
}
.pricing-switcher-header {
    overflow: hidden;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.pricing-switcher-title {
    float: left;
    font-size: 1.9em;
    font-weight: 600;
    margin-top: 12px;
}
.pricing-switcher {
    text-align: center;
    position: relative;
    float: right;
}
.pricing-switcher .fieldset {
    display: inline-block;
    position: relative;
    padding: 2px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
}
.pricing-switcher input[type="radio"] {
    position: absolute;
    opacity: 0;
    left: -1000px;
}
.pricing-switcher label {
    position: relative;
    z-index: 1;
    display: inline-block;
    float: left;
    width: 210px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    transition: all 0.4s ease-out;
}
.pricing-switcher .switch {
    position: absolute;
    top: 7px;
    left: 7px;
    height: 46px;
    width: 210px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease-out;
    border: 1px solid #eee;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.07);
}
.pricing-switcher input[type="radio"]:checked + label + .switch,
.pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
}
.pricing-switcher input[type="radio"]:checked + label {
    color: #292929;
}
.mouth-cont {
    z-index: 1;
    opacity: 1;
    position: relative;
}
.year-cont {
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
    z-index: 2;
}
.year-cont,
.price-item {
    transition: all 0.3s ease-out;
}
.year-mont .mouth-cont {
    opacity: 0;
}
.year-mont .year-cont {
    opacity: 1;
}
.price-num-desc .year-cont {
    margin-left: 30px;
    width: 100px;
}
.recomm-price {
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--main-color);
    border-radius: 0 0 0 20px;
    background: #000;
    box-shadow: 0 10px 12px 0px rgba(0, 0, 0, 0.17);
}
/*------ about------------------------------------------------*/
.about-wrap p {
    text-align: justify;
}
.about-img-hotifer p {
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
}
.about-title {
    text-align: left;
}
.about-title h2 {
    font-size: 1.9em;
    text-align: left;
    font-weight: 600;
    margin: 10px 0 4px;
}
.about-title h4 {
    font-weight: 500;
    font-size: 1.2em;
    position: relative;
}
.about-title.ab-hero h4 {
    margin-bottom: 40px;
}
.about-title.ab-hero2 h4:before,
.about-title.ab-hero2 h4:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
    z-index: 1;
}
.about-title.ab-hero2 h4:after {
    right: auto;
    width: 30px;
    z-index: 2;
    background: var(--main-color);
}
.about-img {
    position: relative;
}
.ab_i2 {
    padding-left: 50px;
}
.about-img img {
    border-radius: 20px;
    position: relative;
    z-index: 10;
}
.about-img-hotifer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 280px;
    padding: 15px 20px;
    z-index: 11;
    border-radius: 0 20px 0 20px;
    background: #000;
    color: #fff;
    text-align: left;
    box-shadow: 0 0 0 10px #fff;
}
.about-img-hotifer:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f10e";
    bottom: 30px;
    right: 20px;
    position: absolute;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--main-color);
}
.ab_img_wideo_wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 280px;
    padding: 15px 30px;
    z-index: 11;
    border-radius: 20px 0 20px 0;
    background: #000;
    color: #fff;
    text-align: left;
    box-shadow: 0 0 0 10px #fff;
    overflow: hidden;
}
.video-link {
    padding: 0 20px 0 80px;
    height: 46px;
    line-height: 46px;
    color: #fff;
    background: #000;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.video-link i {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--main-color);
    top: 50%;
    margin-top: -20px;
    left: 5px;
    text-align: center;
    color: #000;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
}
.services-opions {
    overflow: hidden;
}
.services-opions li {
    float: left;
    width: 100%;
    position: relative;
    padding: 20px 30px 20px 105px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f9f9f9;
}
.services-opions li:last-child {
    margin-bottom: 0;
}
.services-opions li i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.7em;
    color: var(--main-color);
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.07);
}
.services-opions li h4 {
    text-align: left;
    padding-bottom: 4px;
    font-weight: 600;
    font-size: 1.3em;
}
.services-opions li p {
    padding-bottom: 0;
}
.process-wrap {
    overflow: hidden;
    padding: 10px;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.process-wrap li {
    float: left;
    width: 33.3333333%;
    padding: 10px;
    text-align: left;
}
.process-item {
    background: #000;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.process-count {
    color: #fff;
    margin-bottom: 30px;
    display: block;
    font-size: 0.9em;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 6px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.process-item-icon {
    color: var(--main-color);
    font-size: 3.4em;
    position: absolute;
    top: 20px;
    right: 30px;
}
.process-item h4 {
    color: #fff;
    font-size: 1.4em;
    font-weight: 500;
    padding-bottom: 10px;
}
.process-item p {
    color: rgba(255, 255, 255, 0.8);
}
/*------ about---------------*/
.agent-bg-section {
    position: relative;
    overflow: hidden;
    padding: 30px 30px 0;
    background: #fff;
}
.parallax-section-wrap {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}
.parallax-section-content {
    text-align: left;
    padding-top: 30px;
}
.parallax-section-content h3 {
    color: #fff;
    font-weight: 500;
    font-size: 2.2em;
    margin-bottom: 20px;
    position: relative;
}
.parallax-section-content p {
    color: rgba(255, 255, 255, 0.7);
}
.content-section {
    padding-top: 70px;
}
.agnet-carousel-wrap {
    position: relative;
    padding: 30px 30px 30px 470px;
    background: #f9f9f9;
    border-radius: 20px;
    border: 1px solid #eee;
}
.fw_car_title-wrap {
    position: absolute;
    top: 60px;
    left: 60px;
    width: 420px;
    background: #fff;
    bottom: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    z-index: 10;
    padding: 0 50px;
}
.fw_car_title {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}
.fw_car_title h3 {
    font-weight: 600;
    font-size: 2.4em;
    position: relative;
    margin-bottom: 20px;
}
.fw_car_title h3:before,
.post-banner-widget_content h5:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--main-color);
}
.agent-card-item_media {
    padding: 10px;
}
.agent-card-item_media-wrap {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 14px 0px rgba(0, 0, 0, 0.17);
    position: relative;
}
.agent-card-item_media-wrap .overlay {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.agent-card-item_media-wrap:hover .overlay {
    opacity: 0.5;
}
.acim-wrap {
    position: absolute;
    bottom: -100%;
    right: 20px;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.2);
    z-index: 5;
    transition: all 0.3s ease-in-out;
    padding: 12px 20px;
    background: #000;
    border-radius: 10px;
}
.agent-card-item_media-wrap:hover .acim-wrap {
    bottom: 20px;
}
.acim-wrap li {
    display: inline-block;
    margin: 0 10px;
}
.acim-wrap li a {
    color: var(--main-color);
    font-size: 1.3em;
    transition: all 0.3s ease-in-out;
}
.acim-wrap li a:hover {
    color: #fff;
}
.agent-card-item {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eee;
}
.agent-card-item_text {
    padding: 10px;
}
.agent-card-item_text-item {
    border: 1px solid #eee;
    border-radius: 20px 20px 20px 0;
    padding: 20px;
    background: #fff;
}
.agent-card-item_text-item h4 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.agent-card-item_text h4:before {
    margin-top: -4px;
}
.agent-card-item_footer {
    padding: 0 20px 20px;
    position: relative;
    z-index: 20;
}
.agent-card-item_footer:before {
    content: "";
    position: absolute;
    right: 150px;
    left: 10px;
    bottom: 10px;
    top: -10px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    border: 1px solid #eee;
    border-top: none;
}
.agent-card-item_footer .property-contacts-links {
    right: 20px;
    margin-top: -29px;
}
.agent-card-item_footer .property-contacts-links a {
    border: 1px solid #eee;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.07);
}
.agent-card-item_footer .post-card_link {
    margin-top: 0;
}
.agent-card-item_text .post-card-details {
    border: none;
    padding: 0;
}
.agent-card-item_footer .messenger-links-container {
    top: auto;
    right: 25px;
    bottom: 80px;
}
.agent-carousel_controls {
    position: absolute;
    left: 300px;
    height: 70px;
    padding: 10px 30px 0;
    background: #f9f9f9;
    bottom: 30px;
    z-index: 20;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-radius: 20px 0 0 0;
}
.city-carousel_controls {
    position: absolute;
    left: 250px;
    height: 64px;
    border-radius: 20px 0 0 0;
    padding: 14px 30px 0;
    background: #000;
    bottom: 20px;
    z-index: 20;
}
.ac-button,
.csc-button {
    float: left;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    line-height: 50px;
    border-radius: 50%;
    background: #000;
    color: var(--main-color);
    z-index: 50;
    cursor: pointer;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.17);
    transition: all 0.2s linear;
}
.csc-button {
    background: #292929;
    border: none;
}
.csc-button:hover,
.ac-button:hover,
.tc-button:hover {
    background: var(--main-color);
    color: #fff;
}
/*------ api-----------------*/
.api-container,
.api-wrap,
.api-text,
.api-img {
    position: relative;
}
.api-container,
.api-text {
    z-index: 2;
}
.api-wrap-bg {
    position: absolute;
    top: 80px;
    bottom: 50px;
    right: 0;
    left: 0;
    border-radius: 20px;
    border: 1px solid #eee;
    z-index: 1;
}
.api-img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    z-index: 3;
}
.api-container {
    padding-left: 750px;
}
.api-wrap-bg:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(
        rgba(249, 219, 146, 1) 0%,
        rgba(238, 120, 56, 1) 71%
    );
    border-radius: 20px;
}
.api-text {
    padding: 180px 120px 140px 0;
}
.api-text h3 {
    text-align: left;
    color: #fff;
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 10px;
}
.api-text p {
    color: #fff;
}
.api-text-links {
    overflow: hidden;
    margin-top: 20px;
}
.api-text-links a {
    padding: 0 80px 0 30px;
    float: left;
    margin-right: 20px;
    height: 60px;
    line-height: 60px;
    background: #000;
    border-radius: 40px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}
.api-text-links a i {
    position: absolute;
    height: 52px;
    line-height: 52px;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--main-color);
    width: 52px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.7em;
    transition: all 0.3s ease-out;
}
.api-text-links a:hover i {
    transform: translateY(-50%) scale(0.8);
    background: #fff;
    color: var(--main-color);
}
.api-wrap-bg-container {
    position: absolute;
    top: 50%;
    left: 60%;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.api-bg-pin {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 100;
    background: #fff;
}
.api-bg-pin:first-child {
    left: 30%;
    bottom: 20%;
}
.api-bg-pin:nth-child(2) {
    right: 20%;
    bottom: 30%;
}
.api-bg-pin:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
}
@keyframes pulse {
    100% {
        transform: scale(22.1);
        opacity: 0;
    }
}
.api-bg-pin-vis:before {
    animation: pulse 3s infinite ease-in-out;
}

/*------ facts---------------*/
.inline-facts {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    margin-top: 10px;
    padding: 30px 40px 50px 40px;
    text-align: left;
    position: relative;
}
.inline-facts h6 {
    font-weight: 500;
    position: relative;
}
.inline-facts h6:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--main-color);
}
.inline-facts:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 54px;
    width: 1px;
    background: #eee;
    z-index: 1;
}
.inline-facts .num {
    font-weight: 600;
    font-size: 3.5em;
}
.inline-facts i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 1.8em;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 10px 14px 0px rgba(0, 0, 0, 0.07);
    text-align: center;
    border: 1px solid #eee;
    z-index: 2;
}
/*------ testimonilas-----------------*/
.testimonilas-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 30px 30px 50px;
    background: #f9f9f9;
    border: 1px solid #eee;
}
.testimonilas-carousel-wrap {
    position: relative;
    padding: 30px;
    z-index: 10;
}
.testimonilas-carousel-wrap .fwc-controls_wrap {
    bottom: 29px;
}
.testi-item {
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 20px;
}
.testi-header {
    position: relative;
    border-bottom: 1px solid #eee;
    background: #fff;
    padding: 26px 30px 26px 100px;
}
.testi-header h3 {
    text-align: left;
    font-size: 1.3em;
    font-weight: 600;
}
.testi-avatar {
    position: absolute;
    left: 30px;
    top: 50%;
    overflow: hidden;
    border-radius: 50%;
    margin-top: -25px;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.2);
}
.testi-avatar img,
.testi-avatar {
    width: 50px;
    height: 50px;
}
.testimonilas-text-item {
    padding: 30px 30px 0;
}
.testimonilas-text-item-wrap {
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.testimonilas-carousel .swiper-slide-active .testimonilas-text-item-wrap {
    transition-delay: 0.9s;
    box-shadow: 0 10px 14px 0px rgba(0, 0, 0, 0.04);
}
.testimonilas-text-item-wrap:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f10e";
    bottom: 10px;
    right: 20px;
    position: absolute;
    font-size: 4.5em;
    font-weight: bold;
    color: #ddd;
    z-index: 1;
}
.testimonilas-text-item-wrap p {
    position: relative;
    z-index: 2;
    padding-bottom: 0;
    font-weight: 400;
}
.testi-footer {
    position: relative;
    padding: 20px 30px;
    overflow: hidden;
}
.testi-footer:before {
    content: "";
    position: absolute;
    left: 30%;
    right: 20%;
    height: 1px;
    background: #eee;
    top: 50%;
}
.testi-link {
    float: left;
    background: #fff;
    padding: 0 20px;
    border: 1px solid #eee;
    height: 40px;
    line-height: 40px;
    font-size: 0.9em;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.07);
}
.testi-number {
    position: absolute;
    top: 50%;
    right: 30px;
    height: 30px;
    line-height: 30px;
    background: #000;
    color: var(--main-color);
    margin-top: -15px;
    border-radius: 4px;
    padding: 0 15px;
    font-weight: 600;
    font-size: 0.9em;
}
.tc-button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    border-radius: 50%;
    background: #000;
    color: var(--main-color);
    z-index: 50;
    cursor: pointer;
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.17);
    transition: all 0.2s linear;
}
.tc-button-next {
    right: 5px;
}
.tc-button-prev {
    left: 5px;
}
.video-holder {
    position: absolute;
    width: 100%;
    height: 100% !important;
    display: block;
    overflow: hidden !important;
    top: 0;
    left: 0;
    padding: 0 !important;
}
.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
    z-index: -1;
}
.video-container video {
    width: 100%;
}
.nav-button-wrap,
.show-mob-filter {
    display: none;
}
.lg-actions .lg-next,
.lg-actions .lg-prev {
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    color: var(--main-color);
    background: #000;
}
/*------ responsive-----------------*/
@media only screen and (max-width: 1568px) {
    .hsc_flat .property-single-header-price {
        position: relative;
        top: 0;
        margin-top: 20px;
        width: 100%;
        text-align: left;
        border-radius: 6px;
    }
}
@media only screen and (max-width: 1268px) {
    .logo-holder {
        margin-left: 0;
    }
    .header-search-btn {
        width: 30px;
        margin: 0 0 0 20px;
    }
    .geodir-category-content {
        padding: 20px;
    }
    .fw-listing-item .geodir-category-content {
        padding: 20px 20px 90px;
    }
    .fw-listing-item .geodir-category-footer {
        width: 100%;
    }
    .geodir-category-img_item {
        height: 250px;
    }
    .geodir-category-img {
        border-radius: 0;
    }
    .geodir-category-img .geodir-category-location,
    .geodir-category-img .list-single-opt_header_cat {
        left: 20px;
    }
    .city-carousel-wrap,
    .agnet-carousel-wrap {
        padding: 20px 20px 68px;
    }
    .half-carousel-title-wrap,
    .fw_car_title-wrap {
        position: relative;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 60px 0 30px;
        margin-bottom: 20px;
    }
    .fw_car_title-wrap {
        padding: 30px 20px 0;
        border: none;
    }
    .half-carousel-title,
    .fw_car_title {
        top: 0;
        transform: translateY(0);
    }
    .city-carousel_controls,
    .agent-carousel_controls {
        height: 60px;
        left: 10px;
        bottom: 0;
        padding: 0;
    }
    .agent-carousel_controls {
        left: 20px;
        border: none;
    }
    .sc-controls {
        bottom: 14px;
        right: 30px;
    }
    .api-container {
        padding-left: 450px;
    }
    .api-img {
        width: 400px;
    }
    .agent-bg-section {
        padding: 0 10px 0;
    }
    .recent-post-img,
    .recent-post-content {
        width: 100%;
        border: none;
    }
    .recent-post-content,
    .faq-nav-wrap {
        padding: 20px;
    }
    .three-columns-grid {
        grid-template-columns: auto auto;
    }
    .two-columns-grid.fw-listing-item.fw-listing-item2
        .geodir-category-content {
        padding: 20px 20px 30px;
    }
    .hero-section-title h2 {
        font-size: 3.4em;
    }
    .hero-section-container {
        padding: 200px 0 70px;
    }
    .hero-section-title_container {
        padding: 0 220px 0 50px;
    }
    .hero-section-title_container.hsc_flat {
        padding: 0;
    }
    .fw-carousel {
        height: 450px;
    }
}
@media only screen and (max-width: 1068px) {
    .header-inner,
    .header-search-btn,
    .wish_btn {
        height: 80px;
    }
    .header-inner {
        padding: 0 0 0 10px;
    }
    .wrapper {
        margin-top: 80px;
    }
    .header-btn {
        top: 10px;
    }
    .header-search-btn,
    .wish_btn {
        line-height: 80px;
    }
    .nav-button-wrap {
        float: right;
        height: 80px;
        width: 80px;
        cursor: pointer;
        position: relative;
        display: block;
        border-left: 1px solid #eee;
        margin-left: 20px;
    }
    .nav-button-wrap:before {
        font-family: "Font Awesome 6 Pro";
        content: "\f00d";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        font-size: 1.7em;
        opacity: 0;
        transition: all 0.3s linear;
    }
    .nav-button {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 22px;
        height: 20px;
        margin-left: -11px;
        margin-top: -6px;
    }
    .nav-button span {
        float: left;
        width: 100%;
        height: 2px;
        background: #000;
        margin-bottom: 4px;
        border-radius: 4px;
        transition: all 0.3s linear;
    }
    .nav-button span:first-child {
        width: 50%;
    }
    .vis_nbwc .nav-button span,
    .vis_nbwc .nav-button span:first-child {
        width: 0;
    }
    .vis_nbwc:before {
        opacity: 1;
        transition-delay: 0.3s;
    }
    .main-menu {
        position: absolute;
        top: 81px;
        right: -20px;
        width: 300px;
        z-index: 50;
        padding: 15px 10px;
        background: #000;
        visibility: hidden;
        opacity: 0;
        border-radius: 0 0 10px 10px;
        transition: all 0.4s ease-in-out;
    }
    .vismobmenu {
        opacity: 1;
        right: 0;
        visibility: visible;
    }
    .menusb {
        display: block;
        float: left;
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    .main-menu .menusb ul {
        display: block;
        float: left;
        position: relative;
        width: 100%;
    }
    .menusb li {
        margin: 0;
        float: left;
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 0 20px;
    }
    .menusb li i {
        position: absolute;
        right: 18px;
        top: 12px;
    }
    .menusb li i:before {
        content: "\f0da";
    }
    .menusb a {
        float: left;
        width: 100%;
        padding: 8px 5px;
        position: relative;
        font-weight: 600;
        text-transform: uppercase;
        font-family: var(--secondary-font);
        color: #fff;
        line-height: 20px;
        text-align: left;
    }
    .menusb a.back {
        padding-left: 24px;
    }
    .menusb a.back:before {
        font-family: "Font Awesome 6 Pro";
        content: "\f177";
        font-size: 14px;
    }
    .menusb a.act-link,
    .menusb a.back:before,
    .menusb li i {
        color: var(--main-color);
    }
    .main-header .container,
    .about-img-hotifer,
    .ab_img_wideo_wrap,
    .listing-grid_heroheader .gallery-filters,
    .pricing-switcher,
    .pricing-switcher .fieldset,
    .lws_mobile .list-searh-input-wrap-title_wrap .list-searh-input-radio_wrap,
    .lws_mobile .hidden-listing-item .filter-tags li,
    .show-info,
    .hsc_flat .hero-section-opt {
        width: 100%;
    }
    .main-register_bg,
    .height-emulator,
    .mob-hid,
    .api-img,
    .main-menu nav ul,
    .more_search-btn,
    .back-tofilters-wrap,
    .hero-section-agent_link,
    .hs-pv_wrap {
        display: none;
    }
    .main-register-wrap {
        padding-left: 0;
    }

    .main-footer {
        position: relative;
        overflow: hidden;
    }
    .footer-widget {
        margin-bottom: 20px;
    }
    .hero-section-title.hs_align-title {
        margin-top: 0;
    }
    .listing-grid_heroheader .gallery-filters {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
    }
    .gallery-item,
    .listing-grid-item,
    .pricing-switcher label,
    .pricing-switcher .switch {
        width: 50%;
    }
    .gisp .gallery-item,
    .gisp .listing-grid-item {
        padding: 10px;
    }
    .services-opions {
        margin-bottom: 20px;
    }
    .about-img-hotifer,
    .ab_img_wideo_wrap {
        position: relative;
        padding: 15px 20px;
        z-index: 11;
        border-radius: 20px;
        box-shadow: 0 0 0 0;
        margin-top: 20px;
    }
    .process-wrap {
        margin-top: 30px;
    }
    .api-container {
        padding-left: 0;
    }
    .api-text {
        padding: 40px;
    }
    .api-wrap-bg {
        top: 0;
        bottom: 0;
    }
    .api-wrap-bg:before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    .api-text h3,
    .hero-section_sin h2,
    .hsc_flat .hero-section-title h2 {
        font-size: 2.2em;
    }
    .api-text-links {
        margin: 0;
    }
    .api-text-links a {
        margin: 10px 0 0 0;
    }
    .sb-container {
        margin: 30px 0 0 0;
    }
    .api-wrap-bg-container {
        left: 0;
    }
    .list-searh-input-wrap-hero .cs-intputwrap {
        margin-bottom: 10px;
    }
    .list-searh-input-wrap.list-searh-input-wrap-hero.lsiwh_2 {
        padding-bottom: 0 !important;
    }
    .hero-section_sin .hero-section-container.hsc2 {
        padding: 80px 0;
    }
    .wrapper {
        overflow: hidden;
    }
    .hero-section {
        margin-top: 0;
    }
    .ab_i2 {
        padding-left: 0;
        margin-top: 20px;
    }
    .scroll-content-wrap {
        padding-left: 0;
    }
    .help-item-title {
        padding: 15px 20px;
        font-size: 1.2em;
    }
    .pricing-column {
        padding: 40px 30px 20px;
        margin-bottom: 10px;
    }
    .pricing-switcher-title {
        font-size: 1.5em;
        text-align: left;
        margin: 10px 0;
        width: 100%;
    }
    .pricing-switcher,
    .pricing-switcher .fieldset {
        float: left;
    }
    .pricing-switcher input[type="radio"]:checked + label + .switch,
    .pricing-switcher
        input[type="radio"]:checked
        + label:nth-of-type(n)
        + .switch {
        -webkit-transform: translateX(calc(100% - 12px));
        transform: translateX(calc(100% - 12px));
    }
    .lws_mobile {
        position: fixed;
        top: 80px;
        left: -400px;
        width: 350px;
        bottom: 0;
        border-radius: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 40px 10px 20px;
        z-index: 40;
    }
    .hidden-listing-filter {
        position: relative;
        top: 0;
        margin-top: 20px;
        background: #fff;
        border-radius: 0;
        width: 100%;
        padding: 0;
        border: none;
        box-shadow: 0 10px 34px 0px rgba(0, 0, 0, 0);
        display: block;
    }
    .lsw_mb-btn .commentssubmit {
        margin-top: 30px;
    }
    .list-searh-input-wrap-title {
        top: 0;
    }
    .lws_mobile .list-searh-input-wrap-title_wrap .list-searh-input-radio_wrap {
        position: relative;
        margin-top: 30px;
    }
    .lws_mobile .custom-form .price-range-wrap {
        margin-top: 10px;
    }
    .close_mob-filter {
        display: block;
        position: absolute;
        top: 30px;
        right: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 4px;
        cursor: pointer;
        z-index: 50;
    }
    .show-mob-filter {
        position: relative;
        padding: 18px 40px;
        border-radius: 6px;
        background: var(--main-color);
        cursor: pointer;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 11px;
        display: block;
    }
    .show-mob-filter i {
        color: #fff;
        margin-right: 10px;
    }
    .two-columns-grid.fw-listing-item.fw-listing-item2 {
        grid-template-columns: auto;
    }
    .hero-section-breadcrumbs .breadcrumbs-list {
        height: auto;
        line-height: 1;
        overflow: hidden;
    }
    .hero-section-breadcrumbs .breadcrumbs-list a,
    .hero-section-breadcrumbs .breadcrumbs-list span {
        padding: 20px 20px 20px 0;
    }
    .hero-section-breadcrumbs .breadcrumbs-list a:before {
        top: 50%;
        margin-top: -7px;
    }
    .hero-section-breadcrumbs {
        border-radius: 10px;
    }
    .hero-section-container {
        padding: 120px 0 110px;
    }
    .hero-section-title_container {
        padding: 0 30px;
    }
    .nerby-list-wrap {
        margin-top: 20px;
    }
    .show-info span {
        bottom: 20px;
        right: 20px;
    }
    .tooltip-info {
        bottom: 50px;
        right: 20px;
        left: 20px;
    }
    .share-holder {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
    }
    .share-holder a,
    .share-title,
    .share-container {
        float: left;
    }
    .share-holder a {
        border-top: none;
        border-left: 1px solid #eee;
    }
    .share-container a:first-child {
        border-left: none;
    }
    .share-title {
        margin: 18px 20px 0 20px;
    }
    .share-container {
        width: auto;
    }
}
@media only screen and (max-width: 768px) {
    .header-btn,
    .show-reg-form span,
    .wish_btn-item:before,
    .footer-bottom:before,
    .footer-bottom:after,
    .pv-item_wrap_single,
    .contacts-card-item i,
    .contacts-card-item:before,
    .contacts-card-item:after,
    .hs-pv_wrap,
    .hero-section-wrap-item .svg-corner,
    .hero-section-wrap-item .hs-scroll-down-wrap,
    .synk-slider-thumbnails-wrap {
        display: none;
    }
    .wish_btn {
        margin-right: 5px;
    }
    .show-reg-form i {
        margin: 0;
        font-size: 1.7em;
        font-weight: 400;
    }
    .show-reg-form {
        padding: 0;
        width: 30px;
        background: none;
        border: none;
        box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0);
        margin-right: 20px;
        line-height: 1;
    }
    .footer-bottom {
        height: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
    }
    .three-columns-grid,
    .two-columns-grid {
        grid-template-columns: auto;
    }
    .footer-social {
        float: left;
    }
    .footer-inner {
        padding: 90px 0 30px;
    }
    .home-hero-section .hero-section-title h2 {
        font-size: 2.7em;
    }
    .boxed-container {
        border-radius: 10px;
        padding: 10px;
    }
    .boxed-content-title {
        padding: 25px 20px;
    }
    .boxed-content-title:before,
    .boxed-content-title:after,
    .lws_column .list-searh-input-wrap-title:before,
    .lws_column .list-searh-input-wrap-title:after,
    .contacts-card-item span:before,
    .contacts-card-item span:after,
    .help-item-title:before,
    .help-item-title:after,
    .testi-header:before,
    .testi-header:after {
        right: 20px;
    }
    .boxed-content-item,
    .boxed-content-item.bc-item_smal_pad {
        padding: 20px;
    }
    .cat-opt,
    .post_header_cat a {
        padding: 6px 10px;
        margin-bottom: 5px;
        box-shadow: 0px 0px 0px 0px;
    }
    .clients-carousel-wrap {
        padding: 20px;
    }
    .clients-carousel-title {
        position: relative;
        top: 0;
        transform: translateY(0%);
        text-align: left;
        margin-bottom: 30px;
        padding: 0;
    }
    .clients-carousel-title:before {
        left: 0;
        margin-left: 0;
    }
    .section-title h2 {
        font-size: 2.4em;
    }
    .testimonilas-carousel-wrap {
        padding: 0;
        margin: 20px 0;
    }
    .testimonilas-carousel {
        padding: 10px 10px 50px;
    }
    .testimonilas-carousel-wrap .fwc-controls_wrap {
        bottom: 0;
    }
    .tc-button {
        top: 100%;
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-top: -44px;
    }
    .testimonilas-text-item {
        padding: 20px 20px 0;
    }
    .testimonilas-text-item-wrap {
        padding: 20px;
    }
    .csb-no-align {
        margin: 10px 0;
        display: table;
    }
    .fw-listing-item .geodir-category-content,
    .fw-listing-item .geodir-category-img,
    .fw-listing-item .geodir-category-footer,
    .list-main-wrap-opt,
    .post-item,
    .cs-title,
    .contact-wh_title,
    .contact-social,
    .property-single-header-price,
    .section-title h2,
    .clients-carousel-title,
    .process-wrap li {
        width: 100%;
    }
    .fw-listing-item .geodir-category-footer,
    .list-main-wrap-opt {
        position: relative;
        border-top: 1px solid #eee;
    }
    .list-main-wrap-opt {
        right: 0;
        top: 0;
        transform: translateY(0);
        padding: 10px 0 0 0;
        margin-top: 20px;
    }
    .list-main-wrap-header {
        padding: 20px;
        margin: 20px 0;
    }
    .post-item {
        padding: 0 0 10px 0;
    }
    .fw-carousel-button-prev {
        left: 10px;
    }
    .fw-carousel-button-next {
        right: 10px;
    }
    .gal-link,
    .box-media-zoom {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
        font-size: 0.9em;
    }
    .content-nav-fixed li a.ln {
        padding-left: 60px;
    }
    .content-nav-fixed li a.rn {
        padding-right: 60px;
    }
    .comments-item {
        padding-left: 0;
    }
    .comments-wrap {
        margin-top: 0;
    }
    .contacts-card-item {
        padding: 20px;
        margin-bottom: 10px;
    }
    .cs-title,
    .contact-wh_title {
        margin: 0 0 10px 0;
        text-align: left;
    }
    .contact-wh div {
        margin-bottom: 10px;
    }
    .contact-social {
        float: left;
        margin-top: 10px;
    }
    .help-item-wrap {
        padding: 10px;
    }
    .accordion a.toggle {
        padding: 0 20px;
        height: 50px;
        line-height: 50px;
        font-size: 1em;
        overflow: hidden;
    }
    .accordion-inner {
        padding: 35px 20px 20px;
    }
    .accordion a.toggle i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-top: -15px;
        font-size: 12px;
    }
    .fw-listing-item .geodir-category-content {
        padding: 20px;
    }
    .ps-facts-wrapper {
        grid-template-columns: auto auto;
    }
    .hero-section_categories a {
        float: left;
        padding: 8px 20px;
    }
    .hero-section_categories {
        margin-bottom: 10px;
    }
    .hero-section-title_container {
        padding: 0 80px 0 20px;
    }
    .property-single-header-price {
        text-align: left;
    }
    .hero-section-opt {
        padding-top: 10px;
        margin-top: 10px;
    }
    .hero-section-title h2 {
        font-size: 2.4em;
    }
    .hero-section-breadcrumbs .breadcrumbs-list a,
    .hero-section-breadcrumbs .breadcrumbs-list span {
        padding: 8px 20px 8px 0;
    }
    .hero-opt-btnns {
        bottom: 10px;
        right: 4px;
    }
    .property-single-header-date {
        margin: 0 20px 0 0;
    }
    .single-carousel-wrap {
        padding: 20px 0 60px;
    }
    .fw-carousel {
        height: 250px;
    }
    .slider-button {
        top: 100%;
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-top: -45px;
    }
    .fw-carousel-wrap {
        padding: 10px 10px 55px;
    }
    .list-single-opt_header.hsc_flat_bci {
        margin: 20px 0;
        padding-right: 90px;
    }
    .hsc_flat .hero-section-opt {
        padding-bottom: 20px;
    }
    .synk-slider-wrap {
        padding-right: 0;
    }
    .synk-slider .slider-button {
        top: 50%;
        margin-top: -15px;
    }
    .list-single-opt_header.hsc_flat_bci .hero-opt-btnns {
        top: -5px;
    }
}
@media only screen and (max-width: 640px) {
    .wish-list-item:before,
    .hs-scroll-down-wrap,
    .breadcrumbs-list_dec,
    .load-more_btn,
    .gid_link,
    .dec-title .svg-corner {
        display: none;
    }
    .header-search-btn {
        margin: 0 0 0 10px;
    }
    .nav-button-wrap {
        margin-left: 5px;
        border: none;
        width: 60px;
    }
    .show-reg-form i,
    .wish_btn,
    .header-search-btn {
        font-size: 1.4em;
        width: 20px;
    }
    .header-search-wrap,
    .wish-list-img,
    .wish-list-descr,
    .listing-grid_heroheader,
    .wish-list-wrap,
    .gallery-item,
    .listing-grid-item,
    .tags-widget,
    .dec-title span {
        width: 100%;
    }
    .dec-title_item {
        text-align: left;
    }
    .charts-item {
        border-radius: 0 0 20px 20px;
    }
    .gisp .gallery-item,
    .gisp .listing-grid-item {
        padding: 10px 0;
    }
    .header-search {
        padding: 0 20px;
    }
    .header-search-nav {
        padding: 0;
    }
    .listing-grid_heroheader h3 {
        padding-left: 10px;
    }
    .header-search-container {
        border-radius: 0 0 10px 10px;
    }
    .wish-list-wrap {
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 10px 0 0 10px;
    }
    .listing-grid_heroheader,
    .breadcrumbs-list.bl_flat {
        overflow: hidden;
    }
    .listing-grid_heroheader {
        padding-top: 20px;
    }
    .wish-list-descr {
        padding: 10px;
    }
    .main-register {
        padding: 100px 10px 20px;
    }
    .main-register .tabs-menu {
        padding-right: 40px;
    }
    .close-modal {
        width: 40px;
    }
    .to_top-btn-wrap {
        right: auto;
        left: -33px;
    }
    .csb_color {
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.2);
    }
    .gallery-filters a {
        width: 100%;
        border: none;
        border-top: 1px solid #eee;
        border-radius: 0 0 0 0;
        height: 50px;
        line-height: 50px;
    }
    .gallery-filters a:first-child {
        border: none;
    }
    .sc-controls.shc_controls2.shc_controls3,
    .sc-controls.shc_controls2 {
        left: 0;
    }
    .breadcrumbs-list {
        padding: 0 20px;
    }
    .hs-slider-controls {
        left: auto;
        right: 0;
    }
    .hero-notifer {
        text-align: center;
    }
    .hero-notifer a {
        display: inline-block;
        margin-top: 10px;
    }
    .services-opions li {
        padding: 20px 30px;
    }
    .services-opions li i {
        position: relative;
        left: 0;
        top: 0;
        transform: translateY(0%);
        margin-bottom: 30px;
        display: table;
    }
    .post-banner-widget {
        padding: 180px 30px 30px;
    }
    .profile-card-stats {
        right: 10px;
        left: 130px;
    }
    .agent-preofile-header {
        padding: 95px 30px 20px;
    }
    .tags-widget {
        padding-top: 10px;
    }
    .hero-section_sin .hero-section-container {
        padding: 90px 0;
    }
    .search-widget input.search-inpt-item {
        width: calc(100% - 70px);
    }
    .search-submit {
        right: 5px;
        width: 60px;
    }
    .ps-facts-item {
        border-bottom: 1px solid #eee;
        padding: 20px 40px 20px 60px;
    }
    .ps-facts-item i {
        left: 20px;
        font-size: 1.4em;
    }
    .single-gallery-filters {
        border: 1px solid #eee;
        border-radius: 6px;
        padding-bottom: 50px;
    }
    .single-gallery-filters .gf_counter {
        top: auto;
        bottom: 0;
        left: 0;
        padding: 0 12px;
        height: 50px;
        line-height: 50px;
        border-radius: 0;
        background: #000;
        color: #fff;
        font-size: 1.1em;
        border: none;
        box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0);
    }
    .single-gallery-filters .gf_counter:before {
        background: var(--main-color);
    }
    .graph-price-container {
        grid-template-columns: auto;
    }
    .graph-price-counter-wrap {
        display: table;
    }
    .price-perc {
        right: auto;
        left: 120px;
    }
    .dec-title_item {
        padding: 23px 30px 0 30px;
    }
    .property-single-header-date {
        text-align: left;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .bg {
        background-attachment: scroll !important;
        -webkit-background-size: cover;
        background-position: center;
    }
}

/* ===== STYLES POUR LA VUE LOCATIONS SHOW ===== */

/* Statistiques des locations */
.location-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 0.875rem;
}

.stat-item i {
    font-size: 1rem;
}

.stat-item strong {
    font-weight: 600;
    color: #fff;
}

/* Filtres par statut */
.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.filter-btn i {
    font-size: 0.875rem;
}

/* Informations des locataires */
.tenant-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tenant-info strong {
    font-weight: 600;
    color: #374151;
}

.tenant-info small {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Informations des propriétaires */
.owner-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.owner-info strong {
    font-weight: 600;
    color: #374151;
}

.owner-info small {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Badges de type de location */
.type-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.type-badge.mensuelle {
    background: #eff6ff;
    color: #1165ab;
}

.type-badge.journaliere {
    background: #fef3c7;
    color: #d97706;
}

/* Badges de statut */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.enCours {
    background: #f0fdf4;
    color: #16a34a;
}

.status-badge.attente {
    background: #eff6ff;
    color: #1165ab;
}

.status-badge.terminer {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.annuler {
    background: #fef2f2;
    color: #dc2626;
}

/* Badge d'unité */
.unit-badge-display {
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Transitions pour les boutons d'action */
.transition-colors {
    transition: all 0.3s ease;
}

/* Responsive pour les filtres */
@media (max-width: 768px) {
    .location-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-item {
        justify-content: center;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .filter-btn i {
        font-size: 0.75rem;
    }
}

/* ===== STYLES POUR LES FORMULAIRES DE LOCATION ===== */

/* Style spécial pour le select de type */
.type-select-wrapper {
    position: relative;
}

.type-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231165ab' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 50px;
    padding-left: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.type-select:hover {
    border-color: #1165ab;
    box-shadow: 0 4px 20px rgba(17, 101, 171, 0.15);
    transform: translateY(-2px);
}

.type-select:focus {
    outline: none;
    border-color: #1165ab;
    box-shadow: 0 0 0 4px rgba(17, 101, 171, 0.1),
        0 8px 25px rgba(17, 101, 171, 0.2);
    transform: translateY(-3px);
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
}

.type-select option {
    padding: 12px 20px;
    background-color: white;
    color: #2c3e50;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.type-select option:hover {
    background-color: #f8f9fa;
    color: #1165ab;
}

.type-select option:checked {
    background: linear-gradient(145deg, #1165ab, #0d4a8a);
    color: white;
    font-weight: 600;
}

/* Style pour l'icône dans le wrapper de type */
.type-select-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1165ab;
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
}

/* Animation d'entrée pour le select de type */
.type-select-wrapper {
    animation: slideInUp 0.6s ease-out;
}

/* Effet de brillance au survol pour le type */
.type-select-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
    pointer-events: none;
    border-radius: 12px;
}

.type-select-wrapper:hover::before {
    left: 100%;
}

/* Styles pour le sélecteur d'unité - Similaire au type-select */
.unit-select-wrapper {
    position: relative;
}

.unit-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231165ab' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 50px;
    padding-left: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.unit-select:hover {
    border-color: #1165ab;
    box-shadow: 0 4px 20px rgba(17, 101, 171, 0.15);
    transform: translateY(-2px);
}

.unit-select:focus {
    outline: none;
    border-color: #1165ab;
    box-shadow: 0 0 0 4px rgba(17, 101, 171, 0.1),
        0 8px 25px rgba(17, 101, 171, 0.2);
    transform: translateY(-3px);
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
}

.unit-select option {
    padding: 12px 20px;
    background-color: white;
    color: #2c3e50;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.unit-select option:hover {
    background-color: #f8f9fa;
    color: #1165ab;
}

.unit-select option:checked {
    background: linear-gradient(145deg, #1165ab, #0d4a8a);
    color: white;
    font-weight: 600;
}

/* Style pour l'icône dans le wrapper d'unité */
.unit-select-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1165ab;
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
}

/* Animation d'entrée pour le select d'unité */
.unit-select-wrapper {
    animation: slideInUp 0.6s ease-out;
}

/* Effet de brillance au survol pour l'unité */
.unit-select-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
    pointer-events: none;
    border-radius: 12px;
}

.unit-select-wrapper:hover::before {
    left: 100%;
}

/* Style pour l'unité sélectionnée */
.unit-select.unit-selected {
    border-color: #28a745;
    background: linear-gradient(145deg, #ffffff, #f0fff4);
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1),
        0 8px 25px rgba(40, 167, 69, 0.2);
}

/* Style pour le type sélectionné */
.type-select.type-selected {
    border-color: #28a745;
    background: linear-gradient(145deg, #ffffff, #f0fff4);
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1),
        0 8px 25px rgba(40, 167, 69, 0.2);
}

/* Style spécial pour le select client */
.client-select-wrapper {
    position: relative;
}

.client-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231165ab' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 50px;
    padding-left: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
