html {
	height: 100%;
	box-sizing: border-box;
}
body {
	background-color: #F7F7F7;
	line-height: 1.5;
	position: relative;
	min-height: 100%;
	padding-bottom: 300px;
	overflow-x: hidden;
}

label {
	font-size: 15px;
	color: #2E4285;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type=number] {
	-moz-appearance:textfield;
}

.h3 {
	color: #777;
	padding-bottom: 10px;
	border-bottom: 2px solid lightgrey;
}

.blue {
	color: #2E4285;
}

.underlined {
	padding: 10px 0;
	border-bottom: 1px solid #2E4285;
}

.title {
	font-size: 24px;
	color: #2E4285;
	text-transform: uppercase;
}

.main-title {
	font-size: 35px;
	color: #2E4285;
	text-transform: uppercase;
}

hr {
	border: 2px solid #2E4285;
}

.v-align {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;

	flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;

	align-items: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;

	justify-content: center;
	-webkit-justify-content:center;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover, .nav-pills > li.active, .nav-pills > li:hover, .nav-pills > li:focus {
	background-color: #2d4285;
}

.navbar-brand {
	height: auto;
	padding: 0;
}

.navbar-default {
	background-color: #FFF;
	border: none;

	-webkit-box-shadow: 0px 3px 6px 0px rgba(117, 117, 117, 1);
	-moz-box-shadow: 0px 3px 6px 0px rgba(117, 117, 117, 1);
	box-shadow: 0px 3px 6px 0px rgba(117, 117, 117, 1);
}

.navbar-default .navbar-nav > li > a {
	color: #1F1F1F;
	text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a:hover {
	color: #2A4287;
}

.navbar {
	margin-bottom: 0px;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover, .nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
	background-color: transparent;
}

#secondary-nav > li > a {
	text-transform: none;
}

#main-nav > li:last-child > a {
	padding-right: 0px;
}

#menu li a, #menu li a:active, #menu li a:hover, #menu li a:focus {
	background-color: transparent;
}

#menu .dropdown-menu li a:hover {
	background-color: #eee;
}

.jumbotron {
	position: relative;
	background-image: url(../img/bg_jumbotron.png);
	background-position: top center;
	min-height: 400px;
}

.jumbotron > .macaron-congret {
	width: 250px;
	position: absolute;
	left: 8%;
	bottom: -9%;
	z-index: 1000;

	opacity: 1;
	transition: all 200ms ease-in-out;
}

.jumbotron > .macaron-congret:hover {
	opacity: 0.8;
}

.jumbotron > div > a {
	color: #FFF;
	text-decoration: none;
}

.jumbotron > div > a:hover {
	color: #2A4287;
}

.jumbotron > div > p {
	margin-top: 25px;
}

.btn-primary {
	background-color: #2A4287;
	border-color: #2A4287;
	text-transform: uppercase;
}
.btn-grey {
	background-color: #DDDDDD;
	border-color: #DDDDDD;
	text-transform: uppercase;
}
/* secondary-nav */

.secondary-nav{
	background: #FFF;
	box-shadow: 0 2px 4px lightgrey;
}
.secondary-nav > ul > li a{
	color: #1F1F1F;
	padding: 15px 0px;
	border-radius: 0;
}
.secondary-nav > ul > li a:hover{
	color: #FFF;
	background: #2E4285;
	border-radius: 0;
}

/* CARD */

.card {
	position: relative;
	margin: .5rem 0 1rem 0;
	background-color: #fff;
	transition: box-shadow .25s;
	border-radius: 2px;
}
.card .card-image {
	position: relative;
	overflow: hidden;
	height: 250px;
}
.card .card-image img {
	display: block;
	border-radius: 2px 2px 0 0;
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
}
.card .card-image .card-title {
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 100%;
	padding: 24px;
}
.card .card-title {
	font-size: 24px;
	color: #2E4285;
	text-transform: uppercase;
}

.card .card-content {
	padding: 0px 24px 24px 24px;
	border-radius: 0 0 2px 2px;
	/*min-height: 210px;*/
}
.card .card-content p {
	margin: 0;
	color: inherit;
}

.card .card-action:last-child {
	border-radius: 0 0 2px 2px;
}
.card .card-action {
	position: relative;
	background-color: #2E4285;
	border-top: 1px solid rgba(160,160,160,0.2);
	text-align: center;
}
.card .card-action a:not(.btn):not(.btn-large):not(.btn-large):not(.btn-floating) {
	color: #FFF;
	display: block;
	padding: 16px 24px;
	transition: color .3s ease;
	text-transform: uppercase;
}
.card .card-action a:hover{
	background-color: #202E5F;
	text-decoration: none;
}
.card-news {
	margin-bottom: 20px;

}
.dateTime{
	position: absolute;
	z-index: 1000;
	bottom: 0;
	left: 0;
	background-color: rgba(46, 66, 133, 0.90);
	width: 110px;
	height: 100px;
	color: #FFF;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 500;
	padding-left: 10px;
	padding-top: 5px;
}
.icon-activite{
	position: absolute;
	z-index: 1000;
	top: 0;
	right: 0;
	width: 52px;
	height: 52px;

}
.secondary-title{
	color: #797979;
}

.nav-tabs {
	text-transform: uppercase;
}
.nav-tabs li a {
	background-color: transparent!important;
}
.nav-tabs li.active a {
	border-bottom-color: transparent!important;
}
.tab {
	padding: 30px;
}

.panel-heading {
	background-color: #2d4285!important;
	color: #fff!important;
}
a.accordion {
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
}

/* hover scall img */

.scale-img:hover img{
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}
.scale-img img{
	-webkit-transition: all 1s linear;
	transition: all 1s linear;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

/* Fiches pour les infos des agences de voyage */
.agences .card.active {
	box-shadow: 0 2px 4px lightgrey;
}
.agences .card.active .card-action, .agences .card.active:hover .card-action, .agences .card.active:focus .card-action {
	background-color: white!important;
	border-top: 3px solid #2d4285;
}
.agences .card.active .card-action a {
	color: #2d4285!important;
}
.agences .card.active:hover .card-action a, .agences .card.active:focus .card-action a {
	background-color: #eee!important;
}

.first_of_line {
	clear:both;
}

.fiche_membre {
	clear:both;
}
.fiche_membre_inside {
	box-shadow: 0 2px 4px lightgrey;
	margin-bottom:30px;
}

.fiche-header{
	background: #fff;
	padding: 10px;
	color: #2E4285;
	border-bottom: 4px solid #2E4285;
}
.fiche-header > h1{
	margin: 0;
}
.fiche-content {
	background-color: white;
}

ul#listingmembres li::before, ul.paginate li::before {
	content:"" !important;
}

.pagination li {
	display:inline-block;
	padding:5px;
}
.pagination li.active a {
	background-color: #2d4285;
	border-color: #2d4285;
}
/* --- */

.galleryCard {
	background-color: white;
	padding: 10px 20px;
	box-shadow: 0 2px 4px lightgrey;
}
.galleryCard h3 {
	margin-top: 0;
	border-bottom: 3px solid #2E4285;
	padding: 10px 0;
}

.partenaires {
	text-align: center;
	display: block;
	min-height: 290px;

}

.ml-1 {
	margin-left: 10px;
}

.mr-1 {
	margin-right: 10px;
}

.mt-1 {
	margin-top: 10px;
}

.mt-2 {
	margin-top: 20px;
}

.mt-3 {
	margin-top: 30px;
}

.mt-5 {
	margin-top: 50px;
}

.mb-0 {
	margin-bottom: 0;
}

.mb-2 {
	margin-bottom: 20px;
}

.mb-3 {
	margin-bottom: 30px;
}

.mb-5 {
	margin-bottom: 50px;
}
.p-0{
	padding: 0;
}

.footer {
	background-color: #2E4285;
	padding: 24px;
	margin-top: 82px;
	color: #DDDDDD;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
}

.footer a {
	color: #DDDDDD;
}

#bottom-privacy {
	position: fixed;
	z-index: 999999999999;
	bottom: 0;
	right: 0;
	left: 0;
	background: #DDDDDD; /* background du block */
}
#bottom-privacy .container {
	font-size: 15px;
	line-height: 18px;
	color: #555;
	padding: 20px 35px;
}
#bottom-privacy .container .btn {
	width: 138px;
	height: 38px;
	margin: 0 auto;
	border: 0;
	color: #fff;
	background: #2E4285; /* background du bouton */
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	float: none;
	display: block;
	transition: all 250ms;
	position: relative;
	line-height: 25px;
	border-radius: 0;
}

#bottom-privacy .container a {
	color: #2E4285;
}

/*--- RESPONSIVE ---*/

@media (max-width: 1200px) {
	.navbar-header {
		float: none;
	}

	.navbar-left, .navbar-right {
		float: none !important;
	}

	.navbar-toggle {
		display: block;
	}

	.navbar-collapse {
		border-top: 1px solid transparent;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
		text-align: center;
	}

	.navbar-fixed-top {
		top: 0;
		border-width: 0 0 1px;
	}

	.navbar-collapse.collapse {
		display: none !important;
	}

	.navbar-nav {
		float: none !important;
		margin-bottom: 0;
	}

	.navbar-nav > li {
		float: none;
	}

	.navbar-nav > li > a {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.collapse.in {
		display: block !important;
	}

	.dropdown-menu {
		width: 100%;
		position: static;
		text-align: center;
		box-shadow: none;
		border-right: none;
		border-left: none;
		margin-bottom: 10px;
		padding: 0;
	}

	.dropdown-menu li a {
		background-color: #eee;
	}

	.dropdown-menu li a:hover {
		background-color: #2A4287 !important;
	}

	#menu li a {
		border-bottom: 1px solid lightgrey;
	}

	#menu li a:hover {
		background-color: #2A4287;
		color: #fff;
	}

	#main-nav {
		margin-bottom: 0;
	}


	#secondary-nav {
		background-color: #eee;
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	body {
		padding-bottom: 500px;
	}

	.fiche-membre {
		display: block;
	}

	.jumbotron > .macaron-congret {
		width: 150px;
		right: 0;
		left: 10%;
	}
}

#membersList ul {
	margin:0;
	padding:0;
}

#membersList ul li {
	list-style-type:none;
	margin:0 0 30px 0;
}
#titlebanner {
	font-size: 35px;
}
.blanc {
	color: #ffffff;

}

.separator-2, .separator-3 {
	width: 100%;
	margin-bottom: 15px;
	position: relative;
	height: 1px;
}


.separator-2::after {
	height: 1px;
	background: #d1d1d1;
	background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0.18)), color-stop(35%, rgba(0, 0, 0, 0.12)), color-stop(70%, rgba(0, 0, 0, 0.05)), color-stop(100%, rgba(0, 0, 0, 0)));
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
	background: -o-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
	background: -ms-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
	position: absolute;
	bottom: -1px;
	left: 0px;
	content: "";
	width: 100%;
}

.scrollTop {
	width: 50px;
	height: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background-color: #2E4285;
	color: #fff;
	text-align: center;
	font-size: 25px;
	padding: 6px 0;
	cursor: pointer;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1;
}
.new-collegue a.remove {
	display: block;
	margin-top: -15px;
	text-align: right;
	cursor: pointer;

}
.new-collegue   {
	background-color: #000000;  
}

.alertbig {
	padding: 40px;
}
.ribbon {
	width: 150px;
	margin-right:15px;
	height: 150px;
	overflow: hidden;
	position: absolute;
  }
  .ribbon::before,
  .ribbon::after {
	position: absolute;
	z-index: -1;
	content: '';
	display: block;
	border: 5px solid #2A4287;
  }
  .ribbon span {
	position: absolute;
	display: block;
	width: 225px;
	padding: 15px 0;
	background-color: #2A4287;
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
	color: #fff;
	font: 400 18px/1 'Lato', sans-serif;
	text-shadow: 0 1px 1px rgba(0,0,0,.2);

	text-align: center;
  }
  
.ribbon-top-right {
	top: -10px;
	right: -10px;
  }
  .ribbon-top-right::before,
  .ribbon-top-right::after {
	border-top-color: transparent;
	border-right-color: transparent;
  }
  .ribbon-top-right::before {
	top: 0;
	left: 0;
  }
  .ribbon-top-right::after {
	bottom: 0;
	right: 0;
  }
  .ribbon-top-right span {
	left: -25px;
	top: 30px;
	transform: rotate(45deg);
  }
  

  /* bottom right*/
.ribbon-bottom-right {
	bottom: -10px;
	right: -10px;
  }
  .ribbon-bottom-right::before,
  .ribbon-bottom-right::after {
	border-bottom-color: transparent;
	border-right-color: transparent;
  }
  .ribbon-bottom-right::before {
	bottom: 0;
	left: 0;
  }
  .ribbon-bottom-right::after {
	top: 0;
	right: 0;
  }
  .ribbon-bottom-right span {
	left: -25px;
	bottom: 30px;
	transform: rotate(-45deg);
  }
  .viewMore{
	  color : #bfbfbf;
  }