/*
/*----------------------------------------------------------------------------------------------------------------------------*/
/*                                                      GENERAL STYLES                                                        */
/*----------------------------------------------------------------------------------------------------------------------------*/

/*
Theme Name: zoo
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0
License: GNU General Public License
License URI: license.txt
Text Domain: zoo
Domain Path: /languages/
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 zoo is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
    color: #5b5b5b;
    font: 15px/23px 'Helvetica Neue', Helvetica, Arial;
	background: #fff;
    -webkit-font-smoothing: antialiased;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
p {
	margin-bottom: 1.5em;
}
b, strong {
	font-weight: 900;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 80%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background: #e8e6e6;
	border: 0;
	height: 1px;
	margin: 10px 0 35px;
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: square;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
label {
    float: left;
    display: block;
    width: 21%;
    color: #2a2a2a;
    font: 900 14px/14px 'Turmino';
    margin: 0 2% 0 0;
}
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	*vertical-align: middle; /* Improves appearance and consistency in IE6/IE7 */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {

}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {

}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    width: 100%;
    height: 42px;
    color: #444;
    font: 400 14px/22px 'Turmino';
    padding: 10px 20px;
    margin: 0 0 20px;
    outline: none;
    background: #fcfcfc;
    border: 1px solid #c6c7c7;
}
textarea {
	overflow: auto;
	vertical-align: top;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea {
    border-color: #222;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #db840f;
    text-decoration: none;
}
a:hover {
	color: #000;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

.mobile-billetterie{
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    color: #fff;
    font: 700 20px/35px 'Turmino';
    padding: 7px 0;
    background: rgba( 230, 143, 26, 1);
    z-index: 99;
    text-align: center;
    margin: 0;
}
.mobile-billetterie:hover{
    color: #fff;
}
.mobile-billetterie .ico{
    display: inline-block;
    width: 35px;
    height: auto;
    margin: 0 2.5% 0 0;
    margin-bottom: -9px;
}
@media only screen and (max-width: 767px) {
    .mobile-billetterie{
        display: block;
    }
}


.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation a {
	display: block;
	text-decoration: none;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	display: none;
	float: left;
	left: 0;
	position: absolute;
	top: 1.5em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: 100%;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	display: block;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}
/* Small menu */
.menu-toggle {
	cursor: pointer;
	display: none;
}
@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 20px;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 25px;
}

.mobile-caption {
    display:none;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.wp-caption {
	border: 1px solid #ccc;
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 1.2% auto 0;
	max-width: 98%;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.site-main .gallery {
	margin-bottom: 1.5em;
}
.gallery-caption {
}
.site-main .gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
.site-main .gallery dd,
.site-main .gallery figcaption {
	margin: 0;
}
.site-main .gallery-columns-4 .gallery-item {
}
.site-main .gallery-columns-4 .gallery-item img {
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

.container {
    max-width: 1060px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

#site_wrapper {
    position: relative;
    overflow: hidden;
}



/*----------------------------------------------------------------------------------------------------------------------------*/
/*                                                      WEBSITE STYLES                                                        */
/*----------------------------------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------
 Header
--------------------------------------------------------------*/

.header {
    width: 100%;
    height: 74px;
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background: #000;
    background: rgba( 0, 0, 0, 0.7);
    border-bottom: 1px solid #fff;
    border-bottom-color: rgba( 255, 255, 255, 0.5);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header.scrolled { background: rgba( 0, 0, 0, 0.85); }

.header .container {
    position: static;
}


/* ---------- Beta banner ---------- */

.beta_banner {
    display: block;
    width: 125px;
    height: 125px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    background: url('images/beta_banner.png') no-repeat center center;
}

.concours_banner {
    display: block;
    width: 125px;
    height: 125px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    background: url('images/contest_banner.png') no-repeat center center;
}


/* ---------- Button mobile menu ---------- */

.btn_mobile_menu {
    float: left;
    display: none;
    color: #fff;
    font: 33px/25px 'FontAwesome';
    margin: 8px 0 0;
    cursor: pointer;
}
.btn_mobile_menu:hover { color: #fff; }


/* ---------- Logo ---------- */

.header #logo {
    float: left;
}

.header #logo img {
    width: auto;
    height: 53px;
    max-width: none;
    max-height: 100%;
}


/* ---------- Language switcher ---------- */

.header .language_switcher {
    float: right;
    display: block;
    width: 28px;
    height: 26px;
    color: #fff;
    font: 900 17px/27px 'Turmino';
    text-align: center;
    text-transform: uppercase;
    margin: 13px 0 13px 5px;
    background: #ad6c15;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header .language_switcher:hover {
    background: #e68f1a;
}


/* ---------- Main menu | Level 1 ---------- */

.header .main_menu {
    float: right;
    list-style: none;
    margin: -10px 0;
}
.header .main_menu > li {
    float: left;
    padding: 0 14px;
}

.header .main_menu > li > a {
    display: block;
    color: #fff;
    font: 300 17px/16px 'Turmino';
    text-transform: uppercase;
    padding: 30px 0 27px;
    position: relative;
    z-index: 999999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header .main_menu > li:hover > a,
.header .main_menu li a:hover {
    color: #e68f1a !important;
}
.header .main_menu > li:last-child a {
    border: none;
}

.header .main_menu > li > a:before {
    display: block;
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #e68f1a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header .main_menu > li:hover > a:before {
    height: 9px;
}


/* ---------- Main menu | Level 2 ---------- */

.header .main_menu > li > ul {
    display: none;
    width: 100%;
    padding: 30px 0;
    position: absolute;
    top: 74px;
    left: 0;
    z-index: 101;
    background: #000;
    background: rgba( 0, 0, 0, 0.8);
}
.header .main_menu > li ul {
    list-style: none;
    margin: 0;
}


.header .main_menu > li ul li {
    float: none;
    padding: 0;
    margin: 0;
    border: none;
}
.header .main_menu > li > ul > li {
    float: left;
    width: 18%;
    margin: 0 2.5% 0 0;
}
.header .main_menu > li > ul > li:last-child { margin-right: 0 !important; }


.header .main_menu > li ul li a {
    display: block;
    color: #e6e5e4;
    font: 500 15px/17px 'Helvetica Neue', 'Helvetica';
    text-transform: none;
    margin: 0 0 7px;
}

.header .main_menu > li ul li.has_child > a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 15px;
}

/* Animaux */
.header .main_menu > li.menu_animaux ul > li {
    width: 12.5%;
    margin: 0 1.5% 0 0;
}
.header .main_menu > li.menu_animaux ul > li:first-child {
    width: 16%;
}

.header .main_menu > li.menu_animaux > ul > li > a {
    color: #fff;
    font: bold 14px/17px 'Helvetica Neue', 'Helvetica';
    text-transform: uppercase;
    padding: 0;
}

.header .main_menu > li.menu_animaux ul img {
    margin: 0 0 20px;
}

.header .main_menu > li.menu_animaux ul > li > ul {
    padding: 10px 0;
}
.header .main_menu > li.menu_animaux ul > li > ul li,
.header .main_menu > li.menu_animaux ul > li > ul li:first-child {
    float: none;
    width: auto;
    margin: 0;
}

/* Large */
.header .main_menu > li.menu_animaux.menu_large ul > li {
    width: 15%;
    margin: 0 2% 0 0;
}


/* ---------- Sub menu ---------- */

.wrapper_sub_menu {
    height: 0;
    position: absolute;
    width: 100%;
    top: 74px;
    left: 0;
    z-index: 98;
}

.sub_menu {
    float: right;
    list-style: none;
    margin: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sub_menu > li {
    float: left;
    margin: 0 0 0 2px;
    position: relative;
}
.sub_menu > li > a {
    display: block;
    width: 143px;
    height: 60px;
    color: #fff;
    font: 900 15px/18px 'Turmino';
    text-transform: uppercase;
    text-align: center;
    padding: 12px 0;
    cursor: pointer;
    background: #000;
    background: rgba( 0, 0, 0, 0.7);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sub_menu > li > a:hover {
    background: #E68F1B;
    background: rgba( 230, 143, 26, 0.95);
}

/* Sub-menu */
.sub_menu li ul {
    display: none;
    width: 100%;
    list-style: none;
    padding: 10px 10px 0;
    margin: 0;
    position: absolute;
    top: 60px;
    left: 0;
    background: #000;
    background: rgba( 0, 0, 0, 0.7);
}
.sub_menu li ul li {
    padding: 0 0 10px;
}
.sub_menu li ul li a {
    display: block;
    color: #fff;
    font: 900 15px/17px 'Turmino';
    text-transform: uppercase;
    padding: 8px 10px 7px;
    background: #838181;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sub_menu li ul li a:hover {
    background: #e68f1a;
}

/* Icon */
.sub_menu li .ico {
    float: left;
    display: block;
    width: 25px;
    margin: 6px 0 0 15px;
}
.sub_menu li#sub_menu_cinema .ico {
    width: 34px;
    margin: 1px 0 0 15px;
}


/* ---------- Sub menu | Tabs ---------- */

.sub_menu_tab {
    display: none;
    background: #000;
    background: rgba( 0, 0, 0, 0.8);
    border-bottom: 1px solid #fff;
    border-bottom-color: rgba( 255, 255, 255, 0.5);
}

/* List */
.sub_menu_tab ul {
    float: right;
    list-style: none;
    margin: 20px 0;
}

.sub_menu_tab ul li {
    float: left;
    margin: 0 0 0 10px;
}

.sub_menu_tab ul li a {
    display: block;
    color: #fff;
    font: 900 18px/18px 'Turmino';
    text-transform: uppercase;
    padding: 10px 15px;
    background: #e68f1a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sub_menu_tab ul li a:hover {
    background: #838181;
}



/*--------------------------------------------------------------
 Menu mobile
--------------------------------------------------------------*/

/* ---------- Wrapper site ---------- */

#sb-site {
    min-height: 0 !important;
    overflow: hidden;
}


/* ---------- Menu ---------- */

.sb-slidebar ul {
    list-style: none;
    margin: 0;
}
.sb-slidebar > ul > li {
    padding: 15px 20px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #474747;
}
.sb-slidebar > ul > li > a {
    display: inline-block;
    color: #fff;
    font: bold 15px/17px 'Helvetica Neue', 'Helvetica';
    text-transform: uppercase;
    margin: 0 0 10px;
}

.sb-slidebar ul > li > ul a {
    display: inline-block;
    color: #c6c6c5;
    font: 14px/18px 'Helvetica Neue', Helvetica;
}
.sb-slidebar ul > li > ul {
    margin: 0;
}
.sb-slidebar ul > li > ul li {
    padding: 5px 15px;
    border-bottom: 1px solid #2f2f2f;
}
.sb-slidebar ul > li > ul li:last-child {
    border-bottom: none;
}



/*--------------------------------------------------------------
 Banner
--------------------------------------------------------------*/

.banner {
    width: 100%;
    height: 365px;
    position: relative;
    z-index: 97;
    overflow: hidden;
    background: #000 no-repeat center center;
    background-size: cover;
}
.banner.home {
    height: 650px;
}

.banner:before,
.banner .main_slider li:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.75;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url('images/pattern_banner.png');
}


/* ---------- Slider ---------- */

.banner .bx-wrapper {
    z-index: 3;
}

.banner .main_slider {
    list-style: none;
    margin: 0;
}

.banner .main_slider li a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 150;
}

.banner .main_slider li .main_slider_desktop,
.banner .main_slider li .main_slider_tablet,
.banner .main_slider li .main_slider_mobile {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 4;
	background: transparent no-repeat center center;
	background-size: cover;
}

@media all and (min-width: 1025px) {
	.banner .main_slider li .main_slider_desktop {
		display: block;
	}
}

@media all and (max-width: 1024px) {
	.banner .main_slider li .main_slider_tablet {
		display: block;
	}
}

@media all and (max-width: 641px) {
	.banner .main_slider li .main_slider_mobile {
		display: block;
	}
}

/* Prev/Next */
.banner .bx-wrapper .bx-controls-direction {
    position: static;
}
.banner .bx-wrapper  .bx-prev,
.banner .bx-wrapper  .bx-next {
    display: block;
    width: 48px;
    height: 90px;
    color: #fff;
    font: 55px/90px 'FontAwesome';
    text-align: center;
    margin-top: -15px;
    padding: 0 3px 0 0;
    position: absolute;
    top: 50%;
    left: 125px;
    z-index: 80;
    background: #E68F1B;
    background: rgba( 230, 143, 26, 0.5);
}
.banner .bx-wrapper  .bx-next {
    left: auto;
    right: 125px;
    padding: 0 0 0 3px;
}

.banner .bx-wrapper  .bx-prev:hover,
.banner .bx-wrapper  .bx-next:hover {
    color: #fff;
    background: #838181;
    background: rgba( 230, 143, 26, 0.9);
}

/* Loading */
.banner .loading_main_slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background: #fff url('images/loader.gif') no-repeat center center;
}


/* ---------- Latest news ---------- */

.banner .latest_news {
    position: absolute;
    bottom: 75px;
    left: -315px;
    z-index: 6;
    -webkit-transition: all 0.45s ease;
    -moz-transition: all 0.45s ease;
    transition: all 0.45s ease;
}
.banner .latest_news:hover {
    left: 0;
}

/* Button */
.banner .latest_news .btn_latest_news {
    float: left;
    width: 95px;
    height: 125px;
    color: #fff;
    font: 700 17px/22px 'Turmino';
    text-transform: uppercase;
    padding: 20px 0 0 20px;
    background: #e68f1a;
    background: rgba( 230, 143, 26, 0.9);
    -webkit-box-shadow: 0 0 30px rgba( 148, 97, 27, 0.5);
    -moz-box-shadow: 0 0 30px rgba( 148, 97, 27, 0.5);
    box-shadow: 0 0 30px rgba( 148, 97, 27, 0.5);
}
.banner .latest_news .btn_latest_news:before {
    display: block;
    content: "";
    width: 0;
    height: 125px;
    position: absolute;
    top: 0;
    left: 100%;
    border-left: 35px solid rgba( 230, 143, 26, 0.9);
    border-top: 62px solid transparent;
    border-bottom: 62px solid transparent;
}

.banner .latest_news .btn_latest_news .ico {
    display: block;
    text-indent: 999px;
    height: 28px;
    margin: 0 0 12px;
    overflow: hidden;
    background: url('images/ico_megaphone.png') no-repeat center center;
    background-size: auto 100%;
}

/* Post */
.banner .latest_news .post_latest_news {
    float: left;
    width: 315px;
    height: 125px;
    padding: 23px 20px;
    background: #e68f1a;
    background: rgba( 230, 143, 26, 0.9);
}

.banner .latest_news .post_latest_news h3 {
    color: #fff;
    font: 900 16px/19px 'Turmino';
    text-transform: uppercase;
    margin: 0 0 5px;
}
.banner .latest_news .post_latest_news h3 a { color: #fff; }
.banner .latest_news .post_latest_news h3 a:hover { color: #000; }

.banner .latest_news .post_latest_news p {
    color: #fff;
    font: 700 14px/19px 'Turmino';
    margin: 0;
}


/* ---------- Infos horaire ---------- */

.banner .misc_buttons {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

/* Collations */
.banner .misc_buttons .btn_collations {
    float: right;
    display: block;
    width: 290px;
    color: #fff;
    font: 900 19px/23px 'Turmino';
    text-transform: uppercase;
    padding: 10px 70px 8px 30px;
    position: relative;
    background: #222;
    background: rgba( 29, 29, 29, 0.75);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.banner .misc_buttons .btn_collations .corner {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -6px;
    left: 0;
    border-top: 6px solid transparent;
    border-right: 290px solid rgba( 29, 29, 29, 0.75);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.banner .misc_buttons .btn_collations:before {
    display: block;
    content: "\f107";
    color: #fff;
    font: normal 30px/10px 'FontAwesome';
    margin-top: -5px;
    position: absolute;
    top: 50%;
    right: 26px;
}

.banner .misc_buttons .btn_collations:hover {
    background: #000;
}
.banner .misc_buttons .btn_collations:hover .corner {
    border-right-color: rgba( 29, 29, 29, 1);
}

/* Dropdown Collations */
.dropdown_collations {
    display: none;
    width: 100%;
    padding: 30px 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    background: #1d1d1d;
}

.dropdown_collations .half {
    width: 42%;
}
.dropdown_collations .half.last { float: right; }

.dropdown_collations h3 {
    color: #e68f1a;
    font: 900 17px/20px 'Turmino';
    text-transform: uppercase;
    margin: 0 20px 12px;
}
.dropdown_collations .half.last h3 { margin: 0 0 12px; }

.dropdown_collations ul {
    list-style: none;
    margin: 0;
}
.dropdown_collations ul li {
    color: #929292;
    font: 14px/17px 'Helvetica Neue', 'Helvetica';
    text-transform: uppercase;
    padding: 6px 20px;
    border-bottom: 1px solid #313131;
}
.dropdown_collations ul li:last-child { border: none; }
.dropdown_collations ul li span {
    float: right;
    display: block;
    width: 55px;
}

.dropdown_collations p {
    color: #c9c9c9;
    font: italic 900 20px/28px 'Turmino';
    margin: 35px 60px 40px 0;
}

.dropdown_collations .button {
    float: right;
    margin: 0;
}

/* Horaire */
.banner .misc_buttons .info_horaire {
    float: right;
    display: block;
    width: 350px;
    color: #fff;
    font: 700 14px/19px 'Turmino';
    padding: 10px 0 8px 15px;
    margin: 7px 0 0;
    position: relative;
    background: #e68f1a;
    background: rgba( 230, 143, 26, 0.8);
}
.banner .misc_buttons .info_horaire strong {
    display: block;
    font: 900 20px/20px 'Turmino';
}

.banner .misc_buttons .info_horaire .ico {
    float: left;
    display: block;
    font: normal 37px/38px 'FontAwesome';
    margin: 0 15px 0 5px;
}

.banner .misc_buttons .info_horaire .corner {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -7px;
    left: 0;
    border-top: 7px solid transparent;
    border-right: 350px solid rgba( 230, 143, 26, 0.8);
}


/* ---------- Breadcrumbs ---------- */

.banner .wrapper_breadcrumbs {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.banner .wrapper_breadcrumbs .breadcrumbs {
    color: #fff;
    font: 14px/20px 'Helvetica Neue', Helvetica;
    padding: 5px 10px;
    background: #000;
    background: rgba( 0, 0, 0, 0.75);
}

.banner .wrapper_breadcrumbs .breadcrumbs a { color: #fff; }
.banner .wrapper_breadcrumbs .breadcrumbs a:hover { color: #e68f1a; }

.banner .wrapper_breadcrumbs .breadcrumbs .separator {
    display: inline-block;
    padding: 0 10px;
}

.banner .wrapper_breadcrumbs .breadcrumbs .current {
    color: #e68f1a;
}


/* ---------- Banner Prescolaire ---------- */

.banner.banner_prescolaire {
    height: 530px;
    background-size: auto 100%;
}

.banner.banner_prescolaire:before {
    display: none;
}

/* Logo */
.banner .logo_prescolaire {
    margin: 0 0 40px 130px;
}



/*--------------------------------------------------------------
 Content | Home
--------------------------------------------------------------*/

/* ---------- Animaux ---------- */

.wrapper_animaux {
    overflow: hidden;
    padding: 50px 0;
}

/* Texts */
.wrapper_animaux h2 {
    color: #414141;
    font: 300 40px/38px 'Turmino';
    text-align: center;
    margin: 0 0 25px;
}

.wrapper_animaux p {
    color: #5b5b5b;
    font: 300 18px/23px 'Turmino';
    text-align: center;
    margin: 0 0 15px;
}

.wrapper_animaux .button {
    float: right;
    margin: 30px 0 0;
}

/* Menu */
.menu_slider_animaux {
    padding: 30px 0 35px;
}

.menu_slider_animaux .animal_name_cat {
    float: left;
    display: block;
    color: #df8f12;
    font: 600 18px/35px 'Turmino';
}

.menu_slider_animaux ul {
    float: right;
    list-style: none;
    margin: 0;
}
.menu_slider_animaux ul li {
    float: left;
    color: #fff;
    font: 700 14px/25px 'Turmino';
    padding: 5px 20px;
    margin: 0 0 0 10px;
    cursor: pointer;
    background: #2a2a2a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu_slider_animaux ul li:hover {
    background: #727272;
}
.menu_slider_animaux ul li.active {
    background: #df8f12;
}

.menu_slider_animaux p {
    float: right;
    color: #1f1f1f;
    font: 600 14px/35px 'Turmino';
    margin: 0 5px 0 0;
}


/* Shades */
.main_slider_animaux {
    height: 336px;
    margin: 30px 0 0;
    position: relative;
    overflow: hidden;
    z-index: 96;
}

.main_slider_animaux .shade {
    display: block;
    width: 100px;
    height: 261px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    background: #fff;
    background: rgba( 255, 255, 255, 0.65);
}
.main_slider_animaux .shade.shade_right {
    left: auto;
    right: 0;
}

/* Slider */
.wrapper_slider_animaux {
    margin: 0 65px;
}
.wrapper_slider_animaux .bx-viewport {
    overflow: visible !important;
}

.wrapper_slider_animaux ul {
    list-style: none;
    margin: 0;
}

.wrapper_slider_animaux .thumb {
    position: relative;
}
.wrapper_slider_animaux .thumb span {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    font: 600 28px/30px 'Turmino';
    text-transform: uppercase;
    text-align: center;
    padding: 77px 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 0;
    filter: alpha(opacity=0);
    background: #e68f1a;
    background: rgba( 230, 143, 26, 0.85);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.wrapper_slider_animaux li:hover .thumb span {
    opacity: 1;
    filter: alpha(opacity=100);
}
.wrapper_slider_animaux img {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.wrapper_slider_animaux h3 {
    color: #505050;
    font: 700 14px/20px 'Turmino';
    text-align: center;
    padding: 13px 0;
    margin: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.wrapper_slider_animaux li:hover h3 {
    color: #fff;
    background: #e68f1a;
}


.wrapper_slider_animaux .bx-wrapper .bx-controls-direction {
    position: static;
}
.wrapper_slider_animaux .bx-wrapper .bx-controls-direction a {
    float: none;
    color: #444;
    font: 70px/40px 'FontAwesome';
    margin: 0;
    position: absolute;
    top: 87px;
    left: -50px;
    z-index: 9;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.wrapper_slider_animaux .bx-wrapper .bx-controls-direction a.bx-next {
    left: auto;
    right: -50px;
}

.wrapper_slider_animaux .bx-wrapper .bx-controls-direction a:hover {
    color: #000;
}


/* ---------- Cameras ---------- */

.wrapper_camera {
    padding: 50px 0;
    position: relative;
    overflow-x: hidden;
    background: #f6f6f6;
}

.wrapper_camera:before {
    display: block;
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 50px solid #fff;
    border-right: 2600px solid #f6f6f6;
}

/* Title */
.wrapper_camera h3 {
    color: #414141;
    font: 300 40px/38px 'Turmino';
    text-align: center;
    margin: 30px 0 50px;
}

.wrapper_camera h3 span {
    display: inline-block;
    margin: 0 25px -10px 0;
}

/* List */
.wrapper_camera .camera_list {
    list-style: none;
    margin: 0;
}

.wrapper_camera .camera_list li {
    float: left;
    width: 23.5%;
    margin: 0 2% 0 0;
}
.wrapper_camera .camera_list li:last-child {
    margin: 0;
}

/* Thumb */
.wrapper_camera .camera_list li .camera_thumb {
    position: relative;
}

.wrapper_camera .camera_list li .camera_thumb .btn_play {
    display: block;
    width: 70px;
    height: 70px;
    color: #fff;
    font: 20px/24px 'FontAwesome';
    text-align: center;
    padding: 23px 0 23px 4px;
    position: absolute;
    bottom: 20px;
    right: 15px;
    background: #000;
    background: rgba( 0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.5);
    -moz-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.5);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.wrapper_camera .camera_list li:hover .camera_thumb .btn_play {
    background: rgba( 0, 0, 0, 0.55);
    -webkit-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.8);
    -moz-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.8);
}

/* Name */
.wrapper_camera .camera_list li h4 {
    margin: 0;
}
.wrapper_camera .camera_list li h4 a {
    display: block;
    color: #505050;
    font: 700 16px/20px 'Turmino';
    text-align: center;
    padding: 15px 0;
    background: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.wrapper_camera .camera_list li:hover h4 a {
    color: #fff;
    background: #505050;
}


/* ---------- Misc ---------- */

.wrapper_misc {
    padding: 85px 0 120px;
    background: url('images/bg_misc.jpg') no-repeat center center;
    background-size: cover;
}

/* Header */
.wrapper_misc .header_misc {
    position: relative;
    background: #2f2f2f;
}

.wrapper_misc .header_misc h2 {
    float: left;
    color: #fff;
    font: 300 30px/36px 'Turmino';
    padding: 17px 25px;
    position: relative;
}

.wrapper_misc .header_misc a {
    display: block;
    color: #fff;
    font: 700 14px/20px 'Turmino';
    padding: 5px 10px;
    position: absolute;
    top: 20px;
    right: 85px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.wrapper_misc .header_misc a:hover {
    background: #494949;
}

.wrapper_misc .header_misc h6 {
    float: left;
    width: 198px;
    color: #fff;
    font: 900 18px/36px 'Turmino';
    text-transform: uppercase;
    padding: 17px 15px;
    position: relative;
    background: #1f1f1f;
}
.wrapper_misc .header_misc h6:before {
    display: block;
    content: "";
    width: 25px;
    height: 70px;
    position: absolute;
    top: 0;
    right: 0;
    background: #1f1f1f;
    border-top: 70px solid #2f2f2f;
    border-left: 25px solid #1f1f1f;
}
.wrapper_misc .header_misc h6 img {
    float: left;
    margin: 0 15px 0 0;
}

/* Slider */
.wrapper_misc .wrapper_slider_saviez-vous {
    height: 135px;
    overflow: hidden;
    position: relative;
}

.wrapper_misc .wrapper_slider_saviez-vous .loading,
.main_slider_animaux .loading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: #fff url('images/loader.gif') no-repeat center center;
}

.wrapper_misc .slider_saviez-vous {
    list-style: none;
    margin: 0;
}
.wrapper_misc .slider_saviez-vous li {
    overflow: hidden;
    background: #fff;
    background: rgba( 255, 255, 255, 0.75);
}

.wrapper_misc .slider_saviez-vous li .slider_thumb {
    float: left;
    width: 250px;
    margin-left: -26px;
    overflow: hidden;
    -webkit-transform: skewX(21deg);
}
.wrapper_misc .slider_saviez-vous li .slider_thumb img {
    max-width: none;
    margin-left: -10px;
    -webkit-transform: skewX(-21deg);
}

.wrapper_misc .slider_saviez-vous li .slider_content {
    display: table-cell;
    height: 135px;
    padding: 0 80px;
    vertical-align: middle;
}
.wrapper_misc .slider_saviez-vous li .slider_content p {
    color: #3a3a3a;
    font: 300 21px/26px 'Helvetica Neue', 'Helvetica';
    margin: 0;
}

.wrapper_slider_saviez-vous .bx-controls-direction {
    position: absolute;
    top: -49px;
    right: 20px;
}

.wrapper_slider_saviez-vous .bx-controls-direction a {
    float: left;
    display: block;
    color: #fff;
    font: 45px/27px 'FontAwesome';
    margin: 0 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.wrapper_slider_saviez-vous .bx-controls-direction a:hover {
    color: #db840f;
}

.wrapper_slider_saviez-vous .bx-controls-direction a.disabled {
    display: none;
}


/* Links */
.wrapper_misc .links {
    list-style: none;
    margin: 0;
}
.wrapper_misc .links li {
    float: left;
    display: table;
    width: 32%;
    height: 145px;
    margin: 2% 2% 0 0;
    background: #fff;
    background: rgba( 255, 255, 255, 0.75);
}
.wrapper_misc .links li:last-child { margin-right: 0; }

.wrapper_misc .links li .large_link {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.wrapper_misc .links li .large_link img {
    margin: 0 auto;
}

.wrapper_misc .links li > .half {
    color: #2c2c2c;
    font: 500 16px/30px 'Turmino';
    text-transform: uppercase;
    text-align: center;
    padding: 43px 0 0 8px;
}
.wrapper_misc .links li .half span {
    display: block;
    color: #fff;
    font: 900 26px/32px 'Turmino';
    background: #e68f1a;
}

.wrapper_misc .links li .half.last {
    padding: 15px 0;
}
.wrapper_misc .links li .half img {
    margin: 6px 0;
}


/* ---------- Socials ---------- */

.wrapper_social {
    position: relative;
}

/* Menu */
.wrapper_social .social_menu {
    width: 100%;
    position: absolute;
    top: -40px;
    left: 0;
    overflow: hidden;

    background: rgba( 255, 255, 255, 0.35);
}

.wrapper_social .social_menu ul {
    float: left;
    list-style: none;
    margin: 0;
    position: relative;
    left: 50%;
}

.wrapper_social .social_menu ul li {
    float: left;
    width: 160px;
    padding: 12px 0;
    position: relative;
    right: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.wrapper_social .social_menu ul li img {
    width: auto;
    height: 16px;
    margin: 0 auto;
}

.wrapper_social .social_menu ul li.active,
.wrapper_social .social_menu ul li:hover { background: #3b5998; }
.wrapper_social .social_menu ul li.active#twitter,
.wrapper_social .social_menu ul li#twitter:hover { background: #55acee; }
.wrapper_social .social_menu ul li.active#tripadvisor,
.wrapper_social .social_menu ul li#tripadvisor:hover { background: #629d2a; }

/* Facebook */
.wrapper_social .container {
    padding-top: 70px;
    padding-bottom: 100px;
}

.tabs_social {
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wrapper_social .social_tab_single {
    display: none;
    width: 100%;
    position: relative;
    z-index: 2;
}

.wrapper_social .social_tab_single ul {
    list-style: none;
    margin: 0;
}
.wrapper_social .social_tab_single ul li {
    float: left;
    width: 31%;
    margin: 0 3.5% 0 0;
}
.wrapper_social .social_tab_single ul li:nth-child(3n) {
    margin: 0;
}

.wrapper_social .social_tab_single ul li img {
    float: left;
    margin: 0 12px 0 0;
}

.wrapper_social .social_tab_single ul li h2 {
    color: #3b5998;
    font: 13px/15px 'Helvetica Neue', 'Helvetica';
    margin: 0 0 3px;
}
.wrapper_social .social_tab_single.tab_twitter ul li h2 { color: #55acee; }
.wrapper_social .social_tab_single.tab_tripadvisor ul li h2 { color: #629d2a; }

.wrapper_social .social_tab_single ul li .date {
    display: block;
    color: #4c4c4c;
    font: 11px/13px 'Helvetica Neue', 'Helvetica';
}

.wrapper_social .social_tab_single ul li p {
    color: #4c4c4c;
    font: 300 14px/20px 'Helvetica Neue', 'Helvetica';
    margin: 20px 0;
}



/*--------------------------------------------------------------
 Content | General
--------------------------------------------------------------*/

.content_page {
    padding: 0 0 125px;
}


/* ---------- Layout ---------- */

.half {
    float: left;
    width: 48%;
    margin: 0 4% 0 0;
}

.third {
    float: left;
    width: 30.6%;
    margin: 0 4% 0 0;
}

.two_third {
    float: left;
    width: 65.2%;
    margin: 0 4% 0 0;
}

.half.last,
.third.last,
.two_third.last {
    margin-right: 0;
}


/* ---------- Titles ---------- */

/* Main title */
.content_page h1.main_title {
    color: #414141;
    font: 300 40px/46px 'Turmino';
    text-align: center;
    margin: 60px 0 50px;
}

h3.main_title,
.content_page h3.main_title {
    color: #1b1b1b;
    font: 700 20px/25px 'Turmino';
    text-transform: uppercase;
    margin: 0 0 20px;
}

.content_page h1 {
    color: #353535;
    font: 300 30px/30px 'Turmino';
    margin: 25px 0;
}

.content_page h2 {
    color: #353535;
    font: 700 20px/25px 'Turmino';
    text-transform: uppercase;
    margin: 25px 0;
}

.content_page h3,
.content_page h4 {
    color: #353535;
    font: 700 20px/25px 'Turmino';
    margin: 15px 0 25px;
}

.content_page h5,
.content_page h6 {
    color: #353535;
    font: 700 16px/23px 'Turmino';
    margin: 0 0 15px;
}

.content_page h3,
.content_page h6 {
    color: #d88516;
}

/* Sub title */
.sub_title {
    text-align: center;
    margin: -15px 0 35px;
}
.content_page .sub_title p {
    color: #3c3c3c;
    font: 300 20px/26px 'Helvetica Neue', 'Helvetica';
    text-transform: uppercase;
    margin: 0 0 10px;
}

.sub_title .color_orange {
    font-style: normal;
    font-weight: 300;
}
.sub_title strong .color_orange {
    font-weight: 900;
}

.sub_title .button {
    margin: 0;
}


/* ---------- Paragraphs ---------- */

.content_page p {
    margin: 0 0 25px;
}

.color_orange {
    color: #e68f1a;
    font-weight: 900;
    font-style: italic;
}

.underline {
    text-decoration: underline;
}


/* ---------- Lists ---------- */

.content_page ul,
.content_page ol {
    margin: 0 0 25px 40px;
}

.content_page ul li,
.content_page ol li {
    margin: 0 0 10px;
}


/* ---------- Images ---------- */

.content_page img {
    margin: 0 0 25px;
}


/* ---------- Buttons ---------- */

.button {
    display: inline-block;
    color: #fff;
    font: 700 20px/25px 'Turmino';
    padding: 10px 40px;
    margin: 0 12px 12px 0;
    cursor: pointer;
    background: #e68f1a no-repeat 20px center;
    background-size: auto 60%;
    border: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Dark */
.button.dark {
    background-color: #000;
}

/* Icon */
.button.icon {
    padding-left: 70px;
    background-image: url('images/icon_paw.png');
}

/* Small */
.button.btn_small {
    font-size: 15px;
    padding: 5px 20px;
    margin: 0 9px 9px 0;
    background-position: 15px center;
}

/* Small / Icon */
.button.btn_small.icon {
    padding-left: 50px;
}

.button:hover,
.button.dark:hover {
    color: #fff;
    background-color: #838181;
}

/* FontAwesome icon */
.button .ico {
    float: left;
    display: block;
    font: 25px/23px 'FontAwesome';
    padding-right: 15px;
}



/* ---------- Tables ---------- */

.content_page table,
.contact_distance table {
    width: 100%;
    margin: 0 0 25px;
    border-collapse: collapse;
    border: 1px solid #d2d2d2;
}

.content_page table td,
.contact_distance table td,
.content_page table th,
.contact_distance table th {
    color: #4e4d4d;
    font: 700 14px/20px 'Turmino';
    padding: 12px 20px;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid #d2d2d2;
}
.content_page table.table_align_left td,
.contact_distance table.table_align_left td {
    text-align: left;
}

/* Head */
.content_page table thead,
.contact_distance table thead {
    border: 1px solid #000;
}
.content_page table thead td,
.contact_distance table thead td,
.content_page table thead th,
.contact_distance table thead th {
    color: #fff;
    font: 900 17px/18px 'Turmino';
    background: #000;
    border-left: 1px solid #717171;
}

/* Body */
.content_page table tbody tr:nth-child(2n),
.contact_distance table tbody tr:nth-child(2n) {
    background: #ecebeb;
}

/* Last column color */
.content_page table.color_last_td thead td:last-child  {
    background: #e68f1a;
}
.content_page table.color_last_td tbody tr:nth-child(2n) td:last-child  {
    background: #f7e9d5;
}

.page_prescolaire table a { color: #4e4d4d; }
.page_prescolaire table a:hover { color: #db840f; }



/*--------------------------------------------------------------
 Content | Animaux
--------------------------------------------------------------*/

/* ---------- Landing ---------- */

.wrapper_links_animaux {
    padding: 130px 0;
    border-top: 1px solid #e7e6e6;
}

.wrapper_links_animaux .single_link {
    float: left;
    width: 32%;
    margin: 0 2% 0 0;
    position: relative;
    overflow: hidden;
}
.wrapper_links_animaux .single_link:last-child { margin: 0; }

.wrapper_links_animaux .single_link h3 {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.wrapper_links_animaux .single_link h3 a {
    display: block;
    color: #fff;
    font: 700 23px/25px 'Turmino';
    text-transform: uppercase;
    padding: 0 80px 10px 10px;
    background: #000;
    background: rgba( 0, 0, 0, 0.85);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.wrapper_links_animaux .single_link h3 a:before {
    display: block;
    content: "\f0da";
    color: #fff;
    font: 40px/24px 'FontAwesome';
    margin-top: -12px;
    position: absolute;
    top: 50%;
    right: 22px;
}
.wrapper_links_animaux .single_link h3 a:after {
    display: block;
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: -20px;
    right: 0;
    border-top: 20px solid transparent;
    border-left: 330px solid rgba( 0, 0, 0, 0.85);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.wrapper_links_animaux .single_link:hover h3 a {
    background: #e68f1a;
    background: rgba( 230, 143, 26, 0.8);
}
.wrapper_links_animaux .single_link:hover h3 a:after {
    border-left: 330px solid rgba( 230, 143, 26, 0.8);
}



/*--------------------------------------------------------------
 Content | List Animaux
--------------------------------------------------------------*/

.link_animaux {
    float: left;
    width: 10.75%;
    margin: 0 2% 2% 0;
}
.link_animaux:nth-child(8n) {
    margin-right: 0;
}

/* Title */
.link_animaux h3,
.content_page .link_animaux img {
    margin: 0;
}

.link_animaux h3 a {
    display: block;
    min-height: 74px;
    color: #fff;
    font: 700 14px/18px 'Turmino';
    padding: 10px 7px;
    background: #363636;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.link_animaux:hover h3 a {
    background: #e68f1a;
}



/*--------------------------------------------------------------
 Content | Single Animaux
--------------------------------------------------------------*/

.single_animal h6 {
    color: #353535;
    margin-bottom: 5px;
}

.single_animal table {
    margin: 0 0 20px;
}


/* ---------- Demographic ---------- */

/* Image */
.demographic img {
    float: left;
    margin: 0;
}

/* Content */
.demographic .demograpic_content {
    height: 145px;
    margin: 0 0 0 145px;
    padding: 0 30px;
    background: #f3f3f3;
    border: 1px solid #dfdfdf;
}
.demographic .demograpic_content .demograpic_content_inner {
    display: table-cell;
    height: 143px;
    vertical-align: middle;
}

.demographic .demograpic_content p {
    color: #5b5b5b;
    font: 300 16px/20px 'Helvetica Neue', 'Helvetica';
    margin: 8px 0;
}
.demographic .demograpic_content strong {
    text-transform: uppercase;
}


/* ---------- Gallery ---------- */

.single_animal .gallery {
    list-style: none;
    margin: 0;
}
.single_animal .gallery li {
    float: left;
    width: 48%;
    margin: 20px 4% 0 0;
}
.single_animal .gallery li:nth-child(2n) {
    margin-right: 0;
}
.single_animal .gallery li img {
    margin: 0;
}



/*--------------------------------------------------------------
 Content | Horaire
--------------------------------------------------------------*/

/* ---------- Menu ---------- */

.tabs_menu {
    overflow: hidden;
    border-bottom: 15px solid #e68f1a;
}

.tabs_menu ul {
    float: left;
    list-style: none;
    margin: 0;
    position: relative;
    left: 50%;
}
.tabs_menu ul li {
    float: left;
    color: #fff;
    font: 300 30px/25px 'Turmino';
    padding: 20px 50px 10px 90px;
    margin: 0 4px;
    position: relative;
    right: 50%;
    min-height: 65px;
    cursor: pointer;
    background: #1b1b1b url('images/ico_sun.png') no-repeat 45px center;
    background-size: auto 55%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tabs_menu ul li#nocturne.anima{
  font-size: 25px;
  line-height: 1;
  padding-top: 5px;

}
.tabs_menu ul li#nocturne.anima small{
  font-size: 60%;

}

.tabs_menu ul li#hiver { background-image: url('images/ico_snow.png'); }
.tabs_menu ul li#nocturne { background-image: url('images/ico_moon.png'); }
.tabs_menu ul li#nocturne.anima { background-image: url('images/ico_animalumina.png'); background-position: left 30px center; }
.tabs_menu ul li:hover { background-color: #727272; }
.tabs_menu ul li.current { background-color: #e68f1a; }


/* ---------- Content tab ---------- */

.tabs_content {
    overflow: hidden;
    position: relative;
    background: -moz-linear-gradient(top, #f0f0f0 0%, #ffffff 100px);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #f0f0f0), color-stop(100px, #ffffff));
    background: -webkit-linear-gradient(top, #f0f0f0 0%, #ffffff 100px);
    background: -o-linear-gradient(top, #f0f0f0 0%, #ffffff 100px);
    background: -ms-linear-gradient(top, #f0f0f0 0%, #ffffff 100px);
    background: linear-gradient(to bottom, #f0f0f0 0%, #ffffff 100px);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#ffffff', GradientType=0 );
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Tab single */
.tab_content_single {
    display: none;
    width: 100%;
    padding: 25px 35px 0;
    position: relative;
    z-index: 2;
}

.tabs_content h3 {
    color: #1b1b1b;
    font: 700 20px/25px 'Turmino';
    text-transform: uppercase;
    margin: 0 0 25px;
}
.tabs_content h3 small {
    display: block;
    font: italic 400 14px/20px 'Turmino';
    text-transform: none;
}

/* Aside */
.tab_aside {
    float: left;
    width: 26%;
}

.tab_aside p { font-size: 16px; }
.tab_aside p strong {
    display: block;
    color: #353535;
    font: 900 14px/23px 'Turmino';
    margin: 0 0 2px;
}

/* Content */
.tab_inner_content {
    float: right;
    width: 66%;
}

.tab_inner_content table td:first-child { text-align: left; }
.tab_inner_content table td small { font-style: italic; }
.tab_inner_content table td h6 {
    color: #4e4d4d;
    font: 700 16px/25px 'Turmino';
    text-transform: uppercase;
    margin: 0 0 3px;
}

.tab_inner_content p {
    color: #4e4d4d;
    font: 700 14px/20px 'Turmino';
    margin: 0 0 12px;
}



/*--------------------------------------------------------------
 Content | Passeport
--------------------------------------------------------------*/

.content_page.page_passeport {
    padding-left: 35px;
    padding-right: 35px;
}

.content_page.page_passeport .table-title {
	margin-bottom: 10px;
}

.content_page.page_passeport .table-description {
	margin-bottom: 10px;
}

.content_page.page_passeport .notes {
    font: 700 14px/24px 'Turmino';
    margin: -10px 0 40px;
}


/* ---------- Table ---------- */

.page_passeport table td:nth-child(1),
.page_passeport table td:nth-child(2) {
    text-align: left;
}


/* ---------- Banner ---------- */

.page_passeport .rabais_banner {
    padding: 15px 30px;
    margin: 0 0 20px;
    background: #000;
}

/* Price */
.page_passeport .rabais_banner .rabais_price {
    float: left;
    width: 25%;
    color: #fff;
    font: 700 26px/44px 'Turmino';
    text-transform: uppercase;
    padding: 2px 0 0;
}
/*.page_passeport .rabais_banner .rabais_price strong {
    float: left;
    display: block;
    font-size: 45px;
    margin: -2px 10px 0 0;
}*/

/* Text */
.page_passeport .rabais_banner {
    float: left;
    width: 100%;
    color: #fff;
    font: 900 21px/23px 'Turmino';
    text-transform: uppercase;
    margin: 0 5% 0 0;
}


/* ---------- Partners ---------- */

.page_passeport .partners_small_list {
    list-style: none;
    margin: 0;
}

.page_passeport .partners_small_list li {
	float: left;
	margin: 0;
	width: 42.3%;
	margin-right: 6%;
	display: block;
	height: 90px;
}
.page_passeport .partners_small_list li a {
    display: table-cell;
    height: 75px;
    vertical-align: middle;
}
.page_passeport .partners_small_list li a img {
    margin: 0;
}


/* ---------- Buttons ---------- */

.page_passeport .button {
    float: right;
}

/* Under table */
.page_passeport .button.table_btn {
    width: 22%;
    font-size: 15px;
    text-align: center;
    padding: 7px 0;
    margin: -25px 0 0;
}

/* Last */
.page_passeport .button.icon {
    margin: 20px 0 0;
}



/*--------------------------------------------------------------
 Content | Passeport form
--------------------------------------------------------------*/

/* ---------- Texts ---------- */

/* Main title */
.passeport_form h3 {
    color: #fff;
    font: 700 20px/40px 'Turmino';
    text-transform: uppercase;
    padding: 12px 35px;
    margin: 0 0 40px;
    background: #e68f1a;
}
.passeport_form h3 .ico {
    float: left;
    display: block;
    font: 90px/40px 'Entypo';
    padding: 0 25px 0 0;
}

/* Sub-titles */
.passeport_form h4 {
    color: #3a3a3a;
    font: 900 18px/22px 'Turmino';
    text-transform: uppercase;
    margin: 0 0 15px;
}

/* Paragraphs */
.passeport_form p {
    color: #2a2a2a;
    font: 900 14px/18px 'Turmino';
    margin: 0 0 8px;
}
.passeport_form p.color_orange {
    color: #ce7c0e;
    font: italic 400 14px/18px 'Turmino';
}

/* Input button */
.passeport_form .btn_input_file {
    float: right;
    font-size: 15px;
    padding: 5px 20px;
    margin: 0 120px 0 25px;
}


/* ---------- Inputs ---------- */

#price_type_passeport {
    float: left;
    display: block;
    padding: 9px 0 10px;
    margin: 0 0 20px;
}

.passeport_form input[type="text"],
.passeport_form input[type="tel"],
.passeport_form input[type="email"] {
    width: 77%;
}

/* Labels */
.passeport_form label {
    display: table;
}
.passeport_form label span {
    display: table-cell;
    width: 100%;
    height: 42px;
    vertical-align: middle;
}

.passeport_form > .two_third > label {
    width: 17%;
    margin-right: 0;
}

.passeport_form > .third > label { width: 35%; }
.passeport_form > .third > input { width: 63%; }

.passeport_form .two_third .third label {
    width: 50.5%;
    margin-right: 4.8%;
}
.passeport_form .two_third .third input {
    width: 40%;
}

/* Custom Selects */
select {
    cursor: pointer;
    z-index: 3;
}
.customSelect {
    display: block;
    width: 83%;
    margin: 0 0 20px;
    position: relative;
    z-index: 2;
}
.customSelectInner {
    display: block;
    width: 100% !important;
    height: 42px;
    color: #444;
    font: 400 14px/22px 'Turmino';
    padding: 10px 20px;
    position: relative;
    background: #fcfcfc;
    border: 1px solid #c6c7c7;
}
.customSelectInner:before {
    display: block;
    content: "\f107";
    color: #838485;
    font: 30px/11px 'FontAwesome';
    position: absolute;
    top: 16px;
    right: 15px;
}

/* Custom Checkboxes */
.icheckbox {
    float: left;
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    margin: 9px 15px 11px 0;
    position: relative;
    cursor: pointer;
    background: #fcfcfc;
    border: 1px solid #c6c7c7;
}
.icheckbox:before {
    display: none;
    content: "\f00c";
    width: 24px;
    height: 24px;
    color: #e68f1a;
    font: 16px/23px 'FontAwesome';
    text-align: center;
    padding-right: 1px;
    position: absolute;
    top: 0;
    left: 0;
}
.icheckbox.checked:before { display: block; }

/* Submit button */
.passeport_form input[type="submit"] {
    float: right;
    margin: -15px 0 0;
}


/* ---------- Grey boxes ---------- */

.passeport_form .grey_box {
    padding: 25px 40px;
    margin: 50px 0;
    background: #f8f8f8;
}

.passeport_form .grey_box label {
    float: none;
    width: auto;
    line-height: 18px;
    margin-right: 0;
}

/* First box */
.passeport_form .grey_box.first_box label {
    float: left;
    margin: 0 15px 0 0;
}

.passeport_form .grey_box.first_box .icheckbox {
    margin-right: 50px;
}

.passeport_form .grey_box.first_box input[type=text] {
    float: left;
    width: 30%;
    margin: 0 30px 0 0;
}
.passeport_form .grey_box.first_box input[type=text].last {
    width: 15%;
    margin: 0;
}



/*--------------------------------------------------------------
 Cinéma
--------------------------------------------------------------*/

/* ---------- Sub menu ---------- */

.sub-menu {
    overflow: hidden;
    margin: -15px 0 40px;
}
.sub-menu ul {
    float: left;
    list-style: none;
    margin: 0;
    position: relative;
    left: 50%;
}
.sub-menu ul li {
    float: left;
    margin: 0 5px;
    position: relative;
    right: 50%;
}

.sub-menu ul li a {
    display: block;
    color: #fff;
    font: 700 14px/25px 'Turmino';
    padding: 5px 20px;
    background: #2a2a2a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sub-menu ul li a:hover { background: #727272; }
.sub-menu ul li.current a { background: #e68f1a; }


/* ---------- Single cinéma ---------- */

.single_cinema {
    padding: 35px;
    margin: 0 0 35px;
    position: relative;
    background: #ecebeb;
}

/* Thumb */
.single_cinema .thumb_cinema {
    float: left;
    width: 24%;
}
.single_cinema .thumb_cinema img {
    margin: 0;
}

/* Content */
.single_cinema .content_cinema {
    float: right;
    width: 74%;
}

.single_cinema h3 {
    color: #1b1b1b;
    font: 700 20px/25px 'Turmino';
    text-transform: uppercase;
    margin: 0 0 20px;
}
.single_cinema h3 a { color: #1b1b1b; }

.single_cinema .content_cinema p {
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 20px;
}
.single_cinema .content_cinema p.hours {
    color: #353535;
    font: 900 14px/23px 'Turmino';
    margin: 0;
}

/* Misc infos */
.single_cinema .content_cinema .misc_infos {
    display: inline-block;
    color: #fff;
    font: 900 14px/23px 'Turmino';
    padding: 5px;
    margin: 0 0 20px;
    background: #2a2a2a;
}
.single_cinema .content_cinema .misc_infos span {
    display: inline-block;
    padding: 0 15px;
}

/* Button trailer */
.single_cinema .btn_trailer {
    display: block;
    width: 190px;
    color: #e68f1a;
    font: 700 14px/18px 'Turmino';
    padding: 7px 0;
    position: absolute;
    bottom: 35px;
    right: 35px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.single_cinema .btn_trailer .ico {
    float: left;
    display: block;
    width: 50px;
    height: 50px;
    color: #e68f1a;
    font: 13px/16px 'FontAwesome';
    text-align: center;
    padding: 16px 0 18px 2px;
    margin: -7px 10px 0 0;
    background: #f8f7f7;
    border: 2px solid #e68f1a;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.single_cinema .btn_trailer:hover {
    color: #2a2a2a;
}
.single_cinema .btn_trailer:hover .ico {
    color: #2a2a2a;
    border-color: #2a2a2a;
}


/* ---------- Single cinéma | Other ---------- */

.single_cinema.others {
    float: left;
    width: 64.5%;
}

/* Date */
.single_cinema.others .date {
    display: block;
    color: #353535;
    font: 900 14px/20px 'Turmino';
    margin: -15px 0 40px;
}

/* Title */
.single_cinema.others h5 {
    color: #575757;
    font: 700 19px/20px 'Turmino';
    margin: 0 0 20px;
}

/* List */
.single_cinema.others ul {
    margin-left: 25px;
}

.single_cinema.others ul a {
    color: #6b6b6b;
}


/* carte interactive */


/* ---------------------------------------------------------------------------- */
/* Carte interactive */
/* ---------------------------------------------------------------------------- */

/* ---------- Sub-title ---------- */

.wrapper_carte_interactive .sub_title {
    max-width: 850px;
    margin: -15px auto 50px;
}

/* Text */
.wrapper_carte_interactive .sub_title p {
    text-transform: none;
    margin: 0 0 25px;
}

/* Mobile */
.wrapper_carte_interactive .sub_title.mobile_carte_interactive {
    display: none;
}


/* ---------- Carte ---------- */

.carte_interactive {
    position: relative;
}

/* Background */
.carte_interactive .carte_background {
    position: relative;
    z-index: -2;
}

/* Markers */
.carte_interactive .marker {
    display: block;
    width: 38px;
    height: 60px;
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: url('images/marker_orange.png') no-repeat center center;
    background-size: 100%;
}
.carte_interactive .marker.place { background-image: url('images/marker_grey.png'); }

.carte_interactive .marker .shadow {
    display: block;
    width: 20px;
    height: 6px;
    margin-left: -10px;
    position: absolute;
    bottom: -3px;
    left: 50%;
    z-index: -1;
    background: rgba( 0, 0, 0, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.carte_interactive .marker .shadow:before {
    display: block;
    content: "";
    width: 50px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -25px;
    opacity: 0;
    -webkit-box-shadow: 0 0 1px 3px #fff;
    -moz-box-shadow: 0 0 1px 2px #fff;
    box-shadow: 0 0 1px 2px #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.carte_interactive .marker:hover .shadow:before {
    -webkit-animation: pulsate 1.1s ease-out infinite;
    -moz-animation: pulsate 1.1s ease-out infinite;
    animation: pulsate 1.1s ease-out infinite;
    animation-delay: 1.1s;
}

@-moz-keyframes pulsate {
    0% { transform: scale(0.1, 0.1); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.2, 1.2); opacity: 0; }
}
@-webkit-keyframes pulsate {
    0% { -webkit-transform: scale(0.1, 0.1); opacity: 0; }
    50% { opacity: 1; }
    100% { -webkit-transform: scale(1.2, 1.2); opacity: 0; }
}

/* Description */
.carte_interactive .marker .desc {
    display: none;
    max-width: 100px;
    color: #3c3c3c;
    font: 300 15px/16px 'Helvetica Neue', 'Helvetica';
    text-align: center;
    padding: 5px 5px 7px;
    margin: 0 auto 8px;
    position: absolute;
    bottom: 80%;
    left: -100%;
    right: -100%;
    z-index: 3;
    opacity: 0;
    background: #fff;
    background: rgba( 255, 255, 255, 0.95);
}
.carte_interactive .marker .desc:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    margin-left: -5px;
    position: absolute;
    top: 100%;
    left: 50%;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    border-top: 5px solid rgba( 255, 255, 255, 0.95);
}



/* ---------------------------------------------------------------------------- */
/* Pop-up */
/* ---------------------------------------------------------------------------- */

.desc_zones .desc_content {
    padding: 25px;
    background: #fff;
}

.desc_zones .desc_page {
    float: left;
    width: 393px;
}


/* ---------- Close button ---------- */

.fancybox-close {
    display: block;
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
    background: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.fancybox-close:before {
    display: block;
    content: "x";
    width: 35px;
    height: 35px;
    color: #fff;
    font: 700 31px/32px 'Turmino';
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.fancybox-close:hover {
    background: rgba( 255, 255, 255, 0.25);
}


/* ---------- Titles ---------- */

.desc_zones h2 {
    color: #fff;
    font: 700 20px/25px 'Turmino';
    text-transform: uppercase;
    padding: 15px 25px;
    background: #e68f1a;
}

.desc_zones h3 {
    color: #1b1b1b;
    font: 700 18px/23px 'Turmino';
    text-transform: uppercase;
    margin: 0 0 15px;
}
.desc_zones h3 .ico {
    float: left;
    display: block;
    color: #1b1b1b;
    font: 22px/23px 'FontAwesome';
    margin: 0 10px 0 0;
}


/* ---------- Cameras ---------- */

.desc_zones .cameras_direct {
    float: right;
    width: 200px;
}

/* Thumb */
.desc_zones .cameras_direct .single_camera_direct .camera_thumb {
    position: relative;
}
.desc_zones .cameras_direct .single_camera_direct .btn_play {
    display: block;
    width: 55px;
    height: 55px;
    color: #fff;
    font: 19px/23px 'FontAwesome';
    text-align: center;
    padding: 17px 0 0 5px;
    position: absolute;
    bottom: 20px;
    right: 15px;
    background: #000;
    background: rgba( 0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.5);
    -moz-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.5);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.desc_zones .cameras_direct .single_camera_direct:hover .camera_thumb .btn_play {
    background: rgba( 0, 0, 0, 0.55);
    -webkit-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.8);
    -moz-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.8);
}

/* Name */
.desc_zones .cameras_direct .single_camera_direct h4 {
    margin: 0 0 25px;
}
.desc_zones .cameras_direct .single_camera_direct:last-child h4 {
    margin: 0;
}
.desc_zones .cameras_direct .single_camera_direct h4 a {
    display: block;
    color: #4e4d4d;
    font: 700 15px/20px 'Turmino';
    text-align: center;
    padding: 10px 0;
    background: #ecebeb;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.desc_zones .cameras_direct .single_camera_direct:hover h4 a {
    color: #fff;
    background: #e68f1a;
}


/* ---------- Collations ---------- */

.desc_zones table,
.desc_zones table {
    width: 100%;
    margin: 0 0 25px;
    border-collapse: collapse;
    border: 1px solid #d2d2d2;
}

.desc_zones table td,
.desc_zones table th {
    color: #4e4d4d;
    font: 700 14px/20px 'Turmino';
    padding: 8px 20px;
    text-align: left;
    vertical-align: middle;
    border-left: 1px solid #d2d2d2;
}
.desc_zones table td:last-child,
.desc_zones table th:last-child { text-align: center; }

/* Head */
.desc_zones table thead {
    border: 1px solid #000;
}
.desc_zones table thead td,
.desc_zones table thead th {
    color: #fff;
    font: 900 16px/18px 'Turmino';
    text-align: center;
    padding: 10px 20px;
    background: #000;
    border-left: 1px solid #717171;
}

/* Body */
.desc_zones table tbody tr:nth-child(2n) {
    background: #ecebeb;
}


/* ---------- Animals ---------- */

.desc_zones .especes {
    list-style: none;
    margin: 0;
}
.desc_zones .especes li {
    float: left;
    margin: 0 6px 7px 0;
}

.desc_zones .especes li a {
    display: block;
    color: #4e4d4d;
    font: 600 13px/20px 'Turmino';
    padding: 2px 12px;
    background: #ecebeb;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.desc_zones .especes li a:hover {
    color: #fff;
    background: #e68f1a;
}



/* ---------------------------------------------------------------------------- */
/* Responsive */
/* ---------------------------------------------------------------------------- */

/* ---------- Tablet Portrait/Horizontal ---------- */

@media all and (max-width: 1023px) {

    .carte_interactive .marker { width: 27px; height: 43px; }
    .carte_interactive .marker:before { width: 28px; height: 14px; }

    .carte_interactive .marker .desc { font-size: 13px; line-height: 15px; }

}


/* ---------- Mobile ---------- */

@media all and (max-width: 767px) {

    .wrapper_carte_interactive .sub_title,
    .carte_interactive { display: none; }
    .wrapper_carte_interactive .sub_title.mobile_carte_interactive { display: block; }

}

/* ---------- Notice ---------- */

.notice_cinema {
    float: right;
    width: 32%;
    color: #fff;
    font: 700 20px/30px 'Turmino';
    text-transform: uppercase;
    text-align: center;
    padding: 0 50px;
    background: #2a2a2a;
}

.notice_cinema p {
    display: table-cell;
    height: 281px;
    margin: 0;
    vertical-align: middle;
}
.notice_cinema strong {
    display: block;
    color: #e68f1a;
    font: 900 26px/35px 'Turmino';
}



/*--------------------------------------------------------------
 Emplois
--------------------------------------------------------------*/

/* ---------- Sub title ---------- */

.content_page.page_emploi .sub_title {
    margin: 0 0 75px;
}

.content_page.page_emploi h3.main_title {
    text-align: center;
}

.content_page.page_emploi .sub_title p {
    color: #5b5b5b;
    font: 16px/23px 'Helvetica Neue', 'Helvetica';
    text-transform: none;
    margin: 0 45px 25px;
}


/* ---------- Landing menu ---------- */

.content_page .menu_landing {
    list-style: none;
    margin: 0;
}

.content_page .menu_landing li {
    float: left;
    width: 18.8%;
    margin: 0 1.5% 1.5% 0;
}
.content_page .menu_landing li:nth-child(5n) { margin-right: 0; }

/* Thumb */
.content_page .menu_landing li .thumb {
    position: relative;
}
.content_page .menu_landing li img {
    margin: 0;
}

.content_page .menu_landing li .thumb span {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    font: 600 28px/30px 'Turmino';
    text-transform: uppercase;
    text-align: center;
    padding: 52px 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 0;
    filter: alpha(opacity=0);
    background: #e68f1a;
    background: rgba( 230, 143, 26, 0.85);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.content_page .menu_landing li:hover .thumb span {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* Title */
.content_page .menu_landing li .title {
    display: block;
    min-height: 83px;
    color: #fff;
    font: 600 16px/23px 'Turmino';
    text-transform: uppercase;
    padding: 7px;
    background: #000;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.content_page .menu_landing li:hover .title {
    background: #e68f1a;
}


/* ---------- Single ---------- */

.single_emploi {
    margin: 0 0 5px;
}

/* Header */
.single_emploi .header_emploi {
    padding: 10px 50px 10px 30px;
    position: relative;
    background: #f6f6f6;
}

/* Title */
.single_emploi .header_emploi h2 {
    float: left;
    width: 65%;
    color: #353535;
    font: 900 14px/20px 'Turmino';
    text-transform: none;
    margin: 8px 0 0;
    cursor: pointer;
}
.single_emploi .header_emploi h2:hover {
    color: #e68f1a;
}

/* Links */
.single_emploi .header_emploi .misc_emploi {
    float: right;
    width: 35%;
    list-style: none;
    margin: 8px 0 7px;
}
.single_emploi .header_emploi .misc_emploi li {
    float: right;
    margin: 0;
}
.single_emploi .header_emploi .misc_emploi li a {
    display: block;
    color: #e68f1a;
    font: 700 13px/14px 'Turmino';
    padding: 0 15px;
    margin: 3px 0;
    border-left: 2px solid #e68f1a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.single_emploi .header_emploi .misc_emploi li:last-child a { border: none; }

.single_emploi .header_emploi .misc_emploi li a.fancybox_video {
    font: 21px/20px 'FontAwesome';
    padding: 0 25px 0 10px;
    margin: 0;
    border: none;
}

.single_emploi .header_emploi .misc_emploi li a:hover {
    color: #757575;
}

/* Button */
.single_emploi .header_emploi .btn_emploi {
    display: block;
    width: 50px;
    height: 35px;
    position: absolute;
    top: 10px;
    right: 0;
    cursor: pointer;
    border-left: 1px solid #d8d8d8;
}
.single_emploi .header_emploi .btn_emploi:before {
    display: block;
    content: "\f067";
    width: 50px;
    height: 35px;
    color: #757575;
    font: 18px/38px 'FontAwesome';
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}

.single_emploi .header_emploi .btn_emploi:hover:before {
    color: #e68f1a;
}
.single_emploi .header_emploi .btn_emploi.active:before {
    content: "\f068";
}


/* Content */
.single_emploi .content_emploi {
    display: none;
    padding: 20px 50px 0;
}

.single_emploi .content_emploi p {
    color: #5b5b5b;
    font: 15px/22px 'Helvetica Neue', 'Helvetica';
    text-align: center;
    margin: 0 0 20px;
}



/*--------------------------------------------------------------
 Content | Galerie Photos & Galerie Vidéos
--------------------------------------------------------------*/


#gallery-sliders .gallery-slider {
    width: 48%;
    float: left;
}

#gallery-sliders .gallery-slider:first-child {
    margin: 0 4% 0 0;
}


#gallery-sliders .gallery-slider .bx-controls-direction a.bx-prev,
#gallery-sliders .gallery-slider .bx-controls-direction a.bx-next {
    color: #929292;
}

#gallery-sliders .gallery-slider .bx-controls-direction a.bx-prev:hover,
#gallery-sliders .gallery-slider .bx-controls-direction a.bx-next:hover {
    color: #000;
}

#gallery-sliders .gallery-slider .bx-wrapper .bx-controls-direction {
    top: -53px;
    right: -7px;
}

#gallery-sliders .gallery-slider .bx-wrapper .bx-controls-direction a {
    margin: 0 8px;
}

#gallery-sliders .gallery-slider .bx-wrapper .bx-pager {
    width: auto;
    text-align: left;
    color: #272727;
    padding: 0;
    position: absolute;
    top: -46px;
    bottom: auto;
    right: 70px;
    font: 15px 'Helvetica Neue', Helvetica;
}

#gallery-sliders .gallery-slider .votes {
    color: #000;
    padding: 0 0 0 35px;
}

#gallery-sliders .gallery-slider .votes i {
    font-size: 24px;
    position: absolute;
    left: 0;
}

#gallery-sliders .gallery-slider .bx-wrapper img {
    margin: 0 0 10px 0;
}

#gallery-content {
    padding: 40px 0;
    text-align: center;
}

.content_gallery p {
    text-align: center;
}


#photos-gallery img {
    margin: 0;
}

#photos-gallery a {
    display: block;
    float: left;
    width: 19.2%;
    margin: 0 1% 10px 0;
}
#photos-gallery a:nth-child(5n) { margin-right: 0; }

#loading {
    font-size: 50px;
    text-align: center;
    padding: 50px 0 0 0;
}


.single_iframe {
    float: left;
    width: 48%;
    height: 320px;
    margin: 0 4% 4% 0;
}
.single_iframe:nth-child(2n) {
    margin-right: 0;
}

.single_iframe iframe {
    width: 100%;
    height: 100%;
}

#last-videos .single_iframe {
    margin-bottom: 0;
}



/*--------------------------------------------------------------
 Content | Médias
--------------------------------------------------------------*/

.page_post {
    float: left;
    width: 77%;
}


/* ---------- Post ---------- */

.post {
    padding: 35px 0;
    border-bottom: 1px solid #e8e8e8;
}
.post:first-child { padding-top: 0 }

/* Thumb */
.post .thumb,
.single_post .thumb {
    float: left;
    max-width: 45%;
    margin: 0 30px 5px 0;
}
.post .thumb img,
.single_post .thumb img {
    margin: 0;
}

/* Title */
.post h2 {
    color: #353535;
    font: 900 16px/23px 'Turmino';
    text-transform: none;
    margin: 0 0 3px;
}
.single_post h2 { margin: 0 0 5px; }
.post h2 a { color: #353535; }
.post h2 a:hover { color: #e68f1a; }

/* Date */
.post .date,
.single_post .date {
    display: block;
    color: #818180;
    font: 13px/16px 'Helvetica Neue', 'Helvetica';
    margin: 0 0 20px;
}

/* Excerpt */
.post p {
    color: #5b5b5b;
    font: 15px/23px 'Helvetica Neue', 'Helvetica';
    margin: 0;
}
.post p a { color: #5b5b5b; }
.post p a:hover { color: #e68f1a; }

/* Button */
.single_post .button {
    float: right;
    font-size: 15px;
    padding: 5px 15px 4px;
    margin: 20px 0 0;
}


/* ---------- Pagination ---------- */

.pagination ul {
    float: right;
    list-style: none;
    margin: 20px 0;
}

.pagination ul li {
    float: left;
    color: #555;
    font: 15px/18px 'Helvetica Neue', 'Helvetica';
    margin: 0 6px;
    cursor: pointer;
}
.pagination ul li:hover {
    color: #000;
}

.pagination ul li.current {
    color: #e68f1a;
    border-bottom: 1px solid #e68f1a;
}


/* ---------- Sidebar ---------- */

.sidebar {
    float: right;
    width: 20%;
}

.sidebar .box_dark {
    margin: 0 0 30px;
    background: #2a2a2a;
}

.sidebar h3 {
    color: #fff;
    font: 700 16px/20px 'Turmino';
    text-align: center;
    padding: 13px 0 11px;
    margin: 0;
    border-bottom: 1px solid #838383;
}

.sidebar ul {
    list-style: none;
    margin: 25px 35px;
}
.sidebar ul li {
    margin: 0 0 10px;
}
.sidebar ul li a {
    display: block;
    color: #fff;
    font: 14px/16px 'Helvetica Neue', 'Helvetica';
    text-transform: capitalize;
}
.sidebar ul li a:hover {
    color: #e68f1a;
}


/*--------------------------------------------------------------
 Contact
--------------------------------------------------------------*/

/* Coordonnates */
.contact_infos {
    float: left;
    width: 32%;
}

.contact_infos p {
    color: #292929;
    font: 16px/26px 'Helvetica Neue', 'Helvetica';
    margin: 0 0 20px;
}

/* Map */
.contact_map {
    float: right;
    width: 61%;
    margin-bottom: -45px;
}


/* ---------- Roads ---------- */

.contact_distance {
    padding: 85px 0 75px;
    position: relative;
    overflow-x: hidden;
    background: #f6f6f6;
}
.contact_distance:before {
    display: block;
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 50px solid #fff;
    border-right: 2600px solid #f6f6f6;
}

.contact_distance h3.main_title {
    margin: 0 0 5px;
}

/* Map */
.contact_distance .contact_distance_map {
    float: left;
    width: 39%;
}

.contact_distance .contact_distance_map img {
    margin: 36px 0 0;
}

/* table */
.contact_distance .contact_distance_table {
    float: right;
    width: 47%;
    margin-right: 7%;
}

.contact_distance .contact_distance_table h5 {
    color: #353535;
    font: 900 14px/16px 'Turmino';
    margin: 0 0 20px;
}

.contact_distance .contact_distance_table table td {
    padding: 12px 30px;
}
.contact_distance .contact_distance_table table td:first-child {
    text-align: left;
}



/*--------------------------------------------------------------
 Caméras en direct
--------------------------------------------------------------*/

/* ---------- Position camera menu ---------- */

.menu_position_camera {
    margin: -25px 0 30px;
    overflow: hidden;
}

/* Text */
.menu_position_camera p {
    color: #353535;
    font: 900 14px/20px 'Turmino';
    text-align: center;
    margin: 0 0 10px;
}

/* Menu Position */
.menu_position_camera ul {
    float: left;
    list-style: none;
    margin: 0;
    position: relative;
    left: 50%;
}
.menu_position_camera ul li {
    float: left;
    margin: 0 10px;
    position: relative;
    right: 50%;
}
.menu_position_camera ul li a {
    text-transform: uppercase;
}


/* ---------- Camera ---------- */

.camera_en_direct {
    float: left;
    width: 459px;
    margin-left: 30px;
    background: #f3f3f3;
}

/* Title */
.camera_en_direct .camera_time {
    color: #fff;
    font: 16px/20px 'Helvetica Neue', 'Helvetica';
    text-align: center;
    padding: 10px 0;
    background: #9a9a9a;
}

/* -- Controls wrapper -- */
.controls_wrapper {
    padding: 15px 30px;
}

.controls_wrapper .control_btn {
    display: block;
    width: 23px;
    height: 23px;
    color: #fff;
    font: 25px/21px 'FontAwesome';
    text-align: center;
    cursor: pointer;
    background: #e68f1a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.controls_wrapper .control_btn:hover { background: #727272; }

.controls_wrapper .control_bar {
    list-style: none;
    margin: 10px 4px;
    background: url('images/bg_controls.gif') repeat-y center top;
    border-top: 1px solid #9b9b9b;
}

.controls_wrapper .control_bar li {
    margin: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.controls_wrapper .control_bar li:hover { background: #9a9a9a; background: rgba( 154, 154, 154, 0.1); }

.controls_wrapper .control_bar li span {
    display: block;
    height: 40px;
    margin: 0 3px;
    border-bottom: 1px solid #9b9b9b;
}
.controls_wrapper .control_bar li.large span {
    margin: 0;
}

/* Vertical */
.controls_vertical {
    float: right;
    width: 23px;
}
.controls_vertical .control_arrow_bottom { line-height: 25px; }

/* Horizontal */
.controls_horizontal,
.controls_zoom {
    float: left;
}
.controls_horizontal .control_btn {
    float: left;
    line-height: 23px;
}
.controls_horizontal .control_btn.control_arrow_left { padding-right: 2px; }
.controls_zoom .control_btn.control_arrow_right { padding-left: 2px; }

.controls_horizontal .control_bar,
.controls_zoom .control_bar {
    float: left;
    margin: 4px 10px;
    background: url('images/bg_controls.gif') repeat-x left center;
    border-left: 1px solid #9b9b9b;
    border-top: none;
}
.controls_horizontal .control_bar li,
.controls_zoom .control_bar li { float: left; }
.controls_horizontal .control_bar li span,
.controls_zoom .control_bar li span {
    width: 50px;
    height: 9px;
    margin: 3px 0;
    border-right: 1px solid #9b9b9b;
    border-bottom: none;
}
.controls_horizontal .control_bar li.large span,
.controls_zoom .control_bar li.large span {
    height: 15px;
}

/* Zoom */
.controls_zoom .control_btn {
    float: left;
    font-size: 15px;
    line-height: 25px;
}

/* Video */
.camera_video {
    float: left;
    margin: 10px 0;
}

/* -- Text -- */
.camera_content {
    float: right;
    width: 46.5%;
}


/* ---------- Animal camera menu ---------- */

.menu_animals_camera {
    padding: 35px 0;
    margin: 25px 0 0;
    overflow: hidden;
    border-top: 1px solid #c2c2c2;
}
.menu_animals_camera ul {
    float: left;
    list-style: none;
    margin: 0;
    position: relative;
    left: 50%;
}
.menu_animals_camera ul li {
    float: left;
    margin: 0 4px;
    position: relative;
    right: 50%;
}
.menu_animals_camera ul li a {
    display: block;
    color: #fff;
    font: 700 14px/20px 'Turmino';
    padding: 8px 30px 6px;
    background: #2a2a2a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu_animals_camera ul li a:hover {
    background: #727272;
}
.menu_animals_camera ul li.active a {
    background: #e68f1a;
}



/*--------------------------------------------------------------
 Partenaires
--------------------------------------------------------------*/

/* ---------- Sub title ---------- */

.partners_subtitle {
    margin: 0 50px -75px;
}

.partners_subtitle p {
    color: #5b5b5b;
    font: 16px/24px 'Helvetica Neue', 'Helvetica';
    text-align: center;
}


/* ---------- Partners categories ---------- */

.partenaires {
    padding: 95px 0;
    position: relative;
    overflow-x: hidden;
    background: #f6f6f6;
}
.partenaires:before {
    display: block;
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 50px solid #fff;
    border-right: 2600px solid #f6f6f6;
}

.partenaires .wrapper_partenaires {
    position: relative;
}

.partenaires .categories_partenaires {
    float: left;
    width: 50%;
    height: 285px;
    border-bottom: 1px solid #c6c6c6;
    border-left: 1px solid #c6c6c6;
}
.partenaires .categories_partenaires:first-of-type { border-left: none; }
.partenaires .categories_partenaires:nth-of-type(2) {
    padding: 0 0 0 70px;
}
.partenaires .categories_partenaires:nth-of-type(3) {
    padding: 60px 0 0;
    border: none;
}
.partenaires .categories_partenaires:last-of-type {
    padding: 60px 0 0 70px;
    border-bottom: none;
}

/* Title */
.partenaires .categories_partenaires:nth-of-type(3) h3,
.partenaires .categories_partenaires:last-of-type h3 {
    margin: 0 0 40px;
}

/* Lists */
.partenaires .categories_partenaires ul {
    list-style: none;
    margin: 0;
}

.partenaires .categories_partenaires li {
    float: left;
    margin: 0 60px 0 0;
}
.partenaires .categories_partenaires li:nth-child(2n) { margin: 0; }
.partenaires .categories_partenaires li a {
    display: table-cell;
    height: 110px;
    vertical-align: middle;
}
.partenaires .categories_partenaires li a img {
    margin: 0;
}

/* Square */
.partenaires .square_center {
    width: 100px;
    height: 50px;
    margin: -25px 0 0 -50px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    background: #f6f6f6;
}



/*--------------------------------------------------------------
 Horaire des collations
--------------------------------------------------------------*/

.page_collations {
    margin: 0 40px;
}


/* ---------- Layout ---------- */

.page_collations .half {
    width: 40%;
    margin: 0;
}

.page_collations .half.last {
    float: right;
    width: 55%;
}


/* ---------- Table ---------- */

.page_collations table td {
    padding: 13px 30px;
}

.page_collations table td:first-child {
    text-align: left;
}



/*--------------------------------------------------------------
 Préscolaire
--------------------------------------------------------------*/

.page_prescolaire .tabs_menu {
    padding: 30px 0 0;
}

.page_prescolaire .tabs_menu ul li {
    font: 700 14px/20px 'Turmino';
    padding: 8px 15px 6px;
    background-image: none;
}



/*--------------------------------------------------------------
 Activités Préscolaire
--------------------------------------------------------------*/

/* ---------- Informations ---------- */

.activite_infos {
    padding: 25px 30px 10px;
    background: #f4f4f4;
    border: 1px solid #d6d6d6;
}

.activite_infos p {
    color: #5b5b5b;
    font: 16px/23px 'Helvetica Neue', 'Helvetica';
    margin: 0 0 15px;
}

.activite_infos p span {
    float: left;
    display: block;
    width: 160px;
    color: #1b1b1b;
    font: 700 16px/23px 'Turmino';
    text-transform: uppercase;
}


/* ---------- Content ---------- */

.activite_wrapper_content {
    margin: 45px 0 25px;
}

.activite_wrapper_content .activite_content {
    padding: 0 0 10px 160px;
    position: relative;
}

/* Title */
.activite_wrapper_content .activite_content h3 {
    max-width: 160px;
    color: #1b1b1b;
    font: 700 16px/23px 'Turmino';
    text-transform: uppercase;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}


/* ---------- Sidebar ---------- */

.page_prescolaire .sidebar,
.page_prescolaire_activites .sidebar,
.page_prescolaire .tabs_menu {
    margin: 30px 0 0;
}

.page_prescolaire .sidebar ul,
.page_prescolaire_activites .sidebar ul {
    margin: 40px 20px;
}

/* Download link */
.sidebar .box_link {
    display: block;
    color: #fff;
    font: 700 19px/21px 'Turmino';
    text-align: center;
    padding: 30px 20px;
    cursor: pointer;
    background: #e68f1a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar .box_link img {
    margin: 0 auto 20px;
}

.sidebar .box_link:hover {
    background: #727272;
}

/*--------------------------------------------------------------
 Error page / 404
--------------------------------------------------------------*/

#error_page {
    height: 1000px;
    padding: 180px 0 0;
    background: transparent no-repeat center center / cover;
}

#error_page h2 {
    color: #fff;
    font: 300 88px/80px 'Turmino';
    text-transform: uppercase;
    margin: 0 0 15px;
}

#error_page p {
    color: #fff;
    font: 300 35px/40px 'Turmino';
    margin: 0 0 20px;
}

#error_page .button {
    float: left;
    display: block;
    font: 900 30px/30px 'Turmino';
    text-transform: uppercase;
    padding: 15px 30px;
}



/*--------------------------------------------------------------
 Footer
--------------------------------------------------------------*/

.footer {
    background: #202020;
}


/* ---------- Medias ---------- */

.footer .medias {
    padding: 25px 0;
    border-bottom: 1px solid #494949;
}

.footer .medias .main_link {
    float: left;
    display: block;
    color: #fff;
    font: 300 21px/28px 'Turmino';
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.footer .medias .main_link .ico {
    float: left;
    display: block;
    color: #fff;
    font: normal 28px/28px 'FontAwesome';
    margin: 0 15px 0 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Photos */
.footer .medias .medias_photo {
    float: left;
}

.footer .medias .medias_photo .sub_link {
    float: left;
    display: block;
    color: #b7b7b7;
    font: 300 17px/28px 'Turmino';
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.footer .medias .medias_photo .sub_link .large {
    float: left;
    display: block;
    color: #444;
    font-size: 32px;
    margin: 0 10px;
}

/* Videos */
.footer .medias .medias_video {
    float: right;
}

/* Hover */
.footer .medias .main_link:hover,
.footer .medias .main_link:hover .ico,
.footer .medias .medias_photo .sub_link:hover {
    color: #db840f;
}


/* ---------- Menus ---------- */

.footer .footer_menu {
    padding: 70px 0 25px;
}

/* List */
.footer .footer_menu ul {
    list-style: none;
    margin: 0;
}

.footer .footer_menu ul.menu > li > a,
.footer .footer_menu ul.menu > span > li > a {
    display: block;
    color: #e0e0df;
    font: 900 16px/20px 'Turmino';
    margin: 0 0 15px;
}

.footer .footer_menu ul.menu ul {
    margin: 25px 0 45px;
}
.footer .footer_menu ul.menu ul li {
    margin: 0 0 8px;
}
.footer .footer_menu ul.menu ul li a {
    display: inline-block;
    color: #c6c6c5;
    font: 14px/18px 'Helvetica Neue', Helvetica;
}

.footer .footer_menu ul.menu li a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.footer .footer_menu ul.menu li a:hover {
    color: #db840f;
}

/* Left menu */
.footer .footer_menu .menu_left {
    float: left;
    width: 68%;
}

.footer .footer_menu .menu_left ul.menu {
    /*-webkit-column-count: 3;
    -webkit-column-gap: 20px;
    -moz-column-count: 3;
    -moz-column-gap: 20px;
    column-count: 3;
    column-gap: 20px;
    max-width: 250px;
    float:  left;*/}


.footer .footer_menu .menu_left ul.menu li.title{}

.footer .footer_menu .menu_left ul.menu ul{}

.uneListe{
	min-width: 220px;
	float:  left;
	width: 33.33%;}

.footer .footer_menu .menu_left ul.menu > li {
    /*page-break-inside: avoid;
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;*/
}

.no-csscolumns .footer .footer_menu .menu_left ul.menu > li {
    float: left;
    width: 30%;
    margin-right: 3%;
}

/* Right menu */
.footer .footer_menu .menu_right {
    float: right;
    width: 29%;
    padding: 0 0 0 80px;
    position: relative;
}
.footer .footer_menu .menu_right:before {
    display: block;
    content: "";
    width: 1px;
    height: 206px;
    margin-top: -103px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #2a2a2a;
}

/* Logo AZAC */
.footer .footer_menu .link_azac {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 20px;
}


/* ---------- Contact ---------- */

.footer .infos {
    padding: 27px 0;
    background: #2f2f2f;
    border-bottom: 1px solid #3e3e3e;
}

/* Coordonnates */
.footer .infos .contact {
    float: left;
}
.footer .infos .contact p {
    float: left;
    color: #fff;
    font: 14px/20px 'Turmino';
    padding: 0 10px;
    margin: 5px 0;
    border-left: 1px solid #3e3e3e;
}
.footer .infos .contact p:first-child {
    padding-left: 0;
    border: none;
}

/* Form */
.footer form {
    float: left;
    width: 170px;
    height: 30px;
    border: 1px solid #4a4a4a;
}

.footer form input[type=text] {
    float: left;
    width: 87%;
    height: 28px;
    color: #fff;
    font: 12px/20px 'Helvetica Neue', Helvetica;
    padding: 5px 10px;
    margin: 0;
    background: none;
    border: none;
}

.footer form button {
    float: right;
    width: 13%;
    height: 28px;
    color: #c5c6c7;
    font: 15px/24px 'FontAwesome';
    text-align: center;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: none;
    border: none;
}
.footer form button:hover {
    color: #fff;
}

/* Socials */
.footer .infos .socials {
    float: right;
    list-style: none;
    margin: 5px 0;
}
.footer .infos .socials li {
    float: left;
    padding: 0 9px;
    border-right: 1px solid #3e3e3e;
}
.footer .infos .socials li:last-child {
    padding-right: 0;
    border: none;
}
.footer .infos .socials li a {
    display: block;
    color: #c5c6c7;
    font: 18px/20px 'FontAwesome';
}
.footer .infos .socials li a img {
    max-width: 85px;
    margin: 2px 0;
}


/* ---------- Copyright ---------- */

.footer .copyright {
    padding: 20px 0;
    background: #191919;
}


.footer .copyright p {
    float: left;
    color: #e6e8e8;
    font: 12px/21px 'Helvetica Neue', Helvetica;
    margin: 0;
}
.footer .copyright p.right {
    float: right;
}

.footer .copyright p a { color: #f1a9b5; }
.footer .copyright p a:hover { color: #e2405b; }


/*ajouts hoffman */
.bandeau-concours-gris {
	color: white;
	float: left;
	width: 100%;
	overflow: hidden;
	margin: 45px 0 35px 0;
}

.bandeau-concours-gris span {
	float: left;
	background-color: #1f1f1f;
	width: 20%;
	height: 70px;
	color: white;
	text-transform: uppercase;
	line-height: 70px;
	padding-left: 60px;
    background-image: url('images/trophe.png');
    background-repeat: no-repeat;
    background-position: 20px center;
    font: 600 17px/70px 'Turmino';
}

.content_page .bandeau-concours-gris h1.main_title {
    background-image: url('images/angle.png');
    background-repeat: no-repeat;
    background-position: center left;
	float: left;
	background-color: #2f2f2f;
	height: 70px;
	line-height: 70px;
	width: 80%;
	margin: 0;
	text-align: left;
	font-weight: 300;
	padding-left: 40px;
	color: white;
}

.participer-concours {
	width: 100%;
	background-image: url('images/pente.png');
	float: left;
	height:65px;
	margin-bottom: 15px;
}

.participer-concours h3 {
	color:white;
	margin: 0;
	line-height: 77px;
	float: left;
}

.right-concours, .left-concours {
	width: 47%;
	float: left;
}

.img-mobile {
	display: none;
}

@media all and (max-width: 764px) {
	.right-concours, .left-concours {
		width: 100%;
		float: left;
	}

	.img-mobile {
		display: block;
	}

	.content_page img.img-mobile {
		margin-bottom: 20px;
	}

	.img-desktop {
		display: none;
	}

	.bandeau-concours-gris span {
		width: 33%;
	}

	.content_page .bandeau-concours-gris h1.main_title {
		width: 66%;
	}
}

@media all and (max-width: 647px) {

	.bandeau-concours-gris span {
		width: 100%;
	}

    .banner .main_slider li.mobile {
        background-image:none !important;
        background-color: #d5cc30;
    }

    .banner .main_slider li.mobile .mobile-caption {
        color:#FFF;
        position:absolute;
        top:50%;
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        width:100%;
        display:block;
        padding:0 20px;
    }

    .banner .main_slider li.mobile .mobile-caption h1 {
        font: 900 30px 'Turmino';
    }

    .banner .main_slider li.mobile .mobile-caption h2 {
        font-size:20px;
    }

	.content_page .bandeau-concours-gris h1.main_title {
		width: 100%;
		background-image: none;
		padding-left: 25px;
		height: auto;
		min-height: 70px;
		line-height: 1.2;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

.right-concours {
	float: right;
}

.crayon {
	width:70px;
	height: 60px;
	margin-top: 10px;
	float: left;
	background-image: url('images/crayon.png');
	background-repeat: no-repeat;
	background-position: center center;
}

.down-arrow {
	width:20px;
	height: 20px;
	margin-top: 30px;
	float: right;
	margin-right:30px;
	background-image: url('images/down-arrow.png');
	background-repeat: no-repeat;
	background-position: center center;
}

.concours .gform_wrapper .gform_footer input.button, .concours .gform_wrapper .gform_footer input[type=submit] {
	float: right;
}

.concours input[type="text"], .concours input[type="email"], .concours input[type="tel"], .concours input[type="url"], .concours input[type="password"], .concours input[type="search"], .concours textarea {
	margin: 0;
}

.content_page .right-concours ul, .content_page .right-concours ol {
	margin: 0 0 25px 20px;
}
