html {
    box-sizing: border-box;
}

*,
*:before,
*:after,
:not(.container) {
    box-sizing: inherit;
}

/* form */
/* form */
/* form */

.form-banner-container {
    background-color: var(--colorWhiteSmoke);
    padding-top: 60px;
    padding-bottom: 60px;
    height: auto;
}

.form-contact-container {
    padding-left: 13vw;
    padding-right: 13vw;
}

.form-item {
    width: 100%;
    width: auto;
}

.form-item-title {
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-item-title-text {
    font-size: var(--fontFamily_text - 5);
    font-weight: 300;
}

.input-form,
select,
textarea,
button.submit-button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 6px 4px 6px 4px;
    font-family: var(--fontFamily_text);
    font-size: calc(var(--fontSize_text) - 3px);
    border: 1px var(--colorFont_text) solid;
    background-color: var(--colorWhiteSmoke);
    border-radius: 0px;
    margin-bottom: 20px;
}

.form-item select {
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    background-repeat: no-repeat;
    background-position-x: calc(100% - 5px);
    background-position-y: 8px;
}

::placeholder,
select {
    color: var(--colorFont_text);
    font-weight: 300;
}

textarea {
    resize: none;
    color: var(--colorFont_text);
    font-weight: 300;
    height: 90px;
}


.obligatoire-item {
    display: flex;
    justify-content: end;
}

.paragraph-text.obligatoire {
    font-size: calc(var(--fontSize_text) - 3px);
}

.response_form {
    text-align: center;
}

/* captcha */
/* captcha */
/* captcha */

.g-recaptcha {
    margin-bottom: 20px;
}


/*button*/
/*button*/
/*button*/

button.submit-button, .popup-button {
    display: inline;
    width: 200px;
    padding: 0px 20px 6px 20px;
    color: var(--colorFont_text);
}

.button-text {
    display: inline;
    height: 0px;
    font-weight: 300;
}

/*popup*/
/*popup*/
/*popup*/

.popup-button{
    padding: 10px 20px 0px 20px;

}
.popup-responde {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99999;
}
.popup-container, .popup-row{
    height: 100%;
}

.popup-row{
    display: flex;
    justify-content: center;
    align-content: center;
}
.popup-content{
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    -webkit-box-shadow: 0px 0px 25px -9px rgba(0,0,0,0.5); 
    box-shadow: 0px 0px 25px -9px rgba(0,0,0,0.5);
}


@media screen and (max-width:992px) {
    .form-contact-container {
        padding-left: 7vw;
        padding-right: 7vw;
    }
}

@media screen and (max-width:768px) {
    .obligatoire-item {
        display: flex;
        justify-content: start;
    }

    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0 0;
    }
}