/* .img-fluid{max-width:100%;height:auto} */
.paddTop100 {
  padding-top: 100px !important;
}
.paddTop150 {
  padding-top: 150px !important;
}
.paddTop10 {
  padding-top: 10px !important;
}
.paddTop20 {
  padding-top: 20px !important;
}
.paddTop50 {
  padding-top: 50px !important;
}
.pad_img {
  padding-top: 5px;
}
.separation {
  border-bottom: 2px dotted #ccc;
}
.size_1_4 {
  font-size: 1.4rem !important; 
}
.size_1_7 {
  font-size: 1.7rem !important;  
}
.right {
  float: right;
}
.left {
  float: left;
}
.couleur_bleu {
  color: #007bff;
}
.left_logo {
  float: left;
  padding-right: 40px;
}
.center {
  text-align: center !important;
}
.italique {
  font-style: italic;
}
.logo_footer {
  position: relative;
  left: 42%;
  padding-bottom: 3rem;
}
.h1_logo {
  padding-top: 40px;
  color: #007bff;
}
.img_slogan {
  padding-top: 70px;
}
.cite_h3 {
  font-size: 1.4rem !important;
  font-weight: normal;
}

*[onclick] {cursor:pointer;}

#img1 {
  z-index: 3;
  position: absolute; 
  top: 0px;
  left: 15px;
  border: none; 
}
#img2 {
  z-index: 2;
  position: absolute; 
  top: 0px;
  left: 15px;
  border: none;  
}
#img3 {
  z-index: 1;
  border: none; 
}

.jm-sticky-top {
    top: 10em;
}

.succes {
  padding: 1em;
  margin-top: 0.75rem;
  margin-bottom: 1.3rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.erreur {
  padding: 1em;
  margin-top: 0.75rem;
  margin-bottom: 1.3rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.success {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #f1faeb;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.error {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.contactSpam { 
  width: 220px !important;
  border: 1px solid #e7e7e7 !important;
  letter-spacing:.8px; 
  padding-left: 4px; 
  font-size: 1.1em; 
  cursor:text;
}






.white_popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
  border: 3px solid #007bff;
}
.black_popup {
  position: relative;
  background: #333;
  color: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
  border: 3px solid #FFF;
}

/* Styles for dialog window */
#small-dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  max-width: 400px;
  margin: 40px auto;
  position: relative;
}


/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;

  -webkit-transition: all 0.4s ease-in-out; 
  -moz-transition: all 0.4s ease-in-out; 
  -o-transition: all 0.4s ease-in-out; 
  transition: all 0.4s ease-in-out; 



  -webkit-transform: scale(0.5); 
  -moz-transform: scale(0.5); 
  -ms-transform: scale(0.5); 
  -o-transform: scale(0.5); 
  transform: scale(0.5); 
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;

  -webkit-transform: scale(1); 
  -moz-transform: scale(1); 
  -ms-transform: scale(1); 
  -o-transform: scale(1); 
  transform: scale(1); 
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.5); 
  -moz-transform: scale(0.5); 
  -ms-transform: scale(0.5); 
  -o-transform: scale(0.5); 
  transform: scale(0.5); 

  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out; 
  -moz-transition: opacity 0.3s ease-out; 
  -o-transition: opacity 0.3s ease-out; 
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}



/**
 * Fade-move animation for second dialog
 */

/* at start
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;

  -webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

} 
*/

/* animate in 
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
  -moz-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
  -ms-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
  -o-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
  transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
}
*/

/* animate out 
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;

  -webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
  -moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
  -ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
  -o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
  transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
}
*/

/* Dark overlay, start state 
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;

  -webkit-transition: opacity 0.3s ease-out; 
  -moz-transition: opacity 0.3s ease-out; 
  -o-transition: opacity 0.3s ease-out; 
  transition: opacity 0.3s ease-out;
}
*/
/* animate in 
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}*/
/* animate out 
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}*/
