.banner {
    position: relative;
}

.banner__image {
    display: block;
    width: 100%;
    height: 80vh;
    max-height: 700px;
    object-fit: cover;
}

.banner__button {
    position: absolute;
    right: 16px;
    bottom: 16px;
}

.banner__title {
    position: absolute;
    top: 50%;
    left: 0;
    text-align: center;
    width: 100%;
    padding: 32px;
    color: white;
    box-sizing: border-box;
}

.property {
    padding: 64px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.property__details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.property__detail {
    background-color: #1a3d73;
    color: white;
    padding: 8px 16px;
    margin: 8px;
    border-radius: 4px;
}

.property__features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.property__feature {
    display: flex;
    align-items: center;
    margin: 8px;
}
.property__icon {
    margin-right: 8px;
}

.property__map {
    width: 100%;
    height: 50vh;
    z-index: 0;
}

.video {
    position: relative;
    width: 100%;
    margin: 16px 0;
}
.video::after {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
}
.video__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}