/* BANNER */
.banner-florida {
    position: relative;
    display: flex;
    height: 800px;
    overflow: hidden;
}
.banner-florida img{
    position: absolute;
    width: 100%;
    height: 800px;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
}

.banner-florida .banner-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 5% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    flex-direction: column;
    align-items: center;
}

.villa{
    width: 100%;
    display: flex;
    margin-top: 50px;
}

.villa .slogan{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.villa .slogan h2{
    font-size: 30px;
    font-family: 'Roboto', Arial, sans-serif;
}

.villa .spacing{
    width: 50%;
}

.villa-panel{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 20px;
}

.villa-panel .villa-foto{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.villa-panel .villa-foto img{
    width: auto;
    max-height: 350px;
}

.villa-panel .villa-info{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 20px;
    text-align: justify;
    padding: 0px 100px 0px 0px;
}

.villa-panel .villa-info p{
    letter-spacing: 1px;
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 25px;
}

.villa-panel .villa-info.reverse{
    padding: 0px 0px 0px 100px;
}

@media screen and (max-width:1150px) {
    .villa .spacing{
        display: none;
    }

    .villa .slogan{
        width: 100%;
    }

    .villa-panel{
        flex-direction: column;
        align-items: center;
    }

    .villa-panel .villa-foto{
        width: 100%;
    }

    .villa-panel .villa-info{
        width: 100%;
        padding: 50px;
    }

}