@font-face {
    font-family: 'poppins';
    src: url('../fonts/poppins-light-webfont.woff2') format('woff2'),
        url('../fonts/poppins-light-webfont.woff') format('woff');
    font-weight: 200;
    font-style: normal;

}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
        url('../fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;

}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/poppins-medium-webfont.woff2') format('woff2'),
        url('../fonts/poppins-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;

}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/poppins-semibold-webfont.woff2') format('woff2'),
        url('../fonts/poppins-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;

}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/poppins-bold-webfont.woff2') format('woff2'),
        url('../fonts/poppins-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;

}

@font-face {
    font-family: 'opensans';
    src: url('../fonts/opensans-regular-webfont.woff2') format('woff2'),
        url('../fonts/opensans-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;

}

@font-face {
    font-family: 'opensans';
    src: url('../fonts/opensans-bold-webfont.woff2') format('woff2'),
        url('../fonts/opensans-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;

}

@font-face {
    font-family: 'opensans';
    src: url('../fonts/opensans-extrabold-webfont.woff2') format('woff2'),
        url('../fonts/opensans-extrabold-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;

}

@font-face {
    font-family: 'opensans';
    src: url('../fonts/opensans-light-webfont.woff2') format('woff2'),
        url('../fonts/opensans-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;

}

@font-face {
    font-family: 'opensans';
    src: url('../fonts/opensans-semibold-webfont.woff2') format('woff2'),
        url('../fonts/opensans-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: poppins;
}

:root {
    --grey-1: #8D9598;
    --orange-1: #FA8103;
    --blue-1: #14395B;
    --blue-2: #186AA5;
    --blue-form: #1C76B9;
    --blue-light: #1E62E8;
    --red-1: #AC0202;
}

.container {
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

a {
    transition: all 0.3s;
    line-height: 1.3;
}

p {
    font-size: 18px;
    font-weight: 400;
    font-family: poppins;
    line-height: 1.4;
}

h1,
.h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: poppins;
    line-height: 1.25;
}

h2 {
    font-family: poppins;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.36;
    color: var(--orange-1);
}

h3 {
    font-size: 40px;
    font-family: opensans;
    font-weight: 700;
    line-height: 1.2;
}

button {
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 6px;
}

.sidebar {
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: 240px;
    background: var(--blue-1);
    transition: all 0.5s ease;
}

.sidebar.active {
    width: 70px;
}

.sidebar .nav-links li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

.home-section {
    position: relative;
    background: #f5f5f5;
    min-height: 100vh;
    width: calc(100% - 240px);
    left: 240px;
    transition: all 0.5s ease;
}

.sidebar.active~.home-section {
    width: calc(100% - 70px);
    left: 70px;
}

.home-section nav {
    position: fixed;
    width: calc(100% - 240px);
    left: 240px;
    z-index: 100;
    padding: 0 20px;
    transition: all 0.5s ease;
}

.sidebar.active~.home-section nav {
    left: 70px;
    width: calc(100% - 70px);
}

.home-section nav .sidebar-button {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
}

nav .sidebar-button i {
    font-size: 35px;
    margin-right: 10px;
}

.home-section .home-content {
    position: relative;
    padding-top: 80px;
}

.sidebarBtn,
nav .sidebar-button {
    display: none;
}

/* =================home-section-nav============= */
.home-section nav {
    background: var(--orange-1);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-section nav .profile {
    max-width: 34px;
}

.home-section nav .profile img {
    width: 100%
}

nav .search-bar {
    display: flex;
    align-items: center;
    width: calc(100% - 50px);
}

nav .search-bar input {
    background: none;
    border: none;
    font-family: opensans;
    font-size: 15px;
    color: #fff;
    margin-left: 15px;
    width: 100%;
    padding: 15px 0;

}

nav .search-bar input:focus {
    outline: none;
    border: none;
}

nav .search-bar input::placeholder {
    font-family: opensans;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}

/* ==========dashboard======= */
.sidebar .logo {
    background: #F2F2F2;
    padding: 10px 10px;
    height: 60px;
    display: flex;
    align-items: center;
}

.sidebar .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    padding: 14px 10px;
    border-bottom: 1px solid #fff;
}

.sidebar .nav-links li span {
    color: #fff;
    font-size: 16px;
    font-family: poppins;
    font-weight: 400;
    line-height: 1.3;
}


.sidebar .nav-links li {
    margin: 30px 15px;
    list-style: none;
}

.sidebar.active .nav-links li {
    margin: 30px 20px;
}

.sidebar .nav-links li .icon {
    margin: 0 15px 0 0;
    background: #fff;
    padding: 7px 20px;
    display: flex;
    align-items: center;
    width: 40px;
    justify-content: center;
    border-radius: 5px;
}

.sidebar .nav-links li .active .icon {
    background: var(--orange-1);
}

.sidebar .nav-links li .active span {
    color: var(--orange-1);
}

.sidebar .nav-links li .active {
    cursor: default;
    position: relative;
}

.sidebar .nav-links li .active:before {
    position: absolute;
    content: '';
    background: var(--orange-1);
    width: 2px;
    height: 100%;
    top: 0;
    left: -8px;
}

.sidebar .nav-links li .active:hover {
    opacity: 1;
}

.sidebar .nav-links li a:hover {
    opacity: 0.7;
}

/* ------side-bar-btn--- */
.sidebar .sidebar-button {
    position: absolute;
    top: 20px;
    height: 40px;
    left: 13px;
    cursor: pointer;
}

.sidebar .sidebar-button:hover {
    opacity: 0.8;
}

.sidebar.active .sidebar-button {
    right: 10px;
}

.sidebar .sidebar-button img {
    widows: 100%;
}

/* ==============table=============== */
.home-section {
    background: #FAFBFE;
}

.tbl-nd-graph {
    display: flex;
}

.home-content table {
    width: 100%;
    border-collapse: collapse;
}

.home-content table th {
    text-align: left;
    padding: 30px 10px;
    color: var(--orange-1);
    font-size: 16px;
    background: #fff;

}

.home-content table th,
.home-content table td {
    font-family: poppins;
    font-weight: 400;
    vertical-align: top;
    line-height: 1.3;
}

.home-content table td {
    border-bottom: 1px solid #707070;
    font-size: 14px;
    padding: 30px 10px 20px;
    color: var(--blue-1);
}

.home-content table td a {
    color: var(--orange-1);
    transition: all 0.3s;
}

.home-content table td a:hover {
    text-decoration: none;
}

.home-content table tr:first-child {
    box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 4px;
    border-radius: 15px;
}

.home-content table th:first-child,
.home-content table th:last-child {
    padding: 30px 30px;
}

.home-content table td:first-child,
.home-content table td:last-child {
    padding: 30px 30px 20px;
}

.home-content table th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.home-content table th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.home-tbl {
    overflow: auto;
    margin-top: 20px;
    padding: 0 10px;
}

.home-section .see-all-link {
    margin-top: 20px;
    text-align: right;
}

.home-section .see-all-link a {
    color: var(--orange-1);
    font-family: poppins;
    font-weight: 400;
    font-size: 16px;
}


.home-section .see-all-link a:hover {
    text-decoration: none;
}

.home-section h2 {
    margin-left: 30px;
}

/* --------table-2--- */
.table-two {
    margin: 20px 0;
}

.home-content table .view-doc {
    display: flex;
    align-items: center;
}

.home-content.que table .view-doc a {
    color: var(--orange-1);
}

.home-content table .view-doc-img {
    margin-right: 10px;
}

.home-content table .review {
    color: #000;
}

.home-content table .location {
    color: #000;
    opacity: 0.7
}

.home-content table .status-btn button {
    color: #fff;
    padding: 13px 10px;
    border: 2px solid #D4A200;
    background: #D4A200;
    min-width: 150px
}

.home-content table .status-btn button:hover {
    background: transparent;
    color: #D4A200;
}

.home-content table .action-btn button {
    color: #fff;
    border: 2px solid var(--blue-1);
    background: transparent;
    min-width: 130px;
}

.home-content table .action-btn button select {
    padding: 13px 10px;
    border: none;
    width: 100%;
    color: var(--blue-1);
}

.home-content table .action-btn button select:focus {
    outline: none;
}

.home-content table .n-accept-btn button {
    color: #fff;
    padding: 13px 10px;
    border: 2px solid var(--red-1);
    background: var(--red-1);
    min-width: 120px;
}

.home-content table .n-accept-btn button:hover {
    background: transparent;
    color: var(--red-1);
}

.home-content table .accept-btn button {
    color: #fff;
    padding: 13px 10px;
    border: 2px solid #008109;
    background: #008109;
    min-width: 120px;
}

.home-content table .accept-btn button:hover {
    background: transparent;
    color: #008109;
}

.home-content table .release-btn button {
    color: var(--blue-1);
    border: 3px solid var(--blue-1);
    background: transparent;
    min-width: 130px;
    padding: 13px 10px;
}


.home-content table .release-btn button:hover {
    background: var(--blue-1);
    color: #fff;
}

.home-content .table-two table td,
.home-content .table-two table th {
    vertical-align: middle;
}

/* -------calc-box-------- */
.home-section .t-cal-sec {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    justify-content: space-between;
}

.home-section .t-cal-sec .t-box-main {
    width: calc(25% - 30px);
}

.home-section .t-cal-sec p {
    font-size: 16px;
    font-family: poppins;
    font-weight: 400;
    line-height: 1.3;
    color: var(--orange-1);
}

.home-section .t-cal-sec .t-box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 6px;
    font-size: 30px;
    font-weight: 400;
    margin-top: 15px;
}

.home-section .t-cal-sec .t-box.box-one {
    background: #6C63FF;
}


.home-section .t-cal-sec .t-box.box-two {
    background: var(--red-1);
}

.home-section .t-cal-sec .t-box.box-three {
    background: var(--orange-1);
}

.home-section .t-cal-sec .t-box.box-four {
    background: var(--blue-1);
}

/* ---------approve-use---- */
.home-content .top-heading {
    display: flex;
    align-items: center;
}

.home-content .top-heading .arrow-icon {
    background: var(--orange-1);
    padding: 13px 13px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin-left: 15px;
}

.home-content .top-heading h1 {
    margin-left: 20px;
    color: var(--blue-1);
    font-size: 27px;
    font-weight: 400;
    font-family: poppins;
    line-height: 1.2
}

/* ---------revenue--------- */
.home-section .t-amount {
    display: flex;
    align-items: center;
}

.home-section .t-amount-icon {
    margin-right: 12px;
}

.home-section .t-amount {
    font-size: 16px;
    font-weight: 400;
    font-family: poppins;
}

.home-section .top-heading-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.home-section .top-head-btn button {
    background: var(--orange-1);
    padding: 20px 15px 20px;
    border: none;
    font-size: 22px;
    color: #fff;
    max-width: 230px;
    text-align: left;
}

.home-content.que .table-two {
    margin: 0;
}

.home-content.que table th {
    background-color: var(--blue-1);
    color: #fff;
}

.home-content.que table th {
    padding: 14px 10px
}

.home-content.que table th:first-child,
.home-content.que table th:last-child {
    padding: 14px 30px;
}

.home-content.que table td a {
    color: #670EEF;
}

.home-content.approve-lease td {
    color: #000;
}

.home-content.approve-lease table td:first-child,
.home-content table td:last-child {
    padding: 20px 30px 20px;
}

.home-content.approve-lease table td {
    padding: 20px 10px 20px;
    vertical-align: top;
}

/* ===============popups============ */
.popup-main {
    background: #FAFBFE;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
}

.popup-main .popup-box-content {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(250, 129, 3, 0.15) 0px 7px 29px 0px;
    background: #fff;
    border-radius: 20px;
    min-height: 350px;
    justify-content: center;
    max-width: 600px;
    width: 100%;
}

.popup-main .popup-box-content h1 {
    margin-top: 15px;
    color: var(--blue-1);
}

.popup-main .popup-box-content p {
    max-width: 470px;
    text-align: center;
    margin-top: 22px;
    color: var(--blue-1);
}


.popup-main .popup-box-content p.para-lg {
    margin-top: 10px;
    font-size: 20px;
}

/* =====property-details========= */
.bg-head {
    background: var(--blue-1);
    padding: 10px 25px;
    margin-top: 15px;
    border-radius: 10px
}

.bg-head p {
    color: #fff;
    font-size: 20px;
}

/* =====property=============== */
.property-main {
    margin: 50px 0 50px;
    padding: 0 15px;
}

.property-main h1 {
    color: var(--blue-1);
    font-family: opensans;
    font-size: 28px;
    word-break: break-all;
}

.property-main p {
    color: var(--blue-1);
    font-family: opensans;
    margin-top: 10px;
}

.property-main .p-detail.p-col-full .property-col p {
    max-width: 700px
}

.property-main .p-detail {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    justify-content: space-between;
}

.property-main .p-detail.p-col-full .property-col {
    width: calc(100% - 0px);
}

.property-main .property-col {
    width: calc(50% - 10px);
}

.property-main .property-col .p-doc-main {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.property-main .p-doc-main a {
    margin-right: 10px;
    color: var(--orange-1);
    font-size: 18px;
    font-weight: 400;
    font-family: poppins;
}

.property-main .p-doc-main a:last-child {
    margin-right: 0;
}

.property-main .p-doc-main .property-img {
    width: calc(33.33% - 40px);
}

.property-main .property-img img {
    width: 100%;
}

/* =============user-home========== */
.home-content.approve-lease table .approve-status {
    color: #089103;
    font-weight: 600;
}

.home-content.approve-lease table .d-approve-status {
    color: var(--red-1);
    font-weight: 600;
}

.home-content.approve-lease table .pending-status {
    color: #2A03FA;
    font-weight: 600;
}

.home-content table .lock-btn button {
    background: #707070;
    border: 2px solid #707070;
    color: #fff;
    padding: 10px 15px;
    min-width: 120px;
    border-radius: 6px;
}

.home-content table .lock-btn button a {
    color: #fff;
    text-decoration: none;
}

.home-content table .lock-btn button:hover {
    background: transparent;
    color: #707070;
}

.home-content table .lock-btn button:hover a {
    color: #707070;
}

.home-content table .orng-user {
    color: var(--orange-1);
}

.home-content.user-que table .status-btn button {
    min-width: 120px;
}

.home-content table .btn-action-2 {
    margin-top: 10px;
}

.home-content table .accept-btn.listing-waiting button,
.home-content table .n-accept-btn.listing-waiting button {
    min-width: 150px;
}

.home-content.lw-in-que table td {
    vertical-align: top;
}

.home-content.lw-in-que table button {
    margin-top: -3px;
}

.home-content .top-heading.back-btn .arrow-icon a {
    color: #fff;
    padding: 0px 40px;
    font-size: 20px;
    text-decoration: none;
}

.home-content .top-heading.back-btn .arrow-icon a:hover {
    opacity: 0.8;
}

/* ========user-form===== */
.home-content input[type=text],
.home-content select {
    width: 100%;
    padding: 16px 15px;
    border-radius: 10px;
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    border: 1px solid #666666;
    color: #707070;
}

.home-content.user-form label {
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    line-height: 1.3;
}

.home-content input::placeholder,
.home-content select::placeholder {
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    color: #707070;
}

/* ---custom file -btn--- */
[type="file"] {
    height: 0;
    overflow: hidden;
    width: 0;
}

[type="file"]+label {
    background: var(--orange-1);
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    outline: none;
    position: relative;
    transition: all 0.3s;
    vertical-align: middle;
    text-align: center;
}

.property-main .property-col.upload-doc {
    display: flex;
}

.property-main .property-col.upload-doc p {
    margin-left: 20px
}

.user-form .property-main .p-detail .property-col {
    width: calc(50% - 30px);
}

.property-main .property-col.doc-req select {
    margin-top: 15px;
}

.property-main .property-col button {
    background: var(--orange-1);
    border: 2px solid var(--orange-1);
    color: #fff;
    font-size: 20px;
    font-family: opensans;
    font-weight: 400;
    padding: 12px 20px;
    width: 100%;
}

.property-main .property-col button:hover {
    background: transparent;
    color: var(--orange-1);
}

.property-main .property-col .user-radio-field {
    display: flex;
    margin-top: 10px;
    justify-content: space-between
}

.property-main .property-col .user-radio-field .radio-input {
    margin-right: 15px
}

/* --------unsold-property-------- */
.home-content .unsold-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    padding: 50px 0;
}

.home-content .unsold {
    width: calc(33.33% - 20px);
}

.unsold-img img {
    width: 100%;
}

.unsold h2 {
    margin: 0;
    color: #000;
    font-size: 32px;
    font-weight: 700;
    font-family: opensans;
}

.unsold p {
    opacity: 0.7;
}

.home-content .unsold-2 p {
    margin-top: 20px;
}

.home-content .unsold .location-main {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.home-content .unsold .location-main p {
    margin: 0 0 0 10px;
}

.home-content .unsold .price {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.home-content .unsold .price h3 {
    color: #707070;
    font-size: 20px
}

.home-content .unsold .price p {
    margin: 0 0 0 15px;
    color: var(--blue-light);
    font-size: 25px;
    font-weight: 600;
}

.home-content .unsold .property-btn {
    margin-top: auto;
    padding: 20px 0 0;
}

.home-content .unsold .property-btn button {
    background: var(--orange-1);
    color: #fff;
    border: 2px solid var(--orange-1);
    padding: 10px 15px;
}

.home-content .unsold .property-btn button:hover {
    background: transparent;
    color: var(--orange-1);
}

.home-content .unsold .unsold-text h2 {
    color: var(--red-1);
}

.unsold-2 {
    display: flex;
    flex-direction: column;
}

.unsold-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #E0E7F2;
    padding: 10px 10px;
    margin-top: 20px
}

.unsold-det-box {
    margin: 10px 0;
    padding: 0 10px;
}

.unsold-det-box .limit {
    display: flex;
    align-items: center;

}

.unsold-det-box .limit img {
    margin-left: 10px
}

.unsold-det-box .limit h2 {
    color: var(--blue-light);
    font-size: 20px;
}

.unsold-det-box p {
    margin-top: 6px;
}

.unsold-p-details hr {
    margin: 20px 0;
}

/* ===============sold======== */
.unsold-main .sold-head {
    background: var(--blue-1);
    padding: 20px 20px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.unsold-main .sold-head p {
    color: #fff;
    opacity: 1;
    font-weight: 500;
    font-size: 18px;
}

.unsold-main .sold-body {
    background: #C8E1F1;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 30px 20px;
}

.unsold-main .sold-body .sold-profile-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.unsold-main .sold-body .sold-profile {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 10px
}

.unsold-main .sold-body .sold-profile p {
    opacity: 1;
    font-weight: 500;
}

.unsold-main .sold-body .sold-profile .profile-img {
    margin-right: 10px;
}

.unsold-main .sold-body .sold-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.unsold-main .sold-body .sold-price p {
    color: #707070;
    opacity: 1;
    font-size: 20px;
    margin-right: 10px
}

.unsold-main .sold-body .sold-price h2 {
    color: var(--blue-light);
    font-size: 25px;
    font-weight: 700;
}

.unsold-main .sold-body .sold-contact-btn {
    margin-top: 20px
}

.unsold-main .sold-body .sold-contact-btn button {
    display: flex;
    align-items: center;
    background: var(--blue-1);
    padding: 6px 20px 3px;
    border: 2px solid red;
    border: 2px solid var(--blue-1);
}

.unsold-main .sold-contact-btn button span {
    color: #fff;
    font-size: 23px;
    display: inline-block;
}

.unsold-main .sold-contact-btn button span img {
    widows: 100%;
    margin-left: 10px;
}

.unsold-main .sold-body .sold-contact-btn button:hover {
    opacity: 0.9;
}

.unsold-main .sold-box:last-child {
    margin-top: 30px;
}

.unsold-main .sold-box .doc-provided {
    display: flex;
    justify-content: space-between;
    background: #A4CFE7;
    margin-top: 30px;
    padding: 15px 15px;
    border-radius: 10px
}

.unsold-main .sold-box .doc-provided:first-child {
    margin-top: 0;
}

.unsold-main .sold-box .doc-provided .doc-left {
    display: flex;
    align-items: center;
}

.unsold-main .sold-box .doc-provided .doc-left p {
    margin-left: 10px;
    font-size: 16px;
    color: var(--blue-1);
}

.home-content .sold-main .property-btn {
    margin-top: 0
}

/* ============sign-in======= */
.sign-form-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 15px 0;
}

.sign-form-main .sign-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 130px;
}

.sign-form-main .sign-form-wrapper .logo {
    max-width: 300px;
    width: 100%;
    margin: auto;
}

.sign-form-main .sign-form-wrapper .logo img {
    width: 100%;
    text-align: center;
}

.sign-form-main .sign-form-wrapper h1 {
    color: var(--blue-1);
    text-align: center;
    margin-top: 25px;
}

.sign-form-main form {
    margin-top: 40px;
}

.sign-form-main input,
.sign-form-main select {
    width: 100%;
    padding: 13px 15px;
    border-radius: 6px;
    font-size: 16px;
    font-family: opensans;
    font-weight: 400;
    border: 1px solid #666666;
    color: #707070;
    margin-top: 10px;
}

.sign-form-main input::placeholder,
.sign-form-main select::placeholder {
    font-size: 16px;
    font-family: opensans;
    font-weight: 400;
    color: #707070;
}

.sign-form-main .form-field {
    margin-top: 25px;
}

.sign-form-main .form-field label,
.sign-form-main .form-field .forget-password a {
    color: var(--blue-form);
    font-size: 18px;
    font-weight: 400;
    font-family: opensans;
}

.sign-form-main .form-field .forget-password a {
    text-decoration: none;
    display: block;
    text-align: right;
    margin-top: 5px;
}

.sign-form-main .form-field .forget-password a:hover {
    text-decoration: underline;
}

.sign-form-main .form-field .captcha-main {
    border: 1px solid #666666;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    max-width: 240px;
    margin-top: 10px
}

.sign-form-main .form-field.sign-btn {
    margin-top: 40px;
}

.sign-form-main .form-field.sign-btn button {
    background: var(--blue-1);
    border: 2px solid var(--blue-1);
    color: #fff;
    font-size: 20px;
    width: 100%;
    font-family: opensans;
}

.sign-form-main .form-field.sign-btn button a {
    color: #fff;
    font-size: 20px;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

.sign-form-main .form-field.sign-btn button:hover {
    background: transparent;
}

.sign-form-main .form-field.sign-btn button:hover a {
    color: var(--blue-1);
}

.sign-form-main .form-field .captcha-main input {
    height: 40px;
    width: 30px;
    margin-right: 10px;
    margin-top: 0
}

.sign-form-main .form-field .captcha-main .captcha-img {
    margin-left: auto;
}

/* ======register======== */
.sign-form-main.register .sign-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.sign-form-main.register .form-field {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sign-form-main.register .input-field {
    width: calc(50% - 20px);
}

.sign-form-main.register .input-field.full-col {
    width: calc(100% - 0px);
}

/* -------sigin and register bg---- */
.sign-form-main {
    background: url("../images/Path blue.png") no-repeat 0 100%,
        url("../images/Path 27.png") no-repeat 0 100%;
    background-size: contain;
}

.sign-form-main.register .sign-form-wrapper {
    margin-bottom: 130px;
}

/* ==============main-web======== */
.main-web {
    background: #090A0C;
}

nav {
    padding: 20px 0;
    position: fixed;
    z-index: 2;
    background: rgba(0, 0, 0, 0.82);
    width: 100%;
}

nav .container {
    max-width: 1740px;
}

.nav-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    max-width: 250px;
}

nav .logo img {
    width: 100%;
}

nav .nav-btns button,
.nav-btns-mbl button {
    background: var(--blue-1);
    color: #fff;
    min-width: 127px;
    margin-right: 10px;
    border: 2px solid var(--blue-1)
}

nav .nav-btns button:hover,
.nav-btns-mbl button:hover {
    background: transparent;
}

nav .nav-btns button:last-child {
    margin-right: 0px;
}

nav .nav-btns button a,
.nav-btns-mbl button a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    font-family: opensans;
    font-weight: 400;
}

nav li {
    list-style: none;
}

.navbar-web ul li {
    display: inline;
    padding: 0 20px;
}

nav .navbar-web ul li a,
.navbar-web-mbl ul li a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: opensans;
    text-decoration: none;
}

nav .navbar-web ul li a,
.navbar-web-mbl ul li a {
    position: relative;
}

/* --------nav-items-hover----- */
nav .navbar-web ul li a:before,
.navbar-web-mbl ul li a:before {
    content: " ";
    position: absolute;
    bottom: -3px;
    background-color: #fff;
    width: 0;
    height: 3px;
    transition: all 0.2s ease-in-out;
    transition-duration: 0.6s;
    left: 50%;
    transform: translateX(-50%);
}

nav .navbar-web ul li .navbar-web-active:before,
.navbar-web-mbl ul li .navbar-web-active:before {
    width: 100%;
}

nav .navbar-web ul li a:hover:before,
.navbar-web-mbl ul li a:hover:before {
    width: 100%;
}

.hero-row-1 .hero-r1-img {
    margin-left: auto;
    max-width: 400px;
    height: 200px;
}

.hero-row-1 .hero-r1-img img {
    width: 100%;
    height: 100%;
}

.hero-section {
    position: relative;
}

.hero-section .hero-row-2 .container,
.hero-section .hero-row-3 .container {
    max-width: 1600px;
}

.hero-section .hero-row-2 p {
    color: #707070;
    font-family: opensans;
    font-weight: 400;
    font-size: 22px;
    position: relative;
    padding-left: 45px
}

.hero-section .hero-row-2 p:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 4px;
    background: #707070;
    left: 0;
    top: 50%;
    transform: translatey(-50%)
}

.hero-section .hero-row-2 .hero-r2-left h1 {
    font-size: 55px;
    color: #fff;
    font-family: opensans;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 10px
}

.hero-section .hero-row-2 .hero-r2-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-section .hero-row-2 .hero-r2-left {
    width: calc(40% - 10px);
}

.hero-section .hero-row-2 .hero-r2-right {
    width: calc(60% - 10px);
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
}

.hero-section .hero-row-2 .hero-r2-right .r2-img {
    width: calc(50% - 15px);
}

.hero-section .hero-row-2 .hero-r2-right .r2-img img {
    width: 100%;
}

.hero-section .hero-r3-left a {
    display: flex;
    align-items: center;
    color: #FF214F;
    font-family: opensans;
    font-size: 22px;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
    line-height: 1.4;
    border: 2px solid #FF214F;
    padding: 13px 20px;
    border-radius: 50px;
}

.hero-section .hero-r3-left a:hover {
    background-color: #FF214F;
    color: #fff;
}

.hero-row-3 .hero-r3-left a span:last-child {
    margin-left: 10px;
    display: inline-block;
}

.hero-r3-left {
    max-width: 260px;
    width: 100%;
    margin-top: 10px;
}

.hero-section .hero-r3-main .hero-r3-right {
    display: flex;
    width: calc(100% - 310px);
    overflow: hidden;
    margin-left: auto;
    margin-top: -50px;
    align-items: flex-end;
    padding-left: 35px;
}

.hero-section .hero-r3-main .hero-r3-right .hero-r3-img {
    margin-right: 20px;
}

.hero-section .hero-r3-main .hero-r3-right img {
    vertical-align: bottom;
}

.hero-section .hero-r3-main .hero-r3-right:last-child() {
    margin-right: 0;
}

.hero-row-2 {
    margin-top: -40px;
}

.hero-section .hero-r3-left a span:last-child {
    margin-left: 10px;
}

/* --------nav toggler----- */
nav .toggler-mbl {
    display: none;
}

#mblnav {
    display: none;
    width: 100%;
}

/* ===============Dream apartment=========== */
.dream-ap {
    max-width: 702px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 80px 0;
}

.dream-ap h2 {
    font-size: 42px;
    font-family: opensans;
    font-weight: 700;
    color: var(--blue-1);
}

.dream-ap h2 span {
    color: var(--blue-2);
}

.dream-ap p {
    color: var(--grey-1);
    font-size: 22px;
    font-family: opensans;
    margin-top: 13px
}

/* ================lease-houses============== */


.lease-house-head {
    background: #000;
    padding: 20px 0;
}

.lease-head-content {
    max-width: 1050px;
    margin: auto;
    text-align: center;
}

.lease-house-head h3 {
    font-size: 36px;
    font-family: opensans;
    font-weight: 700;
    color: #fff;
}

.lease-house-head p {
    font-size: 20px;
    font-family: opensans;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}

.lease-houses-wrapper .container,
.lease-content .container {
    max-width: 1780px;
}

.lease-content {
    background: #0E0F10;
    padding: 70px 0;
}

.lease-content .lease-img-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.lease-content .lease-img {
    width: calc(25% - 15px);
    margin: 20px 0;
}

.lease-content .lease-img img {
    width: 100%;
}

/* ------lease-slider------ */
.lease-slider-main .slick-arrow,
.sel-apart-slider .slick-arrow {
    display: none !important;
}

.lease-slider-main .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px
}

.lease-slider-main .slick-dots li button:before {
    font-size: 20px;
    color: #fff;
}

.lease-slider-main .slick-dots {
    bottom: -50px;
}

/* ==========DA in PL========= */
.DA-in-PL-wrapper {
    padding: 170px 0 50px;
}

.DA-in-PL-wrapper .container {
    max-width: 1300px
}

.DA-in-PL {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
}

.DA-in-PL .DAPL-left {
    width: calc(40% - 16px);
}

.DA-in-PL .DAPL-right {
    width: calc(60% - 20px);
}

.DAPL-right {
    position: relative;
}

.DAPL-right:before {
    position: absolute;
    content: '';
    background: url("../images/dots-bg.png") no-repeat;
    top: -80px;
    left: -50px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.DAPL-left h2 {
    font-size: 50px;
    line-height: 1.7;
    color: vaR(--blue-1);
    text-transform: capitalize;
}

.DAPL-left h2 span {
    color: var(--blue-2);
}

.DAPL-left button {
    background: var(--blue-1);
    border: 3px solid var(--blue-1);
    margin-top: 30px;
}

.DAPL-left button a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
    min-width: 250px;
    font-size: 20px;
    font-family: poppins;
    text-transform: capitalize
}

.DAPL-left button:hover {
    background: transparent;
}

.DAPL-left button:hover a {
    color: var(--blue-1);
}

.DAPL-right img {
    width: 100%;
}

/* ==============select-apartment======== */
.select-apartment-wrapper {
    padding: 50px 0 150px;
}

.select-apartment-wrapper .sel-apart-head {
    max-width: 980px;
    margin: auto;
    text-align: center;
}

.select-apartment-wrapper .sel-apart-head p {
    margin-top: 14px;
    font-size: 20px;
    font-family: opensans;
    font-weight: 400;
}

.select-apartment-wrapper .sel-apart-content {
    margin-top: 40px;
}

.sel-apart-content .sel-apart {
    background: #fff;
    padding: 25px 22px 15px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 10px 15px;
    border-radius: 20px;
}

.sel-apart-content .sel-apart p {
    color: var(--grey-1);
    margin-top: 12px;
    font-size: 20px;
    font-weight: 400;
    font-family: opensans;
    text-transform: capitalize;
}

.sel-apart-content .sel-apart img {
    width: 100%;
}

.sel-apart-content .slick-dots li.slick-active button:before {
    color: var(--blue-1);
    opacity: 1;
}

.sel-apart-content .slick-dots li button:before {
    font-size: 15px;
    color: #CBD3DB;
    opacity: 1;
}

.sel-apart-content .slick-dots {
    bottom: -100px;
}

/* ============featured-listing============= */
.f-listing-wrapper {
    background: #000;
    padding: 50px 0;
}

.f-listing-wrapper .container {
    max-width: 1150px;
}

.f-listing-main h5 {
    font-size: 25px;
    font-family: opensans;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-align: center;
}

.f-listing-main h3 {
    color: #fff;
    text-align: center;
}

.f-listing-wrapper .f-listing-content {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -10px;
}

.f-listing-content .f-listing {
    background: #fff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 20px);
    margin: 15px 10px;
    border-radius: 10px;
    cursor: pointer;
}

.f-listing-content .f-listing:hover {
    background: var(--blue-1);
}

.f-listing-content .f-listing:hover p {
    color: #fff;
}

.f-listing-content .f-listing .f-listing-img {
    background: #F4F7FA;
    padding: 20px 20px;
    border-radius: 50px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center
}

.f-listing-content .f-listing .f-listing-img img {
    width: 35px;
}

.f-listing-content .f-listing p {
    color: var(--blue-1);
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px
}

/* ================footer================= */
footer {
    background: var(--blue-1);
    padding: 50px 0 30px;
}

.ftr-main {
    display: flex;
}

footer .container,
.copyright .container {
    max-width: 1210px;
}

footer p,
footer a,
.copyright p,
.copyright a {
    font-size: 14px;
    font-family: poppins;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
}

footer h6 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: poppins;
    line-height: 1.3;
}

footer ul {
    list-style-type: none;
}

.ftr-main {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 25% auto auto auto;
    grid-column-gap: 10px;
}

.ftr-main .social {
    margin-top: 35px;
}

.ftr-main .social ul {
    display: flex;
}

.ftr-main .social ul li {
    margin-right: 12px;
}

.ftr-main .social ul li a {
    background: #fff;
    padding: 10px 10px;
    border-radius: 50px;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ftr-main .social ul li i {
    font-size: 20px;
    color: var(--blue-1);

}

.ftr-main .social ul li a:hover {
    background: var(--blue-2);
}

.ftr-main .social ul li a:hover i {
    color: #fff;
}

footer .ftr-col-1 p {
    margin-top: 30px;
}

footer .ftr-col.ftr-links ul {
    margin-top: 20px;
}

footer .ftr-col.ftr-links ul li {
    margin: 15px 0;
}

footer .ftr-col.ftr-links ul li a {
    text-decoration: none;
}

footer .ftr-col.ftr-links ul li a:hover {
    text-decoration: underline;
}

footer .ftr-col.ftr-col-4 h6 {
    margin-bottom: 20px;
}

footer .ftr-col.ftr-col-4 p {
    margin-top: 20px
}

footer .ftr-col.ftr-col-4 .website {
    display: flex;
    align-items: center;
    margin-top: 20px
}

footer .ftr-col.ftr-col-4 .website p {
    margin: 0
}

footer .ftr-col.ftr-col-4 .website a {
    text-decoration: none;
    margin-left: 5px
}

footer .ftr-col.ftr-col-4 .website a:hover {
    opacity: 0.8
}

.copyright {
    background: #0B2F50;
    padding: 29px 0 20px;
}

.copyright .container {
    display: flex;
    justify-content: space-between
}

.copyright a {
    text-decoration: none;
    margin-left: 15px;
    position: relative;
    padding: 2px 0;
}

.copyright a:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #fff;
    right: -10px;
    top: 50%;
    transform: translatey(-50%);
}

.copyright a:last-child:before {
    display: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ============home-after-signin========== */
.nav-right-icons {
    display: flex;
}

.nav-right-icons .right-icon-img {
    margin-left: 10px;
    width: 50px;
    height: 50px;
}

.nav-right-icons .right-icon-img img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-right-icons .right-icon-img img:hover {
    opacity: 0.8;
}

/* ===========view-my-panel=============== */


.nav-right-icons .right-icon-img #viewBtn {
    position: relative;
}

.right-icon-img .view-panel {
    position: absolute;
    right: 10px;
    top: 100px;
    width: 220px;
}

.right-icon-img .view-panel p {
    color: #fff;
}

.right-icon-img .view-panel .view-head {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: var(--blue-1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.right-icon-img .view-panel .view-icon {
    margin-right: 10px;
}

.right-icon-img .view-panel .view-body {
    min-height: 140px;
    background: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.view-panel {
    display: none;
}

/* ==--------cart-styling---------== */

.nav-right-icons .right-icon-img #cart-btn {
    position: relative;
}

.right-icon-img .cart-main {
    position: absolute;
    right: 75px;
    top: 100px;
    width: 430px;
}

.right-icon-img .cart-main p {
    color: #fff;
    font-size: 22px;
}

.right-icon-img .cart-main .cart-icon {
    max-width: 40px;
    margin-right: 10px;

}

.right-icon-img .cart-head {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: var(--blue-1);
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.right-icon-img .cart-body {
    background: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 22px 26px;
    height: 390px;
    overflow: auto;
}

.right-icon-img .cart-body .cart-box {
    display: flex;
    justify-content: space-between;
    margin: 20px 0
}

.right-icon-img .cart-body .cart-box img {
    width: 100%;
}

.right-icon-img .cart-body .cart-person {
    max-width: 54px;
    height: 60px;
}

.right-icon-img .cart-body .cart-img {
    width: calc(100% - 60px)
}

.right-icon-img .cart-body .cart-person img {
    cursor: default;
}

.right-icon-img .cart-body .cart-person img:hover {
    opacity: 1;
}

.right-icon-img .cart-main {
    display: none;
}

.about-1 .home-content {
    padding-top: 100px;
}

/* ========about-1=========== */

.about-1 nav {
    background: rgba(0, 0, 0, 1);
}

.about-1 {
    background-color: #F4F7FA;
}

.unsold-img button {
    background: #78C720;
    padding: 9px 20px;
    border: 2px solid #78C720;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.home-content .sale-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 13px
}

.home-content .unsold-img .sale-bidding {
    display: flex;
    align-items: center;
    margin-left: 40px
}

.home-content .unsold-img h4,
.home-content .unsold-img p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-weight: 700;
}

.home-content .unsold-img p {
    margin-left: 10px;
}

.unsold-2 .unsold-2-img {
    display: flex;
    align-items: center;
}

.unsold-2 .unsold-2-img img {
    margin: 5px 10px 0 0;
}

.about-1 .unsold-2 {
    margin-top: 30px;
}

.unsold-2 .property-btn-content {
    display: flex;
    align-items: center;
}

.unsold .property-btn-con-icon {
    margin-right: 50px;
}

.about-1 .home-content .unsold .property-btn button {
    background: var(--blue-1);
    border: 2px solid var(--blue-1);
    padding: 0;
}

.about-1 .home-content .unsold .property-btn button a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 20px
}

.about-1 .home-content .unsold .property-btn button:hover {
    background: transparent;
}

.about-1 .home-content .unsold .property-btn button:hover a {
    color: var(--blue-1);

}

.about-1 .unsold-2-ftr h4 {
    font-family: poppins;
    font-size: 20px;
    font-weight: 600;
    color: #707070;
    margin-right: 10px;
}

.about-1 .unsold-2-ftr h3 {
    font-size: poppins;
    font-size: 25px;
    font-family: 600;
    color: var(--blue-light);
}

.about-1 .unsold-2-ftr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.about-1 .unsold-2-ftr .unsold-ft-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-1 .home-content .unsold-2 p {
    margin-top: 10px;
}

.about-1 .home-content .unsold .price {
    margin-top: 25px;
}

.sold-body [type="file"]+label {
    background: var(--blue-1);
    padding: 20px 15px;
}

.about-1 .unsold-main .sold-box .doc-provided .doc-left p {
    color: #000;
}

.about-1 .unsold-main .sold-body {
    background-color: #fff;
    padding: 30px 15px;
}

.about-1 .home-content .container {
    max-width: 1700px;
}

.about-1 .home-content .sold-box {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.unsold-main .sold-box .doc-provided {
    margin-top: 18px;
}

/* ==========home12========= */

.about-1 .home-content .top-heading.back-btn .arrow-icon a img {
    margin-right: 15px;
}

.about-1 .home-content .top-heading .arrow-icon {
    background: var(--blue-1);
    margin-left: 0;
}

/* ===========all leases tiles=========== */
.leases-tiles .hero-row-2 {
    margin-top: 0px;
}

.leases-tiles {
    padding: 120px 0 60px;
}

.leases-tiles.hero-section .hero-row-2 .hero-r2-right {
    margin-top: 0;
}

.leases-tiles.hero-section .hero-row-2 .hero-r2-main {
    align-items: center;
}

.leases-tiles.hero-section .hero-row-2 .hero-r2-right {
    width: calc(52% - 10px);
}

.leases-tiles.hero-section .hero-row-2 .hero-r2-left {
    width: calc(48% - 30px);
}

.leases-tiles.hero-section .hero-row-2 .hero-r2-right img {
    width: 100%;
}

.leases-tile-main .dream-ap-wrapper .dream-ap {
    max-width: 100%;
    padding: 80px 0 40px;
}

.leases-tile-main .dream-ap-wrapper .container {
    max-width: 1660px;
}

/* ----------leases-tile----- */

.leases-tile-main nav {
    background: rgba(0, 0, 0, 1);
}

.all-leases-content {
    margin-top: 50px;
}

.all-leases-content input,
.all-leases-content select {
    border: 1px solid var(--blue-2);
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    color: #707070;
    margin: 14px 10px;
}

.all-leases-content select {
    max-width: 200px;
    width: 100%;
}

.all-leases-content input:focus,
.all-leases-content select:focus {
    outline: none;
}


.all-leases-content input::placeholder,
.all-leases-content select::placeholder {
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
}

.all-leases-content input[type=number] {
    max-width: 250px;
    width: 100%;
}

.all-leases-content .leases-field {
    display: flex;
    flex-wrap: wrap;
}

.all-leases-content .checkbox-main {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.all-leases-content label {
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    color: #707070;
}

.all-leases-content .checkbox-main input {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    vertical-align: middle;
}

.all-leases-content .all-leases-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
}

.all-leases-content .all-leases-btn button {
    border: 2px solid var(--blue-1);
    padding: 10px 20px;
    margin-right: 20px;
}

.all-leases-content .all-leases-btn button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--blue-1);
}

.all-leases-content .all-leases-btn button:hover {
    opacity: 0.8;
}

.all-leases-content .all-leases-btn .all-leases-btn-active {
    background: #B8C3CD;
    border: 2px solid #B8C3CD;
}

.all-leases-content .all-leases-btn .all-leases-btn-active:hover {
    opacity: 1;
}

.all-leases-content .all-leases-btn button img {
    margin-right: 10px
}

.all-leases-content .all-leases-btn button:last-child {
    margin-right: 0
}

/* =========stripe-details========= */
.sign-form-main .form-field-m-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sign-form-main .form-field-m-wrapper .form-field {
    width: calc(50% - 10px);
}

/* ==============congratulations================ */
.congo .popup-main {
    background: #fff;
    min-height: 100%;
}

.congo .popup-main .popup-box-content {
    min-height: 100%;
    max-width: 100%
}

.congo.sign-form-main .sign-form-wrapper {
    max-width: 600px;
}

.popup-main .popup-box-content {
    padding: 50px 20px;
}

.sign-form-wrapper .cong-logo {
    max-width: 300px;
    margin: 0 auto 50px;
}

.sign-form-wrapper .cong-logo img {
    width: 100%;
}

/* ==========choose========= */
.choose .radio-field {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0 30px
}

.choose.sign-form-main input {
    width: auto;
    margin: 0 10px 0 0;
}

.choose.sign-form-main label {
    font-family: poppins;
    font-weight: 400;
    font-size: 20px;
}

.choose .sign-form-wrapper .cong-logo {
    margin: 40px auto 0
}

.choose .popup-main .popup-box-content {
    box-shadow: none
}

.choose .popup-main .popup-box-content {
    align-items: flex-start;
}

.choose.sign-form-main .form-field.sign-btn {
    width: 100%
}

.choose.sign-form-main .form-field.sign-btn button {
    width: 100%;
    background: var(--blue-2);
    border: 2px solid var(--blue-2);
}

.choose.sign-form-main .form-field.sign-btn button:hover {
    background: transparent;
}

.choose.sign-form-main .form-field.sign-btn button:hover a {
    color: var(--blue-2);
}

.choose .popup-main .popup-box-content {
    padding: 20px 20px
}

.choose.sign-form-main .form-field.sign-btn {
    margin-top: 15px;
}

/* ===============lease-list-view========= */

.LLW-house-main {
    background: #fff;
    padding: 40px 35px;
    display: grid;
    grid-template-columns: auto 40% auto auto;
    justify-content: space-between;
    max-width: 1750px;
    margin: 30px 0;
}

.LLW-col .about-1 {
    background: none;
}

.LLW-col-2 {
    display: flex;
}

.LLW-house-main h2 {
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    font-family: opensans;
}

.LLW-house-main .apartment-text p {
    font-size: 16px;
    opacity: 0.7;
    margin-top: 10px
}

.LLW-house-main .location-main {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.LLW-house-main .location-main p {
    margin: 0;
}

.LLW-house-main .unsold-img button {
    font-size: 12px
}

.LLW-house-main .add-cart-btn {
    margin-top: 20px;
}

.LLW-house-main .add-cart-btn button {
    background: var(--blue-1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--blue-1);
    padding: 10px 15px;
    font-size: 16px;
}

.LLW-house-main .add-cart-btn button img {
    margin-left: 10px;
}

.LLW-col {
    margin-right: 20px;
}

.LLW-col:last-child {
    margin-right: 0;
}

.LLW-house-main .unsold-detail {
    margin-top: 0
}

.LLW-house-main .location-icon {
    margin-right: 10px;
}

.LLW-house-main .apartment-text {
    margin-left: 15px
}

.LLW-house-main .unsold-2-ftr {
    flex-wrap: wrap;
}

/* ========about-mini============== */
.about-mini-wrapper {
    background: url("../images/about-bg.png") no-repeat;
    background-size: cover;
    padding: 20px 0;
    position: relative;
}

.about-mini-wrapper:before {
    position: absolute;
    content: '';
    background: var(--blue-1);
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0.7
}

.about-mini-wrapper .container {
    max-width: 1550px;
    position: relative;
    z-index: 1;

}

.about-mini {
    min-height: 332px;
    display: flex;
    align-items: center;
}

.about-mini p {
    color: #fff;
    max-width: 1115px;
    font-family: opensans;
    font-size: 20px;
    font-weight: 600;
}

/* ========about-DAPL===== */

.about-DAPL .DAPL-right:before {
    display: none;
}

.DA-in-PL-wrapper.about-DAPL {
    padding: 100px 0;
}

.about-DAPL form .field-wrapper {
    display: flex;
    justify-content: space-between;
}

.about-DAPL .field-wrapper .input-field {
    width: calc(50% - 10px);
}

.about-DAPL .input-field {
    margin-top: 25px;
}

.about-DAPL .input-field input,
.about-DAPL .input-field textarea {
    width: 100%;
    background: #C4BDBD;
    background: #F5F5F5;
    border: none;
    padding: 17px 15px;
    border-radius: 6px;
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    color: #000;
}

.about-DAPL .DAPL-left button {
    width: 100%;
}

.about-DAPL .DA-in-PL .DAPL-left {
    width: calc(46% - 16px);
}

.about-DAPL .DA-in-PL .DAPL-right {
    width: calc(54% - 16px);
}

/* -------accordian-------- */
.FAQ {
    padding: 0 0 80px;
}

.FAQ h2 {
    color: var(--blue-1);
    text-align: center;
    font-size: 40px;
}

.accordian-para {
    overflow: hidden;
    display: none;
}

.toggle {
    display: block;
}

.accordian.close {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.accordian.open {
    border: 1px solid var(--blue-2);
    border-radius: 30px;
}

.accordian-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 40px;

}

.accordian-para {
    padding: 0px 40px 20px;
}

.accordian-para p {
    font-size: 16px;
    font-weight: 400;
    font-family: poppins;
    color: var(--grey-1);
}

.accordian-head h4 {
    font-size: 20px;
    color: var(--blue-1);
    font-weight: 600
}

.accordian {
    margin-top: 20px;
}

.accordian .plus-img {
    max-width: 20px;
    margin-left: 20px;
    user-select: none;
}

.accordian .minus-img {
    margin-left: 20px;
    user-select: none;
}

.accordian .plus-img img {
    width: 100%;
}

.accordion-wrapper {
    margin-top: 50px;
}

.accordian.open .plus-img {
    display: none;
}

.accordian.close .minus-img {
    display: none;
}

.FAQ-wrapper .container {
    max-width: 1200px;
}

/* ==========choose-1======== */
.popup-main h1.choose-txt {
    color: #000;
}

.popup-main .choose-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 460px;
    width: 100%;
    margin-top: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 15px;
}

.popup-main .choose-main label {
    margin-right: 15px;
    width: 80px;
    color: #000;
}

.popup-main a {
    color: #000;
    text-decoration: none;
}

.popup-main .choose-main img {
    width: 60px;
}

.popup-main .choose-main input {
    width: calc(100% - 140px);
    border: none;
    padding: 10px 10px;
}

.popup-main .choose-main input:focus {
    outline: none;
}

/* ===============Media queries=========== */
@media (max-width: 1200px) {
    .hero-section .hero-row-2 .hero-r2-left h1 {
        font-size: 45px;
    }

    /* ========DAPL======== */
    .DAPL-left h2 {
        font-size: 45px;
    }

    /* ====lease-list-view==== */
    .LLW-house-main {
        grid-template-columns: 160px auto auto;
    }
}

@media (max-width: 1024px) {
    .sidebar .nav-links li span {
        display: none
    }

    .sidebar.active .nav-links li span {
        display: block;
    }

    .sidebar .logo,
    .main-head {
        display: none;
    }

    .sidebarBtn {
        display: block;
    }

    .sidebar.active .sidebarBtn {
        display: flex;
        justify-content: flex-end;
    }

    .sidebar {
        width: 70px;
    }

    .sidebar.active {
        width: 220px;
    }

    .home-section {
        width: calc(100% - 70px);
        left: 70px;
    }

    .sidebar.active~.home-section {
        left: 220px;
        width: calc(100% - 220px);
        overflow: hidden;
    }

    .home-section nav {
        width: calc(100% - 70px);
        left: 70px;
    }

    .sidebar.active~.home-section nav {
        width: calc(100% - 220px);
        left: 220px;
    }

    .sidebar .nav-links {
        margin-top: 70px;
    }

    .tbl-nd-graph {
        flex-direction: column;
    }

    .home-section .t-cal-sec .t-box-main {
        width: calc(25% - 10px);
    }

    .popup-main .popup-box-content {
        min-height: 320px;
        max-width: 470px;
    }

    .user-form .property-main .p-detail .property-col {
        width: calc(50% - 15px);
    }

    .property-main .property-col .user-radio-field {
        display: flex;
        flex-direction: column;
    }

    /* ----------unsold----- */
    .home-content .unsold {
        width: calc(50% - 20px);
    }

    .unsold:last-child {
        order: 2;
    }

    .unsold:first-child {
        order: 1;
    }

    .unsold:nth-of-type(2) {
        order: 3;
        margin-top: 20px;
    }

    /* ========sold===== */
    .sold-main .unsold:last-child {
        order: 3;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: row-reverse;
        margin-top: 30px;
    }

    .sold-main .unsold:first-child {
        order: 1;
    }

    .sold-main .unsold:nth-of-type(2) {
        order: 2;
        margin-top: 20px;
    }

    .unsold-main .sold-box {
        width: calc(50% - 20px);
    }

    .unsold-main .sold-box:last-child {
        margin-top: 0;
    }

    .home-content .unsold-main {
        padding: 30px 0;
    }

    /* ========home-web======== */
    .hero-section .hero-row-2 .hero-r2-right {
        width: calc(55% - 10px);
    }

    .hero-section .hero-row-2 .hero-r2-left {
        width: calc(45% - 10px);
    }

    .hero-section .hero-row-2 .hero-r2-left h1 {
        font-size: 40px;
    }

    .hero-r3-left {
        margin-top: 15px;
    }

    nav .logo {
        max-width: 200px;
    }

    /* ========DAPL======== */
    .DAPL-left h2 {
        font-size: 45px;
    }

    .DA-in-PL .DAPL-right {
        width: calc(50% - 10px);
    }

    .DA-in-PL .DAPL-left {
        width: calc(50% - 30px);
    }
}

@media (max-width: 900px) {
    .hero-section .hero-row-2 .hero-r2-right .r2-img {
        width: calc(50% - 5px);
    }

    .hero-section .hero-row-2 .hero-r2-right {
        flex-wrap: wrap;
    }

    .hero-section .hero-row-2 .hero-r2-left h1 {
        font-size: 35px;
        line-height: 1.3;
    }

    .hero-section .hero-row-2 .hero-r2-right {
        margin-top: 40px;
    }

    .navbar-web ul li {
        display: inline;
        padding: 0 10px;
    }

    /* =============lease-houses======== */
    .lease-content .lease-img {
        width: calc(33.33% - 20px);
        margin: 20px 10px;
    }

    .lease-content .lease-img-wrapper {
        justify-content: flex-start;
    }

    .lease-slider-main {
        margin: 0 -10px;
    }

    /* =====DAPL===== */
    .DAPL-left h2 {
        font-size: 43px;
    }

    /* ==========lls-list-view===== */
    .LLW-house-main {
        grid-template-columns: 50% 50%
    }

    .LLW-col {
        margin-top: 20px
    }

    .LLW-col-2 {
        display: flex;
        flex-direction: column
    }

    .LLW-btn {
        /*     grid-area: 1/2/2/3 */
    }
}


@media (max-width: 768px) {
    .home-section .t-cal-sec .t-box-main {
        width: calc(50% - 10px);
        margin-top: 30px;
    }

    .home-section .t-cal-sec .t-box {
        margin-top: 10px;
    }

    .home-section .top-heading-main {
        flex-wrap: wrap;
    }

    .home-section .top-head-btn {
        margin-top: 20px;
    }

    .home-section .top-head-btn button {
        max-width: 100%;
    }

    /* ========property-details==== */
    .property-main .property-col {
        width: calc(100% - 0px);
    }

    .property-main .property-col:nth-of-type(2) {
        margin-top: 30px;
    }

    .property-main .p-doc-main .property-img {
        width: calc(33.33% - 10px);
    }

    .user-form .property-main .p-detail .property-col {
        width: calc(100% - 0px);
    }

    .property-main .property-col.upload-doc {
        flex-direction: column;
    }

    .property-main .property-col.upload-doc p {
        margin-left: 0px;
    }

    /* ------unsold-------- */
    .unsold:last-child {
        order: 1;
    }

    .unsold:first-child {
        order: 2;
        margin-top: 20px;
    }

    .unsold:nth-of-type(2) {
        order: 3;
        margin-top: 20px;
    }

    .home-content .unsold {
        width: calc(100% - 0px);
    }

    /* -----------sold------ */
    .unsold-main .sold-box {
        width: calc(100% - 0px);
    }


    .unsold-main .sold-box:last-child {
        margin-top: 20px;
    }

    /* ========home-web====== */
    .hero-section .hero-row-2 .hero-r2-left {
        width: calc(100% - 0px);
    }

    .hero-section .hero-row-2 .hero-r2-right {
        width: calc(100% - 0px);
    }

    .hero-r3-left {
        max-width: 210px;
    }

    .hero-section .hero-r3-main .hero-r3-right {
        width: calc(100% - 220px);
    }

    .hero-section .hero-r3-left a {
        font-size: 18px;
    }

    .hero-row-2 {
        margin-top: 20px;
    }

    .hero-section .hero-row-2 .hero-r2-right .r2-img {
        width: calc(50% - 12px);
    }

    /* --------nav toggler----- */
    nav .toggler-mbl {
        display: block;
        cursor: pointer;
        transition: all 0.3s;
    }

    nav .toggler-mbl:hover {
        opacity: 0.8;
    }

    nav .navbar-web,
    nav .nav-btns {
        display: none;
    }

    .toggling-content {
        padding: 30px 0;
    }

    .navbar-web-mbl ul {
        margin-top: 20px;
    }

    .navbar-web-mbl li {
        margin: 30px 0;
    }

    .nav-btns-mbl {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        margin-top: auto;
    }

    .nav-btns-mbl button {
        margin-top: 15px;
    }

    .mymblnav {
        background: rgba(0, 0, 0, 1);
        min-height: 100vh;
    }

    /* =============lease-houses======== */
    .lease-content .lease-img {
        width: calc(50% - 20px);
        margin: 12px 10px;
    }

    /* ================DAPL============ */

    .DA-in-PL .DAPL-left {
        width: calc(100% - 0px);
        margin-top: 20px;
    }

    .DA-in-PL .DAPL-right {
        width: calc(100% - 0px);
    }

    .DA-in-PL {
        flex-direction: column-reverse;
        text-align: center;
    }

    .DAPL-left button {
        margin-top: 13px;
    }

    .DAPL-left button a {
        padding: 13px 20px;
    }

    /* =====f-listing-======= */
    .f-listing-content .f-listing {
        width: calc(33.33% - 20px);
    }

    /* ======footer====== */
    .ftr-main {
        grid-template-columns: 50% auto;
        grid-column-gap: 30px;
    }

    .ftr-col {
        margin-top: 40px
    }

    .copyright .container {
        flex-direction: column;
        align-items: center;
    }

    .copyright a {
        margin: 0 8px;
    }

    .copyright .copyright-right {
        margin-top: 15px;
    }

    .nav-right-icons .right-icon-img {
        margin: 20px 15px 0 0;
    }

    /* ====leases--tiles======== */
    .leases-tiles.hero-section .hero-row-2 .hero-r2-left {
        width: calc(100% - 0px);
    }

    .leases-tiles.hero-section .hero-row-2 .hero-r2-right {
        width: calc(100% - 10px);
        margin-top: 40px;
    }

    .congo .popup-main {
        padding: 0;
    }

    .LLW-house-main {
        padding: 20px 20px;
    }

    .about-DAPL .DA-in-PL .DAPL-right {
        width: calc(100% - 0px);
    }
    
    .about-DAPL .DA-in-PL .DAPL-left {
            width: calc(100% - 0px);
    }
}

@media (max-width: 550px) {
    .hero-section .hero-r3-main .hero-r3-right {
        width: calc(100% - 0px);
        margin-top: 20px;
        padding: 0;
    }

    .DAPL-left h2 {
        font-size: 37px;
    }

    /* =====f-listing-======= */
    .f-listing-content .f-listing {
        width: calc(50% - 20px);
    }

    /* =======leases-tiles======== */
    .all-leases-content input {
        width: 100%;
    }

    .all-leases-content select {
        max-width: 100%;
    }

    .all-leases-content input[type=number] {
        max-width: 100%;
    }

    /* ==========lls-list-view===== */

    .LLW-house-main {
        padding: 20px 20px;
        grid-template-columns: 100%;
    }

    .LLW-col {
        margin-right: 0;
    }

    .LLW-col-2 {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .home-section .t-cal-sec .t-box-main {
        width: calc(100% - 0px);
        margin-top: 20px;
    }

    .sidebar.active~.home-section {
        width: 0
    }

    .sidebar.active {
        width: 100%;
        z-index: 9999999;
    }

    .sidebar.active~.home-section nav {
        width: 0;
        left: 0
    }

    .home-section .top-head-btn button {
        max-width: 100%;
        padding: 13px 15px 12px;
        font-size: 18px;
    }

    /* -------property--- */
    .home-content .p-doc-main {
        flex-wrap: wrap;
    }

    .hero-section .hero-row-2 .hero-r2-right .r2-img {
        width: calc(100% - 0px);
        margin-top: 15px;
    }

    .hero-section .hero-row-2 .hero-r2-right {
        margin-top: 20px;
    }

    /* ========lease-homes==== */
    .lease-content .lease-img {
        width: calc(100% - 0px);
        margin: 10px 0;
    }

    .lease-slider-main {
        margin: 0
    }

    .DAPL-left h2 {
        font-size: 32px;
    }

    /* =====f-listing-======= */
    .f-listing-content .f-listing {
        width: calc(100% - 0px);
        margin: 15px 0;
    }

    .f-listing-wrapper .f-listing-content {
        margin: 30px 0;
    }

    /* ======footer====== */
    .ftr-main {
        grid-template-columns: 100%;
        grid-column-gap: 0px;
    }

    /* ===stripe==== */
    .sign-form-main .form-field-m-wrapper .form-field {
        width: calc(100% - 0px);
    }
}

@media (min-width: 1024px) {
    .sidebar {
        width: 240px !important;
    }

    .home-section nav {
        width: calc(100% - 240px) !important;
        left: 240px !important;
    }

    .home-section {
        width: calc(100% - 240px) !important;
        left: 240px !important;
    }
}

@media (min-width: 768px) {
    #mblnav {
        display: none !important;
    }
}