main {
    /* height: 100dvh; */
    background-color: #000000;
    color: rgba(255, 255, 255, 1);
}

.breadcrumbs-page-title-filter__wrapper {
    padding: 147px 100px 60px;
    background-color: #070707;
    margin-bottom: 40px;
}
.breadcrumbs-page-title-filter__wrapper hr {
    border-color: rgba(176, 176, 176, 0.5);
}

.breadcrumbs-page-title__container {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    position: relative;
    align-items: center;
}

.breadcrumbs__container {
    display: flex;
    gap: 17px;
    align-items: center;
    position: absolute;
}

.breadcrumbs__container a {
    font-family: "AvenirNextLTPro-Regular";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
    color: rgba(176, 176, 176, 0.5);
}

.breadcrumbs__container span {
    font-family: "AvenirNextLTPro-Regular";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
}

.page-title {
    font-family: "Satoshi-Black";
    font-weight: 900;
    font-size: 40px;

    letter-spacing: 0.4px;
    text-align: center;
    flex: 1;
}

.page-title span {
    font-family: "Satoshi-Light";
    font-weight: 300;
    font-style: italic;
    font-size: 40px;

    letter-spacing: 0.4px;
    text-align: center;
}

.banner-filter-form-top {
    display: flex;
    gap: 20px;
}

.banner-filter-form-top-container {
    flex: 1;
}

.banner-filter-form-bottom {
    justify-content: flex-start;
}

.most-popular-header__container {
    border-radius: 1000px;
    border: 1px solid #ffffff;
    border-width: 1px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 74px;
    margin: auto;
}

.most-popular-header__title {
    font-family: "Satoshi-Regular";
    font-weight: 900;
    font-size: 40px;

    letter-spacing: 0.4px;
}

.most-popular-header__title span {
    font-family: "Satoshi-Light";
    font-weight: 300;
    font-style: italic;
    font-size: 40px;

    letter-spacing: 0.4px;
}

.most-popular-list__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 41px 23px;
    margin-top: 50px;
    padding: 0 40px 82px;
}

.like-button-container {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 10px;
}

.like-button-container .like-button {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .most-popular-list__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .most-popular-list__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .most-popular-list__wrapper {
        display: block !important;
        padding: 0 10px 40px;
        margin-top: 30px;
    }
    .most-popular-list__item {
        width: 90vw;
        max-width: 400px;
        margin-right: 20px;
        display: inline-block;
        vertical-align: top;
    }
    .swiper {
        width: 100vw;
        padding-left: 10px;
        padding-right: 10px;
    }
    .swiper-slide {
        width: 90vw !important;
        max-width: 400px;
        height: auto;
        display: flex;
        justify-content: center;
    }
}
.most-popular-list__item-img-container {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
}

.most-popular-list__item-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}
.most-popular-list__item:hover .most-popular-list__item-img-container img {
    transform: scale(1.2);
}

.most-popular-list__item-title {
    font-family: "Satoshi-Regular";
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.24px;
    padding: 17px 10px;
    width: fit-content;
}

.most-popular-list__item-title::after {
    content: "";
    background: white;
    display: block;
    border: 1px solid white;
    width: 100%;
    margin-top: 3px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.most-popular-list__item:hover .most-popular-list__item-title::after {
    opacity: 1;
}

.discover-top-commercials {
    padding: 94px 149px;
    background: #1e1e1e;
}

.discover-top-commercial-item__container:not(:last-child) {
    margin-bottom: 80px;
}

.discover-top-commercial__title {
    font-family: "Satoshi-Regular";
    font-weight: 700;
    font-style: italic;
    font-size: 40px;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 33px;
}

.discover-top-commercial__title span {
    font-family: "Satoshi-Light";
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 0.5px;
}

.discover-top-commercial__content {
    border-bottom: 1px solid #b0b0b080;
    padding: 20px 0;
}

.discover-top-commercial__content p {
    font-family: "Satoshi-Light";
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.2px;
    /* white-space: break-spaces; */
    opacity: 0.75;
}

.investments-insight {
    padding: 60px 40px 50px;
}

.investments-insight-header__container {
    border-radius: 1000px;
    border: 1px solid #ffffff;
    border-width: 1px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 74px;
}

.investments-insight-header__title {
    font-family: "Satoshi-Regular";
    font-weight: 900;
    font-size: 40px;
    letter-spacing: 0.4px;
}

.investments-insight-header__title span {
    font-family: "Satoshi-Light";
    font-weight: 300;
    font-style: italic;
    font-size: 40px;
    letter-spacing: 0.4px;
}

.best-properties {
    margin-bottom: 50px;
}

.best-properties .best-properties-extra {
    border-bottom: 1px solid #b0b0b080;
    padding-bottom: 40px;
}

.best-properties-header__title {
    font-family: "Satoshi-Regular";
    font-weight: 900;
    font-size: 40px;
    letter-spacing: 0.4px;
    text-align: center;
    margin: 40px auto;
}

.best-properties-header__title span {
    font-family: "Satoshi-Light";
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 0.4px;
}
.best-properties-header__description {
    font-family: "Satoshi-Light";
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.2px;
    /* white-space: break-spaces; */
    opacity: 0.75;
}

.best-properties-extra__description {
    font-family: "AvenirNextLTPro-Regular";
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.2px;
}

.best-properties-extra__description .extra-description {
    font-family: "AvenirNextLTPro-Regular";
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.2px;
    opacity: 0.75;
}
.best-properties-extra__description .asterisk {
    color: #df6147;
}

.investment-through-agent {
    padding: 94px 149px;
    background: #1e1e1e;
}

.investment-through-agent-item__container:not(:last-child) {
    margin-bottom: 80px;
}

.investment-through-agent__title {
    font-family: "Satoshi-Regular";
    font-weight: 700;
    font-style: italic;
    font-size: 40px;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 33px;
}

.investment-through-agent__title span {
    font-family: "Satoshi-Light";
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 0.5px;
}

.investment-through-agent__content {
    border-bottom: 1px solid #b0b0b080;
    padding: 20px 0;
}

.investment-through-agent__content p {
    font-family: "Satoshi-Light";
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.2px;
    /* white-space: break-spaces; */
    opacity: 0.75;
}

.faqs {
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.faq-left {
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    min-height: 1080px;
    background: #1e1e1e;
    padding: 60px 40px 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-left h2 {
    font-family: "Satoshi-Bold", sans-serif;
    font-weight: 400;
    font-size: 100px;
    color: #fff;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.faqs.active .faq-left h2 {
    opacity: 1;
}

.faq-left p {
    font-family: "Satoshi-Medium", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    padding-bottom: 20px;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.faqs.active .faq-left p {
    opacity: 1;
}

.faq-button {
    width: fit-content;
    height: fit-content;
    padding: 10px 6px 10px 15px;
    border: 1px solid #565656;
    font-size: 16px;
    transition: 0.6s ease-in-out;
    transform: translateY(130px);
}

.faqs.active .faq-button {
    transform: translateY(0);
}

.home-faq-right {
    width: 100%;
    max-width: 1440px;
    padding: 0 35px;
}

/* FAQ Accordion */
.faq-accordion {
    width: 100%;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    transform: translateY(0);
}

.faqs.active .faq-accordion {
    transform: translateY(10px);
}

.faq-accordion-item {
    border-bottom: 1px solid #424242;
    transition: 0.3s ease-in-out;
}

.faq-accordion-item.active {
    background: #121212;
}

.faq-accordion-item:first-child {
    border-top: 1px solid #424242;
}

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 25px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-accordion-header:hover {
    background: #121212;
}

.faq-accordion-content {
    font-family: "Satoshi-Light", sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 0px 85px 0px 85px;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 350px;
    /* Adjust height as needed */
    opacity: 1;
}

.faq-accordion h5 {
    font-family: "Satoshi-Light", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
}

.faq-accordion span {
    font-family: "Satoshi-Light", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #424242;
}

.faq-accordion-header > div {
    display: flex;
    align-items: center;
    gap: 40px;
}

.faq-accordion-header img {
    transition: 0.3s ease-in-out;
    transform: rotate(0deg);
}

.faq-accordion-item.active img {
    transform: rotate(134deg);
}

.best-warehouse-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin: 40px 0;
}
@media (max-width: 1200px) {
    .best-warehouse-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .best-warehouse-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .best-warehouse-list {
        display: block;
        padding: 0 10px 40px;
        margin: 30px 0;
    }
    .best-warehouse-list__item {
        width: 90vw;
        max-width: 400px;
        margin: 0 auto 20px auto;
        display: block;
    }
}

.best-warehouse-list__item {
    background: #1a1a1a;
    padding: 15px 18px;
    border-radius: 10px;
    width: 100%;
}

.best-warehouse-item-img__container {
    height: 300px;
    position: relative;
}

.best-warehouse-item-img__container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.best-warehouse-item-img__container span {
    font-family: "Satoshi-Regular";
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-radius: 1000px;
    background: #ffa500;
    position: absolute;
    top: 12px;
    right: 8.5px;
}

.best-warehouse-item__title {
    font-family: "Satoshi-Regular";
    font-weight: 700;
    font-style: italic;
    font-size: 19px;

    letter-spacing: 0.24px;
    color: #df6147;
    padding: 15px 0;
}

.best-warehouse-item__average-price-per-sqft,
.best-warehouse-item__average-price {
    font-family: "Satoshi-Light";
    font-weight: 300;
    font-size: 17px;

    letter-spacing: 0.2px;
    opacity: 0.7;

    display: flex;

    justify-content: space-between;
}

.best-warehouse-item__average-price-per-sqft span,
.best-warehouse-item__average-price span {
    display: inline-block;
    font-family: "Satoshi-Regular";
    font-weight: 400;
    font-size: 14px;

    letter-spacing: 0.2px;
    opacity: 1;
}

.best-warehouse-item__action {
    width: 100%;
    /* height: 65px; */
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    border-radius: 10px;
    border-width: 1px;
    border: 1px solid #ffffff33;
    margin-top: 15px;
    font-family: "AvenirNextLTPro-Regular";
    font-weight: 400;
    font-size: 18px;

    letter-spacing: 0.18px;
    cursor: pointer;
    background-color: #1a1a1a;
    transition: transform 0.4s cubic-bezier(0.54, 0.43, 0, 0.97),
        background-color 0.4s cubic-bezier(0.54, 0.43, 0, 0.97);
    transform-origin: center;
}

.best-warehouse-item__action:hover {
    background-color: #ffffff;
    color: #000000;
}

.contact-details__container {
    margin-top: 45px;
}

.contact-detail__item {
    margin-bottom: 20px;
}

.contact-detail__item:last-child {
    margin-bottom: 45px;
}

.contact-detail-item__title {
    color: #d5d5d5;
    font-family: "Satoshi-Regular";
    font-weight: 300;
    font-size: 18px;

    letter-spacing: 0.18px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.contact-detail-item__value {
    font-family: "Satoshi-Regular";
    font-weight: 300;
    font-size: 20px;

    letter-spacing: 0.2px;
}

.constact-us-socials {
    justify-content: center;
}

@media (max-width: 900px) {
    .breadcrumbs-page-title__container {
        display: flex;
        justify-content: space-between;
        padding: 40px 0 0 0;
        position: relative;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .breadcrumbs__container {
        position: unset;
    }

    .most-popular-header__title,
    .most-popular-header__title span {
        font-weight: 900;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1%;
        text-align: center;
    }

    .discover-top-commercial__title,
    .discover-top-commercial__title span {
        font-weight: 300;
        font-style: Light;
        font-size: 30px;
        line-height: 100%;
        letter-spacing: 1%;
        text-align: center;
    }

    .investments-insight-header__container {
        margin: auto;
    }

    .investments-insight-header__title,
    .investments-insight-header__title span,
    .best-properties-header__title,
    .investment-through-agent__title,
    .investment-through-agent__title span {
        font-size: 30px;
    }

    .investments-insight,
    .discover-top-commercials,
    .investment-through-agent {
        padding: 40px 20px;
    }

    .best-properties-header__description,
    .discover-top-commercial__content p,
    .investment-through-agent__content p {
        font-size: 16px;
        white-space: normal;
    }

    .most-popular-header__container {
        max-width: 320px;
    }

    .best-properties-extra__description {
        font-size: 16px;
    }

    .home-faq-right {
        padding: 0 10px;
    }

    .home-faq-left {
        margin: 47px 0 0;
    }

    .most-popular-list__item-img-container {
        height: 350px;
    }

    .breadcrumbs-page-title-filter__wrapper {
        padding: 147px 10px 60px;
    }
}
