@charset "UTF-8";
/* Média fluide simple
   Remarque : un média fluide exige que vous supprimiez les attributs de hauteur et de largeur du média du code HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 ne prend pas en charge max-width ; la largeur par défaut est donc fixée à 100% */
.ie6 img {
	width:100%;
}

/*
	Propriétés de grille fluide Dreamweaver
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiré par "Responsive Web Design" par Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	et le système Golden Grid par Joni Korpi
	http://goldengridsystem.com/
*/

/* Disposition mobile : 480px et moins. */

.gridContainer {
	width:100%;
	background-color:#f1f2ed;
	position:relative;
}
#header {
	display: block;
    margin-top: -17px;
    padding-bottom: 2px;
    width: 100%;background-color: #f1f2ed;
}
#header > img { display: block; margin: 0 auto -12px;}
#header span:last-child { display: block; }
#header span { font-size: 14px;}
    
	
	
#header > h1, #header > h2 { color: #3f4b51; font-family: "gotham_book"; text-align: center; text-transform: uppercase;}
#header > h1 { font-size: 30px; margin-bottom: 10px; }
#header > h2 { font-size: 16px; margin-top: 0;}
#illustration {
    background-image: url("../images/immeuble-mini.jpg");
    background-size: cover;
    display: block;
    height: 97px;
    width: 100%;
}
#accroche {
    clear: both;
    display: none;
    float: left;
    margin-left: 0;
    padding: 25px;
    width: 100%;
}
#accroche > span { display: block; font-weight: bold; }


#formulaire {
	clear: both;
	margin-left: 0;
	width: 100%;
	display: block;
	padding: 25px;
	background-color:#FFF;
}
#formulaire > h1 {
    font-family: gotham_book;
    font-size: 18px;
    line-height: 21px;
    margin: 0;
    text-transform: uppercase;
}
#formulaire > P {
    font-family: gotham_book; color: #2abde9;
    font-size: 16px;
    line-height: 16px;
    margin: 6px 0;
}
#avantages {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block; 
	padding-bottom:25px;
	margin-botom:25px;
}

.bloc {  background-color: #FFF; color: #737373; margin-bottom: 12px; padding: 19px; width: 100%; -webkit-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2); box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);}
.bloc > img { display: block; margin:0 auto 10px;}
.bloc > h1 { font-family: gotham_book;  font-size: 24px;  margin: 0; text-transform: uppercase; }

ol.logement1 {counter-reset: immo1; list-style: none;}
ol.logement2 {counter-reset: immo2 7; list-style: none;}
ol.logement1 li { counter-increment: immo1; /* on incrémente le compteur à chaque nouveau li */ margin-bottom: 10px;}
ol.logement2 li { counter-increment: immo2; margin-bottom: 10px;}
ol.logement1 li:before { content: counter(immo1)". ";  font-family: 'gothambold'; font-size: 24px;}
ol.logement2 li:before { content: counter(immo2)". ";  font-family: 'gothambold'; font-size: 24px;}

#exemples { padding: 0 25px;}
#exemples > div {  background-color: #fff; padding: 25px;}
 #exemples h1 { color: #1066bd;  font-family: "gotham_book"; font-size: 24px; line-height: 24px;  margin: 0; text-transform: uppercase;}


/*formulaire*/
 
input[type="text"], input[type="email"], input[type="tel"],input[type="number"], select {border: 1px solid #ebebeb;
    border-radius: 5px;
    margin-bottom: 14px;
    padding: 10px;
    width: 100%;} 
option { padding: 10px;  width: 100%;}
select {  padding: 0 5px; } 
input:focus {outline:none;} /*safari/chrome pas de halo */
input:valid { background-color:#fff; } /* champs non obligatoire*/
input:invalid { background-color: #fff; } /* champs obligatoire*/
:-moz-ui-invalid:not(output) { border: solid 1px #FF0000; box-shadow:none; color:#F00;}/* champs mal saisi*/
input:required:valid, textarea:required:valid  { background-image:url(images/ok.png); background-repeat:no-repeat; background-position:right;} /*champs correctement rempli*/


::-webkit-input-placeholder { font-size:14px; color:#666;}
::-moz-placeholder { font-size:14px; color:#666; }
:-ms-input-placeholder {font-size:14px; color:#666;}
input:-moz-placeholder {font-size:14px; color:#666;}
input[type="submit"] {font-family: "gotham_book"; border-radius: 5px; border:none; width:100%; background-color: #2abde9; color: #FFFFFF; margin-top: 10px;  padding: 8px; font-size:16px; text-transform:uppercase;}
input[type="submit"]:hover { background-color: #2192b5;}
sup { text-transform:none;}
.picto { display: none;}
.formprofil > a { text-decoration: underline;}
.exemple {
    clear: both;
    display: block;
    padding: 0 25px;
}
.projet > p { margin-right: 20px;  text-align: right;}
.fd-evolution { background-image:url(../images/fd-financement.gif); background-repeat:no-repeat; background-color:#126BBA !important; background-position: 0 0; padding-bottom: 15px !important;} 
.fd-evolution > h1 { color: #fff !important;}
.fd-evolution > p {  margin: 77px 0 0 27px;  padding: 0;}
.fd-epargne {  margin-bottom: 25px; background-image:url(../images/fd-epargne.gif); background-repeat:no-repeat; background-position: 577px 0;}
.fd-epargne > p {  text-align: right;}

/* Disposition tablette : 481px sur 768px. Hérite des styles de : Disposition mobile */

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

#header > h1 {font-size: 50px;margin-bottom: 0; margin-top: -10px;}
#header > img { display: block; margin: 12px 0 0 23%;}
#illustration {
    background-image: url("../images/immeuble.jpg");
    background-size: cover;
    height: 286px;}
#accroche {width: 50%; display:block; margin-bottom: 90px;}
#accroche > a {  display: block; position: absolute; z-index: 30;}
#formulaire {
	clear: both;
     width: 100%;
	-webkit-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
}
fieldset { display:inline-block; width:48%;}
fieldset:first-child {  margin-right: 2%;}
#avantages {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block; margin-top: -25px;
	padding-bottom:25px;
	margin-botom:25px;
}

.bloc:nth-child(2), .bloc:nth-child(5) { margin: 0 3.5%;}



.bloc {  float: left; margin-bottom: 30px; padding: 19px; width: 31%; height: 163px; -webkit-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2); box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);}
.bloc > img { display: block; margin:0 auto 10px;}
.bloc > h1 { font-family: gotham_book;  font-size: 24px;  margin: 0; text-transform: uppercase; }
h1.double {line-height:24px;}
p.double {line-height: 17px;  margin-top: 7px !important;}
.bloc > p {
    margin: 2px 0 0;
}


}

/* Disposition bureau : 769px à max. 1232px.  Hérite des styles de : Disposition mobile et disposition tablette */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 100%;
	max-width: 808px;
	margin: auto;
}
#header span { font-size: 18px;}
/*#header span:last-child {  margin-top: 8px;}*/
#header > h2 {  font-size: 24px; margin-bottom: 12px;}
#illustration {height: 344px;}
#formulaire {
    margin: 0 auto 40px;
    padding: 25px 25px 0;
    width: 94%;
}
input[type="submit"] { margin-bottom: 25px;}
#accroche {margin-bottom: 190px; }
#avantages {
    padding: 0 25px; margin-top: -40px;  position: relative; 
}

.picto {
    display: block;
    left: 284px;
    position: absolute;
    top: 1260px;
}
.decal {
  margin-left: 100px;
}

.apport {
    background-color: #ff0000; color:#FFFFFF;
    display: inline-block !important;
    padding: 3px;
}
.apport > b {
    font-size: 48px;
    font-weight: normal;
    line-height: 43px;
    vertical-align: middle;
}
.financement {width: 324px !important; max-width: 324px;}

}