/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*
	WEBSITE VARS


	TYPO

	font-family: 'citroen', sans-serif; 
   	font-family: Arial, sans-serif;


   	COLOR

	main-color : #e1412d; // RED CITROEN
	secoundary-color : #58bdf1; // Bleu clair peugeot
	third-color : #0d5fcb; // Bleu neutre

   	main-text : #3d3d3d;
   	secoundary-text : #999999;

   	main-cta : #e1412d 


*/


/* ==========================================================================
	TYPO
========================================================================== */

@font-face {
    font-family: 'citroen';
    src: url('fonts/citroen_bold_italic-webfont.eot');
    src: url('fonts/citroen_bold_italic-webfont.eot?#iefix') format('embedded-opentype'),
        url('fonts/citroen_bold_italic-webfont.woff2') format('woff2'),
        url('fonts/citroen_bold_italic-webfont.woff') format('woff');
    font-weight: 700;
    font-style: italic;

}

@font-face {
    font-family: 'citroen';
    src: url('fonts/citroen_bold-webfont.eot');
    src: url('fonts/citroen_bold-webfont.eot?#iefix') format('embedded-opentype'),
        url('fonts/citroen_bold-webfont.woff2') format('woff2'),
        url('fonts/citroen_bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;

}

@font-face {
    font-family: 'citroen';
    src: url('fonts/citroen_italic-webfont.eot');
    src: url('fonts/citroen_italic-webfont.eot?#iefix') format('embedded-opentype'),
        url('fonts/citroen_italic-webfont.woff2') format('woff2'),
        url('fonts/citroen_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;

}

@font-face {
    font-family: 'citroen';
    src: url('fonts/citroen_light_italic-webfont.eot');
    src: url('fonts/citroen_light_italic-webfont.eot?#iefix') format('embedded-opentype'),
        url('fonts/citroen_light_italic-webfont.woff2') format('woff2'),
        url('fonts/citroen_light_italic-webfont.woff') format('woff');
    font-weight: 300;
    font-style: italic;

}

@font-face {
    font-family: 'citroen';
    src: url('fonts/citroen_light-webfont.eot');
    src: url('fonts/citroen_light-webfont.eot?#iefix') format('embedded-opentype'),
        url('fonts/citroen_light-webfont.woff2') format('woff2'),
        url('fonts/citroen_light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;

}

@font-face {
    font-family: 'citroen';
    src: url('fonts/citroen_regular-webfont.eot');
    src: url('fonts/citroen_regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('fonts/citroen_regular-webfont.woff2') format('woff2'),
        url('fonts/citroen_regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;

}


/* ==========================================================================
	GENERAL
========================================================================== */

body {
    font-size: 1.8rem;
    font-family: 'citroen', sans-serif;
    /*padding-bottom: 115px;*/
    color: #595959;
}

main {
    margin-bottom: 40px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'citroen', sans-serif;
    font-weight: 400;
}

h1,
.h1 {
    font-size: 3.6rem;
}

.h2,
h2 {
    font-size: 3rem;
}

.h3,
h3 {
    font-size: 2.4rem;
}

a,
a:focus,
a:hover {
    outline: none;
}

.btn {
    border-radius: 0px;
    padding: 6px 15px;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    outline: none;
    border: none;
    position: relative;
    border: 2px solid #fff;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.btn:hover {
    background: #fff;
}

.btn--arrow {
    padding-right: 30px;
}

.btn--arrow::after {
    content: "\f054";
    font-family: FontAwesome;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translate(0, -50%);
    color: #fff;
    font-size: 1rem;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.btn--bordered {
    background: none !important;
}

/* COLOR */
.btn--red {
    background: #e1412d;
    border-color: #e1412d;
}

.btn--red.focus,
.btn--red:focus,
.btn--red:hover,
.btn--red.btn--arrow:hover::after,
.btn--red.btn--bordered.btn--arrow::after,
.btn--red.btn--bordered,
.title--red {
    color: #e1412d;
}

.img--red {
    border: 3px solid #e1412d;
}

.btn--blue {
    background: #78c3d7;
    border-color: #78c3d7;
}

.btn--blue.focus,
.btn--blue:focus,
.btn--blue:hover,
.btn--blue.btn--arrow:hover::after,
.btn--blue.btn--bordered.btn--arrow::after,
.btn--blue.btn--bordered,
.title--blue {
    color: #78c3d7;
}

.img--blue {
    border: 3px solid #78c3d7;
}

.btn--green {
    background: #a5b43c;
    border-color: #a5b43c;
}

.btn--green.focus,
.btn--green:focus,
.btn--green:hover,
.btn--green.btn--arrow:hover::after,
.btn--green.btn--bordered.btn--arrow::after,
.btn--green.btn--bordered,
.title--green {
    color: #a5b43c;
}

.img--green {
    border: 3px solid #a5b43c;
}

.btn--grey {
    background: #afafb0;
    border-color: #afafb0;
}

.btn--grey.focus,
.btn--grey:focus,
.btn--grey:hover,
.btn--grey.btn--arrow:hover::after,
.btn--grey.btn--bordered.btn--arrow::after,
.btn--bordered.btn--grey,
.title--grey {
    color: #afafb0;
}

.img--grey {
    border: 3px solid #afafb0;
}

.btn--white {
    background: #fff;
    border-color: #fff;
}

.btn--white.focus,
.btn--white:focus,
.btn--white:hover,
.btn--white.btn--arrow:hover::after,
.btn--white.btn--bordered.btn--arrow::after,
.btn--bordered.btn--white,
.title--white {
    color: #fff;
}

.img--white {
    border: 3px solid #fff;
}

.nav>li.app {
    background: #eb6428;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 99999;
}

.nav>li.app a {
    color: #fff !important;
    display: block;
    padding: 5px 25px !important;
    text-align: center;
}

.app a>img {}

.app a>span {
    display: block;
}

.app a:hover {
    text-decoration: none;
}

/*
.btn {
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	background: #78c3d7;
	padding: 6px 50px 6px 12px;
	text-transform: uppercase;
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	outline: none;
	border: none;
	position: relative;
	-webkit-transition: all ease 0.4s;
	   -moz-transition: all ease 0.4s;
	    -ms-transition: all ease 0.4s;
	     -o-transition: all ease 0.4s;
	        transition: all ease 0.4s;
}

.btn::after {
	content: "\f054";
	font-family: FontAwesome;
	position: absolute;
	right: 8px;
	top: 50%;
	transform:  translate(0, -50%);
	color: #fff;
	font-size: 1rem;
}

.btn:hover {
	background: #b93120;
	color: #fff;
}

.btn:focus {
	outline: none;
}

.landing-contests .btn,
.contests-archive .btn {
	background: #78c3d7;
}

.landing-advantages .btn,
.advantages-archive .btn {
	background: #a5b43c;
}


.btn--light {
	border:2px solid #e1412d;
	text-transform: uppercase;
	color: #e1412d;
	background:  none;
	font-size: 1.4rem;
	padding: 6px;
}

.btn--light::after {
	display: none;
}

.landing-contests .btn--light {
	color: #78c3d7;
	border-color: #78c3d7;
	background:  none;
}

.landing-advantages .btn--light {
	color: #a5b43c;
	border-color: #a5b43c;
	background:  none;
}


.btn--dark {
	border: none;
	color: #fff;
	text-transform: none;
	background:  #162536;
	font-size: 1.4rem;
	border-bottom: 4px solid #171819;
}
.btn--dark:hover {
	background: #171819;
}

.btn--grey {
	border:1px solid #afafb0;
	color: #e1412d;
	background:  #ececee;
	font-size: 1.4rem;
}
.btn--grey:hover {

}

.btn--flat {
	border: none;
}
*/

/* 
.btn-light:hover {
	color: #fff;
} */

.row-s {
    margin: 0 -10px;
}

.row-s div[class^="col-"] {
    padding: 0 10px;
}

.colored {
    color: #e1412d;
}

/* ==========================================================================
	HEADER
========================================================================== */
.brandlogo {
    max-width: 93px;
}

.header-site {
    background: none;
    padding: 21px 0;
    border-bottom: 1px solid #e3e1e1;
}

.header-site__site-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 2.2rem;
    font-family: 'citroen', Arial, sans-serif;
    display: inline-block;
    vertical-align: middle;
}

.navbar-header {
    float: none;
}

.navbar-default .navbar-brand {
    padding: 0;
    height: auto;
    font-weight: 700;
    font-size: 2.5rem;
    color: #383a3c;
    margin-bottom: 4px;
}

.navbar-default {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    background: none;
    border: none;
    margin: 0;
}

.navbar-brand>img {
    width: 75px;
    display: inline-block;
    margin-right: 40px;
    vertical-align: middle;
}

.navbar-default .navbar-nav>li>a,
.sub-menu>li>a {
    color: #767575;
    font-size: 1.5rem;
    font-family: 'citroen', Arial, sans-serif;
    margin: 0 20px;
    padding-bottom: 7px;
    padding-left: 6px;
    padding-right: 6px;
    font-weight: 400;
    text-transform: uppercase;
}

.navbar-default .navbar-nav>li.current_page_item a {
    color: #767575;
    border-bottom: none;
}

.navbar-default .navbar-nav>li a:hover,
.navbar-default .navbar-nav>li a:active,
.navbar-default .navbar-nav>li.current-menu-item a {
    color: #e1412d;
}

.navbar-nav>li.wpml-ls-menu-item {
    float: right;
    margin-top: 10px;
}

.navbar-nav>li.wpml-ls-menu-item:hover {
    border: 1px solid #e3e1e1;
    background: #fff;
}

.navbar-default .navbar-nav>li:hover>.sub-menu {
    position: relative;
}

.lang-fr #menu-item-wpml-ls-3-lu,
.lang-nl #menu-item-wpml-ls-3-lu,
.lang-lu #menu-item-wpml-ls-3-fr,
.lang-lu #menu-item-wpml-ls-3-nl,
.lang-lu #menu-item-wpml-ls-3-lu {
    display: none;
}

.sub-menu {
    position: absolute;
    left: 0;
    padding: 0;
    display: none;
    list-style: none;
}

.navbar-default .navbar-nav>li .sub-menu a:hover,
.navbar-default .navbar-nav>li.wpml-ls-current-language a:hover {
    text-decoration: none;
    border: none;
}

.navbar-default .navbar-nav>li:hover>.sub-menu {
    display: block;
}

.wpml-ls-current-language>a::after {
    content: "\f107";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    color: #e1412d;
    margin-top: -5px;
}

.navbar-default .navbar-toggle {
    border: none;
}

.navbar-default .navbar-toggle .icon-bar {
    background: #fff;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 6px;
}

.navbar-toggle .icon-bar {
    width: 42px;
    height: 4px;
}

.navbar-toggle {
    margin-top: 28px;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background: #e1412d;
}

.navbar-default .wpml-ls-current-language {
    position: absolute;
    right: 0;
}

.navbar-default .navbar-nav .wpml-ls-current-language>a,
.wpml-ls-current-language .sub-menu>li>a {
    margin: 0;
    padding-top: 6px;

}



/* ==========================================================================
	HOMEPAGE
========================================================================== */

.home-content {
    padding: 45px 0;
}

.landing-slider {
    margin-bottom: 45px;
}

.landing-slider__header {
    margin-bottom: 30px;
}

.landing-slider__title,
.pgt_archives-title h2 {
    text-align: center;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 3.5rem;
}

.landing-news .landing-slider__title,
.pgt_archives-title h2 {
    margin-top: 0;
}

.landing-contests .landing-slider__title,
.contests-archive .pgt_archives-title h2 {
    margin-top: 0;
}

.landing-advantages .landing-slider__title,
.advantages-archive .pgt_archives-title h2 {
    margin-top: 0;
}



.slider-container img {
    width: 100%;
    height: auto;
}

.slick-slide {
    position: relative;
}

.slider-container {
    position: relative;
    margin-bottom: 72px;
}

.slider__slider-content {
    position: relative;
    padding: 15px;
    left: 50%;
    margin-top: -52px;
    width: 80%;
    border: 3px solid #e1e1e1;
    transform: translate(-50%, 0);
}

.slider__post-categ {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    opacity: .6
}

.slider__post-title {
    margin-top: 4px;
    margin-bottom: 20px;
    font-weight: 100;
    /*min-height: 53px;*/
}

.slider__slider-content--white {
    background: rgba(255, 255, 255, 1);
}

.slider__slider-content--black {
    background: rgba(19, 32, 50, 1);
    color: #fff;
}

.slider__slider-content--blue {
    background: rgba(0, 126, 219, 1);
    color: #fff;
}

.slick-dots {
    padding: 0;
    margin: 25px 0;
    text-align: center;
    position: absolute;
    bottom: -72px;
    width: 100%;
}

.slick-dots li {
    display: inline-block;
    margin: 0 4px;
}

.slick-dots button {
    border: 2px solid #e1412d;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: block;
    background: #e1412d;
    text-indent: -99999px;
    padding: 0;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.landing-contests .slick-dots button {
    border-color: #78c3d7;
    background: #78c3d7;
}

.landing-advantages .slick-dots button {
    border-color: #a5b43c;
    background: #a5b43c;
}

.slick-active button,
.landing-contests .slick-active button,
.landing-advantages .slick-active button {
    background: none;
    width: 12px;
    height: 12px;
}



.slick-arrow {
    position: absolute;
    background: none;
    padding: 10px 15px;
    top: 50%;
    border: 2px solid #e1412d;
    color: #e1412d;
    z-index: 10;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.slick-arrow:hover {
    color: #fff;
    background: #e1412d;
}

.landing-contests .slick-arrow {
    color: #78c3d7;
    border-color: #78c3d7;
}

.landing-contests .slick-arrow:hover {
    color: #fff;
    background: #78c3d7;
}

.landing-advantages .slick-arrow {
    color: #a5b43c;
    border-color: #a5b43c;
}

.landing-advantages .slick-arrow:hover {
    color: #fff;
    background: #a5b43c;
}


.slick-next {
    right: -50px;
}

.slick-prev {
    left: -50px;
}

.slider__empty {
    text-align: center;
    padding: 30px;
    background: #ececee
}

.slider__empty p {
    font-size: 2.5rem;
}

.news-item img {
    border: 3px solid #e1412d;
}

.advantages-item img {
    border: 3px solid #a5b43c;
}

.contest-item img {
    border: 3px solid #78c3d7;
}

.news-item,
.contest-item,
.advantages-item {
    padding: 0 15px;
}

/* ==========================================================================
	FORM CONTEST
========================================================================== */
#pgt-form {
    min-height: 400px;
}

.midgray,
.midwhite {
    position: relative;
    padding: 50px 0;
    /*background: url(img/bg_single.png) no-repeat 20% 0;		*/
}

.single-peugeot-contest>main>section {
    background: url(img/bg_single.png) no-repeat 20% 280px;
    background-size: 640px auto;
}

/*
.midgray:before {
	background:#ececee;
	content:' ';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50%;
}
*/
.midgray>.container>.row>.col-sm-6>.content_wisiwyg {
    padding-top: 60px;
    min-height: 700px;
}

.midgray>.container>.row>.col-sm-6>.content_wisiwyg>p:first-child,
.midwhite>.container>.row>.col-sm-8>p:first-child {
    font-weight: bold;
    color: #929292;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.content_form {
    padding-left: 20px;
}

.content_form h2 {
    font-size: 2.8rem;
}

.contest_intro {
    padding: 5px 15px;
    border-left: 5px solid #c5c5c5;
    margin-bottom: 30px;
}

/*#pgt-form .tab-content {
	background:url(img/loader.gif) no-repeat center center; 
}*/
.formloader_container {
    position: relative;
    border-left: 1px solid #ececee;
    padding-bottom: 20px;
}
.formloader {
    background: #132019;
    background: rgba(19, 32, 50, 0.8);
    height: 140px;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    right: 50%;
    margin-right: -70px;
    margin-top: -70px;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    width: 140px;
    transform: scale(.5, .5);
    text-align: center;
    width: 160px;

    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.formloader img {
    margin: 0 auto;
}

.midgray.loader .formloader {
    opacity: 1;
    transform: scale(.7, .7);
}

.formloader span {
    display: block;
    padding: 5px;
    background: #fff;
    position: relative;
    top: 30px;
    font-size: 22px;
    border-radius: 6px;
    border: 1px solid #132019;
}

#pgt-form .tab-content>.tab-pane {
    /*background: #ececec;*/
}

.nav-form {
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: relative;
    display: inline-block;
    margin: 40px 0;
}

.nav-form:before {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    content: ' ';
    height: 1px;
    border-top: 1px solid #c5c5c5;
}

.nav-form li {
    display: inline-block;
    color: #c5c5c5;
    font-weight: bold;
    margin-right: 40px;
    padding: 0 10px;
    background: #fff;
    position: relative;
    border-bottom: 2px solid #fff;
}

.nav-form li:last-child {
    margin-right: 0;
}

.nav-form li.active {
    color: #e1412d;
    border-bottom: 2px solid #e1412d;
}

.nav-form li.actived {
    color: #434343;
}

.form-group {
    margin-bottom: 30px;
}

.myregistration .form-group {
    margin-bottom: 10px;
}

.form-group .req {
    font-weight: bold;
    color: #f00;
    padding-left: 4px;
}

.form-control {
    border-radius: 0;
    height: auto;
    font-size: 1.6rem;
}

.checkbox-inline,
.radio-inline,
.radio {
    color: #e1412d;
    font-weight: bold;
    margin-right: 20px;
}

.checkbox label,
.radio label {
    font-weight: 700;
}

.has-error .form-control {
    border-color: #f00;
}

.has-error .help-block {
    margin-top: 0;
    background: #ff0000;
    color: #fff;
    padding: 2px 5px;
}

.has-error .help-block ul,
.has-error .help-block li {
    margin: 0;
    padding: 0;
}

.error {
    background: #f00;
    color: #fff;
    padding: 20px;
    text-align: center;
    display: none;
    margin: 20px 0;
}

/* ==========================================================================
	HEADER ILLUSTRATION
========================================================================== */
.header-illu {
    max-height: 660px;
    overflow: hidden;
    position: relative;
    text-align: center;
    background-size: 0 !important;
}

.header-illu__content {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 50px;
}

.header-illu img {
    width: 100%;
    height: auto;
    max-width: 2000px;
    margin: 0 auto;
    display: inline-block;
    min-width: 1400px;
}

.header-illu .container {
    position: relative;
}

.header-illu .container .header-illu__title {
    position: absolute;
    padding: 15px;
    bottom: 0;
    left: 0;
    width: 50%;
    text-align: left;
}

.header-illu .container .header-illu__title h2 {
    margin: 4px 0 0;
}

.header-illu .container .header-illu__title--white {
    background: rgba(255, 255, 255, 0.8);
}

.header-illu .container .header-illu__title--black {
    background: rgba(19, 32, 50, 0.8);
    color: #fff;
}

.header-illu .container .header-illu__title--blue {
    background: rgba(0, 126, 219, 0.8);
    color: #fff;
}

.content_wisiwyg {}

.content_wisiwyg h1 {
    margin: 0 0 40px;
    font-size: 3rem;
}

.content_wisiwyg p {
    margin-bottom: 20px;
}

.content_wisiwyg h1+p {
    color: #999;
}

.content_wisiwyg h2:first-child {
    margin-top: 0px;
}

.content_wisiwyg ul,
.content_wisiwyg ol {}

.content_wisiwyg li {}

.content_quickpoll {}

.paddingleft {
    padding-left: 20px;
}

.paddingright {
    padding-right: 20px;
}

.paddingleft h1,
.paddingright h1 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 3rem;
}

.poll {
    padding-right: 60px;
    margin-bottom: 20px;
}

.poll__title {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.poll__container {
    position: relative;
}

.poll__content {
    height: 40px;
    background: #fff;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 0 1px 1px #d3d3d3;
    padding: 0;
}

.poll__result {
    height: 30px;
    background: #e1412d;
    width: 0%;
}

.poll__num {
    position: absolute;
    right: -60px;
    top: 7px;
    font-size: 1.6rem;
    font-weight: bold;
}


/* ==========================================================================
	BLOC ARCHIVES / READ MORE (A LIRE EGALEMENT)
========================================================================== */
#readtoo {
    border-top: 2px solid #ececee;
    margin: 0 0 50px;
}

#readtoo .pgt_archives-title h2 {
    text-transform: none;
    color: #132032;
    font-size: 4rem;
}

.pgt_archives-title h2 {
    margin: 0;
    padding: 60px 0;
    text-align: left;
    font-weight: 100;
}

.archive .pgt_archives-title h2 {
    padding: 30px 0;
}

.pgt_archive {
    margin-bottom: 30px;
}

.pgt_archive img {
    width: 100%;
}

.pgt_archive-content {
    padding: 5px 10px;
}

.pgt_archive-categ {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    opacity: .6
}

.pgt_archive-title {
    margin: 4px 0 20px;
    font-size: 2rem;
    min-height: 45px;
}

/**/
.pgt_archives_top {
    margin-bottom: 10px;
}

.pgt_archives_top img {
    width: 100%;
}

/*
.news-archive .pgt_archive img {
	border:  3px solid #78c3d7;
}

.contests-archive .pgt_archive img {
	border:  3px solid #78c3d7;
}

.advantages-archive .pgt_archive img {
	border:  3px solid #a5b43c;
}
*/



.pgt_archives_top .pgt_archive-content,
.pgt_archive-content {
    position: relative;
    padding: 15px 0;
    /*
	left: 50%;
	margin-top: -52px;
	width: 80%;
	border:  3px solid #e1e1e1;
	transform: translate(-50%, 0);
	background: #fff;
	*/
}

.pgt_archives_top .pgt_archive-categ {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: bold;
    opacity: .6
}

.pgt_archives_top .pgt_archive-title {
    margin-top: 4px;
    margin-bottom: 10px;
    min-height: auto;
    font-weight: bold;
}

.pgt_archives_top .pgt_archive-content p {
    margin-bottom: 30px;
}

.pgt_archives_top .pgt_archive-content p .view-article {
    display: none;
}

.pgt_archive-content--white {
    background: rgba(255, 255, 255, 1);
}

/* .pgt_archive-content--black {
	background: rgba(19, 32, 50, 0.8);
	color: #fff;
} */
/* .pgt_archive-content--blue {
	background: rgba(0, 126, 219, 0.8);
	color: #fff;
} */

/* ==========================================================================
	PAGE
========================================================================== */
.page-content {
    padding: 45px 0 60px;
}

.page-content h1 {
    margin-bottom: 30px;
}

.single-contest__title {
    font-size: 4rem;
    color: #2b3541;
    margin: 30px 0;
    font-weight: 700;
    text-transform: uppercase;
}

.img-single-desktop {

}
.img-single-mobile {
    display: none;
}

#step-contest h2 {
    font-weight: 700;
}

.single .midwhite img {
    margin-bottom: 20px;
}

.single .midwhite h3 {
    font-size: 2.8rem;
}

/* ==========================================================================
	FOOTER
========================================================================== */
.footer {
    background: #ececee;
    padding: 35px 0;
    /*position: fixed;
	left: 0;
	bottom: 0;*/
    width: 100%;
}

.footer_call2action {
    margin-top: -35px;
    margin-bottom: 25px;
    background: linear-gradient(to right, #eb6428 50%, #17757c 50%);
}

.footer_call2action .block_c2a {
    padding: 20px;
}

.footer_call2action .block_c2a a {
    color: #fff;
    text-transform: uppercase;
    font-size: 2rem;
    display: inline-block;
    line-height: 40px;
}

.footer_call2action .block_c2a a:hover {
    text-decoration: none;
}

.footer_call2action .block_c2a img {
    max-width: 25%;
    vertical-align: top;
}

.footer-list {
    text-align: center;
    padding: 0;
    margin-bottom: 0;
}

.footer-list a {
    text-transform: uppercase;
    color: #3d3d3d;
    font-size: 1.3rem;
    text-decoration: none;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.footer-list a:hover {
    color: #0d5fcb;
}

.footer-list li {
    display: inline-block;
}

.footer-list li::after {
    content: "|";
    display: inline-block;
    color: #3d3d3d;
    margin: 0 15px;
}

.footer-list li:last-child::after {
    display: none;
}

/* PROMO */
section#promo {
    padding: 20px 25px 15px;
    background: #eb6428;
    margin-top: 80px;
    color: #fff;
}

section#promo h2 {
    margin-top: 0;
    color: #fff;
}

section#promo a.cta {
    background: transparent;
    padding: 8px 35px 8px 15px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
    display: inline-block;
    font-size: 1.2rem;
    position: relative;
}

section#promo a.cta::after {
    content: "\f054";
    display: block;
    font-family: FontAwesome;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translate(0, -.8rem);
    color: #fff;
    font-size: 1.2rem;
}

section#promo a.cta:hover {
    color: #eb6428;
    background: #fff;
    text-decoration: none;
}

section#promo a.cta:hover::after {
    color: #eb6428;
}

.content_wisiwyg section#promo:first-child {}

/*
section#promo{
    padding:15px 20px 10px 20px;
    Background:#efefef;
    margin-top:40px;
}
section#promo h2{
    margin-top:0;
    color:#e1412d;
}
section#promo a.cta{
    background: #e1412d;
    padding: 15px 25px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}
.content_wisiwyg section#promo:first-child {
	margin-top: 0px;
}
*/

/* ==========================================================================
	XXL
========================================================================== */

.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}


/* ==========================================================================
	RESPONSIVE
========================================================================== */

@media (min-width: 3000px) {

    .col-xl-1,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12 {
        float: left;
    }

    .col-xl-12 {
        width: 100%;
    }

    .col-xl-11 {
        width: 91.66666667%;
    }

    .col-xl-10 {
        width: 83.33333333%;
    }

    .col-xl-9 {
        width: 75%;
    }

    .col-xl-8 {
        width: 66.66666667%;
    }

    .col-xl-7 {
        width: 58.33333333%;
    }

    .col-xl-6 {
        width: 50%;
    }

    .col-xl-5 {
        width: 41.66666667%;
    }

    .col-xl-4 {
        width: 33.33333333%;
    }

    .col-xl-3 {
        width: 25%;
    }

    .col-xl-2 {
        width: 16.66666667%;
    }

    .col-xl-1 {
        width: 8.33333333%;
    }

    .col-xl-pull-12 {
        right: 100%;
    }

    .col-xl-pull-11 {
        right: 91.66666667%;
    }

    .col-xl-pull-10 {
        right: 83.33333333%;
    }

    .col-xl-pull-9 {
        right: 75%;
    }

    .col-xl-pull-8 {
        right: 66.66666667%;
    }

    .col-xl-pull-7 {
        right: 58.33333333%;
    }

    .col-xl-pull-6 {
        right: 50%;
    }

    .col-xl-pull-5 {
        right: 41.66666667%;
    }

    .col-xl-pull-4 {
        right: 33.33333333%;
    }

    .col-xl-pull-3 {
        right: 25%;
    }

    .col-xl-pull-2 {
        right: 16.66666667%;
    }

    .col-xl-pull-1 {
        right: 8.33333333%;
    }

    .col-xl-pull-0 {
        right: auto;
    }

    .col-xl-push-12 {
        left: 100%;
    }

    .col-xl-push-11 {
        left: 91.66666667%;
    }

    .col-xl-push-10 {
        left: 83.33333333%;
    }

    .col-xl-push-9 {
        left: 75%;
    }

    .col-xl-push-8 {
        left: 66.66666667%;
    }

    .col-xl-push-7 {
        left: 58.33333333%;
    }

    .col-xl-push-6 {
        left: 50%;
    }

    .col-xl-push-5 {
        left: 41.66666667%;
    }

    .col-xl-push-4 {
        left: 33.33333333%;
    }

    .col-xl-push-3 {
        left: 25%;
    }

    .col-xl-push-2 {
        left: 16.66666667%;
    }

    .col-xl-push-1 {
        left: 8.33333333%;
    }

    .col-xl-push-0 {
        left: auto;
    }

    .col-xl-offset-12 {
        margin-left: 100%;
    }

    .col-xl-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xl-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xl-offset-9 {
        margin-left: 75%;
    }

    .col-xl-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xl-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xl-offset-6 {
        margin-left: 50%;
    }

    .col-xl-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xl-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xl-offset-3 {
        margin-left: 25%;
    }

    .col-xl-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xl-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xl-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 3000px) {

    html {
        font-size: 13px;
    }

    .container {
        width: 3000px;
    }
}



@media only screen and (max-width:1200px) {

    .slider__slider-content {
        right: 54px;
    }

    .navbar-brand {
        margin-right: 80px;
    }


}


@media only screen and (max-width:992px) {


    .slider__slider-content {
        bottom: 15px;
    }

    .header-site__site-title {
        display: block;
        text-align: center;
    }

    .navbar-brand>img {
        margin: 0 auto 15px;
        display: block;
    }

    .navbar-left {
        margin-top: 25px;
    }

    .btn {
        white-space: normal;
    }

    .block__header__title {
        font-size: 2.5rem;
    }

}

@media only screen and (max-width:768px) {

    .h2,
    h2 {
        font-size: 2.5rem;
    }

    .header-illu {
        max-height: 400px;
    }

    .header-illu .container .header-illu__title {
        padding: 10px;
    }

    .header-illu .container .header-illu__title h1 {
        margin-top: 10px;
    }

    .landing-slider__title {
        text-align: left;
    }

    .paddingleft {
        padding-left: 0;
    }

    .paddingright {
        padding-right: 0;
    }

    .midgray:before {
        display: none;
    }

    .midgray>.container>.row>.col-sm-6:nth-child(2) {
        background: #ececee;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .content_bon {}

    .slider__slider-content {
        margin-top: 0;
        width: 100%;
        bottom: 0;
    }

    .slick-arrow {
        top: 42%;
    }

    .landing-news .slick-arrow {
        background: #fff;
    }

    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }


    .btn-arrow {
        padding: 10px 31px 10px 10px;
        white-space: initial;
    }

    .btn--light {
        padding: 10px;
    }

    .header-illu {
        min-height: 200px;
        overflow: hidden;
        background-size: cover !important
    }

    .header-illu img {
        min-width: 1400px;
        position: relative;
        left: 50%;
        transform: translate(-50%, 0);
        opacity: 0;
    }

    .header-illu .container .header-illu__title {
        left: 15px;
        width: auto;
        right: 15px;
    }

    .navbar-nav>li.wpml-ls-menu-item {
        float: none;
        text-align: center;
        position: static;
    }

    .navbar-nav>li.wpml-ls-menu-item .sub-menu {
        display: inline-block;
        position: static;
    }

    .navbar-nav>li.wpml-ls-menu-item a {
        display: inline-block;
    }

    .wpml-ls-current-language>a::after {
        content: "|";
        margin-left: 15px;
        vertical-align: middle;
        font-size: 2.3rem;
        margin-top: -2px;
        display: none;
    }

    .navbar-default .navbar-nav>li:hover>.sub-menu {
        display: inline-block;
        border: none;
    }

    .footer-list li {
        display: block;
    }

    .footer-list li::after {
        display: none;
    }

    .footer-list li a {
        padding: 10px 0;
        display: block;
    }

    .pgt_archives_top .pgt_archive-content {
        padding: 5px 10px;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        margin-bottom: 52px;
    }

    .footer {
        position: static;
    }

    body {
        padding-bottom: 0;
    }

    .midgray,
    .midwhite {
        padding: 30px 0;
    }

    .navbar-toggle {
        margin-top: 0;
        margin-right: 0;
        background: #e1412d;
        float: right;

    }

    .navbar-default .navbar-brand {
        /*margin-top: 0px;
        margin-left: 40px;
        margin-right: 0;
        float: right;
        clear: both;*/
        margin-top: 23px;
/*margin-left: 70px;*/ margin-left: 30px;
margin-right: 0;
float: left;
    }

    .navbar-header {
        float: none;
        text-align: right;
        padding-bottom: 10px;
    }




}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #FFF;
    border: 1px solid #F0F0F0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


/* NEW DESIGN HOMEPAGE 2020 */

.navbar-collapse {
    padding: 0;
    margin-left: -20px;
}

.navbar-default .navbar-nav>li>a,
.sub-menu>li>a {
    padding: 20px 10px 4px 20px;
    margin: 0;
    font-size: 1.7rem;
}

.navbar-nav>li.wpml-ls-menu-item {
    /*margin-top: -30px;
	margin-right: -20px;*/
    border: 1px solid #e3e1e1;
    background: #fff;
    margin-top: 13px;
    position: static;
}

#menu-topmenu {
    position: absolute;
    top: -20px;
    right: -20px;
}

.navbar-default #menu-topmenu>li>a,
#menu-topmenu .sub-menu>li>a {
    font-size: 1.4rem;
}

.navbar-default #menu-topmenu>li>a.nav-boutique {
    background: url(img/ico-boutique.png) no-repeat left 97%;
    padding-left: 32px;
}

.navbar-default #menu-topmenu>li>a.nav-brochures {
    background: url(img/ico-brochures.png) no-repeat left 97%;
    padding-left: 32px;
}

#bg_header {
    background: url(img/bg_header.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

#bg_header>img {
    opacity: 0;
}

#bg_header>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#bg_header>div>h2 {
    color: #fff;
    font-size: 46px;
    font-weight: bold;
    text-transform: uppercase;
}

@media only screen and (max-width:1400px) {
    #bg_header {
        background: none;
    }

    #bg_header>img {
        opacity: 1;
        width: 100%;
        height: auto;
    }
}

.home2020 {
    padding: 45px 0;
}

.block {}

.block_contest {}

.block__header {
    padding-bottom: 30px;
}

.block__header__title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3rem;
    margin-top: 0;
}

.block_contest .block__content__details {
    position: relative;
    padding: 15px;
    left: 50%;
    margin-top: -52px;
    width: 80%;
    border: 2px solid #e1e1e1;
    transform: translate(-50%, 0);
    background: #fff;
}

.block_actus .block__content__details {}

.block__content__categorie {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: bold;
    opacity: .6;
    display: block;
}

.block__content__title {
    margin-top: 4px;
    margin-bottom: 20px;
    font-weight: 100;
}

.block__content__link {}

.block_actus .block_content {
    min-height: 107px;
    margin-bottom: 5px;
}

.block_actus .block__content__title {
    font-size: 1.8rem;
    margin: 5px 0 10px;
}


.block_call2action {
    padding: 0 0 100px;
}

.block_c2a {
    color: #fff;
    text-align: center;
    padding: 30px;
}

.block_c2a a {
    color: #fff;
    display: block;
}

.block_c2a a:hover {
    text-decoration: none;
}

.block_c2a h3 {
    text-transform: uppercase;
    font-size: 20px;
    margin: 0 0 20px 0;
    padding: 0;
}

.block_c2a p {
    font-size: 2rem;
    margin: 20px 0 30px;
    min-height: 60px;
}

.block_c2a .btn {
    /*border: 2px solid #fff;
			text-transform: uppercase;
			color: #fff;
			background: none;
			font-size: 1.4rem;
			padding: 6px;

			-webkit-transition: all ease 0.4s;
			-moz-transition: all ease 0.4s;
			-ms-transition: all ease 0.4s;
			transition: all ease 0.4s;*/
}

.block_c2a a:hover .btn {
    background: #fff !important;
}

.block_c2a_offres {
    background: #eb6428;
}

.block_c2a_offres a:hover .btn,
.block_c2a_offres a:hover .btn:after {
    color: #eb6428;
}

.block_c2a_boutique {
    background: #e1412d;
}

.block_c2a_boutique a:hover .btn,
.block_c2a_boutique a:hover .btn:after {
    color: #e1412d;
}

.block_c2a_brochures {
    background: #17757c;
}

.block_c2a_brochures a:hover .btn,
.block_c2a_brochures a:hover .btn:after {
    color: #17757c;
}

.wrap-socials {
    background: #f9f9f9;
    margin-bottom: 60px;
}

.socialaccount-list {
    padding: 40px 25px 15px;
}

.socialaccount-list__title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 0
}

.account-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-list a {
    color: #78c3d7;
    font-size: 3rem;
    padding: 0 0 5px;    
    display: inline-block;
}
.account-list a .fa {
    vertical-align: text-bottom;
}
.account-list a span {
    color: #111;
    font-size: 2rem;
    padding: 0 10px;
}
.account-list a:hover {
    text-decoration: none;
}


.account-list li {
    display: block;
    border: none;
    border-bottom: 1px solid #dde2e3;
}
.account-list li:last-child {
    border:none;
}
#sb_instagram {
    padding-bottom: 0 !important;
}

.cta-article{
    background: #e1412d;
    padding: 15px 25px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    font-size:15px;
}


@media only screen and (max-width:992px) {
    .block__header__title {
        font-size: 2.5rem;
    }
}


@media only screen and (max-width:768px) {

    html {
        font-size: 9px;
    }

    #menu-topmenu {
        position: static;
    }

    .navbar-nav {
        text-align: center;
        margin: 0;
    }

    .navbar-default .navbar-nav>li>a,
    .sub-menu>li>a {
        padding: 10px;
    }

    .navbar-default #menu-topmenu>li>a.nav-boutique,
    .navbar-default #menu-topmenu>li>a.nav-brochures {
        padding: 10px;
        font-size: 1.7rem;
        background: none;
    }

    .navbar-nav>li.wpml-ls-menu-item {
        border: none;
        border-top: 1px solid #ccc;
        padding: 10px;
        margin: 0;
    }

    .navbar-nav>li.wpml-ls-menu-item .sub-menu {
        display: block;
    }

    .navbar-nav>li.wpml-ls-menu-item ul li {
        display: block;
    }

    .nav > li.app {
        position: static;
        color: #fff;
        padding: 10px;
    }

    .nav > li.app span {
        display: inline;
    }

    .navbar-default .navbar-nav .wpml-ls-current-language > a, 
    .wpml-ls-current-language .sub-menu > li > a,
    .navbar-nav > li.wpml-ls-menu-item .sub-menu, 
    .navbar-nav > li.wpml-ls-menu-item ul li {
        display: inline-block;
    }

    .navbar-nav > li.wpml-ls-menu-item > a {
        color: #e1412d;
    }

    .navbar-collapse {
        margin: 0;
    }

    .navbar-nav > li.wpml-ls-menu-item:hover {
        border: none;
        border-top: 1px solid #ccc;
    }

    #bg_header {
        overflow: hidden;
    }

    #bg_header > img {
        min-width: 600px;
        float: right;
    }

    #bg_header > div {
        left: 0;
        transform: translate(0, -50%);
        max-width: 50%;
    }

    #bg_header > div > h2 {
        font-size: 36px;
    }

    .block {
        margin-bottom: 30px;
    }

    .block__header {
        padding-bottom: 15px;
    }
    
    .block_actus .block_content {
        margin-bottom: 20px;
    }

    .footer_call2action {
        background: none;
    }

    .block_c2a {
        margin: 0 -15px;
    }

    .midgray > .container > .row > .col-sm-6 > .content_wisiwyg {
        min-height: auto;
    }

    .single-contest__title {
        font-size: 3rem;
    }

    .img-single-desktop {
        display: none;
    }
    .img-single-mobile {
        display: block;
    }

    .pgt_archive-title {
        margin-bottom: 0;
    }

    
}