/* START hero */

.hero{
    min-height: 80vh;
    height: auto;
    overflow: hidden;
}

.hero span.waves{
    position: initial!important;
}

.hero svg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

/* END hero */


/* START bandeauImg */

.bandeauImg .introText {
    padding: 2em 0;
    width: 70%;
}

.bandeauImg .smallUniformSpacing{
    z-index: 60;
}

@media screen and (max-width: 800px) {
    .bandeauImg  > img {
        height: 50%;
    }
}

@media screen and (max-width: 650px) {
    .bandeauImg  > img {
        display: none;
    }

    .bandeauImg .introText{
        width: 100%;
    }
}

/* END bandeauImg */



/* START formInfoContact */
.formInfoContact .uniformSpacing{
    display: flex;
    gap: 2em;
    align-items: center;
}

.formContainer {
    width: 50%;
}

form{
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    padding-top: 2em;
}

input{
    width: calc((100% - 1.5em) / 2);
}

textarea{
    width: 100%;
}

input{
    border-radius: var(--smallRadius);
    height: 3.5em;
    border: 1px solid #D6D6D6;
    padding: 0 1em;

}

textarea{
    border-radius: var(--smallRadius);
    border: 1px solid #D6D6D6;
    padding: 1em;
}

.infoContactContainer{
    width: 50%;
}

.submitContainer button{
    width: fit-content;
    border-radius: var(--smallRadius);
    border: none;
    margin: 0;
    padding: 1em 2em;
    display: flex;
    height: fit-content;
    min-width: fit-content;
    text-align: center;
    cursor: pointer;
}

.infoContactContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}

.infoContactContainer > div{
    box-shadow: 0px 3px 15px #00000029;
    background-color: var(--basicWhite);
    border-radius: var(--basicRadius);
    padding: 2em;
    width: calc((100% - 2em) / 2);
}

.infoContactContainer > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5em;
}

.infoContactContainer svg{
    width: 30px;
    height: 30px;
}

.infoContactContainer path{
    fill: var(--basicColor1);
}

.infoContactContainer p{
    font-weight: 700;
    font-size: 1em;
}

.infoContactContainer a,
.infoContactContainer .link{
    color: var(--basicColor1);
    font-weight: 900;
}

@media screen and (max-width: 1500px) {
    .formInfoContact .uniformSpacing{
        flex-direction: column;
    }

    .formContainer, .infoContactContainer{
        width: 80%;
    }
}

@media screen and (max-width: 1100px) {
    .formContainer, .infoContactContainer{
        width: 100%;
    }
}

@media screen and (max-width: 850px) {
    .infoContactContainer{
        justify-content: center;
    }

    .infoContactContainer > div {
        width: 70%;
    }

    .infoContactContainer p, .infoContactContainer a{
        font-size: .8em;
    }
}

@media screen and (max-width: 550px) {
    input:not(input[type="submit"]){
        width: 100%;
    }

    .infoContactContainer > div {
        width: 90%;
    }

}


/* END formInfoContact */

/* START iframeContainer */

.iframeContainer{
    width: 100%;
    height: 30em;
}
.iframeContainer iframe{
    width: 100%;
    height: 100%;
}
/* END iframeContainer */
