/* 
Theme: Default Landing Page
----------------------------
 */


/* Global Styles ----------------------------------------- */
body {
    background-color: var(--pageBackgroundColor);
    color: var(--bodyTextColor);
    font-family: var(--bodyText-font), 'Inter', sans-serif;
}


/* Header  Styles ----------------------------------------- */

.landingHeaderContainer {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background-color: var(--pageBackgroundColor);
}

.landingMenuItem {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #6a6a68;
    cursor: pointer;
    margin: 0 12px;
}

.landingMenuItem:hover {
    color: #0f0f0f;
}

.headerSelectCurrencyButton {
    gap: 4px;
    align-items: center;
    display: inline-flex;
    cursor: pointer;
}

.BookNowButton {
    display: none;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    justify-content: center;
    align-items: center;
    color: var(--primaryButtonTextColor);
    white-space: nowrap;
    cursor: pointer;
    height: 40px;
    border: 0.5px solid #00000026;
    background-color: var(--primaryButtonBackgroundColor);
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;

    @media (min-width: 768px) {
        display: flex;
        padding: 0 24px;
    }
}

/* Main Container ----------------------------------------- */


.landingMainContainer {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    background-color: var(--pageBackgroundColor);


    @media (min-width: 768px) {
        max-width: 834px;
        padding: 0 32px;
    }


    @media (min-width: 1024px) {
        padding: 0 48px;
        max-width: 1280px;

    }

    @media (min-width: 1280px) {
        max-width: 1232px;
    }
}


/* Navigation ----------------------------------------- */

.navigationAlignment-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    @media (min-width: 1024px) {
        justify-content: center;
    }
}

.navigationAlignment-center .landingLogoContainer {
    order: 2;
    align-items: center;
    justify-content: flex-start;
    width: 100%;

    @media (min-width: 1024px) {
        justify-content: center;

    }
}

.navigationAlignment-center .landingMenuContainer {
    order: 1;
    width: fit-content;
}

.navigationAlignment-center .landingHeaderActionsContainer {
    order: 3;
}

.navigationAlignment-center .headerSelectCurrencyButton {
    padding-right: 20px;
}

.landingMenuContainer {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;

    @media (min-width: 1024px) {
        display: flex;
    }

}

.landingHeaderActionsContainer {
    width: fit-content;
}

.headerContactButton {
    background-color: var(--secondaryButtonBackgroundColor);
    color: var(--secondaryButtonTextColor);
}


/* Hero Container ----------------------------------------- */

.landingHeroContainer {

    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    background-color: var(--pageBackgroundColor);


    @media (min-width: 768px) {
        flex-direction: row;
        margin-top: 64px;
        gap: 16px;

    }

    @media (min-width: 1024px) {
        margin-top: 80px;
    }
}

/* Hero Heading ----------------------------------------- */

.landingHeroHeading {

    letter-spacing: -0.02em;
    overflow-wrap: break-word;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--headingColor);

    @media (min-width: 1024px) {
        line-height: 76px;
        letter-spacing: -0.04em;
        font-size: 64px;
    }
}

.landingHeroImageContainerWide .landingHeroHeading {

    color: var(--pageBackgroundColor);

    @media (min-width: 1024px) {
        font-size: 72px;
        line-height: 76px;
    }
}

/* Hero Subheading ----------------------------------------- */

.landingHeroSubHeading {

    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
    font-weight: 400;
    color: var(--subHeadingColor, #6b6b6b);


    @media (min-width: 768px) {
        margin-bottom: 40px;
    }
}

.landingHeroImageContainerWide .landingHeroSubHeading {
    color: var(--pageBackgroundColor);
}

/* Hero Image Container ----------------------------------------- */
.landingHeroImageContainer {
    width: 100%;
    height: 238px;
    overflow: hidden;
    margin-bottom: 24px;

    @media (min-width: 768px) {
        width: 50vw;
        height: 600px;
        margin-bottom: 0;
        margin-right: -100%;
        transform: translateX(-16px);
        padding-left: 16px;
    }
}

/* Hero Image ----------------------------------------- */
.landingHeroImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;

    @media (min-width: 768px) {
        width: 456px;
        min-width: 456px;
        max-width: 456px;
    }

    @media (min-width: 1024px) {
        width: 817px;
        min-width: 817px;
        max-width: 817px;
    }


}

/* Hero Search Bar ----------------------------------------- */


.landingSearchBarDropDown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 56px;
    padding: 16px;
    border: 0.5px solid color-mix(in srgb, var(--iconColor) 50%, var(--pageBackgroundColor) 50%);
    border-radius: 12px;
}


.landingSearchBarDropDownTitle {
    color: var(--bodyTextColor, #292926);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: 500;


}

.landingSearchBarActionsContainer {
    display: flex;
    margin-top: 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    width: 100%;


    @media (min-width: 1024px) {
        flex-direction: row;
    }

}

.landingSearchBarButtonContainer {
    width: 100%;

    @media (min-width: 1024px) {
        width: 50%;
    }

}

.landingSearchBarSubmitButton {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 24px;
    white-space: nowrap;
    border-radius: 12px;
    background-color: var(--primaryButtonBackgroundColor);
    color: var(--primaryButtonTextColor);
    width: 100%;
    position: relative;
}

.landingSearchBarSubmitButton:hover {
    opacity: 0.9;
}

/* Featured Properties ----------------------------------------- */

.landingFeaturedPropertiesContainer {

    padding-top: 64px;

    @media (min-width: 1024px) {
        padding-top: 112px;
    }
}


/* Featured Items Grid */


.featuredGrid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    row-gap: 32px;
}

.landingFeaturedItem {
    position: relative;
    width: 100%;
    min-width: 100%;

    @media (min-width: 768px) {
        width: calc(100% / 3 - 10.67px);
        min-width: calc(100% / 3 - 10.67px);
    }
}

.featuredGridItem {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    cursor: pointer;

    @media (min-width: 1024px) {
        max-width: calc(33% - 13px);

    }
}

.featuredImageItemContainer {
    max-height: 400px;
    overflow: hidden;
    margin-bottom: 8px;

}

.featuredGridItem .featuredItemImage {
    margin: 0;
    width: 100%;
    height: 100%;
}

.landingSectionHeader {

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 32px;

    @media (min-width: 1024px) {
        flex-direction: row;
        align-items: center;
        margin-bottom: 64px;
        gap: 16px;
    }

    @media (min-width: 1280px) {
        margin-bottom: 80px;
    }


}

.landingFeaturedPropertiesContainer .landingFeaturedSectionHeader {
    padding-top: 0;
    border: none;
}

.landingFeaturedSectionHeader.themeAligned-center,
.landingSectionHeader.themeAligned-center {
    align-items: center;
    flex-direction: column;
}

.themeAligned-center {
    align-items: center;
}

.themeAligned-center .landingSectionTitle,
.themeAligned-center .landingSectionSubTitle,
.themeAligned-center .sectionMetaTitle,
.themeAligned-center .landingFeaturedPropertiesSubTitle {
    text-align: center;
}

.landingSectionTitleContainer {

    width: 100%;
    margin-bottom: 16px;

    @media (min-width: 1024px) {
        width: 50%;
        margin-bottom: 0;
    }


}


.landingSectionTitle {

    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    font-family: var(--headingFont);
    color: var(--headingColor);
    letter-spacing: -0.03em;

    @media (min-width: 1024px) {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: -0.02em;
        font-weight: 600;
    }
}

.landingSectionSubTitle {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: rgb(107 107 107 / var(--tw-text-opacity, 1));

    @media (min-width: 768px) {
        text-align: right;
    }

    @media (min-width: 1024px) {
        width: 50%;
    }
}

.themeAligned-center .landingSectionSubTitle {
    text-align: center;
}

.featuredImageContainer {

    width: 100%;
    height: 358px;
    border-radius: 0.75rem;

    @media (min-width: 768px) {
        height: 224px;
    }

    @media (min-width: 1024px) {
        height: 298px;
    }

    @media (min-width: 1280px) {
        height: 368px;
    }
}

.landingFeaturedItem {


    width: 100%;
    min-width: 100%;

    @media (min-width: 768px) {
        width: calc(100% / 3 - 10.67px);
        min-width: calc(100% / 3 - 10.67px);
    }
}

.featuredItemImage {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    width: 408px;
    height: 408px;

}

.featuredPropertyName {
    cursor: pointer;
    margin-bottom: 4px;
    text-overflow: ellipsis;
    letter-spacing: 0.04em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.featuredMetaDataContainer {}

.featuredAddressContainer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
}

.featuredPropertyAddress {
    color: var(--subHeadingColor, #292926);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    font-weight: 600;
    text-overflow: ellipsis;
    letter-spacing: 0.04em;
    padding-right: 16px;
}

.featuredBedInfo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--bodyTextColor);
    opacity: 0.8;
}

.featuredItemPrice {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.04em;
    font-weight: 500;
    color: var(--bodyTextColor, #6a6a68);
    white-space: nowrap;
}

.featuredGrid .featuredImageItemContainer {
    margin-bottom: 16px;
}

.featuredGrid .featuredItemPrice {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    position: absolute;
    top: 18px;
    right: 18px;
    font-weight: 600;
    background-color: var(--pageBackgroundColor);
    padding: 8px 12px;
    border-radius: 8px;
}

.featuredGrid .featuredMetaDataContainer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.featuredGrid .featuredPropertyName {
    font-size: 14px;
    margin-bottom: 0;
}

.featuredGrid .featuredBedInfo {
    font-size: 12px;
}


/* About Us ----------------------------------------- */

.landingAboutUsContainer {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0 !important;
}

.landingSectionHeader {
    width: 100%;
    flex-shrink: 0;
}

.landingAboutUsTitle {}

.landingAboutUsContent {


    display: flex;
    flex-direction: column;

    gap: 16px;
    width: 100%;

    @media (min-width: 1024px) {
        flex-direction: row;
        align-items: center;

    }
}

.landingAboutUsTextContainer {
    /* w-full lg:w-1/2 lg:pr-[64px] xl:pr-[96px] */
    width: 100%;
    margin-bottom: 16px;

    @media (min-width: 1024px) {
        width: 50%;
        padding-right: 64px;
    }
}

.landingAboutUsText {
    font-weight: 400;
    font-size: 16px;
    overflow-wrap: break-word;
    line-height: 24px;
    color: var(--bodyTextColor, #6b6b6b);


    @media (min-width: 768px) {
        font-size: 20px;
        line-height: 28px;
    }


}

.landingAboutUsImageContainer {
    width: 100%;
    margin-top: 16px;

    @media (min-width: 1024px) {
        max-width: 50%;
        margin-top: 0;
    }
}

.landingAboutUsImage {
    border-radius: 24px;
    object-fit: cover;
    width: 100%;
    height: 358px;

    @media (min-width: 768px) {
        height: 480px;
    }

    @media (min-width: 1024px) {
        height: 560px;
    }
}


/* About Us Style #2 - Centered */
.themeAboutUs-full-width {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    @media (min-width: 768px) {
        flex-wrap: wrap;
        flex-direction: row;
    }
}

.themeAboutUs-full-width .landingAboutUsHeader {
    width: 100%;
}

.themeAboutUs-full-width .landingAboutUsTextContainer {
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-bottom: 32px;

    @media (min-width: 768px) {
        margin-bottom: 64px;

    }

}

.themeAboutUs-full-width .landingAboutUsImageContainer {
    width: 100%;
    max-width: unset;
}


.themeAboutUs-full-width .landingAboutUsContent {
    align-items: center;
    text-align: center;
    position: relative;
    height: calc(100% - 10px);
    padding: 10px 0 0;
    display: block;

    @media (min-width: 768px) {
        padding: 64px 0;
    }
}


/* Trust & safety Signals ----------------------------------------- */

.landingTrustSafetyContainer {


    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-top: 32px;

    @media (min-width: 768px) {
        flex-direction: row;
        gap: 32px;
    }

    @media (min-width: 1024px) {
        margin-top: 64px;
    }

    @media (min-width: 1280px) {
        margin-top: 80px;
    }
}

.landingTrustSafetyBlock {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;


    @media (min-width: 768px) {
        width: calc(50% - 16px);
    }
}

.trustSafetyItem {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trustSafetyIcon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.trustSafetyIcon.inactive {
    opacity: 0.3;
}

.trustSafetyItemName {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--bodyTextColor, #292926);
}

.trustSafetyItemValue {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--bodyTextColor, #292926);

}


/* What sets us apart ----------------------------------------- */

.landingWhatSetsUsApartContainer {

    background-color: var(--pageBackgroundColor);
    width: 100%;
    padding-top: 64px;


    @media (min-width: 1280px) {
        padding-top: 80px;

    }
}

.landingWhatSetsUsApartTitleContainer {
    /* flex flex-col lg:flex-row lg:items-center md:gap-[16px] justify-between mb-[32px] lg:mb-[48px] */

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 32px;
    align-items: flex-start;

    @media (min-width: 768px) {
        gap: 0;
    }


    @media (min-width: 1024px) {

        margin-bottom: 48px;

    }


}

.landingWhatSetsUsApartTitle {
    color: var(--headingColor);
    font-family: var(--headingFont);
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    letter-spacing: -0.03em;

    @media (min-width: 1024px) {
        letter-spacing: -0.02em;
    }
}

.landingWhatSetsUsApartSubTitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 8px;
}


.landingWhatSetsUsApartItemImage {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 171px;

    @media (min-width: 768px) {
        height: 164px;
    }

    @media (min-width: 1024px) {
        height: 272px;
    }

}

.landingWhatSetsUsApartItemImage.isFourPerRow {

    /* 'lg:h-[141px] xxl:h-[176px]' : 'lg:h-[272px] xxl:h-[272px] */
    @media (min-width: 1024px) {
        height: 141px;
    }

    @media (min-width: 1280px) {
        height: 176px;
    }
}

.landingWhatSetsUsApartItemTitle {
    color: var(--headingColor);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-top: 16px;
    min-height: 20px;
}

.landingWhatSetsUsApartItemText {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
}

/* List your Property -------------------------- */

.merchantListPropertyContainer {
    background-color: var(--pageBackgroundColor);
    width: 100%;
    padding-top: 64px;

    @media (min-width: 1280px) {
        padding-top: 80px;
    }
}


.merchantListPropertyHeader {


    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 32px;

    @media (min-width: 768px) {
        gap: 16px;
    }

    @media (min-width: 1024px) {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 64px;
    }

    @media (min-width: 1280px) {
        margin-bottom: 80px;
    }

}

.merchantListPropertyTitleContainer {

    width: 100%;
    margin-bottom: 16px;

    @media (min-width: 1024px) {

        width: 50%;
        padding-right: 64px;
        margin-bottom: 0;
    }

    @media (min-width: 1280px) {
        padding-right: 96px;
    }

}

.merchantListPropertyTitle {
    color: var(--headingColor);
    font-family: var(--headingFont);
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.03em;

    @media (min-width: 1024px) {
        font-size: 40px;
        line-height: 40px;
        font-weight: 600;
        letter-spacing: -0.02em;
    }
}

.merchantListPropertySubTitle {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    width: 100%;


    @media (min-width: 1024px) {
        width: 50%;
    }
}

.merchantListPropertyContent {

    display: flex;
    flex-direction: column;
    row-gap: 32px;
    column-gap: 16px;
    width: 100%;

    @media (min-width: 1024px) {
        flex-direction: row;
        align-items: center;
    }
}

.merchantListPropertyImageContainer {

    width: 100%;


    @media (min-width: 1024px) {
        width: 50%;
        padding-right: 64px;
    }

    @media (min-width: 1280px) {
        padding-right: 96px;
    }
}

.merchantListPropertyImage {
    border-radius: 24px;
    object-fit: cover;
    width: 100%;
    height: 358px;

    @media (min-width: 768px) {
        height: 480px;
    }

    @media (min-width: 1024px) {
        height: 464px;
    }
}

.merchantListServicesTitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;

}

.merchantListServicesText {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-left: 16px;

    @media (min-width: 768px) {
        font-size: 20px;
        line-height: 24px;
        padding-right: 16px;
    }

    @media (min-width: 1024px) {
        padding-right: 0;
    }
}


.merchantListLearnMoreButton {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    border: 1px solid #e3e3de;
    border-radius: 12px;
    white-space: nowrap;
    margin-top: 2rem;
    color: #0f0f0e;
}


/* FAQs --------------------------------------------- */

.landingFAQsContainer,
.landingSectionContainer {
    width: 100%;
    padding-top: 64px;
    background-color: var(--pageBackgroundColor);

    @media (min-width: 1280px) {
        padding-top: 80px;
    }
}

.landingFAQsHeader,
.landingSectionHeader {
    width: 100%;
    padding-top: 64px;
    border-top: 0.5px solid #00000026;

    @media (min-width: 1280px) {
        padding-top: 80px;
    }
}

.landingFAQsTitleContainer {
    width: 100%;


    @media (min-width: 1024px) {
        width: 50%;
        padding-right: 64px;
    }

    @media (min-width: 1280px) {
        padding-right: 96px;
    }

}

.landingFAQsTitle {
    color: var(--headingColor);
    font-family: var(--headingFont);
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    letter-spacing: -0.03em;

    @media (min-width: 1024px) {
        font-size: 40px;
        line-height: 40px;
        font-weight: 600;
        letter-spacing: -0.02em;
    }
}

.landingFAQItemContainer {
    padding: 32px;
    border-radius: 24px;
    background-color: color-mix(in srgb, var(--pageBackgroundColor) 75%, var(--bodyTextColor) 15%);

    @media (min-width: 768px) {
        padding: 48px;
    }

}

.landingFAQQuestion {
    font-size: 20px;
    line-height: 24px;
    padding-right: 16px;
    word-break: break-word;
    color: color-mix(in srgb, var(--pageBackgroundColor) 10%, var(--bodyTextColor) 85%);
}

.landingFAQAnswer {
    font-size: 20px;
    line-height: 24px;
    word-break: break-word;
}


/* Reviews --------------------------------------------------- */

.reviewItemChannelContainer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.reviewItemChannel {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    margin-right: 12px;
    color: #6b6b6b;
}

.reviewItemSource {
    /* text-grayscale-900 */
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #0f0f0f;

}

.reviewItemSourceContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding: 0 32px;

    @media (min-width: 1024px) {
        padding: 0 24px;
    }

    @media (min-width: 1280px) {
        padding: 0 32px;
    }
}

.reviewItemContent {
    /*  text-grayscale-600   */

    margin-top: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #6b6b6b;
    height: 100%;
    overflow: auto;
    padding: 0 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;


}

.reviewItemMeta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 32px;
}

.reviewItemDate {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #6b6b6b;
}

.reviewItemContainer {

    max-height: 394px;
    --review-item-background-color: #F5F5F5;
    background-color: var(--review-item-background-color);
    border-radius: 24px;
    padding: 32px 0;
    border-radius: 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;


    @media (min-width: 786px) {
        max-height: 250px;
    }


    @media (min-width: 1024px) {
        max-height: 418px;
    }

    @media (min-width: 1280px) {
        max-height: 368px;
    }
}

.reviewItemScrollGradient {
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, var(--review-item-background-color) 100%);
}