main {
    background-color: #070707;
    color: rgba(255, 255, 255, 1);
}

.list-your-property-header {
    width: 100%;
    max-width: 1498px;
    margin: auto;
    padding: 175px 40px 0;
    margin-bottom: 40px;
}

.list-your-property-header__wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.list-your-property-header__breadcrumbs {
    display: flex;
    justify-content: flex-start;
    gap: 17px;
    position: relative;
    align-items: center;
}

.list-your-property-header__breadcrumbs 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);
}

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

.list-your-property-header__container {
    position: relative;
    overflow: hidden;
}

.list-your-property-header__title {
    font-family: "AvenirNextLTPro-Regular";
    font-weight: 400;
    font-size: 60px;

    transform: translateY(100px);
    letter-spacing: 0;
    transition: all 0.5s ease-in-out;
    padding-bottom: 0.25rem;
    padding-right: 1rem;
}

.list-your-property-header__container.active .list-your-property-header__title {
    transform: translateY(0);
}

.list-your-property-header__title span {
    font-family: "AvenirNextLTPro-Bold";
    font-weight: 700;
    font-style: italic;
    font-size: 60px;

    letter-spacing: 0;
}

.list-your-property {
    width: 100%;
    max-width: 1509px;
    margin: auto;
    display: flex;
    gap: 40px;
    padding: 30px 45px 50px;
}

.list-your-property__container {
    background: #1a1a1a;
    width: 100%;
    border-radius: 10px;
    flex: 50%;
    padding: 75px 80px;
}

.list-your-property__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.list-your-property-image__container {
    position: relative;
    overflow: hidden;
    flex: 50%;
}

.list-your-property-image__container img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    object-fit: cover;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.list-your-property.active .list-your-property-image__container img {
    transform: translateX(0);
}

.list-your-property-title__container {
    max-width: 710px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.list-your-property__title {
    font-family: "AvenirNextLTPro-Regular";
    font-weight: 400;
    font-size: 50px;
    line-height: normal;
    text-align: center;
}

.list-your-property__subtitle {
    font-family: "AvenirNextLTPro-Regular";
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    color: #54565a;
    line-height: normal;
}

.list-your-property__form {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: auto;
    margin-top: 45px;
}

.list-your-property__form label {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 20px;
    color: #d5d5d5;
}

.list-your-property__form input,
.list-your-property__form textarea,
.list-your-property__form select {
    width: 100%;
    border: 1px solid #d5d5d5;
    background: #1a1a1a;
    padding: 0 20px;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 18px;
    color: #d5d5d5;
    height: 60px;
    border-radius: 7px;
    margin: 15px 0 20px;
}

.list-your-property__form textarea {
    height: 230px;
    resize: none;
    padding: 20px;
    margin-bottom: 30px;
}

.list-your-property__form-input-container {
    display: flex;
    gap: 25px;
}

.list-your-property__form button {
    width: 100%;
    height: 67px;
    background: #fff;
    border: 0;
    border-radius: 10px;
    font-family: var(--font-primary-medium);
    font-weight: 400;
    color: #000;
    font-size: 20px;
    display: block;
    cursor: pointer;
    margin-top: 10px;
}

.why-elite-commercial {
    width: 100%;
    max-width: 1504px;
    margin: auto;
    padding: 83px 0 40px;
}

.why-elite-header__container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 15px 30px;
    border-radius: 1000px;
    border: 1px solid #ffffff;
    margin: 0 40px 60px;
}

.why-elite-header__title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0.4px;
}

.why-elite-header__title span {
    font-family: var(--font-primary-bold);
    font-weight: 900;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0.4px;
}

.elite-commercial-advantages__container {
    display: flex;
    flex-direction: column;
}

.elite-commercial-advantage__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 40px;
    gap: 10px;
    width: 100%;
}

.elite-commercial-advantage-item__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px 0px 20px;
    gap: 181px;
    width: 100%;
    border-bottom: 1px solid rgba(176, 176, 176, 0.5);
}

.elite-commercial-advantage__item:last-child .elite-commercial-advantage-item__wrapper {
    border-bottom: 0;
}

.elite-commercial-advantage-item-title__container {
    padding: 10px;
}

.elite-commercial-advantage__title {
    width: 583.57px;
    font-family: "AvenirNextLTPro-Regular";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0.01em;
    color: #ffff;
}

.elite-commercial-advantage-item-description__container {
    padding: 10px;
}

.elite-commercial-advantage__description {
    width: 100%;
    font-family: "AvenirNextLTPro-Regular";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.elite-commercial-advantage__description span {
    font-weight: 700;
}

#lypSuccessMessage {
    position: absolute;
    color: white;
    top: -30px;
    right: 0;
    left: 0;
    margin: auto;
    width: fit-content;
    z-index: 2;
    background: #2c5c2c;
    padding: 16px;
    border-radius: 10px;
}

@media (max-width: 1280px) {
    .list-your-property {
        flex-direction: column-reverse;
        padding: 30px 45px;
    }

    .list-your-property-image__container img {
        position: unset;
    }

    .list-your-property-image__container img {
        transform: translateX(0);
    }

    .list-your-property-header {
        margin-bottom: 0;
    }

    .list-your-property-header__title {
        font-size: 40px;
        line-height: 100%;
        letter-spacing: 0%;
        transform: translateY(0);
    }

    .list-your-property-header__title span {
        font-size: 40px;
    }

    .list-your-property__form {
        max-width: 935px;
    }

    .list-your-property__title {
        font-size: 40px;
    }

    .list-your-property__subtitle {
        font-size: 20px;
    }

    .two-colomn-list {
        display: flex;
        width: 100%;
        gap: 20px;
    }

    .row-one-list {
        width: 50%;
    }

    .list-your-property__form button {
        max-width: 440px;
        margin: 40px auto 0 auto;
        font-size: 18px;
    }

    .elite-commercial-advantage-item-description__container {
        width: 65%;
    }

    .elite-commercial-advantage__title {
        width: 100%;
    }

    .elite-commercial-advantage-item__wrapper {
        gap: 10px;
        justify-content: normal;
    }

    .elite-commercial-advantage-item-title__container {
        width: 35%;
    }

    .why-elite-header__container {
        font-size: 40px;
        margin: 0 40px 38px;
    }

    .list-your-property-title__container {
        max-width: 570px;
    }

    .list-your-property__container {
        padding: 75px 40px;
    }
}

@media (max-width: 910px) {
    .list-your-property-header__title {
        font-size: 30px;
    }

    .list-your-property-header__title span {
        font-size: 30px;
    }

    .list-your-property-header {
        padding: 119px 15px 0;
    }

    .list-your-property {
        padding: 30px 15px;
    }

    .list-your-property__container {
        padding: 30px 15px;
    }

    .two-colomn-list {
        flex-direction: column;
    }

    .row-one-list {
        width: 100%;
    }

    .list-your-property__title {
        font-size: 30px;
    }

    .list-your-property__subtitle {
        font-size: 18px;
    }

    .two-colomn-list {
        gap: 0;
    }

    .elite-commercial-advantage-item__wrapper {
        flex-direction: column;
    }

    .elite-commercial-advantage-item-title__container {
        width: 100%;
    }

    .elite-commercial-advantage-item-description__container {
        width: 100%;
    }

    .why-elite-header__title {
        font-size: 30px;
        text-align: center;
    }

    .why-elite-header__title span {
        font-size: 30px;
    }

    .why-elite-header__container {
        margin: auto;
    }

    .elite-commercial-advantage__title {
        font-size: 20px;
    }

    .elite-commercial-advantage__description {
        font-size: 16px;
    }

    .elite-commercial-advantage__item {
        padding: 10px 25px;
    }

    .elite-commercial-advantage-item__wrapper {
        gap: 0;
    }
}

/* Scoped Light Mode Overrides */
html.light-mode .list-your-property-page,
html.light-mode .list-your-property-page section {
    background-color: #fff !important;
}

html.light-mode .list-your-property-page .list-your-property-header__breadcrumbs a,
html.light-mode .list-your-property-page .list-your-property-header__breadcrumbs span,
html.light-mode .list-your-property-page .list-your-property-header__title,
html.light-mode .list-your-property-page .list-your-property-header__title span,
html.light-mode .list-your-property-page .list-your-property__title,
html.light-mode .list-your-property-page .list-your-property__subtitle,
html.light-mode .list-your-property-page .why-elite-header__title,
html.light-mode .list-your-property-page .why-elite-header__title span,
html.light-mode .list-your-property-page .elite-commercial-advantage__title,
html.light-mode .list-your-property-page .elite-commercial-advantage__description,
html.light-mode .list-your-property-page .elite-commercial-advantage__description span,
html.light-mode .list-your-property-page .satoshi-light,
html.light-mode .list-your-property-page .satoshi-black,
html.light-mode .list-your-property-page .avenir-next-bold,
html.light-mode .list-your-property-page .avenir-next-regular {
    color: #000 !important;
}

html.light-mode .list-your-property-page .list-your-property__container {
    background-color: #f9f9f9 !important;
    border: 1px solid #eee;
}

html.light-mode .list-your-property-page .list-your-property__form label {
    color: #000 !important;
}

html.light-mode .list-your-property-page .list-your-property__form input,
html.light-mode .list-your-property-page .list-your-property__form textarea,
html.light-mode .list-your-property-page .list-your-property__form select {
    background-color: #fff !important;
    border-color: #000 !important;
    color: #000 !important;
}

html.light-mode .list-your-property-page .list-your-property__form button {
    background-color: #000 !important;
    color: #fff !important;
}

html.light-mode .list-your-property-page .why-elite-header__container {
    border-color: #000 !important;
}

html.light-mode .list-your-property-page .elite-commercial-advantage-item__wrapper {
    border-bottom-color: #eee !important;
}

html.light-mode .list-your-property-page .tw-section div.bg-\[\#101010\] {
    background-color: #f5f5f5 !important;
}

html.light-mode .list-your-property-page .list-your-property-header__breadcrumbs img,
html.light-mode .list-your-property-page .list-your-property-header__breadcrumbs img {
    filter: invert(1);
}


.form-group{
    display: flex;
    flex-direction: column;
    gap: 5px;
}