/**
 * Name: layout.css
 *	
 *	T.O.C
 *
 *	=Wrap
 *	=Header
 *	=Logo
 *	=Menu
 *	=Mobile Menu
 * 	=Mobile menu trigger
 * 	=Buy Button
 * 	=Sticky Header
 * 	=Content
 * 	=Page Header
 * 	=Footer
 * 	=Footer Bottom
 *	=Back to top 
 *
 */

 
/* ==========================================================================
   =Wrap
   ========================================================================== */

	#wrap {
		position: relative;
		background-color: #fff;
		width: 100%;
	}
	
	@media (max-width: 767px) {

		#wrap {}

	}
   
/* ==========================================================================
   =Header 
   ========================================================================== */
   	
	#header {
		margin: 0 auto; 
	}
	
/* ==========================================================================
   =Logo
   ========================================================================== */
   
	#logo {  
		padding: 20px 0 23px 0;
	}
	
	/**
	 * 1. displaying the <a> inline-block makes it depends on the size of it's children
	 *    we add max-width:100% to tell it not that it shouldn't extend beyond the size of it's
	 *    parent if it's child is very large eg a 1000x1000 logo img
	 */
	
	#logo a {
		display: inline-block;
		max-width: 100%; /* 1 */
	}
	
	#logo img { display: block; }	
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#logo { padding-top: 30px; }
		
	}
	
	@media (max-width: 767px) {

		/**
		 * 1. on mobile devices logo padding right needs to be the width of the
		 *	  mobile menu trigger + some spacing so as to not let the logo <a>
		 *    overlap the mobile menu trigger
		 */
	
		#logo {
			padding-top: 30px;  
			padding-right: 50px; /* 1 */
		}
		
	}
	
/* ==========================================================================
   =Menu 
   ========================================================================== */

/* =Menu Basics
   ========================================================================== */
   
	.sf-menu,
	.sf-menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	
	.sf-menu > li { float: left; }

	.sf-menu > li > a {
		position: relative;
		display: block;
	}
	
	/**
 	 * 1. z-index is 1025 because the sticky menu is 1020
 	 */
	
	.sf-menu .sf-mega,
	.sf-menu li.dropdown ul {
		position: absolute;
		z-index: 1025; /* 1 */
		top: 100%;
		left: 0;
		display: none;
	}
	
	.sf-menu li.dropdown { position: relative; }
	
	.sf-menu li.dropdown ul ul {
		top: -16px;
		left: 100%;
	}
	
	.sf-menu li:hover > .sf-mega,
	.sf-menu li.sfHover > .sf-mega,
	.sf-menu li.dropdown:hover > ul,
	.sf-menu li.dropdown.sfHover > ul { display: block; }

/* =Menu Skin
   ========================================================================== */
	
	.sf-menu {
		position: relative;
		float: right;
		padding-right: 200px;
		margin-top: 22px;
	} 
	
	.sf-menu a {
		display: block;
		padding: 10px 0;
		color: #7b868c; 
		font: 15px 'akzidenz', arial, sans-serif!important ;
		font-weight: bold!important ;	
		text-decoration: none;
	}
	
	.sf-menu li.dropdown a { padding: 8px 20px; }
	
	.sf-menu > li > a,
	.sf-menu > li.dropdown > a {
		padding: 10px 15px 32px;
		border: none;
		color: #7b868c;
		font-size: 14px;
	}
	
	.sf-menu > li a i { margin-right: 5px; }
	
	.sf-menu > li.current > a { position: relative; }
	
	.sf-menu > li > a:before { 
		position: absolute;
		top: 50%;
		right: 0;
		left: 0;
		display: block;
		width: 25px;
		border-top: 1px solid transparent;
		margin: 3px auto 0 auto;
		content: "";
		-webkit-transition: border-top-color 0.3s;
				transition: border-top-color 0.3s;
	}
	
	.sf-menu > li > a:hover:before,
	.sf-menu > li.current > a:before,
	.sf-menu li.sfHover > a:before { border-top-color: #98d4ec; }

/* =DropDown
   ========================================================================== */
	
	/**
 	 * 1. allow long menu items to determine submenu width
 	 */
	
	.sf-menu li.dropdown ul {
		min-width: 190px; /* 1 */
		padding: 15px 0;
		border: 1px solid rgba(0, 0, 0, 0.1);	
		background-color: #fff;			
	}
	
	.sf-menu li.dropdown ul:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 75px;
		border-top: 2px solid #98d4ec;
		content: "";
	}
	
	.sf-menu li.dropdown ul a:hover,
	.sf-menu li.dropdown ul li.dropdown.sfHover > a { color: #98d4ec; }
		
/* =Mega Menu Section
   ========================================================================== */
	
	.sf-mega {
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 20px 0;
		border: 1px solid rgba(0, 0, 0, 0.1);
		background-color: #fff;
	}

	.sf-mega-section {
		float: left;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 20px;
	}

	/**
 	 * 1. set mega menu section size, as a percentage of the mega menu width
 	 */
	
	.sf-mega.sf-mega-1-col .sf-mega-section{ width: 100%; } /* 1 */
	
	.sf-mega.sf-mega-2-col .sf-mega-section{ width: 50%; }
	
	.sf-mega.sf-mega-3-col .sf-mega-section{ width: 33.3333333333%; }
	
	.sf-mega.sf-mega-4-col .sf-mega-section{ width: 25%; }
	
	.sf-menu .sf-mega:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 75px;
		border-top: 2px solid #98d4ec;
		content: "";
	}
	
	.sf-mega ul li a:hover { color: #98d4ec; }
	
/* =Menu Arrows
   ========================================================================== */
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 16px;		
		right: 0;
		display: none;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-top-color: #d7d7d7;
		content: "";
	}
		
	.sf-arrows > li > .sf-with-ul:focus:after,
	.sf-arrows > li:hover > .sf-with-ul:after,
	.sf-arrows > .sfHover > .sf-with-ul:after { border-top-color: rgba(0, 0, 0, 0.7); }
		
	.sf-arrows ul .sf-with-ul:after {
		top: 50%;
		display: block;
		border-color: transparent;
		border-left-color: #d7d7d7;
		margin-top: -5px;
		margin-right: 10px;
	}
	
	.sf-arrows ul li > .sf-with-ul:focus:after,
	.sf-arrows ul li:hover > .sf-with-ul:after,
	.sf-arrows ul .sfHover > .sf-with-ul:after { border-left-color: rgba(0, 0, 0, 0.7); }
	
	@media (min-width: 768px) and (max-width: 991px) {

		#menu { display: none; }

	}
	
	@media (max-width: 767px) {

		#menu { display: none; }
	
	}
	
/* ==========================================================================
   =Mobile Menu 
   ========================================================================== */
			
	#mobile-menu {
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 0;
	}
	
	#mobile-menu li {	
		display: block;
		margin: 0;
	}
		
	#mobile-menu > li > ul, 
	#mobile-menu > li > ul > li > ul {
		display: none;
		margin-left: 0;
	}
	
	#mobile-menu .sf-mega {
		display: none;
		padding: 0;
		border: none;
		margin: 0;
		background: #fff;
	}
	
	#mobile-menu .sf-mega-section {
		float: none;
		width: 100%;
		padding: 0;
		border: none;
	}
	
	#mobile-menu .sf-mega-section ul { margin-left: 0; }

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-top: 1px solid #d7d7d7;
		color: #28353e;
		font-size: 13px;
		text-align: left;
		text-decoration: none;
	}
	
	#mobile-menu ul a { padding-left: 45px; }
	
	#mobile-menu ul li ul a  { padding-left: 65px; }
	
	#mobile-menu .mobile-menu-submenu-arrow {
		position: absolute;
		top: 0;
		right: 0;
		width: 70px;
		height: 100%;
		border-left: 1px solid #d7d7d7;
		color: #28353e;
		font-size: 20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}
	
	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #f3f3f3; }
	
	#mobile-menu li a:hover {}
	
	#mobile-menu { display: none; }

/* ==========================================================================
   =Mobile menu trigger
   ========================================================================== */
				
	#mobile-menu-trigger { 
		float: right;
		display: none;
		font-size: 32px;
	}

	@media (min-width: 768px) and (max-width: 991px) {

		#mobile-menu-trigger { 
			display: block;
			margin-top: 28px;
			margin-right: 0;
		}	

	}

	@media (max-width: 767px) {

		#mobile-menu-trigger { 
			position: absolute;
			top: 23px;
			right: 15px;
			display: block;
			padding: 10px;
			margin-top: 0;
		}

	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {

		#mobile-menu-trigger {  }
	
	}		
		
/* ==========================================================================
   =Buy Button 
   ========================================================================== */
	
	#buy-button { 
		position: absolute;
		z-index: 1;
		top: 22px;
		right: 15px;
		margin-right: 0;
		font-size: 13px;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#buy-button {
			top: 25px;
			right: 75px; 
		}
		
	}
	
	@media (max-width: 767px) {
		
		#buy-button { display: none; }
		
	}

/* ==========================================================================
   =Sticky Header
   ========================================================================== */

	@media (min-width: 1025px) {
		
		/**
		 * 1. The height of the #header-wrap can be increased or decreased to accommodate the logo
		 */
		 
		#header-wrap {
			position: relative;
			height: 80px; /* 1 */
		}
		
		#header {
			position: absolute;
			top: 0; 					
			right: 0;
			left: 0;
			margin: 0 auto; 
			
		}
		
		/**
		 * 1. The z-index has to be 1020 so it is bigger than the back to top buttons z-index that is 1010
		 */
		
		#header.stuck {
			position: fixed;
			z-index: 1020; /* 1 */
			top: 0;
			width: 100%;
			padding: 5px 0 0 0;
			box-shadow: 0 3px 10px #d7d7d7;
			margin: 0 auto;
			background-color: rgba(255, 255, 255, 0.95);
			-webkit-transition: padding 0.3s;
					transition: padding 0.3s;
		}
		
		#header.stuck #logo { padding: 15px 0 23px 0; }
		
		#header.stuck .sf-menu { margin-top: 17px; }
		
		#header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a { padding: 10px 15px 32px; }
		
		#header.stuck #buy-button { top: 17px; }		
	
	}
	
/* ==========================================================================
   =Content
   ========================================================================== */
   	
	#content { padding-bottom: 40px; }

/* ==========================================================================
   =Page Header
   ========================================================================== */
   	
	#page-header {
		padding: 35px 0;
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 100px;
		background: no-repeat center center;
	}
	
	#page-header p {
		margin-bottom: 0;
		text-align: right;
	}
	
	@media (max-width: 767px) {
		
		#page-header p { text-align: left; }
		
	}
   
/* ==========================================================================
   =Footer
   ========================================================================== */		
	
	#footer { padding-top: 30px; }
	
	#footer-widget-area-1 {}
	#footer-widget-area-2 {}
	#footer-widget-area-3 {}
	#footer-widget-area-4 {}
	
/* ==========================================================================
   =Footer Bottom
   ========================================================================== */	
  
	#footer-bottom { padding-bottom: 60px; }
	
	#footer-bottom-widget-area-1 {}
	#footer-bottom-widget-area-2 {}
	


	
	/*  A PROPOS */

	#apropos{
		padding: 50px;
		background-color: #F2F7FA;
	}

#scrollapropos{
		margin-top: 150px;
		margin-bottom: 50px;
		
	}
	

#formulaire_contact{
		padding-top: 150px;
		padding-bottom: 50px;

}


#partenaires_fond{
	background-color: #F3F3F3;
	padding-top: 40px;
	padding-bottom: 40px
}

#partenaires_fond2{
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-bottom: 40px
}

#description{
	padding: 70px;
	background-color: #F2F7FA;
}


#partelephone h5{
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
}
#num_tel{
font-weight: bold;
color: #28353e;

}

#demande_devis{
		padding-top: 100px;
		padding-bottom: 50px;
		background-color: #F3F3F3;
}