/* -------------------------------- 

Primary style

-------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, html a {
    -webkit-font-smoothing: antialiased !important;
	text-rendering: optimizeLegibility !important;
}

body {
	font-size: 100%;
	font-family: "Open Sans", sans-serif;
	color: #030d18;
	background-color: #FFFFFF; -webkit-font-smoothing: antialiased !important;<a href="../index.php">Consilium conseil en assurance Paris 75</a>
}

::selection{
  background-color: #000000;
  color: #1d71b8;
}

/* Firefox */
::-moz-selection {
  background-color: #000000;
  color: #1d71b8;
}

a {
  color: #f5484a;
  text-decoration: none;
}

.a2 {
  color: #e1e1e1;
}

img {
  max-width: 100%;
}

h1 {
color:#1d71b8; font-family: 'Quicksand', sans-serif; font-size:32px; font-weight:400; text-align:center;
}
h2 {
color: #333333; font-family: 'Open Sans', sans-serif; font-size:17px; font-weight:600; text-align:center;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

.has-top-margin {
  /* this class is given - using jQuery - to the .cd-main-content following the .cd-secondary-nav when it becomes fixed */
}
@media only screen and (min-width: 1170px) {
  .has-top-margin {
    -webkit-animation: animate-margin-top 0.3s;
    -moz-animation: animate-margin-top 0.3s;
    animation: animate-margin-top 0.3s;
    margin-top: 70px;
  }
}

@-webkit-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@-moz-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
/* -------------------------------- 

Navigation

-------------------------------- */
.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #030d18;
  z-index: 999;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
    background-color: transparent;
    box-shadow: none;
  }
}

#cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
#cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  #cd-logo {
    margin: 23px 0 0 5%;
  }
  
    .sectionbleu {
background-color:#1d71b8;
color:#FFFFFF; text-align:center; font-family: 'Quicksand', sans-serif; font-weight:300; width: 100%; }
  .bandeautitre1 {font-family: 'Open Sans', sans-serif; font-size:30px; font-weight:600; text-transform:uppercase; line-height:55px; padding-top: 20px;}
.bandeautitre2 {font-family: 'Quicksand', sans-serif; font-size:56px; font-weight:400; text-transform:uppercase;}
.bandeautitre12 {font-family: 'Quicksand', sans-serif; font-size:20px; font-weight:500; text-transform:uppercase;line-height:40px;}
.bandeautitre3 {font-family: 'Quicksand', sans-serif; font-size:36px; font-weight:400; text-transform:uppercase;}

.bandeaulogo {max-width: 400px; max-height:421px; background:url(../img/fond_bleu.png) no-repeat; margin:auto; text-align:center;}
.bandeaucontent { position:relative; height:305px; width:450px; margin-left:auto; margin-right:auto; background:url(../img/fond_bleu.png) no-repeat center; text-align:center; padding-top: 100px; }
.bandeautrait{ position:relative; height:2px; width:170px; background-color: #333333; margin-top: 20px; margin-left:auto; margin-right:auto;}
  
}
@media only screen and (min-width: 1170px) {
  #cd-logo.is-hidden {
    /* assign a position fixed and move outside the viewport (on the left) */
    opacity: 0;
    position: fixed;
    left: -20%;
    margin-left: 0;
    -webkit-transition: left 0.3s, opacity 0.3s;
    -moz-transition: left 0.3s, opacity 0.3s;
    transition: left 0.3s, opacity 0.3s;
  }
  #cd-logo.is-hidden.slide-in {
    /* slide in when the secondary navigation gets fixed */
    left: 5%;
    opacity: 1;
  }
}

.cd-primary-nav {
  /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
  float: right;
  margin-right: 1%;
  width: 27px;
  height: 100%;
  z-index: 888;
}
.cd-primary-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-primary-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-primary-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #000101;
  border-top: 1px solid #051426;
  color: #f0eee1;
}
@media only screen and (max-width: 600px) {
.cd-primary-nav { display: none}
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    /* reset navigation values */
    width: auto;
    height: auto;
    background: none;
  }
  .cd-primary-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-primary-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-primary-nav li {
    display: inline-block;
    margin-left: 1em;
	cursor:pointer;
  }
  .cd-primary-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: 0em .2em;
    border-top: none;
    color: #030d18;
  }
  
  
  
}

/* -------------------------------- 

Intro

-------------------------------- */
#cd-intro {
  position: relative;
  height: 300px;
  background: url(../img/intro-background.jpg) no-repeat center center;
  background-size: cover;
  z-index: 2;
  transition: all 32s ease;
  -moz-transition: all 22s ease;
  -ms-transition: all 22s ease;
  -webkit-transition: all 22s ease;
  -o-transition: all 22s ease;
  z-index:1;  
}

#cd-intro:hover {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2); /* IE 9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')"; /* IE8 */
   filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand'); /* IE6 and 7 */ 
} 

#cd-intro #cd-intro-tagline {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}
#cd-intro h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #030d18;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  #cd-intro {
    height: 400px;
  }
  #cd-intro #cd-intro-tagline {
    padding-top: 50px;
  }
  #cd-intro h1 {
    font-size: 32px;
    font-size: 2rem;
  }
  
  
}  
@media only screen and (max-width: 600px) {
  #block_titre { display:none;}
  .droite{ float: ; min-width: 100%; position: relative; height:auto;}
  .middle{float:none; min-width:100%; position: relative; height:auto;}
  .gauche{float:none; min-width:100%; position: relative; height:auto;}
  .moitier{float:none; min-width:100%; position: relative; height:auto;}
  .courant{ text-align:center; color:#666666;}
  .courant2 { text-align: center; float:none; min-width:100%; position: relative; height:auto;}
  .sectionbleu {
background-color:#1d71b8;
color:#FFFFFF; text-align:center; font-family: 'Quicksand', sans-serif; font-weight:300; width: 100%; }
  .bandeautitre1 {font-family: 'Open Sans', sans-serif; font-size:20px; font-weight:600; text-transform:uppercase; line-height:45px; padding-top: 20px;}
.bandeautitre12 {font-family: 'Quicksand', sans-serif; font-size:40px; font-weight:400; text-transform:uppercase;}

.bandeautitre2 {font-family: 'Quicksand', sans-serif; font-size:40px; font-weight:400; text-transform:uppercase;}
.bandeautitre3 {font-family: 'Quicksand', sans-serif; font-size:26px; font-weight:400; text-transform:uppercase;}
.bandeaulogo {max-width: 400px; max-height:421px; background:url(../img/fond_bleu.png) no-repeat; margin:auto; text-align:center;}
.bandeaucontent { position:relative; height:305px; width:320px; margin-left:auto; margin-right:auto; background:url(../img/fond_bleu_phone.png) no-repeat center; text-align:center; padding-top: 100px; }
.bandeautrait{ position:relative; height:2px; width:170px; background-color: #333333; margin-top: 20px; margin-left:auto; margin-right:auto;}

}

@media only screen and (max-width: 320px) {
  #block_titre { display:none;}
  .droite{ float: ; min-width: 100%; position: relative; height:auto;}
  .middle{float:none; min-width:100%; position: relative; height:auto;}
  .gauche{float:none; min-width:100%; position: relative; height:auto;}
  .moitier{float:none; min-width:100%; position: relative; height:auto;}
  .courant{ text-align:center; color:#666666;}
  .courant2 { text-align: center; float:none; min-width:100%; position: relative; height:auto;}

}

@media only screen and (min-width: 1170px) {
  #cd-intro {
    height: 600px;
  }
  #cd-intro #cd-intro-tagline {
    padding-top: 50px;
  }
}

.cd-btn {
  display: inline-block;
  padding: 1em 1.8em;
  border-radius: 20em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
}
.no-touch .cd-btn:hover {
  background-color: #1d71b8;
}



@media only screen and (min-width: 1170px) {
  .cd-btn.is-hidden {
    /* assign a position fixed and move outside the viewport (on the right) */
    opacity: 0;
    position: fixed;
    right: -20%;
    top: 0;
    padding: .8em 1.2em;
    margin: 14px 0 0;
    -webkit-transition: right 0.3s, opacity 0.3s;
    -moz-transition: right 0.3s, opacity 0.3s;
    transition: right 0.3s, opacity 0.3s;
  }
  .cd-btn.is-hidden.slide-in {
    /* slide in when the secondary nav gets fixed */
    right: 5%;
    opacity: 1;
  }
}

/* -------------------------------- 

Secondary Fixed Navigation

-------------------------------- */
.cd-secondary-nav {
  position: relative;
  z-index: 666;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-secondary-nav ul {
  /* mobile first - secondary navigation hidden by default, triggered by tap/click on .cd-secondary-nav-trigger*/
  position: fixed;
  width: 90%;
  max-width: 400px;
  right: 5%;
  bottom: 20px;
  border-radius: 0.25em;
  background: rgba(3, 13, 24, 0.96);
  visibility: hidden;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, visibility 0s 0.3s;
}
.cd-secondary-nav ul.is-visible {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}
.cd-secondary-nav li a {
	display: block;
	padding: 1.2em;
	border-bottom: 1px solid #092645;
	color: #ffffff;
}
.cd-secondary-nav li:last-child a {
  border-bottom: none;
}
@media only screen and (min-width: 1170px) {
  .cd-secondary-nav {
    z-index: 1;
    height: 100px;
    background-color: rgba(3, 13, 24, 0.96);
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
  }
  .cd-secondary-nav nav, .cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
    height: 100%;
  }
  .cd-secondary-nav ul {
    /* reset navigation values */
    position: static;
    width: auto;
    max-width: 100%;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    text-align: center;
    background-color: transparent;
  }
  .cd-secondary-nav li {
    display: inline-block;
    margin-left: -4px;
  }
  .cd-secondary-nav li a {
    position: relative;
    text-align: center;
    display: block;
    padding: 58px 20px 0 20px;
    border-bottom: none;
    -webkit-transition: padding 0.2s;
    -moz-transition: padding 0.2s;
    transition: padding 0.2s;
  }
  .cd-secondary-nav li a b {
    text-transform: uppercase;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(240, 238, 225, 0.3);
  }
  .cd-secondary-nav li a span {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 18px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url(../img/cd-nav-icons.svg);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .cd-secondary-nav li a:hover b, .cd-secondary-nav li a.active b {
    color: #f0eee1;
  }
  .cd-secondary-nav li:nth-child(1) a span {
    background-position: 0 0;
  }
  .cd-secondary-nav li:nth-child(2) a span {
    background-position: -40px 0;
  }
  .cd-secondary-nav li:nth-child(3) a span {
    background-position: -80px 0;
  }
  .cd-secondary-nav li:nth-child(4) a span {
    background-position: -120px 0;
  }
  .cd-secondary-nav li:nth-child(5) a span {
    background-position: -160px 0;
  }
  .cd-secondary-nav li:nth-child(6) a span {
    background-position: -160px 0;
  }
  .cd-secondary-nav.is-fixed {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    position: fixed;
    left: 0;
    top: 0;
    height: 70px;
    width: 100%;
  }
  .cd-secondary-nav.animate-children {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .cd-secondary-nav.animate-children li a {
    padding: 26px 20px 0 20px;
  }
  .cd-secondary-nav.animate-children li a span {
    opacity: 0;
  }
}

.cd-secondary-nav-trigger {
  position: fixed;
  bottom: 20px;
  right: 5%;
  width: 44px;
  height: 44px;
  background: rgba(3, 13, 24, 0.96);
  border-radius: 0.25em;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 2;
}
.cd-secondary-nav-trigger span {
  /* the span element is used to create the menu icon */
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f0eee1;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}
.cd-secondary-nav-trigger span::before, .cd-secondary-nav-trigger span::after {
  content: '';
  position: absolute;
  background: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cd-secondary-nav-trigger span::before {
  right: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.cd-secondary-nav-trigger span::after {
  left: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.cd-secondary-nav-trigger.menu-is-open {
  background: transparent;
}
.cd-secondary-nav-trigger.menu-is-open span {
  background: rgba(240, 238, 225, 0);
  width: 20px;
  height: 2px;
}
.cd-secondary-nav-trigger.menu-is-open span::before, .cd-secondary-nav-trigger.menu-is-open span::after {
  background: #f0eee1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
}
.cd-secondary-nav-trigger.menu-is-open span::before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-secondary-nav-trigger.menu-is-open span::after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 1170px) {
  .cd-secondary-nav-trigger {
    display: none;
  }
}

/* -------------------------------- 

Placeholder Sections

-------------------------------- */
.cd-section {
  margin: 0 auto;
  padding: 2em 0;
}
.cd-section h2 {
  color: #333333; font-family: 'Quicksand', sans-serif; font-size:17px; font-weight:600; text-align:center;
}
.cd-section p {
  line-height: 1.6;
}
@media only screen and (min-width: 1170px) {
  .cd-section {
    margin: 0 auto;
    padding: 4em 0;
  }
  .cd-section h2 {
    font-size: 30px;
    font-size: 1.25rem;
	padding-bottom: 10px;
	line-height:34px;
	color:#1d71b8;
	font-family: 'Quicksand', sans-serif;
	text-transform:uppercase;
  }
  .courant {
    font-size: 18px;
    font-size: 1.06rem;
	font-family: 'Quicksand', sans-serif;
	color:#333333; text-align:center;
  }
}

.men { color:#FFFFFF;}

.cd-main-content{ z-index:666;}

#block_titre {
background-color:#1d71b8;
font-size:18px; padding: 25px 50px 25px 90px; color:#FFFFFF; letter-spacing: 4px;
font-family: 'Quicksand', sans-serif; font-size:36px; text-transform:uppercase; z-index:999; opacity: 0.85; position:absolute; top:390px; font-weight:300;}

#block_soustitre {
    padding: 25px 50px 25px 90px;
    color: #FFFFFF;
    letter-spacing: 4px;
    font-family: 'Quicksand', sans-serif;
    font-size: 19px;
    text-transform: uppercase;
    z-index: 999;
    position: absolute;
    top: 470px;
    font-weight: 400;
}

#block_logo { position: absolute; margin-right:auto; margin-left:auto; max-height:300px; width:100%; padding-top: 50px; z-index:998; text-align:center; }

.soustitre {
font-family: 'Open Sans', sans-serif; font-size:21px; font-weight:600; text-transform:uppercase; }


/* -------------------------------- 

colone

-------------------------------- */

.centre {
    font-size: 18px;
    font-size: 1.06rem;
	font-family: 'Quicksand', sans-serif;
	color:#333333; text-align:center;
	width: 500px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
  }

.droite{
float:left;
width:40%;
padding: 5px 15px;
margin: 0px 5px 5px 5px;
text-align:center; font-family: 'Quicksand', sans-serif; color:#333333; font-size: 1.06rem;
}

.middle{
float:left;
width:16%;
padding: 5px 15px;
margin: 0px 5px 5px 5px;
text-align:center; font-family: 'Quicksand', sans-serif; color:#333333; font-size: 1.06rem;
}

.gauche{
float:left;
width:40%;
padding: 5px 15px;
margin: 0px 5px 5px 5px;
text-align:center; font-family: 'Quicksand', sans-serif; color:#333333; font-size: 1.06rem;
}

.moitier{
float:left;
width:40%;
padding: 5px 15px;
margin: 0px 5px 5px 5px;
text-align:center; font-family: 'Quicksand', sans-serif; color: #333333; font-size: 1.06rem;
}
.moitierentre{
float:left;
width:15%;
padding: 5px 15px;
margin: 0px 5px 5px 5px;
text-align:center; font-family: 'Quicksand', sans-serif; color:#333333; font-size: 1.06rem;
}

.nom { color:#1d71b8; font-family: 'Quicksand', sans-serif; font-weight:500;}

.sectionbleu {
background-color:#1d71b8;
color:#FFFFFF; text-align:center; font-family: 'Quicksand', sans-serif; font-weight:300; width: 100%; }



.courant2 { width:70%; text-align:left; font-size:14px; font-size: 1.05rem; font-family: 'Quicksand', sans-serif; color: #FFFFFF; line-height:12px; font-size: 1.06rem;}
.traitbleu { background-color:#1d71b8; height:4px; width:100px;}
.back1 { background-image:url(../img/exemple2.jpg); width:100%; height:auto; }

.hometxt7
{ width:100%; padding : 30px 8% 30px 8%}
.contact-form{ margin-top:15px;}
.contact-form .textarea{ min-height:220px; resize:none;}
.form-control{ box-shadow:none; border-color:#eee; height:49px; width:100%;}
.form-control:focus{ box-shadow:none; border-color:#00b09c;}
.form-control-feedback{ line-height:50px;}
.main-btn{ background:#00b09c; border-color:#00b09c; color:#fff;}
.main-btn:hover{ background:#00a491;color:#fff;}
.form-control-feedback {
line-height: 50px;
top: 0px;
}

.partenaire{
float:left;
width:260px;
padding: 5px 15px;
margin: 0px 5px 5px 5px;
text-align:center; font-family: 'Quicksand', sans-serif; color: #333333; font-size: 1.06rem;
}

/* -------------------------------- 

CONTACT

-------------------------------- */


.contact1{

width:100%;
padding-top: 25px;
margin: 0px 5px 5px 5px;
text-align: center; font-family: 'Quicksand', sans-serif; color: #333333; font-size: 1.06rem;
}
.contact2{
float:left;
width:60%;
padding-top: 25px;
margin: 0px 5px 5px 5px;
text-align: left; font-family: 'Quicksand', sans-serif; color: #666666; font-size: 1.06rem;
}

#contact{width: 100%; color:#000000; height: auto; margin: 0 auto; padding: 0; bottom:50px; text-align:left;}

#notreformulaire { 
	text-shadow:0 1px 0 #FFF;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	padding:25px;	
}


#formulairedecontact label { 
	cursor:pointer;
	margin: 4px 0;
	color:#1d71b8;
	display:block;
	font-family: 'Quicksand', sans-serif;
	
}

input { 
	display:block;
	width:100%;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	background-color:#f4f4f4;
	color:#000;
	border:1px solid #5f5f5f;
	padding:10px;
	margin-bottom:25px;
}

textarea { 
	display:block;
	width:100%;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	background-color:#f4f4f4;
	color:#000;
	border:1px solid #5f5f5f;
	padding:10px;
	margin-bottom:25px;
}

.sendButton {
	font-family: 'Quicksand', sans-serif;
	float:left;
	width: 100%;
	border: #fbfbfb solid 4px;
	cursor:pointer;
	background-color: #1d71b8;
	color:white;
	font-size:18px;
	padding-top:13px;
	padding-bottom:13px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
  margin-top:-4px;
  font-weight:100;
  text-transform:uppercase;
}
.sendButton:hover {
background-color: #CC3366;
	color: #ffffff;
	
}

/* -------------------------------- 

FOOTER

-------------------------------- */

/* ==========================================================================
To top
========================================================================== */
.to-top {
	height: 60px;
	background-color: #1d71b8;
}
  .to-top .to-top-wrap {
    height: 60px;
    width: 70px;
    position: absolute;
    right: 0;
    text-align: center; }
    .to-top .to-top-wrap a {
      display: block;
      width: 100%;
      height: 100%;
      color: #fff;
      background-color: rgba(0, 0, 0, 0.15); }
    .to-top .to-top-wrap a:hover, .to-top .to-top-wrap a:focus {
      background-color: rgba(0, 0, 0, 0.4);  }
    .to-top .to-top-wrap i {
      font-size: 30px;
      line-height: 55px; }
  .to-top .row {
    position: relative; }

/* ==========================================================================
Footer
========================================================================== */
footer {
  background-color: #3D4351;
  position: relative; }
  footer p {
    color: #ACB1B4;
    font-size: 13px; }
  footer a {
    color: #fff; }
  footer a:hover {
    color: #FF5274; }
  footer ul.footer-group {
    border-top: solid 1px #4E566C;
    padding-top: 25px;
    margin-bottom: 45px; }
  footer ul.footer-group li {
    display: inline-block; }
  footer ul.footer-group li a {
    font-size: 13px;
    text-transform: uppercase; }
  footer ul.footer-group li a:hover {
    color: #FF5274; }
  footer ul.footer-group li {
    margin-right: 30px; }
  footer ul.footer-group li:last-child {
    margin-right: 0; }
  footer span.fa-heart {
    color: #ff415c;
    font-size: 15px;
    margin: 0 2px; }
	footer .place1{
	float:left;
	width:100%;
	text-align:center; font-family: 'Quicksand', sans-serif; color: #333333; font-size: 1.06rem; background: #333333;
	}
  footer .social-share {
  float:left;
	background-color: #5dbdd3;
	right: 0;
	width: 40%;
	height: 100%;
	padding: 142px 0 0 70px;
	background-image: url(../images/fondfooter.jpg);
	text-align: center;
	background-repeat: no-repeat;
}
    footer .social-share p {
      color: #fff;
      text-transform: uppercase;
      padding-bottom: 10px; }
    footer .social-share a.twitter-share {
      height: 60px;
      width: 60px;
      background-color: #1AB4EF;
      border-radius: 3px;
      font-size: 22px;
      display: inline-block;
      text-align: center;
      margin-right: 20px; }
    footer .social-share a.twitter-share:hover, footer .social-share a.twitter-share:focus {
      background-color: #1590BF; }
    footer .social-share a.facebook-share:hover, footer .social-share a.facebook-share:focus {
      background-color: #324C85; }
    footer .social-share a.facebook-share {
      height: 60px;
      width: 60px;
      background-color: #3B5898;
      border-radius: 3px;
      font-size: 22px;
      display: inline-block;
      text-align: center; }
    footer .social-share a {
      color: #fff; }
    footer .social-share a:hover {
      color: #fff; }
    footer .social-share a i {
      margin-top: 20px; }
  footer .footer-links {
    margin: 120px 0 120px 0; }
