body {
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
}

div,
p,
button,
input {
    font-family: "Nunito Sans", sans-serif;
}

.header-containter {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-containter .header-action-container {
    width: 100%;
    height: 65%;
}

.header-containter .header-action-container .action-child-container {
    width: 80%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-containter
    .header-action-container
    .action-child-container
    .header-options
    p {
    margin: 0;
}

.header-containter
    .header-action-container
    .action-child-container
    .header-options {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 25px;
    min-width: 30%;
}

.header-containter
    .header-action-container
    .action-child-container
    .header-options
    .support-item {
    height: 20px;
    width: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 25px;
    justify-content: center;
    background: #f4f4f4;
    border: none;
    color: #8c193f;
    cursor: pointer;
}

.header-containter
    .header-action-container
    .action-child-container
    .header-options
    .loginBtn {
    border-radius: 50px;
    width: 150px;
    font-size: 16px;
    border: none;
    background: #8c193f;
    color: white;
    cursor: pointer;
    height: 50px;
}

.header-containter
    .header-action-container
    .action-child-container
    .header-options
    .loginBtn:hover {
    background: #fff;
    border: 1px solid #8c193f;
    color: #8c193f;
}

.header-containter .header-links-container .links-child-container {
    width: 80%;
    margin: 0 auto;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-containter .header-links-container .links-child-container > ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.header-containter .header-links-container .links-child-container > ul > li {
    list-style-type: none;
    cursor: pointer;
    font-size: 0.8vw;
}

.header-containter
    .header-links-container
    .links-child-container
    > ul
    > li:hover {
    border-bottom: 1px solid #fff;
    transition: all ease-in 0.2s;
}

.header-containter
    .header-links-container
    .links-child-container
    > ul
    > li
    > a {
    color: #fff;
    text-decoration: none;
}

.header-containter .header-links-container {
    background: #8c193f;
    width: 100%;
    height: 35%;
}

.banner-container {
    width: 100%;
    position: relative;
}

.banner-container > img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.banner-container .banner-text {
    display: flex;
    flex-direction: column;
    width: 28%;
    position: absolute;
    top: 20%;
    left: 10%;
    gap: 10px;
}

.banner-container .banner-text .divider {
    width: 20%;
    border: 1px solid #eac218;
}

.banner-container .banner-text > h1 {
    font-size: 2.5vw;
    color: #fff;
    margin: 0px;
    font-weight: 500;
}

.banner-container .banner-text > h1 > span {
    color: #eac218;
    font-size: 2vw;
    font-weight: 600;
}

.banner-container .banner-text > h1 > span > span {
    font-size: 2.5vw;
    font-style: italic;
}

.banner-container .banner-text > p {
    color: white;
    font-size: 1vw;
}

.banner-container .filter-card-row1 {
    position: absolute;
    bottom: 30%;
    right: 10%;
    width: 40vw;
    display: flex;
    gap: 30px;
}

.banner-container .filter-card-row2 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 40vw;
    display: flex;
    gap: 30px;
}

.banner-container .filter-card {
    cursor: pointer;
    background-color: #57575766;
    backdrop-filter: blur(2px);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    height: 80px;
    padding-right: 20px;
    color: #fff;
}

.banner-container .filter-card > img {
    height: 100%;
    width: 35%;
    object-fit: cover;
}

.banner-container .quick-filter-v2 {
    display: none;
}

.banner-container .counter-items {
    width: fit-content;
    font-size: 1.5vw;
    font-weight: 600;
    position: absolute;
    bottom: 0px;
    left: 10%;
}

.promoter-banks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: auto 20px;
    text-align: center;
    width: 80%;
}

.promoter-banks-container .promoter-banks-title {
    font-size: 28px;
    font-weight: 540;
    margin-bottom: 30px;
}

.bank-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.bank-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    border-radius: 5px;
}

.bank-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.middle-completed-actions-to-effortless {
    width: 80%;
    display: flex;
    flex-direction: column;
    margin: 50px auto;
    margin-top: 50px;
}

.completed-auctions .completed-auctions-text {
    font-size: 40px;
    text-align: center;
    color: #171717;
    font-weight: 600;
}

.completed-auctions .completed-auctions-content {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 10px;
    justify-content: space-between;
}

.completed-auctions .completed-auctions-content .content-card {
    flex: 1 1 18%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    border: 1px solid #cccccc80;
    border-radius: 5px;
    cursor: pointer;
}

.completed-auctions .completed-auctions-content .content-card:hover {
    background-color: #8c193f !important;
    color: #fff !important;
}
.completed-auctions
    .completed-auctions-content
    .content-card:hover
    .content-card-value,
.completed-auctions
    .completed-auctions-content
    .content-card:hover
    .content-card-data {
    color: white !important;
}
.completed-auctions .completed-auctions-content .content-card:hover img {
    filter: brightness(0) invert(1);
}

.completed-auctions
    .completed-auctions-content
    .content-card
    .content-card-value {
    font-weight: 600;
    color: #272727;
    font-size: 2.5vw;
}

.completed-auctions
    .completed-auctions-content
    .content-card
    .content-card-data {
    font-weight: 400;
    color: #333333;
}

.making-bank-auctions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.making-bank-auctions .making-content-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.making-content-description {
    color: #000;
}

.making-bank-auctions .making-content-section .making-content-heading {
    font-size: 36px;
    font-weight: bold;
    width: 60%;
    margin-bottom: 15px;
}

.making-bank-auctions .making-content-section .making-content-description {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 20px;
    width: 80%;
}

.making-bank-auctions .making-content-section .know-more-button {
    padding: 10px 20px;
    background-color: white;
    color: #8c193f;
    border: 1px solid #8c193f;
    cursor: pointer;
    border-radius: 5px;
}

.making-bank-auctions .making-content-image-section {
    display: flex;
    justify-content: flex-end;
    width: 80%;
}

.making-content-image {
    /* max-width: 85%; */
    height: auto;
    object-fit: contain;
}

.effortless-property {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.effortless-property .effortless-content {
    display: flex;
    align-items: center;
}

.effortless-property .effortless-property-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}

.effortless-content {
    display: flex;
    align-items: center;
    height: 300px;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .effortless-content {
        flex-wrap: wrap;
        height: fit-content;
    }
}

.completed-auctions-image {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.effortless-property-description-text-1 {
    font-size: 24px !important;
    font-weight: 700;
}

.effortless-property-description-text-2 {
    font-size: 14px !important;
    font-weight: 300;
}

.effortless-content-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    padding: 30px 60px;
    width: 100%;
    height: 100%;
}

.effortless-content-card
    .effortless-property-description
    .effortless-property-description-text-1 {
    color: #ffffff;
    font-size: 24px;
}

.effortless-content-card
    .effortless-property-description
    .effortless-property-description-text-2 {
    color: #ffffff;
    font-size: 16.06px;
    letter-spacing: 0.5px;
}

.effortless-content-card
    .effortless-property-description-get-property
    .effortless-property-description-text-1 {
    color: #171717;
    font-size: 24px;
}

.effortless-content-card
    .effortless-property-description-get-property
    .effortless-property-description-text-2 {
    color: #171717;
    font-size: 16.06px;
}

@media (max-width: 998px) {
    .completed-auctions .completed-auctions-content {
        flex-wrap: wrap;
    }

    .completed-auctions .completed-auctions-content .content-card {
        flex: 1 1 25%;
    }

    .completed-auctions .completed-auctions-text {
        font-size: 24px;
        text-align: center;
        color: #171717;
    }

    .making-content-heading {
        font-size: 18px !important;
    }

    .making-bank-auctions .making-content-section .making-content-description {
        font-size: 12px;
    }

    .making-bank-auctions .making-content-image-section {
        justify-content: center;
        align-items: center;
    }

    .effortless-property .effortless-property-heading {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .middle-completed-actions-to-effortless {
        width: 90%;
        margin: auto;
    }

    .making-bank-auctions {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 30px;
    }

    .effortless-property .effortless-content {
        flex-direction: column;
        align-items: center;
    }

    .making-bank-auctions h2 {
        font-size: 18px;
    }

    .making-bank-auctions img {
        max-width: 100%;
        height: auto;
    }

    .making-content-heading {
        font-size: 18px !important;
    }

    .completed-auctions
        .completed-auctions-content
        .content-card
        .content-card-data {
        text-align: center;
        font-size: 12px;
    }

    .completed-auctions .completed-auctions-text {
        font-size: 18px;
        text-align: center;
        color: #171717;
    }

    .effortless-property .effortless-property-heading {
        font-size: 18px;
    }

    .making-bank-auctions .making-content-section .making-content-description {
        font-size: 12px;
    }

    .making-bank-auctions .making-content-section .know-more-button {
        font-size: 12px;
    }

    .effortless-content-card {
        padding: 20px;
        width: 90%;
    }

    .effortless-content-card
        .effortless-property-description
        .effortless-property-description-text-1 {
        font-size: 14px;
    }

    .effortless-content-card
        .effortless-property-description
        .effortless-property-description-text-2 {
        font-size: 12px;
    }

    .effortless-content-card
        .effortless-property-description-get-property
        .effortless-property-description-text-1 {
        font-size: 14px;
    }

    .effortless-content-card
        .effortless-property-description-get-property
        .effortless-property-description-text-2 {
        font-size: 12px;
    }

    .middle-completed-actions-to-effortless {
        gap: 10px;
        margin-top: 25px;
    }
}

@media (max-width: 1024px) {
    .bank-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .bank-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        border: none;
    }
}

@media (max-width: 480px) {
    .making-bank-auctions .making-content-section .making-content-heading {
        width: 100%;
        text-align: center;
    }

    .making-bank-auctions .making-content-section .making-content-description {
        line-height: 23px;
        font-size: 13px;
    }
    .bank-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        border: none;
    }

    .promoter-banks h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .bank-logo {
        box-shadow: none;
    }
    .making-bank-auctions .making-content-section {
        align-items: center;
    }
}

.mobile-section-container {
    background-color: #fcf6f2;
}

.app-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 40px 0px;
}

.app-content {
    max-width: 500px;
    flex: 1;
}

.app-content h4 {
    color: #8c193f;
    font-weight: 550;
    margin-bottom: 8px;
}

.app-content h2 {
    font-size: 31px;
    font-weight: 550;
    color: #222;
    margin-bottom: 20px;
    max-width: 350px;
}

.app-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.4;
}

.app-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.app-buttons img {
    height: 35px;
    cursor: pointer;
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;
}

.app-image img {
    max-width: 75%;
    height: auto;
}

@media (max-width: 768px) {
    .app-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .app-content,
    .app-image {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-buttons img {
        height: 30px;
    }

    .app-image img {
        max-width: 40%;
    }
}

@media (max-width: 480px) {
    .app-content p {
        font-size: 12px;
    }

    .app-content h2 {
        font-size: 20px;
    }

    .app-image img {
        max-width: 68%;
    }

    .app-buttons img {
        height: 33px;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.counter-item-1 p {
    color: #000;
}
.counter-item-1 span {
    font-weight: 800;
}

.property-count span {
    font-size: 13px;
}
.banner-container .counter-items > .counter-item-1 {
    opacity: 1;
}

.banner-container .counter-items > .counter-item-2 {
    opacity: 0;
    display: none;
}

@media (max-width: 1100px) {
    .banner-container .filter-card-row1 {
        bottom: 40% !important;
    }

    .banner-container .filter-card-row1,
    .banner-container .filter-card-row2 {
        width: 35vw;
    }

    .banner-container .filter-card {
        font-size: 12px;
        height: 60px;
    }
}

@media (max-width: 800px) {
    .banner-container .filter-card-row1,
    .banner-container .filter-card-row2 {
        display: none;
    }

    .quick-filter-v2 {
        display: none;
        /* position: absolute;
        top: 10px;
        gap: 10px;
        right: 50px;
        display: flex !important;
        width: 50%;
        flex-wrap: wrap;
        justify-content: flex-end; */
    }

    .banner-container .filter-card {
        font-size: 14px;
        height: 50px;
        width: auto;
        gap: 10px;
    }

    .header-containter .header-action-container .action-child-container {
        width: 100%;
    }

    .header-containter .header-links-container .links-child-container {
        width: 95%;
    }

    .header-containter .header-links-container .links-child-container > ul {
        width: 80%;
    }

    .completed-auctions
        .completed-auctions-content
        .content-card
        .content-card-value {
        font-weight: 600;
        color: #272727;
        font-size: 2.5vw;
    }
}

.frequently-ask-container {
    width: 80%;
    margin: 50px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.frequently-ask-container .image-section {
    display: flex;
    justify-content: flex-start;
    width: 80%;
}

.frequently-ask-container .freq-accordion > h3 {
    font-size: 33px;
    font-weight: 600;
}

.frequently-ask-container .freq-accordion {
    width: 80%;
}
.accordion {
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    background-color: #fff;
}
.active.accordion {
    padding: 10px 18px 10px 18px !important;
}

.freq-accordion button {
    font-size: 16px;
    font-weight: 600;
}
.accordion:after {
    content: "\002B";
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.carousel-indicators .active:after {
    content: unset !important;
}

.active:after {
    content: "\002D";
}

.location-list-container .accordion:after {
    content: "\003E";
}

.location-list-container .active:after {
    content: "\2304";
}

.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 13px;
    font-weight: 300;
}

.panel > p {
    color: #000;
    /* margin-top: 15px; */
}

.image-section {
    max-width: 100%;
    /* height: 430px; */
    object-fit: contain;
}

@media (max-width: 1024px) {
    .frequently-ask-container .image-section {
        justify-content: center;
        align-items: center;
    }

    .frequently-ask-container {
        gap: 15px;
    }

    .freq-accordion > h3 {
        font-size: 20px !important;
    }

    .freq-accordion .accordion {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .image-section img {
        max-width: 100%;
        height: auto;
    }
    .frequently-ask-container {
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 30px;
        margin: 0 auto;
        width: 100%;
    }
    .freq-accordion > h3 {
        font-size: 18px !important;
    }
}

.investment-banner-container {
    width: 80%;
    margin: auto;
}
.investment-content-container {
    background-image: url(../../new_assets/images/redbanner.png);
    color: white;
    border-radius: 20px 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}
.investment-text-content-wrapper {
    margin-left: 5rem;
    flex: 1;
    max-width: 50%;
    padding: 1rem;
}
.investment-text-content-wrapper h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    margin-bottom: 10px;
    color: #efdfc6;
}
.investment-text-content-wrapper p {
    font-size: clamp(14px, 1.5vw, 18px);
    margin-bottom: 15px;
    color: #cccccc;
    font-weight: 300;
}
.investment-banner-btn {
    background-color: #efdfc6;
    border: none;
    padding: 12px 24px;
    font-size: clamp(14px, 1.2vw, 18px);
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    color: #55000c;
}
.image-investment-banner-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 50%;
}
.image-investment-banner-container img {
    height: auto;
    max-width: 100%;
    min-width: 250px;
    max-height: 350px;
}
@media (min-width: 2000px) {
    .investment-text-content-wrapper h2 {
        font-size: 40px;
    }
    .investment-text-content-wrapper p {
        font-size: 22px;
    }
    .investment-banner-btn {
        padding: 14px 28px;
        font-size: 20px;
    }
}
@media (max-width: 1200px) {
    .investment-text-content-wrapper {
        max-width: 60%;
    }
    .image-investment-banner-container img {
        max-height: 300px;
    }
    .investment-text-content-wrapper {
        margin-left: 3rem;
    }
}
@media (max-width: 768px) {
    .investment-content-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .investment-text-content-wrapper {
        max-width: 100%;
        margin-left: 1rem;
    }
    .image-investment-banner-container {
        justify-content: center;
        max-width: 100%;
    }
    .image-investment-banner-container img {
        max-height: 250px;
    }
}
@media (max-width: 480px) {
    .investment-text-content-wrapper h2 {
        font-size: 20px;
    }
    .investment-text-content-wrapper p {
        font-size: 14px;
    }
    .investment-banner-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    .image-investment-banner-container img {
        max-height: 200px;
    }
}
@media (max-width: 360px) {
    .investment-text-content-wrapper h2 {
        font-size: 18px;
    }
    .investment-text-content-wrapper p {
        font-size: 13px;
    }
    .investment-banner-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    .image-investment-banner-container img {
        max-height: 180px;
    }
}
.account-Assistant-banner-container {
    width: 80%;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.account-Assistant-banner-wrapper {
    background-image: url(../../new_assets/images/purplebanner.png);
    color: white;
    border-radius: 20px 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.account-Assistant-text-content {
    margin-left: 5rem;
    flex: 1;
    max-width: 50%;
    padding: 1rem;
}
.account-Assistant-text-content h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    /* margin-bottom: 10px; */
    color: #efdfc6;
}
.account-Assistant-text-content p {
    font-size: clamp(14px, 1.5vw, 18px);
    margin-bottom: 15px;
    color: #cccccc;
    font-weight: 300;
}
.account-Assistant-banner-btn {
    background-color: #efdfc6;
    border: none;
    padding: 12px 24px;
    font-size: clamp(14px, 1.2vw, 18px);
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    color: #220043;
    margin-top: 10px;
}
.image-account-Assistant-banner-container {
    flex: 1;
    display: flex;
    justify-content: space-around;
    max-width: 50%;
}
.image-account-Assistant-banner-container img {
    height: auto;
    max-width: 100%;
    min-width: 250px;
    max-height: 350px;
}
.account-Assistant-list-container {
    list-style: none;
    padding: 0;
    max-width: 600px;
}

.account-Assistant-list-container li {
    color: #efdfc6;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
}

.account-Assistant-icon {
    margin-top: -2px;
    height: 22px;
    width: 22px;
}
.account-Assistant-text {
    max-width: 85%;
    line-height: 20px;
}
@media (min-width: 2000px) {
    .account-Assistant-text-content h2 {
        font-size: 40px;
    }
    .account-Assistant-text-content p {
        font-size: 22px;
    }
    .account-Assistant-banner-btn {
        padding: 14px 28px;
        font-size: 20px;
    }
}
@media (max-width: 1200px) {
    .account-Assistant-text-content {
        max-width: 60%;
    }
    .image-account-Assistant-banner-container img {
        max-height: 300px;
    }
    .account-Assistant-text-content {
        margin-left: 3rem;
    }
    .account-Assistant-text {
        max-width: 85%;
    }
}
@media (max-width: 768px) {
    .account-Assistant-banner-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .account-Assistant-text-content {
        max-width: 100%;
        margin-left: 1rem;
    }
    .image-account-Assistant-banner-container {
        justify-content: center;
        max-width: 100%;
    }
    .image-account-Assistant-banner-container img {
        max-height: 250px;
    }
    .account-Assistant-text {
        max-width: 85%;
        text-align: left;
    }
}
@media (max-width: 480px) {
    .account-Assistant-text-content h2 {
        font-size: 20px;
    }
    .account-Assistant-text-content p {
        font-size: 14px;
    }
    .account-Assistant-banner-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    .image-account-Assistant-banner-container img {
        max-height: 250px;
    }
    .account-Assistant-text {
        font-size: 13px;
        max-width: 85%;
    }
}
@media (max-width: 360px) {
    .account-Assistant-text-content h2 {
        font-size: 18px;
    }
    .account-Assistant-text-content p {
        font-size: 13px;
    }
    .account-Assistant-banner-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    .image-account-Assistant-banner-container img {
        max-height: 250px;
    }
    .account-Assistant-text {
        font-size: 10px;
        max-width: 75%;
    }
}

/* .investment-banner-container {
    background: url('https://test.albionbankauctions.com/new_assets/investment.png') no-repeat center center/cover;
    color: white;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    margin: 50px auto;
    border-radius: 10px;
}
.account-banner-container {
    background: url('https://test.albionbankauctions.com/new_assets/investment.png') no-repeat center center/cover;
    color: white;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    margin: 50px auto;
    border-radius: 10px;
}

.investment-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 70px;
}

.investment-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -2px;
    color: #EFDFC6;
}

.investment-text {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 0.3px;
}

.investment-btn {
    background: #EFDFC6;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    color: #55000C;
}

.investment-btn:hover {
    background: #f5c67a;
}
@media screen and (max-width: 768px) {
    .investment-banner-container {
        width: 90%; 
        height: auto;
        padding: 40px 20px;
    }

    .account-banner-container {
        width: 90%; 
        height: auto;
        padding: 40px 20px;
    }

    .investment-content {
        padding: 30px;
    }

    .investment-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .investment-text {
        font-size: 14px;
    }

    .investment-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .investment-title {
        font-size: 22px; 
    }

    .investment-text {
        font-size: 13px;
    }

    .investment-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
} */

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 300;
    color: white;
    margin-bottom: 15px;
}

.custom-list li::before {
    content: "\2713";
    font-size: 18px;
    font-weight: bold;
    color: #9e44f8;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.location-list-container {
    width: 80%;
    margin: 50px auto;
}

.accordion-wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.accordion-column {
    width: 48%;
}

@media (max-width: 640px) {
    .accordion-column {
        width: 100%;
    }
}

.accordion-column .active {
    color: #8c193f;
}

.location-list-container > h3 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 0px;
}
.location-list-container > p {
    margin-top: 0px;
    margin-bottom: 25px;
    color: #000;
    font-size: 13px;
}

.filter-content {
    display: flex;
    flex-direction: column;
    border: 0px solid #dcdcdc;
    /* margin-top: 70px; */
    /* margin-left: 110px; */
    /* margin-right: 1091px; */
    box-shadow: 0px 4px 10px #dcdcdc;
    height: fit-content;
    position: sticky;
    top: 30px;
    padding: 25px;
    width: 25%;
}
.auction-card {
    display: flex;
    flex-direction: column;
}

.filter-name {
    color: #8c193f;
    font-weight: bold;
}

.filter-options select {
    width: 100%;
    height: 40px;
    padding: 8px;
    border: 1px solid #cccccc;
}

.advance-filter {
    margin-top: 20px;
    text-align: center;
}

.advance_filter_text {
    color: #8c193f;
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
}

.card-section {
    display: flex;
    /* border: 1px solid red; */
    width: 80%;
    margin: auto;
    gap: 30px;
    margin-top: 30px;
}

.auction-card {
    /* border: 0px solid #dcdcdc;
    box-shadow: 0px 4px 10px #dcdcdc; */
}

.auction-card-title {
    margin-left: 15px;
    margin-top: 10px;
}
.filter-selected {
    display: flex;
    gap: 8px;
    margin-left: 15px;
    margin-bottom: 25px;
}

.filter-selected span {
    border: 1px solid #8c193f;
    border-radius: 30px;
    padding: 5px;
    font-size: 10px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-content {
    margin-top: 10px;
    padding-left: 10px;
    border: 1px solid #dcdcdc;
    display: flex;
    flex-direction: column;
}

.card-content p {
    color: black;
}

.card-content span {
    display: flex;
    flex-direction: row;
}

.no-auction-message {
    text-align: center;
}

.no-auction-message p {
    color: #000;
}

.main_banner {
    position: relative;
    margin-top: 120px;
}

.content {
    position: absolute;
    top: 50%;
    left: 12%;
    margin-bottom: 25px;
}

.main__banner .image-content {
    position: absolute;
    top: 80%;
    left: 25%;
    margin-bottom: 25px;
    height: 200px;
    width: 60%;
    background-color: white;
    padding: 15px;
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    gap: 5px;
}

.main_banner_content_div {
    background-color: #8c193f;
    height: 350px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.main_banner_content_div h2 {
    color: #ffffff;
    font-size: 24px;
    padding: 25px 40px;
    width: 40%;
}

.pagination {
    margin: 10px auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 150px;
}

@media (max-width: 640px) {
    .pagination {
        padding-right: 0px;
        justify-content: center;
    }
}

.pagination a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px 21px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: 0.3s;
}

.pagination a.page {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a.active {
    background-color: #861b41;
    color: white;
    border: none;
}
.pagination a.active:hover {
    background-color: #861b41;
    color: white;
}

.pagination a:hover {
    background-color: #ddd;
    color: #861b41;
}

.pagination a.prev,
.pagination a.next {
    border: none;
    background: none;
    font-weight: bold;
}

.pagination a.prev:hover,
.pagination a.next:hover {
    text-decoration: underline;
}

.pagination a.disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}

.property-card {
    display: flex;
    position: relative;
    width: 100%;
    border: 1px solid #cccccc50;
    border-radius: 6px;
}

.property-card > div:nth-child(1) > img {
    height: 100%;
    width: 100%;
}

@media (max-width: 1200px) {
    .property-card {
        height: auto;
    }
}

.property-card p,
.property-card div {
    color: #000;
}

.property-card .bank-name {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    gap: 4px;
}

.property-card .property-tag {
    position: absolute;
    top: 0px;
    right: 20px;
    margin: 0px;
    padding: 2px 22px;
    border: none;
    clip-path: polygon(0 0, 100% 0, 95% 99%, 5% 100%);
    font-size: 14px;
}

.property-card .property-delete {
    position: absolute;
    top: 0px;
    right: 160px;
    margin: 0px;
    padding: 2px 22px;
    border: none;
    clip-path: polygon(0 0, 100% 0, 95% 99%, 5% 100%);
    font-size: 14px;
    cursor: pointer;
}

.property-card > div:nth-child(1) {
    width: 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #eee;
}

@media (max-width: 1200px) {
    .property-card > div:nth-child(1) {
        width: 35%;
    }
}

.property-card > div:nth-child(1) > img {
    object-fit: contain;
}

.property-card > div:nth-child(2) {
    width: 76%;
}

@media (max-width: 1200px) {
    .property-card > div:nth-child(2) {
        width: 65%;
    }
}

.property-card > div:nth-child(2) > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    /* height: 100%; */
    justify-content: space-between;
}

.property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(1),
.property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) {
    padding: 15px 30px;
}

.property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) h2,
.property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) p {
    margin: 0px;
}

.property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) > div {
    width: 15%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.property-details > div:not(:last-child) {
    border-right: 1px solid #eee;
}

@media (max-width: 1100px) {
    .property-details > div:not(:last-child) {
        border-right: 1px solid transparent;
    }
}

.property-details > div {
    margin-right: 5px;
    width: fit-content;
}

@media (max-width: 550px) {
    .property-details > div {
        margin-right: auto;
    }
}

@media (max-width: 1314px) {
    .property-card
        > div:nth-child(2)
        > div:nth-child(2)
        > div:nth-child(2)
        > div
        > a {
        font-size: 12px;
    }
    
    .removeInterest {
        font-size: 12px;
    }

    .property-details p {
        font-size: 11px !important;
    }
}

.property-card
    > div:nth-child(2)
    > div:nth-child(2)
    > div:nth-child(2)
    > div:nth-child(2) {
    width: 35%;
}

.property-card
    > div:nth-child(2)
    > div:nth-child(2)
    > div:nth-child(2)
    > div
    > p:nth-child(1) {
    color: gray;
    font-size: 18px;
    width: 90px;
}
.property-card
    > div:nth-child(2)
    > div:nth-child(2)
    > div:nth-child(2)
    > div
    > p:nth-child(2) {
    font-size: 16px;
}

.property-card
    > div:nth-child(2)
    > div:nth-child(2)
    > div:nth-child(2)
    > div
    p {
    margin: 0px;
}

.property-card
    > div:nth-child(2)
    > div:nth-child(2)
    > div:nth-child(2)
    > div:not(:last-child) {
    padding: 0px 10px;
    height: 100%;
}

.property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(4) {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    width: 95%;
}

.property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(4) > p {
    font-weight: 600;
    font-size: larger;
    margin: 0px;
    font-size: 16px;
}

@media (min-width: 1400px) {
    .property-card
        > div:nth-child(2)
        > div:nth-child(2)
        > div:nth-child(2)
        > div
        p {
        /* font-size: 14px !important; */
        padding: 0 3px;
    }
    .reserve_price {
        font-size: 19px !important;
    }
}

.property-card
    > div:nth-child(2)
    > div:nth-child(2)
    > div:nth-child(4)
    > button {
    background: #8c193f;
    color: #fff;
    border: none;
    width: fit-content;
    padding: 8px;
    width: 140px;
    font-size: medium;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid transparent;
}

.property-card
    > div:nth-child(2)
    > div:nth-child(2)
    > div:nth-child(4)
    > button:hover {
    background: #fff;
    color: #55000c;
    border: 1px solid #8c193f;
}

.property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) {
    display: flex;
    width: 100%;
    padding: 0px 10px 0px 10px;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.property-card .divider {
    width: 100%;
    height: 0.1px;
    border: 0.5px solid #eeeeee;
}

.property-card .property-location {
    display: flex;
    gap: 4px;
}

.property-card .property-location i {
    color: #8c193f;
}

.property-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.property-card h2 {
    font-size: larger;
}

.property-location-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.property-location-container i {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.property-location span {
    color: gray;
}

.main__banner {
    position: relative;
    display: none;
}

.main__banner .main_content {
    width: 80%;
    position: absolute;
    top: 35%;
    right: 0%;
    left: 0%;
    margin: auto;
    height: 80%;
}

.main__banner .main_content .content_data {
    display: flex;
    position: relative;
    height: 90%;
    padding: 10px;
}

.main__banner .main_content .content_data .property_text_div {
    background-color: #8c193f;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.main__banner
    .main_content
    .content_data
    .property_text_div
    .properties_available
    .properties_availble_text {
    color: #ffffff;
    font-size: 24px;
    padding: 25px 40px;
    width: 40%;
}
.main__banner .main_content .content_data .image-content {
    position: absolute;
    top: 20%;
    left: 25%;
    flex: 1;
    background-color: white;
    padding: 40px 40px 0px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
}
.main__banner .main_content .content_data .image-content .image-item {
    width: 32%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.image-content .image-item:nth-child(4),
.image-content .image-item:nth-child(5) {
    flex: 1;
}

.main__banner .main_content .content_data .image-content .image-item img {
    width: 95%;
    height: 30%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .card-section {
        width: 95% !important;
    }
    .property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 20px;
    }
    .property-card
        > div:nth-child(2)
        > div:nth-child(2)
        > div:nth-child(2)
        > div:not(:last-child) {
        border: none !important;
        width: 100% !important;
    }
    .property-card > div:nth-child(2) > div:nth-child(2) > div:nth-child(4) {
        flex-wrap: wrap;
        gap: 5px;
    }
    .property-card
        > div:nth-child(2)
        > div:nth-child(2)
        > div:nth-child(4)
        > button {
        padding: 4px;
        width: 110px;
        font-size: 14px;
    }
    .property-card
        > div:nth-child(2)
        > div:nth-child(2)
        > div:nth-child(4)
        > p {
        font-size: medium;
    }
    .main__banner .main_content {
        width: 80% !important;
        position: relative !important;
        top: 8% !important;
        right: 0% !important;
        left: 0% !important;
        margin: auto !important;
        height: 80% !important;
    }

    .main__banner .main_content .content_data {
        display: flex;
        position: relative;
        height: 90%;
        padding: 10px;
    }

    .main__banner .main_content .content_data .property_text_div {
        width: 50%;
        height: 70%;
    }

    .main__banner
        .main_content
        .content_data
        .property_text_div
        .properties_available
        .properties_availble_text {
        color: #ffffff;
        font-size: 24px;
        padding: 34px;
        width: 40%;
    }

    .main__banner
        .main_content
        .content_data
        .image-content
        .image-item
        .properties_description {
        font-size: 16px;
    }

    .main__banner > img {
        display: none;
    }

    .main__banner .main_content .content_data .image-content {
        top: 15%;
        left: 25%;
        padding: 40px 40px 0px 40px;
        display: flex;
        justify-content: space-between;
        height: 30.5%;
        padding: 10px;
        height: auto;
    }

    .main__banner .main_content .content_data .property_text_div {
        width: 50%;
        height: 100%;
    }

    .main__banner .main_content {
        width: 80%;
        position: absolute;
        top: 8%;
        right: 0%;
        left: 0%;
        margin: auto;
        height: 30%;
    }
}

@media (max-width: 768px) {
    .main__banner .main_content {
        width: 80% !important;
        top: 8% !important;
        right: 0% !important;
        left: 0% !important;
        margin: auto !important;
        height: 80% !important;
    }

    .main__banner .main_content .content_data .image-content {
        position: absolute;
        top: 20%;
        left: 12%;
        background-color: white;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 5px;
        height: max-content;
        padding: 10px;
    }

    .main__banner .main_content .content_data .property_text_div {
        width: 50%;
        justify-content: flex-start;
        height: 100%;
    }

    .main__banner
        .main_content
        .content_data
        .property_text_div
        .properties_available
        .properties_availble_text {
        color: #ffffff;
        font-size: 18px;
        padding: 10px;
        width: 40%;
    }

    .main__banner
        .main_content
        .content_data
        .image-content
        .image-item
        .properties_description {
        font-size: 12px;
    }

    .main__banner .main_content .content_data .image-content {
        position: absolute;
        top: 25%;
        left: 12%;
        background-color: white;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 5px;
        height: max-content;
        padding: 10px;
    }

    .main__banner .main_content {
        width: 80%;
        position: absolute;
        top: 8%;
        right: 0%;
        left: 0%;
        margin: auto;
        height: 30%;
    }
}

@media (max-width: 640px) {
    .main__banner .main_content {
        width: 90% !important;
        top: 8% !important;
        right: 0% !important;
        left: 0% !important;
        margin: auto !important;
        height: 60% !important;
    }

    .main__banner .main_content .content_data .image-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100%;
        left: 0% !important;
        gap: 15px;
        top: 35%;
    }

    .main__banner .main_content .content_data .image-content .image-item {
        width: 100%;
    }

    .main__banner .main_content .content_data .property_text_div {
        width: 50%;
        justify-content: flex-start;
        height: max-content;
    }

    .main__banner
        .main_content
        .content_data
        .image-content
        .image-item
        .properties_description {
        font-size: 14px;
    }
}

.advance-filter-form input {
    width: 100%;
    height: 40px;
    padding: 10px;
}

.advance-filter-form div {
    margin-top: 10px;
}

@media (max-width: 640px) {
    .auction-card {
        display: none;
    }
    .filter-content {
        margin-top: -15px;
        position: relative;
        width: 100%;
    }
    .card-section {
        flex-direction: column;
        margin-top: 0px;
        width: 95%;
    }
}

.custom-shadow {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.pagination .active:after {
    content: " ";
}

.filter-heading {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 640px) {
    .counter-item-1 {
        height: 15px;
    }
}

#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.2);
    border-top: 5px solid #8c193f; /* Change color if needed */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.links-child-container ul li {
    font-size: 16px !important;
}

.sort-filter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#sort {
    border-radius: 5px;
    color: #494d50;
}

@media (max-width: 578px) {
    .User-content {
        display: none !important;
    }
}

.districts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 600px) {
    .search-input {
        background: #fff;
        width: 100%;
        position: absolute !important;
        top: 0px;
        left: 0px;
        height: 100%;
        /* display: flex; */
        align-items: center;
        justify-content: center;
    }
    .search-input input {
        width: 99% !important;
    }

    .search-input span {
        top: 25px;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fade-out {
    animation: fadeOut 3s ease-in-out forwards;
}

.fade-out-error {
    animation: fadeOut 3s ease-in-out forwards;
}

/* @media (max-width: 425px) {

} */
.filter-options p {
    margin-bottom: unset !important;
    font-size: 12px;
}

.filter-options select {
    font-size: 13px;
    padding: 0 10px;
    height: 35px;
}
.upgrade_now:hover {
    color: #ffffff !important;
}
.WithoutLogin {
    text-decoration: underline !important;
}
.WithoutLogin:hover {
    color: #ffffff !important;
}

@media (max-width: 425px) {
    #search-box {
        margin-top: 17px;
    }
}
