.margin-200-100 {
    margin-top: 200px;
    margin-bottom: 100px;
}

.presentation-container {
    content: "";
    background: linear-gradient(var(--background-fade-color),var(--background-fade-color-transparent) 90%);
    display: block;
    height: 100%;
    display: flex;
}

.presentation-container > h1 {
    margin: auto;
    color: var(--font-color-title);
}

.presentation {
    height: 60vh;
    background-image: url("../assets/resort8.jpg");
    background-size:cover;
    background-position: center bottom;
    position: relative;
}

.form-section {
    margin-top: 38px;
    margin-bottom: 38px;
}

.form-section-container {
    max-width: 90vw;
    margin: auto;
}

.form-section-container-title {
    margin-bottom: 24px;
    text-align: center;
    color: var(--font-title-form-color);
    font-weight: 400;
}

.form > button {
    width: 100%;
}

.form > input, .form > textarea{
    display: block;
    line-height: 32px;
    margin-bottom: 12px;
    width: 100%;
    border: 1px solid var(--form-input-border-color);
    padding-left: 12px;
    height: 50px;
    font-size: 13px;
}

@media only screen and (min-width:576px){
    .form-section {
        margin-top: 64px;
        margin-bottom: 64px;
    }

    .form-section-container {
        max-width: 80vw;
    }
} 

@media only screen and (min-width:768px){
    .form-section {
        margin-top: 128px;
        margin-bottom: 128px;
    }

    .form-section-container {
        max-width: 60vw;
    }
}

@media only screen and (min-width:992px){

    .form-section-container {
        max-width: 40vw;
    }
}

@media only screen and (min-width:1200px){
    .form-section-container {
        max-width: 30vw;
    }
}

