section.project div.image > img {
    height: 700px;
    width: 100%;
    /* object-fit:cover; */
    object-position: center;
}

section.project {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* width: 60%; */
    margin: auto;
    position: relative;
}

.overview span {
    font-size: 20px;
    font-weight: 500;
}
.detail_status {
    position: absolute;
    top: 2rem;
    right: 2rem;
    box-shadow: 0 0 1rem var(--blue);
}

div {
    gap: 3rem;
}

section#real-estate-project {
    border: 2px solid var(--blue);
    padding: 2rem;
    margin: 3rem auto;
    border-radius: 12px;
    box-shadow: 0px 0px 1rem var(--dull-blue);
}
p.detail_status {
    color: var(--dull-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background-color: var(--sharp-red);
}
section#real-estate-project div.image > img {
    border-radius: 12px;
}
a.btn,
a.btn:hover {
    background-color: var(--sharp-red);
    color: var(--dull-white);
    font-size: 2rem;
    float: right;
}

section.project > div > div {
    flex-direction: column;
}
img#project_image {
    filter: brightness(70%);
}
form *:is(p, a, textarea, input, li, :placeholder-shown) {
    font-size: 18px;
}
div.image {
    position: relative;
}
form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 2rem;
}
form.project_form {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
}
form.detail_form {
    display: none;
}
@media (max-width: 600px) {
    form.detail_form {
        display: flex;
    }
    form.project_form {
        display: none;
    }
}
@media (max-width: 1400px) {
    section.project {
        width: 95%;
    }
}

@media (max-width: 1300px) {
    section.project {
        flex-direction: column;
    }

    section {
        padding: 3rem 1.5rem !important;
    }

    section#real-estate-project > section.project {
        padding: 1.5rem;
    }
}

@media (max-width: 800px) {
    div {
        gap: 1rem;
    }

    section.project {
        width: calc(100% - 4rem);
    }

    section#real-estate-project {
        margin: 2rem;
    }
    section.project > div > div {
        flex-direction: row;
    }

    section.project > img {
        height: 300px;
    }
}
