/* ==== Google font ==== */
@import url('http://fonts.googleapis.com/css?family=Montserrat Regular:thin,extra-light,light,100,200,300,400,500,600,700,800|Noto+Serif:400,400italic,700|Open+Sans:300,300i,400,400i,700,700i|Roboto:100,300,400,500,700|Philosopher:400,400i,700,700i');




@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: #dd3333;
  color: #333;  
  font-family: "Avenir LT Pro 55 Roman", sans-serif;

}

h1, h2, h3, h4, h5, h6 {
  margin: 0; 
  font-family: "Avenir LT Pro 55 Roman", sans-serif;

}

h2 {
  /*color: #29abe2; bleu hoka*/
  color: #e30620;
  font-weight: 600;
}

h3 {
  text-transform: uppercase;
  color:#dd3333;
}

h4 {
  color: #e30620;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 2;
}
h4 span {
  color: #F00;
  font-size: 25px;
}


  

h5 {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

a {
  letter-spacing: 2px;
  text-decoration: none;
}

ul {
  letter-spacing: 1px;
}

li {
  /*color: #000000;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 30px;
  text-transform: capitalize;*/

color: #000000;
font-size: 16px;
letter-spacing: 0.5px;
line-height: 2;
}

p {
  color: #000000;
  font-size: 15px;
   /* line-height: 2;
margin-bottom: 20px;*/
}

span {
  letter-spacing: 1px;
}

b, strong {color:#e30620;}

/*hr:after {
    background: #ececec;
	content: '+';
	padding: 0 8px;
	position: relative;
	top: -41px;
	font-size: xxx-large;
	}*/

.numberCircle {
border-radius: 20%;
text-align: center;
font-size: 28px;
background-color: #e30620;
color:#ffffff;
padding: 0 8px;
}

.img-fluid {
  height: auto;
  margin-bottom: 20px;
  width: auto;
}
.highlight {
    /*background: #cccccc none repeat scroll 0 0;*/
    background: #cefffe none repeat scroll 0 0;
    color: #000;
    padding: 2px;
}
.container-full {
  padding-left: 0;
  padding-right: 0;
}

.btn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 15px 40px;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.fa {
  font-size: 13px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #e30620;
  line-height: 1;
  color: #fff;
  padding: 7px 12px 13px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;z-index: 10;border: 1px solid #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: #e30620;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #999999;
  color: #fff;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 79px;
  z-index: 3;
  transition: all 0.5s ease;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}


#header #logo {
  padding: 6px 0 0 0;
}

#header #logo h1 {
  color: #000000;
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
}

#header #logo h1 a {
  color: #000000;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}

#header #logo h1 a span {
  color: #e30620;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

.scroll-header {
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# block img Section
--------------------------------------------------------------*/
#blockimg {
  width: 100%;
  background-size: 100%;
  position: relative;
}

@media (min-width: 1025px) {
  #blockimg {
    background-attachment: fixed;
  }

}

#blockimg .blockimg-container {
  position: relative;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#blockimg img {
  width: 100%;
}


    /********* Superposition simple de texte sur une image *******/
    /* Conteneur principal */
    .overlay-image {
     position: relative;
     width: 100%;
    }
    /* Image originale */
    .overlay-image .image {
     display: block;
     width: 100%;
     height: auto;
    }
    /* Texte original */
    .overlay-image .text {
     color: #fff;
     font-size: 60px;
     line-height: 1.5em;
     text-shadow: 2px 2px 2px #000;
     text-align: center;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 100%;
    }
	    /********* Hover image et texte *******/
    /* Overlay */
    .overlay-image .hover {
     position: absolute;
     top: 0;
     height: 100%;
     width: 100%;
     opacity: 0;
     transition: .5s ease;
    }
    /* Apparition overlay sur passage souris */
    .overlay-image:hover .hover {
     opacity: 1;
    }
	    /********* Hover background et texte uniquement *******/
    .overlay-image .normal {
     transition: .5s ease;
    }
    .overlay-image:hover .normal {
     opacity: 0;
    }
    .overlay-image .hover {
     background-color: rgba(0,0,0,0.5);
    }
	
	
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;background-color: #dd3333;
  /*height: calc(100vh - 40px);*/
  /*background: url(../img/hero-bg.png) center bottom no-repeat;*/
  background-size: 100%;
  position: relative;
  /*margin-top: 33%;*/
}


#hero .hero-container {
  position: relative;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#hero .bandeau {
  background: #dd3333;
  padding: 2px 35px;
  text-align:center;
}

#hero  p {
  color: #FFFFFF;
}



#hero  .accroche {
    font-family:"Professor W01 Regular" !important;
    font-size:40px;font-style:normal;color:#000000;margin-top: 0;text-align: center;line-height: 37px;
	}


#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  color: #e30620;
}


@media (max-width: 768px) {

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

}


#hero h2 {
  color: #777;
  margin-bottom: 30px;
  font-size: 20px;
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  font-weight: 300;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


#hero h3 {
  color: #ffffff;
  font-size: 20px;
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  font-weight: 300;text-transform:none;margin-top: 21px;
margin-bottom: -15px;
}


#hero img {
  max-width: 100%;
  padding-top: 10px;
  margin-bottom: 10px;
}

#hero .btn-get-started {
  font-family: "Avenir LT Pro 65 Medium", sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  background: #E20511;
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid #E20511;

}

#hero .btn-get-started:hover {
  background: #f08288;
  color: #fff;
  border: 1px solid #f08288;

}
#hero .btn-get-started:focus {
  background: #FFFFFF;
  color: #E20511;
  border: 1px solid #E20511;
}

#hero .btns a  {
  color: #000000;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #hero .btns a {
    margin: 4px 8px;
  }
  #hero .btn-get-started {
    font-size: 0.85rem;
}
}

#hero .btns a:hover {
  color: #e30620;
}


/*--------------------------------------------------------------
# compteur Section
--------------------------------------------------------------*/


.container-last-inscrit{
    background: #dd3333;
    width:100%;
    /*background: linear-gradient(50deg, #dd3333 60%, #ff3000 100%);*/
    border-radius:3px;
}

.container-compteur{
    /*max-width:350px;*/
    max-width:100%;
    width:100%;
    background: #dd3333;
    background: linear-gradient(50deg, #dd3333 60%, #ff3000 100%);
    border-radius:3px; padding:10px;margin-bottom: 10px;

}


/*
.container-compteur{
    max-width:100%;
    width:100%;
}*/

.compteur,.donation{
    max-width:100%;
    /*background: #dd3333;
	background: linear-gradient(50deg, #dd3333 60%, #ff3000 100%);*/
    display:flex;
    flex-direction : row;
    flex-wrap:nowrap;
    justify-content:space-around;
    align-items:center;
    border-radius:3px;
}

.container-last-inscrit p{
    /*color:white;*/
    font-size:40px;
    text-align:center;
    font-weight:500;
}

.upper_text{
    text-align:left;
	font-family:"Avenir LT Pro 95 Black Oblique", sans-serif;
    font-size:1.2rem;
	color: #fff;
}

.bottom_text{
    text-align: left;
	font-size: 2.5vh !important;
	text-transform: uppercase;
	color: #fff;
}
.bottom_text_merci{
    text-align:right;
    font-size:36px;
	text-transform: uppercase;  
	color: #fff;
}

.upper_text p, .bottom_text p{
    margin : 0;
}

.compteur .number_display{
	font-family:"Avenir LT Pro 95 Black Oblique", sans-serif;
	border-radius: 3px;
	width: 100%;
	height: 67px;
	background-color: white;
	line-height: 60px;
	text-align: center !important;
	/*font-size: 2.5rem !important;
	font-size: 3vh !important;*/
	font-size: 55px;
	color: #000;
	letter-spacing: 9px;
    font-weight:500;
	margin:0;
}

.donation .number_display{
	font-family:"Avenir LT Pro 95 Black Oblique", sans-serif;
	border-radius: 3px;
	width: 100%;
	height: 67px;
	background-color: white;
	line-height: 60px;
	text-align: center !important;
	font-size: 300%;
	color: #000;
	letter-spacing: 5px;
	font-weight:500;
	margin:0;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 15px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 4px;
  margin-top: 1px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: left;
  margin: 0 0 0 0;
}

@media (max-width: 1100px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 5px 5px;
  text-decoration: none;
  display: inline-block;
  color: #000000;
  font-family: "Avenir LT Pro 65 Medium", sans-serif;
  font-weight: 400;
  font-size: 12px;
  outline: none;
  letter-spacing: 0;
  transition: 0.3s;
  text-transform: uppercase;
}

.nav-menu li:hover > a, .nav-menu > a {
  color: #ffffff;
  background-color: #e30620;
  text-decoration: none;cursor:pointer;
}

.nav-menu > li {
  margin-left: 17px;margin-top: 20px;
}
@media (max-width: 1100px) {
.nav-menu > li {
  margin-left: 0px;
}
}

@media (max-width: 1100px) {
.nav-menu a {
    padding: 4px 4px;
    text-decoration: none;
    display: inline-block;
    color: #000000;
    font-family: "Avenir LT Std 45 Book", sans-serif;
    font-weight: 400;
    font-size: 0.715rem;
    outline: none;
    letter-spacing: 0;
    transition: 0.3s;
}
}


.nav-menu ul {
  margin: 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 5px 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  /*font-size: 14px;*/
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #ffffff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 2%;
  z-index: 999;
  margin: 4px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #000000;
  font-size: 24px;
}

@media (max-width: 1100px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  padding: 6px 22px 6px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  letter-spacing: 0;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #e30620;
}

#mobile-nav ul .menu-item-active {
  color: #e30620;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle i {
  color: #fff;
}




/*--------------------------------------------------------------
# tableau
--------------------------------------------------------------*/

	@media (max-width: 500px) {
	
	.responsive-table-line td:before { content: attr(data-title); }
	
	.responsive-table-line table, 
	.responsive-table-line thead, 
	.responsive-table-line tbody, 
	.responsive-table-line th, 
	.responsive-table-line td, 
	.responsive-table-line tr { 
	display: block; 
	}
	 
	.responsive-table-line thead tr { 
	display:none;
	}
	
	.responsive-table-line td { 
	position: relative;
	border: 0px solid transparent;
	padding-left: 50% !important; 
	white-space: normal;
	/*text-align:right; */
	}
	 
	.responsive-table-line td:before { 
	position: absolute;
	top: 0px;
	left: 0px;
	width: 45%; 
	padding-right: 15px; 
	height:100%;
	white-space: nowrap;
	text-overflow: ellipsis !important;
	overflow:hidden !important;
	text-align:left;
	background-color:#f8f8f8;
	padding:2px;
	}
	
	}




/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.padd-section {
  padding-bottom: 48px;
  padding-top: 15px;
}

@media (max-width: 992px) {
  .padd-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.section-title {
  margin-bottom: 30px;
}


.section-title h2 {
  font-family: "Avenir LT Std 85 Heavy", sans-serif;
  font-size:4rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;margin-top: 20px;
  text-transform: uppercase;
}



@media (max-width: 520px) {
  .section-title h2 {
  /*font-size:2.2rem; */ 
  font-size:2rem;  
  }  
  

  .section-title h4 {
    font-size:1rem;  
  }
}



.section-title .separator {
  /*margin: 0;*/
}

.separator {
  color: #000000;
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 30px;

}



/* inscriptions Section
--------------------------------*/
#inscriptions {
  display: inline-block;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
}

#inscriptions .inscriptions-container {
  margin-bottom: 0px;
  /*background-color:#eddcf7;*/
  -webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;padding:0 10px;
}


#inscriptions .section-title span {
  font-family: "Avenir LT Pro 95 Black Oblique", sans-serif;
  font-size:1.25rem;
  color: #ffffff;
  background-color:#dd3333;
  text-transform: uppercase;
  padding:8px 10px;
}


#inscriptions .section-title h4  span{
  font-family: "Avenir LT Pro 95 Black Oblique", sans-serif;
  font-size:1.1rem;
  color: #ffffff;
  background-color:#333;
  text-transform: uppercase;
  padding:5px;line-height:1.2rem;
}

@media (max-width: 540px) { 
	#inscriptions .section-title h4  span{  
	/*font-size:2vh;*/line-height: 1.4rem;
}
}

#inscriptions img { max-width:100%}
  
@media (max-width: 991px) { 
#inscriptions img { max-width:100%;margin-top: 20px;}
}



#inscriptions h2 {
  padding: 8px 20px;
  /*! border-radius: 50px; */
  /*! background: #fff; */
  text-decoration: none;text-align: center;
  color: #000;
  font-size: 36px;
}
#inscriptions h2 span {  font-size:0.9rem;}

@media (max-width: 360px) {
#inscriptions h2 {
  font-size:1.5rem;  
  }  
}

#inscriptions .feature-block {
  background: #fbf3f3 none repeat scroll 0 0;
  padding: 30px 20px;
  transition: all 0.5s ease-in-out 0s;
  margin: 20px 0 20px 0;
}


#inscriptions .feature-block:hover{
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in-out 0s;
}

#inscriptions .feature-block h4 {
  margin-bottom: 20px;
}

#inscriptions .feature-block p {
  margin-bottom: 20px;
}

#inscriptions .feature-block a {
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  /*text-transform: uppercase;*/
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0;
  border: 2px solid #e30620;
  background: #e30620;
  color: #fff;
  text-decoration: none;
}


#inscriptions.feature-block a:hover {
  color: #e30620;
  background: #fff;
}

#inscriptions .feature2-block a {
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  /*text-transform: uppercase;*/
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 20px;
  border: 2px solid #e30620;
  background: #FFFFFF;
  color: #e30620;  
  text-decoration: none;/*margin-top: 20%;*/
}

#inscriptions .feature2-block a:hover {
  background: #e30620;
  color: #ffffff;
}

#inscriptions .gourde-block {
margin-top: 20%;
}
#inscriptions .gourde-block a {
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  font-weight: 400;text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 20px;
  border: 2px solid #e30620;
  background: #FFFFFF;
  color: #e30620;  
  text-decoration: none;/*margin-top: 20%;*/
}

@media (max-width: 1230px) {
#inscriptions .gourde-block  {
margin-top: 0%;
}
#inscriptions .gourde-block a {
margin-top: 0%;
}
}

#inscriptions .gourde-block a:hover {
  background: #e30620;
  color: #ffffff;
}



#inscriptions .feature3-block a {
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 20px;
  border: 2px solid #0c5460;

    background: #0c5460;
  color: #fff;
  text-decoration: none;
}

#inscriptions .feature3-block a:hover {
  background: #0c5460;
  color: #ffffff;
}

#inscriptions .feature4-block a {
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #404240;

    background: #404240;
  color: #fff;
  text-decoration: none;
}

#inscriptions .feature4-block a:hover {
  color: #404240;
  background: #fff;
  color: #404240;
}

#inscriptions .btn-get-started {
  font-family: "Avenir LT Pro 65 Medium", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 2px 13px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #dd3333;
  background: #fff;
  color: #dd3333;
  text-decoration: none;
}

#inscriptions .btn-get-started:hover {
  background: #ffffff;
  color: #e30620;
}

#inscriptions .btns a  {
  color: #201f1f;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;
}



/* partenaires Section
--------------------------------*/
#partenaires  {border-top: 1px solid aliceblue;}
#partenaires img {max-width:80%;margin: 0 auto;}

@media (max-width: 580px) {
#partenaires img {max-width:100%;margin: 0 auto;}
  }


/* About Us Section
--------------------------------*/
#about-us img {
  max-width: 100%;
}

#about-us #logo {
  max-width: 50%;
}



#about-us .about-content {
  padding-top: 60px;
}

#about-us .about-content h2 {
  color: #252525;
  font-family: "Avenir LT Std 45 Book";
  font-size: 36px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  /*text-transform: capitalize;*/
}

#about-us .accroche {
    font-family:"Professor W01 Regular" !important;
    font-size:40px;font-style:normal;color:#000000;
	margin-top: 0;text-align: center;line-height: 37px;
	}

	
#about-us span {color: #E20511;}

#about-us .about-content span {
  font-weight: 700;
  padding-right: 0px;
  text-transform: uppercase;
}

#about-us .about-content ul li {
  line-height: 36px;
}

#about-us .about-content ul li .fa {
  padding-right: 20px;
}


.box-blu-light {
    background: #e30620;
    padding: 20px 20px 30px;
}


#about-us .section-title span {
  font-family: "Avenir LT Pro 95 Black Oblique", sans-serif;
  font-size:1.8rem;
  color: #ffffff;
  background-color:#dd3333;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding:10px 15px;
}


#about-us .feature2-block a {
  font-family: "Avenir LT Pro 55 Roman", sans-serif;
  text-transform: uppercase;
  /*font-weight: 400;
  font-size: 20px;*/
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 20px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #dd3333;

  background: #FFFFFF;
  color: #dd3333;  
  text-decoration: none;
}

#about-us .feature2-block a:hover {
  color: #dd3333;
  background: #fff;
  color: #dd3333;
}





/* Features Section
--------------------------------*/
#features {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#features h2, #features h4 {color:#fff;}

#features .feature-block {
  /*background: #fff none repeat scroll 0 0;*/
  padding: 30px 0px;
  /*margin-bottom: 30px;*/
  transition: all 0.5s ease-in-out 0s;color: #fff;
}

/*#features .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}*/

#features .feature-block h4 {
  margin-bottom: 20px;
}

#features .feature-block p {
  margin-bottom: 0;
}


#features .box-blu-light {
    background: #dd3333;
    padding: 20px 20px 30px;
}



/* img survol Section
--------------------------------*/

.a-img-txt{
  display:grid;
}


 
/* les enfants se superposent */
.a-img-txt>*{
  grid-area:1/1/-1/-1; 
  /* raccourci pour grid-row et grid-column */
}
 
/* le texte */
.a-txt{
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  opacity:0;
  transition:opacity .8s;
}
 
/* les couleurs c1 et c2 */
.c1{
    background-color:rgba(227, 6, 32, 0.5); /* avec alpha */
}
 
.c2{
    /* background:#e30620; avec alpha */
    background-color:rgba(227, 6, 32, 0.5); /* avec alpha */
}
 
/* le survol */
.a-txt:hover{
  opacity:1;
}




/* Blog Section
--------------------------------*/
@media (max-width: 991px) {
  #blog .block-blog {
    margin-bottom: 30px;
  }
}

#blog .block-blog img {
  width: 100%;
}

#blog .block-blog .content-blog {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  min-height: 125px;
  padding: 20px 10px;
  width: 100%;
}

#blog .block-blog .content-blog h4 {
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
}

#blog .block-blog .content-blog h4 a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

#blog .block-blog .content-blog h4 a:hover {
  color: #e30620;
}

#blog .block-blog .content-blog > span {
  float: left;
  font-size: 12px;
}

#blog .block-blog .content-blog a.readmore {
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 0;
  text-transform: capitalize;
}

#blog .block-blog .content-blog a.readmore:hover {
  color: #e30620;
}


/* Contact Section
--------------------------------*/
#contact {
  border-top: 1px solid aliceblue;
}
#contact h2 {
  color: #222;
  font-size: 42px;
}

#contact .section-title span {
  font-family: "Avenir LT Pro 95 Black Oblique", sans-serif;
  font-size:1.5rem;
  color: #ffffff;
  background-color:#dd3333;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding:10px 15px;
}

#contact .info {
  color: #222;
}

#contact .info i {
  font-size: 32px;
  color: #e30620;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e30620;
  color: #fff;
  /*line-height: 1;*/
  padding: 5px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #e30620;
  color: #fff;
}

#contact .php-email-form .validate {
  display: none;
  color: #F00;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
  background-color: #e30620;
}

#contact .php-email-form input {
  padding: 20px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type="submit"] {
  background: #e30620;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #92d283;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #dd3333;
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer a {
  color: #ffffff;
}
.footer a:hover {
  color: #ffffff;
}

.footer .footer-logo .navbar-brand {
  color: #ffffff;
  display: inline-block;
  float: none;
  font-family: "Avenir LT Pro 95 Black", sans-serif;
  font-size: 13px;
  font-weight: 500;
  height: 100%;
  /*letter-spacing: 0.2em;*/
  padding-left: 0;
  padding-top: 0;
}

.footer .footer-logo p {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer .list-menu > h4 {
  color: #000000;
  padding-bottom: 20px;
}

.footer .list-menu ul li a {
  color: #000000;
  font-size: 12px;
  padding-left: 5px;
  text-decoration: none;
  letter-spacing: 0;
}

.footer span {color:#E20511;}

.footer .copyrights {
  background: #E20511;
  padding: 2px 35px;
  margin-bottom: 30px;
}

.footer .copyrights p, .footer .copyrights .credits {
  color: #ffffff;  text-align: right;
 
}

.footer .copyrights p a, .footer .copyrights .credits a {
  letter-spacing: 0; color: #ffffff; 
}

