@charset "UTF-8";
/* CSS Document */
/*#022a33 vert #54898f*/
#logo {text-align: center;}
#logo img {
	width:300px;
	padding: 2vw;
	display: block;
	margin:auto;}
img#logoGraph{
	padding: 0;
    width: 14%;
	max-width: 121px;
    margin-top: 78px;
}
div#titre {padding: 0 5vw;}
div#intro, div.lesAvantages {padding: 0 10vw;width:55%}
div.lesAvantages{float:right}
/*div#intro{width:55%}*/
h1{
	font-family: "Bodoni Moda", serif;
  	font-optical-sizing: auto;
  	font-style: normal;
	margin-top: 32px;
    margin-bottom: 15px;
	}
p,li,button,input[type="text"], textarea, .message p, span.libelle, span.valeur {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-size: 1.2em;
	color: #696767;

div#intro p {
	width:50%;
}
a {/*text-decoration:none*/; color:#696767;}
h1 {
	margin-top: 35px;
}

button.btn_CTA{
	width: 257px;
	background: #a59455;
	color: #fdfdfd;
	height: 40px;
	border: none;
	margin-left: 189px;
	margin-top: 15px;
}
button.btn_CTA:hover {
    cursor: pointer;
}

input[type="text"]{
	width: 423px;
    height: 48px;
	border: solid 1px grey;
}
textarea{
	width: 423px;
	border: solid 1px grey;
	height: 100px;
}
label,span.libelle {
	display: inline-block;
   	width: 140px;
    line-height: 48px;
    vertical-align: top;
    
    text-align: right;
}
span.libelle{width: 30%;margin-right: 15px;line-height: 29px;}
span.valeur {
    line-height: 29px;
    display: inline-block;
    width: 50%;
	text-align: left;
	
}
div.champs{margin-top: 37px;}

form.styled-form{
	margin:auto;
	width: 55%;
}

div.note p {margin:7px 0}
/* Styles de la modal pleine page */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8); /* Fond semi-transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Assurez-vous que la modal est au-dessus des autres éléments */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Contenu de la modal */
.fullscreen-modal-content {
    background-color: #ffffff; /* Fond de la modal */
    padding: 2rem;
    border-radius: 8px;
    max-width: 90vw;
    max-height: 90vh;
	min-width: 50vw;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
	position: relative;
}

/* Bouton de fermeture */
.fullscreen-modal .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #484545;
    border: solid 1px black;
    cursor: pointer;
    padding: 0px 6px;
	line-height: 24px;
}

/* Afficher la modal */
.fullscreen-modal.show {
    opacity: 1;
    visibility: visible;
}
/**************************** spinner ***********************************/
/* Style du spinner */
.spinner {
    border: 8px solid #f3f3f3; /* Couleur de fond */
    border-top: 8px solid #3498db; /* Couleur du spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Animation de rotation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Positionnement pour centrer */
#animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}


@media only screen and (max-width: 768px){
	
	button.btn_CTA{
		margin: auto;
    	display: block;
	}
	form.styled-form {
  		width: 87%;;
	}
	input[type="text"] {
		width: 100%;
	}
	.fullscreen-modal-content {
		overflow-x: hidden;
	}
	label, span.libelle {
		display: block;
		text-align: left;
	}
	div.champs p{margin:10px 0}
	
	#logo img {
    	width: 246px;
		margin-top: 14px;
	}
	#logo img#logoGraph{
		width: 34%;
		margin-top: 33px;
	}
	span.libelle, span.valeur {
    	width: 100%;
	}
	textarea {
   	 width: 100%;
	}
	.reponse {margin-top:50px;}
}