/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(../bundles/app/lib/owlcarousel/css/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}


/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(../bundles/app/lib/owlcarousel/css/AjaxLoader.gif) no-repeat center center
}
/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
@font-face {
    font-family: 'kabelbold';
    src: url('../bundles/app/fonts/itckabel_bold_1-webfont-webfont.woff2') format('woff2'),
    url('../bundles/app/fonts/itckabel_bold_1-webfont-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
  font-family: 'icomoon';
  src:  url('../bundles/app/fonts/icomoon.eot?4yoho8');
  src:  url('../bundles/app/fonts/icomoon.eot?4yoho8#iefix') format('embedded-opentype'),
    url('../bundles/app/fonts/icomoon.ttf?4yoho8') format('truetype'),
    url('../bundles/app/fonts/icomoon.woff?4yoho8') format('woff'),
    url('../bundles/app/fonts/icomoon.svg?4yoho8#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-puce:before {
  content: "\e900";
}


/************************************************************
******** GENERAL
************************************************************/

::-moz-selection { color: white;  background: #3984bd; }
::-o-selection { color: white;  background: #3984bd; }
::-webkit-selection { color: white;  background: #3984bd; }
::selection      { color: white;  background: #3984bd; }

body {font-family:"Open Sans", sans-serif;}

a, input, button {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a {color:#3984bd;}
a:hover {color:#115488;}

h1,h2,h3,h4,h5,h6 {
    font-family:"kabelbold", sans-serif;
    margin:0px;padding:0px;
}

/* Pour les liens de la topbar */
@media screen and (max-width: 450px) {
    .hidden-xxs {
        display:none;
    }
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0px;
    text-transform:uppercase;
}

.btn-default,
.btn-default:focus,
.btn-default.focus {
    color: #0e0e0e;
    background-color: #e4c978;
    border-color: #e4c978;
}

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

.btn-default i {font-size:10px;padding-left:6px;}

.int {padding:50px 0;}

.int h2 {font-size:40px;color:#3984bd;padding:10px 0 20px 0;text-align:center;}
.int h3 {padding:10px 0;}
.int h4 {padding:10px 0;}

.int .title-center {
    font-family:"kabelbold", sans-serif;
    display:block;
    padding:8px 15px;
    margin:15px 0;
    background:#3984bd;
    text-align:center;
    font-size:22px;
    color:white;
}
.int .title-left {
    font-family:"kabelbold", sans-serif;
    display:block;
    padding:8px 15px;
    margin:15px 0;
    background:#3984bd;
    text-align:left;
    font-size:22px;
    color:white;
}
.int .title-right {
    font-family:"kabelbold", sans-serif;
    display:block;
    padding:8px 15px;
    margin:15px 0;
    background:#3984bd;
    text-align:right;
    font-size:22px;
    color:white;
}

ul {list-style:none;}
ul li:before {
	font-family:"icomoon";
	content: "\e900";
	color:#115488;
	padding-right:6px;
	line-height:24px;
}
ul.nav {list-style:none !important;}
ul.nav li:before {
	content:'' !important;
	height:0px;
	padding:0px;
}
ul.nav-tabs {list-style:none !important;}
ul.nav-tabs li:before {
	content:'' !important;
	height:0px;
	padding:0px;
}

/************************************************************
******** HEADER
************************************************************/

#header {width:100%;background:#3984bd;padding:15px 0;}

.bg-header {
    border: 0;
    background:no-repeat;
    background-position: calc(50% - 8px) 0;
    background-image: url('../bundles/app/img/bg_header.png');
    position:absolute;
    top:0px;
    height:172px;
    width:60%;
    z-index:2;

}

#header .topbar {
    position: relative;
    z-index:3;
    text-align:right;
    font-size:12px;
    line-height:24px;
}
#header .topbar a {color:white;padding-left:20px;}
#header .topbar a i {color:#115488;padding-right:3px;}
#header .topbar a:hover {color:#115488;text-decoration:none;}

#header .bouton {
    float:right;
    margin-top:30px;
}

#header .logo {
    position:absolute;
    top:30px;
    width:170px;
    z-index:9;
}

#header .nom {
    position:relative;
    padding-left:200px;
    width:500px;
    color:white;
    z-index:3;
}
#header .nom a, #header .nom a:hover {color:white;text-decoration:none;}
#header .nom h1{font-size:43px;}
#header .nom h1 span {display:block;font-size:36px;}
#header .nom p {font-size:16px;letter-spacing:2.3px;}

@media screen and (max-width: 992px) {
    #header .bouton span {display:none;}
}
@media screen and (max-width: 865px) {
    .bg-header {
        background-position: 70% 0;
        width:50%;
    }
}
@media screen and (max-width: 650px) {
    #header .nom {
        width:430px;
    }
}

@media screen and (max-width: 650px) {
    #header .bouton {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 999;
    }
    #header .nom h1{font-size:20px;}
    #header .nom h1 span {display:block;font-size:17px;}
    #header .nom p {font-size:14px;letter-spacing:1px;}
}

@media screen and (max-width: 525px) {
    .bg-header {display:none;}
    #header .nom {padding-left: 130px;width: auto;}
    #header .logo {top:35px;width: 110px;}
    
}
@media screen and (max-width: 390px) {
    #header .logo {top:40px;}
    #header .nom {padding-left: 120px;}
    #header .nom h1 {padding-top:50px;}
    #header .nom p {font-size: 11px;letter-spacing: 1.1px;}
}

/************************************************************
******** MEGAMENU
************************************************************/

.navbar-default {
    background-color: #115488;
    border-color: #115488;
}

.navbar-nav > li > .dropdown-menu {
    z-index:6;
}

.bg-nav {
    border: 0;
    background: white no-repeat;
    background-position: calc(50% - 8px) -215px;
    background-image: url('../bundles/app/img/bg_header.png');
    width:60%;
    height:100%;
    position:absolute;
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 0px;
    border: 1px solid transparent;
}

@media (min-width: 768px){
    .navbar {
        border-radius: 0px;
    }
}

.navbar-brand {
    width: 70px;
    height: 50px;
    background: url('http://www.sneaker-mission.com/uploads/3/1/2/7/31279819/5617441.png') no-repeat center center;
    background-size: 50px;
}

.nav-tabs {
    display: inline-block;
    border-bottom: none;
    padding-top: 15px;
    font-weight: bold;
}
.nav-tabs > li > a,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border: none;
    border-radius: 0;
}

.nav-list { border-bottom: px solid #eee; }
.nav-list > li {
    padding: 20px 15px 15px;

}
.nav-list > li:last-child { border-right: 0px solid #eee; }
.nav-list > li > a:hover { text-decoration: none; }
.nav-list > li > a > span {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
}

.mega-dropdown { position: static !important; }
.mega-dropdown-menu {
    padding: 20px 15px 15px;
    text-align: left;
    width: 100%;

}

.mega-dropdown-menu ul {list-style:none;padding:0;}

#login-dp{
    min-width: 250px;
    padding: 14px 14px 0;
    overflow:hidden;
    background-color:rgba(255,255,255,.8);
}
#login-dp .help-block{
    font-size:12px
}
#login-dp .bottom{
    background-color:rgba(255,255,255,.8);
    border-top:1px solid #ddd;
    clear:both;
    padding:14px;
}
#login-dp .social-buttons{
    margin:12px 0
}
#login-dp .social-buttons a{
    width: 49%;
}
#login-dp .form-group {
    margin-bottom: 10px;
}
.btn-fb{
    color: #fff;
    background-color:#3b5998;
}
.btn-fb:hover{
    color: #fff;
    background-color:#496ebc
}
.btn-tw{
    color: #fff;
    background-color:#55acee;
}
.btn-tw:hover{
    color: #fff;
    background-color:#59b5fa;
}
@media(max-width:768px){
    #login-dp{
        background-color: inherit;
        color: #fff;
    }
    #login-dp .bottom{
        background-color: inherit;
        border-top:0 none;
    }
}
.navbar-login
{
    width: 305px;
    padding: 10px;
    padding-bottom: 0px;
}

.navbar-login-session
{
    padding: 10px;
    padding-bottom: 0px;
    padding-top: 0px;
}

.icon-size
{
    font-size: 87px;
}
.navbar-brand {
    width: 70px;
    height: 50px;
    background: url('http://www.sneaker-mission.com/uploads/3/1/2/7/31279819/5617441.png') no-repeat center center;
    background-size: 50px;
    padding-top: 7px;
}
.navbar-nav {
    padding-left: 15px;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #00486c;
}
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    background-color: rgb(51,79,111);
}
.nav > li {
    text-align: right;
}




.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    color: white;
    background-color: #428bca;

}
.navbar-default .navbar-nav>li>a {
    color: white;
    font-size:14px;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:0.3px;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #e4c978;
    background: rgba(17,84,136,1);
    background: -moz-linear-gradient(left, rgba(17,84,136,1) 0%, rgba(39,112,168,1) 50%, rgba(17,84,136,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(17,84,136,1)), color-stop(50%, rgba(39,112,168,1)), color-stop(100%, rgba(17,84,136,1)));
    background: -webkit-linear-gradient(left, rgba(17,84,136,1) 0%, rgba(39,112,168,1) 50%, rgba(17,84,136,1) 100%);
    background: -o-linear-gradient(left, rgba(17,84,136,1) 0%, rgba(39,112,168,1) 50%, rgba(17,84,136,1) 100%);
    background: -ms-linear-gradient(left, rgba(17,84,136,1) 0%, rgba(39,112,168,1) 50%, rgba(17,84,136,1) 100%);
    background: linear-gradient(to right, rgba(17,84,136,1) 0%, rgba(39,112,168,1) 50%, rgba(17,84,136,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#115488', endColorstr='#115488', GradientType=1 );
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #e4c978;
    background-color: #115488;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    color: #e4c978;
    background-color: #115488;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 0px 0px 5px 0;
    margin: 2px 0px 0px;
    font-size: 14px;
    list-style: none;
    background-color: white;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.14902);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.172549) 0px 6px 12px;
}


.mega-dropdown-menu > li > ul {
    padding: 0;
    margin: 0;
}

.mega-dropdown-menu > li > ul > li {
    list-style: none;
}

.mega-dropdown-menu > li > ul > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #999;
    white-space: normal;
}

.mega-dropdown-menu > li ul > li > a:hover,
.mega-dropdown-menu > li ul > li > a:focus {
    text-decoration: none;
    color: #444;
    background-color: #f5f5f5;
}

.mega-dropdown-menu .dropdown-header {
    color: #428bca;
    font-size: 18px;
    font-weight: bold;
    padding: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.mega-dropdown-menu form {
    margin: 3px 20px;
}

.mega-dropdown-menu .form-group {
    margin-bottom: 3px;
}


.mega-dropdown-menu .container {
    padding-top:30px;
    padding-bottom:30px;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-default .navbar-toggle {
    border-color: #fff;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #3984bd;
}
.navbar-default .navbar-brand {
    color: #fff;
}
.navbar-brand {
    width: 150px;
    height: 50px;
    padding-top: 0px;
    padding-left:20px;
    line-height: 50px;
}
.navbar-header {display:none;}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        font-size: 12px;
        letter-spacing: 0px;
    }
    .nav>li>a {
        padding-left:8px;
        padding-right:8px;
    }
}

@media screen and (max-width: 768px) {
    .bg-nav {display:none;}
    .mega-dropdown-menu .container {text-align: right;}
    .mega-dropdown-menu .dropdown-header a {color: #fff;}
    .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {padding: 5px 0px 5px 0px;}
    .mega-dropdown-menu a {color:#fff;}
    .navbar-header {display:block;}
}


/************************************************************
******** SLIDER
************************************************************/


#slider{
    background:#3984bd;
    position:relative;
    /*border: 0;
    background: #3984bd no-repeat;
    background-position: calc(50% - 390px) -185px;
    background-image: url('../img/bg_header.png');
    position:relative;
    width:100%;
    height:600px;*/
}

.bg-slider{
    border: 0;
    background: transparent no-repeat;
    background-position: calc(50% - 8px) -215px;
    background-image: url('../bundles/app/img/bg_header.png');
    position:absolute;
    top:0px;
    left:0px;
    height:408px;
    width:60%;
    z-index:5;
}

#owl-slider .item{
    position:relative;
    background:#3984bd;
    height:408px;
    width:100%;
}
#owl-slider .item .slider-left{
    position:absolute;
    top:0px;
    left:0px;
    background:url('../bundles/app/img/slider-left.png')no-repeat;
    width:120px;
    height:408px;
    z-index:2;
}
#owl-slider .item .slider-right{
    position:absolute;
    top:0px;
    left:648px;
    background:url('../bundles/app/img/slider-right.png')no-repeat;
    width:120px;
    height:408px;
    z-index:2;
}
#owl-slider .item .label-nom{
    position:absolute;
    top:45px;
    left:708px;
    background:#115488;
    padding:5px 20px;
    color:white;
    text-transform:uppercase;
    width:auto;
    z-index:3;
}
#owl-slider .item .label-nom h2{font-size:24px;}
#owl-slider .item .texte{
    position:absolute;
    top:145px;
    left:780px;
    color:white;
    font-size:18px;
    width:250px;
    margin-bottom:30px;
    z-index:9;
}
#owl-slider .bouton{
    position:absolute;
    bottom:40px;
    left:780px;
    color:white;
    font-size:18px;
    width:250px;
    margin-bottom:30px;
    z-index:99999;
}
#owl-slider .item .photo{
    position:absolute;
    top:0px;
    background:url('../bundles/app/img/slider-indispo.jpg') no-repeat center center;
    background-size:cover;
    width:768px;
    height:408px;
    z-index:1;
}

#owl-slider.owl-theme .owl-controls {
    margin-top: 0px;
    text-align: center;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index:9;
}

#owl-slider.owl-theme .owl-controls .owl-page span {
    margin: 5px 4px;

    background: #fff;
}

@media screen and (max-width: 1199px) {
    #owl-slider .item .texte{
        left:750px;
        font-size:15px;
        width:180px;
    }
    #owl-slider .bouton{
        bottom:0px;
        left:750px;
        width:180px;
    }
}
@media screen and (max-width: 992px) {

    #owl-slider .item .slider-right {
        position: absolute;
        top: 0px;
        left:inherit;
        right: 0px;
        background: url(../bundles/app/img/slider-right.png)no-repeat;
        width: 120px;
        height: 408px;
        z-index: 2;
    }
    #owl-slider .item .label-nom,
    #owl-slider .item .texte,
    #owl-slider .item .bouton {
        left: inherit;
        right:0px;
        width:auto;
    }
    #owl-slider .item .texte {
        background:rgba(17,84,136,.7);
        max-width:50%;
        padding:20px 20px 10px 20px;
        text-align:right;
        top:90px;
    }
    #owl-slider .item .bouton {
        bottom:15px;
        max-width:50%;
    }
    #owl-slider .item .photo{
        position:absolute;
        top:0px;
        background:url('../bundles/app/img/slider-indispo.jpg') no-repeat center center;
        background-size:cover;
        width:100%;
        height:408px;
        z-index:1;
    }
}
@media screen and (max-width: 865px) {
    .bg-slider {display:none;}
}

@media screen and (max-width: 400px) {
    #owl-slider .item .texte {max-width:100%;}
}

/************************************************************
******** CONTENT ACCUEIL
************************************************************/

.content-accueil {
    background:white;
    padding:30px;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(51,51,51,0.5);
    -moz-box-shadow: 0px 0px 12px 0px rgba(51,51,51,0.5);
    box-shadow: 0px 0px 12px 0px rgba(51,51,51,0.5);
}

.content-haut {
    padding-bottom:20px;
    border-bottom:1px solid #f5f5f5;
    margin-bottom:20px;
}

.content-left {
    border-right:1px solid #f5f5f5;
    margin-bottom:30px;
}

#owl-photos {
    margin-bottom:15px;
}
#owl-photos .item{
    margin: 7px;
    height:275px;
    background:url('../bundles/app/img/photos-indispo.jpg') no-repeat center center;
    background-size:cover;
}
#owl-photos.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;
    margin: 5px;
    padding: 3px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #115488;
    filter: Alpha(Opacity=100);
    opacity: 1;
}
#owl-photos.owl-theme .owl-controls .owl-buttons div:hover {
    background: #3984bd;
}
#owl-photos.owl-theme .owl-controls .owl-page span {
    margin: 5px 4px;
    filter: Alpha(Opacity=100);
    opacity: 1;
    background: #3984bd;
}
#owl-photos.owl-theme .owl-controls .owl-page.active span {
    background: #115488;
}
#owl-photos.owl-theme .owl-controls .owl-buttons div {
    padding: 5px 9px;
}

#owl-photos.owl-theme .owl-buttons i{
    margin-top: 2px;
}



#owl-photos.owl-theme .owl-controls .owl-buttons div {
    position: absolute;
}

#owl-photos.owl-theme .owl-controls .owl-buttons .owl-prev{
    left: -15px;
    top: 120px;
}

#owl-photos.owl-theme .owl-controls .owl-buttons .owl-next{
    right: -15px;
    top: 120px;
}

.bloc-pres {
    padding:15px 0;
}
.bloc-pres .photo {
    float:left;
    margin-right:15px;
    width:100px;
    height:120px;
    background:url('../bundles/app/img/identite-indispo.jpg') no-repeat top center;
    background-size:cover;
}
.bloc-pres .nom {
    padding-bottom:10px;
}
.bloc-pres .nom h3,
.bloc-pres .nom h4,
.bloc-pres .bouton {
    text-transform:capitalize;
}

.actu {
    background:#f5f5f5;
    padding:20px;
}
.content-actu {min-height:575px;}
.actu h3 {padding-bottom:15px;}
.small-actu {
    margin:5px 0;
    padding-bottom:10px;
    border-bottom:1px solid white;
}
.small-actu:last-child {border-bottom:0px;}

.small-actu .date {
    float: left;
    font-size: 12px;
    font-weight: 700;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 10px;
    margin-right: 10px;
    border: 1px solid #3984bd;
    padding-left: 10px;
    margin-top: 10px;
}

.small-actu .info {
    padding-top:6px;
    /*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/
}

@media screen and (max-width: 992px) {
    .actu {margin-top:15px;}
    .content-actu {min-height:inherit;height:auto;}
    .content-left {
        border-right:0px;
        border-bottom:1px solid #f5f5f5;
        margin-bottom:30px;
        padding-bottom:15px;
    }
}


/***********************************************************
******* FORMULAIRES (avec Parsley)
***********************************************************/

.coordonnees {
    background:#3984bd;
    padding:20px;
    color:white;
}
.coordonnees a {color:white;}
.coordonnees a:hover {color:#333;}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
  background-image: none;
  border: 1px solid #3984bd;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #115488;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(17,84,136, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(17,84,136, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}

.parsley-success{
    border:solid 1px #3984bd !important;
    background:#fff !important;
    color:#333 !important;

}

.parsley-error{
    border:solid 1px #e4c978 !important;
    background:rgba(228,201,120,0.2) !important;
    color:#333 !important;
}

.red,
.parsley-errors-list,
#form_contact .required{color:#333;list-style:none;}

#form_contact .succes{color:#333;}

.ui-datepicker .ui-datepicker-title select {color: #59534c;}

.parsley-error::-webkit-input-placeholder {
    color: #59534c;
}

.parsley-error:-moz-placeholder { /* Firefox 18- */
    color: #59534c;
}

.parsley-error::-moz-placeholder {  /* Firefox 19+ */
    color: #59534c;
}

.parsley-error:-ms-input-placeholder {
    color: #59534c;
}

#form_contact label.required:after {
    content:" *";
    color: #e4c978;
    position: absolute;
    margin: 0px 0px 0px 2px;
    font-size: 14px;
    padding: 0 5px 0 0;
}


/***********************************************************
******* FOOTER
***********************************************************/

#footer {
    background:#115488;
    color:#fff;
    padding:20px 0;
}
#footer .titre{font-family:"kabelbold", sans-serif;text-transform:uppercase;font-size:16px;letter-spacing:1px;padding-bottom:15px;}

.footer-up {
}
.footer-down a {
    font-size:12px;
    color:white;
    padding:0 5px;
}


#owl-partenaires .item{
    margin: 3px;
}
#owl-partenaires .item img{
    display: block;
    width: 100%;
    height: auto;
}


/***********************************************************
******* GALERIE PHOTOS
***********************************************************/

#galerie .nav-tabs {
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
#galerie .nav-tabs > li {
    text-align: left;
    background:#3984bd;
}
#galerie .nav-tabs > li.active {
    background:#e4c978;
}
#galerie .nav-tabs>li>a {
    color: white;
    padding: 10px 15px;
    display:block;
}
#galerie .nav-tabs>li>a:focus, #galerie .nav-tabs>li>a:hover {
    background-color: #115488;
    display:block;
    text-decoration:none;
}
#galerie .nav-tabs>li:focus, #galerie .nav-tabs>li:hover {
    background-color: #115488;
    cursor:pointer;
}
#galerie .nav-tabs > li.active > a, #galerie .nav-tabs > li.active > a:hover, #galerie .nav-tabs > li.active > a:focus {
    background:#e4c978;
    color:#333;
    display: block;
    text-decoration:none;
}

.photo-galerie {
    width:100%;
    max-width:250px;
    margin:5px;
    float:left;
}


/***********************************************************
******* ZONE TECH
***********************************************************/

#zone-tech {margin-top:70px;}

#zone-tech ul {
    display:block;
}
#zone-tech .nav > li {
    text-align: left;
    background: #3984bd;
}
#zone-tech .nav > li.active {
    text-align: left;
    background: #e4c978;
}
#zone-tech .nav>li>a {
    color: white;
}
#zone-tech .nav>li.active>a {
    color: #333;
    background: #e4c978;
}
#zone-tech .nav > li.active:hover {
    background: #e4c978;
}
#zone-tech .nav > li:hover {
    background: #115488;
}
#zone-tech .nav > li > a:hover,
#zone-tech .nav > li > a:focus {
  text-decoration: none;
  background-color: #115488;
}
#zone-tech .nav > li.active > a:hover,
#zone-tech .nav > li.active > a:focus {
    color: #333;
    background: #e4c978;
}
@media screen and (max-width: 768px) {
    #zone-tech {margin-top:0px;margin-bottom:30px;}
}

/***********************************************************
******* FLUX D'INFOS
***********************************************************/

ul.flux-infos {
    line-height: 35px;
    padding:0px;
    margin:0px;
}
ul.flux-infos strong {color:#3984bd;}


.pagination-flux-infos {text-align:center;margin-top:40px;}
.pagination-flux-infos ul.paginationSimple {
    display:inline-block;
    list-style:none !important;
    padding:0px;
    margin:0px;
    text-align:center;
}
.pagination-flux-infos ul.paginationSimple li:before {
	content:'' !important;
	height:0px;
	padding:0px;
}
.pagination-flux-infos ul.paginationSimple>li{
    display:inline;
}

.pagination-flux-infos ul.paginationSimple>li>a{
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #3984bd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination-flux-infos ul.paginationSimple>li>a:hover{background:#115488;color:white;border-color:#115488;}
.pagination-flux-infos ul.paginationSimple>.active>a, .pagination-flux-infos ul.paginationSimple>.active>a:focus, .pagination-flux-infos ul.paginationSimple>.active>a:hover{
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #3984bd;
    border-color: #3984bd;
}

.widget-facebook {
  height: 645px;
}
.widget-facebook .facebook_iframe {
  border: none;
}
