/*
	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
*/

/*------------------------------------*\
    HEADER
\*------------------------------------*/

.header {
  background: #04C0B6;
  background-position: center!important;
  background-repeat: no-repeat!important;
  background-size: cover!important;
	color: #FFF;
	display: flex;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 20px;
	padding-bottom: 40px;
}

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

  .header {
    background-position: -650px!important;
  }

}

.header a, .header h1 {
	color: #FFF;
}

.header h1 {
  margin: 0;
}

.header a:hover, .header h1:hover {
  color: #FFF;
}

.header .header_left {
	width: 60%;
}

.header .logo {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.header .under_logo {
  font-size: 18px;
}

.header .nav ul {
	padding: 0;
	margin: 0;
	display: flex;
	list-style-type: none;
	margin-top: 15px;
}

.header .nav ul li:first-of-type {
	margin-left: 0px;
}

.header .nav ul li:last-of-type {
	padding-right: 0px;
	border-right: none;
}

.header .nav ul li {
	font-size: 23px;
	font-weight: 500;
	padding-right: 10px;
	border-right: 1px solid #FFF;
	margin-left: 10px;
}

.header .nav ul li a:hover {
  text-decoration: underline;
}

.header .nav ul li ul.sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  margin-top: 0px;
  padding-top: 5px;
  border-left: 1px solid #FFF;
  margin-left: -11px;
  transition: opacity 0.3s ease;
}

.header .nav ul li:first-of-type ul.sub-menu {
  border-left: none;
}

.header .nav ul li ul.sub-menu li {
  border-right: none;
  font-size: 20px;
}

.header .nav ul li ul.sub-menu li:first-of-type {
  margin-left: 10px;
}

ul.hovered {
  visibility: visible!important;
  opacity: 1!important;
}

ul.hovered {
  background: #04C0B6;
  padding: 10px!important;
}

ul.hovered li {
  margin: 7px;
  margin-left: 7px!important;
}

.header .header_right {
	width: 40%;
}

.header .header_right .header_socials {
  text-align: right;
  font-size: 28px;
}

.header .header_right .header_socials i {
  transition-duration: 0.2s;
  margin-right: 10px;
}

.header .header_right .header_socials i:hover {
  opacity: 0.8;
}

.header .header_right .header_search_form {
    text-align: right;
    margin-top: 30px;
}

.header .header_right .header_search_form input.search-input {
  background: #FFF;
  color: #000;
  font-size: 17px;
  margin: 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
  padding-left: 50px;
}

.header .header_right .header_search_form input.search-input::placeholder {
	color: #04C0B6;
}

.header .header_right .header_search_form button#searchsubmit {
  position: absolute;
  margin-left: -248px;
  background: none;
  border: none;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header .header_right .header_search_form button#searchsubmit i {
  font-size: 22px;
  color: #04C0B6;
}

.header .header_right .header_search_form button#searchsubmit i:hover {
  color: #04C0B6;
  opacity: 0.8;
  transition-duration: 0.2s;
}

.header .header_right .header_search_form button#searchsubmit i:after {
  border-right: 1px solid #04C0B6;
  content: "";
  padding-left: 8px;
}

.burger_menu .burger, .burger_menu .cross {
  position: absolute;
  right: 15px;
  top: 25px;
  display: none;
  z-index: 50;
}

.burger_menu img {
  width: 40px;
  cursor: pointer;
}

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

  .header {
    padding-left: 2%;
    padding-right: 2%;
  }

  .header .header_left {
    width: 100%;
    margin-right: 15px;
  }

  .header .header_right {
    width: 150px;
  }

  .header .logo {
    font-size: 32px;
  }

  .header .under_logo {
    font-size: 16px;
  }

  .header .nav ul li {
    font-size: 21px;
  }

  .header .header_right .header_socials {
    font-size: 22px;
    text-align: left;
  }

  .header .header_right .header_search_form input.search-input {
    width: 150px;
  }

  .header .header_right .header_search_form button#searchsubmit {
    margin-left: -150px;
    margin-top: -41px;
  }

}

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

  .header {
    display: flex;
    flex-direction: column;
  }

  .header .header_left {
    margin-right: 0px;
  }

  .header .header_right {
    width: 100%;
  }

  .header .nav ul {
    display: none;
  }

  .header .under_logo {
    padding-right: 55px;
  }

  .header .header_right .header_socials {
    display: none;
  }

  .header .header_right .header_search_form {
    text-align: left;
  }

  .header .header_right .header_search_form input.search-input {
    width: 100%;
    padding-left: 10px;
  }

  .header .header_right .header_search_form button#searchsubmit {
    display: none;
  }

  .show {
    display: block!important;
  }

  .header .nav ul li {
    font-size: 20px;
    font-weight: 500;
    padding-right: 0px;
    border-right: none;
    margin-left: 0px;
    margin-top: 5px;
  }

  .header .header_right .header_socials {
    margin-top: 20px;
  }

  .header .header_right .header_socials a {
    font-size: 26px;
    margin-right: 5px;
  }

  .header h1 {
    font-size: 42px;
    margin-right: 100px;
  }

  .header .header_right .header_socials i {
    transition-duration: 0.2s;
    box-shadow: 0px 0px 0px 0px #000;
    background: none;
    margin-right: 0px;
  }

}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/

.footer {
	background: #2D2D2D;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.footer p {
	margin: 0;
  padding-bottom: 0px;
  padding-top: 30px;
  text-align: center;
}

.footer p:last-of-type {
	margin: 0;
  padding-bottom: 2px;
  padding-top: 2px;
  text-align: center;
}

.footer p:first-of-type {
  margin: 0;
  padding-bottom: 2px;
  text-align: center;
  padding-top: 20px;
  font-size: 18px;
}

.footer a {
	color: #FFF;
}

.footer a:hover {
	color: #FFF;
  text-decoration: underline;
}

/*------------------------------------*\
    MASONRY
\*------------------------------------*/

.masonry_accueil {
  display: grid;
  grid-gap: 1em;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(100px, auto);
}

.masonry_accueil .thumbnail {
  background-size: cover!important;
  background-position: center!important;
  background-repeat: no-repeat!important;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition-duration: 0.3s;
}

.masonry_accueil .bg_opacity {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  background: rgba(0,0,0,0.35);
}

.masonry_accueil .thumbnail:hover {
  transform: scale(1.06)!important;
  z-index: 500;
}

.masonry_accueil .title {
  font-size: 32px;
  color: #FFF;
  font-weight: 700;
  margin-bottom: 10px;
}

.article_1 .title .title {
  width: 50%;
}

.article_1 .title .sous_titre {
  font-size: 23px;
  font-weight: 400;
}

.article_1 {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
}
.article_2 {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}
.article_3 {
  grid-column: 1;
  grid-row: 4 / 7;
}
.article_4 {
  grid-column: 2 / 4;
  grid-row: 4 / 7;
}
.article_5 {
  grid-column: 4 / 5;
  grid-row: 3 / 7;
}

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

  .masonry_accueil {
    display: grid;
    grid-gap: 1em;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(100px, auto);
  }

  .masonry_accueil .title {
    font-size: 24px;
    color: #FFF;
    font-weight: 700;
    margin-bottom: 0px
  }

  .article_1 .title .sous_titre {
    font-size: 16px;
    font-weight: 400;
  }

  .article_1 {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .article_2 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }
  .article_3 {
    grid-column: 1 / 3;
    grid-row: 2 / 4;
  }
  .article_4 {
    grid-column: 3;
    grid-row: 3;
  }
  .article_5 {
    grid-column: 1 / 4;
    grid-row: 4;
  }

  .page-template-template-accueil h2 {
    font-size: 35px!important;
    padding-left: 100px!important;
    padding-right: 100px!important;
  }

}

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

  .masonry_accueil .title {
    font-size: 18px;
    color: #FFF;
    font-weight: 700;
  }

  .article_1 .title .sous_titre {
    display: none;
  }

  .page-template-template-accueil h2 {
    font-size: 30px!important;
    padding-left: 50px!important;
    padding-right: 50px!important;
  }

}

/*------------------------------------*\
    PAGE D'ACCUEIL
\*------------------------------------*/

.page-template-template-accueil .header {
  padding-bottom: 240px;
  position: absolute;
  width: 100%;
  top: 0px;
}

.page-template-template-accueil .wrapper {
	padding-left: 5%;
	padding-right: 5%;
  max-width: 1500px;
  margin: auto;
  margin-top: 250px;
}

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

  .page-template-template-accueil .header {
    padding-bottom: 20px;
    position: relative;
  }

  .page-template-template-accueil .wrapper {
    margin-top: 0px;
  }

}

.page-template-template-accueil h2 {
  font-size: 42px;
  font-weight: 300;
  color: #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 200px;
  padding-right: 200px;
  text-align: center;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 80px;
}

.masonry_accueil {
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-template-template-accueil .content {
	display: flex;
  padding-right: 20px;
}

.page-template-template-accueil .content .articles .container{
  position: relative;
}

.page-template-template-accueil .content .articles .container .overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: grey;
  opacity: 0;
  transition: 0.3s;
}

.page-template-template-accueil .content .articles .container .overlay:hover{
  opacity: 0.1;
  transition: 0.3s;
}

.page-template-template-accueil .content .articles .container .infos{
  color: #04C0B6;
  font-size: 17px;
}

.page-template-template-accueil .content .articles .container .infos .category{
  font-weight: 600;
}

.page-template-template-accueil .content .articles .container .divider{
  background-color: #04C0B6;
  height: 2px;
  width: 100px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-template-template-accueil .content .articles .title {
  display: flex;
  flex-direction: column;
}

.page-template-template-accueil .content .articles .title a {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.page-template-template-accueil .content .articles .title span {
  font-size: 18px;
  color: #000;
}

.page-template-template-accueil .content .articles .flex_article {
	display: flex;
  margin-top: 25px;
  margin-bottom: 40px;
}

.page-template-template-accueil .content .articles .flex_article .thumbnail {
  width: 380px;
  height: 220px;
}

.page-template-template-accueil .content .articles .flex_article .thumbnail .thumbnail_background {
  background-repeat: no-repeat!important;
  background-position: center!important;
  background-size: cover!important;
  height: 100%;
  width: 380px;
}

.page-template-template-accueil .content .articles .flex_article .excerpt {
  width: 100%;
	color: #000;
	font-size: 18px;
  font-weight: 300;
  text-align: justify;
  padding-left: 15px;
  padding-right: 35px;
}

span.published {
  font-style: italic;
}

.page-template-template-accueil .content .articles .flex_article .excerpt .link {
  text-align: right;
  margin-top: 20px;
  position: relative;
}

.page-template-template-accueil .content .articles .flex_article .excerpt a {
  white-space: nowrap;
  color: #176da3;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: flex-end;
}

.page-template-template-accueil .content .articles .flex_article .excerpt a:hover {
  color: #1e85c7;
}

.page-template-template-accueil .content .sidebar {
  width: 320px;
  flex-shrink: 0;
}

.widget_newsletterwidget  {
  margin-bottom: 20px;
}

.widget_newsletterwidget > h3 {
  color: red;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}

.widget_newsletterwidget .tnp-field-email {
  width: 100%;
}

.widget_newsletterwidget .tnp-field-email > label{
  display: none;
}

.widget_newsletterwidget .tnp-field-email > input{
  border: none !important;
  background-color: transparent !important;
  width: 100% !important;
  border-bottom: 3px solid red !important;
}

.widget_newsletterwidget form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tnp-widget input.tnp-submit {
  background-color: transparent !important; 
  background-image: none!important;
  text-shadow: none!important;
  color: black!important;
  margin: 0!important;
  border-radius: 4px !important;
  border: 1px solid black !important;
  width: 150px!important;
  transition: 0.3s;
}

.tnp-widget input.tnp-submit:hover {
  background-color: black !important;
  color: white!important;
  transition: 0.3s;
}

.load_more {
  display: flex;
}

div#ajax-primary {
  width: 964px;
}

.load_more .sidebar {
  width: 370px;
  box-shadow: -8px 0 8px -10px #0e4363;
  margin-bottom: 50px;
}

.load_more div#nav_menu-2 {
  border-radius: 10px;
  padding-top: 1px;
  padding-bottom: 5px;
}

.load_more .sidebar h3 {
  font-size: 21px;
  color: #0e4363;
  text-align: center;
}

.load_more .sidebar ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin-top: 15px;
  margin-bottom: 10px;
}

.load_more .sidebar ul li {
  font-size: 20px;
  margin-left: 20px;
  margin-bottom: 15px;
}

.load_more .sidebar ul li a {
  color: #0e4363;
}

.sidebar .widget_nav_menu ul.sub-menu {
    display: none;
}


.page-template-template-accueil .after_content {
  background: #000;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #FFF;
}

.page-template-template-accueil .after_content .inspire {
  text-align: right;
  font-size: 40px;
  font-style: italic;
  font-weight: 300;
}

.page-template-template-accueil .after_content .imaginez {
  font-size: 52px;
  font-weight: 700;
}

div#loadMore {
  text-align: center;
  background: #0e4363;
  width: 250px;
  margin: auto;
  padding: 15px;
  font-size: 20px;
  color: #FFF;
  margin-bottom: 20px;
  cursor: pointer;
}

@media only screen and (min-width:500px) {

  div#loadMore {
    display: none;
  }

}

div#no-more h3 {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 50px;
}


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

  .page-template-template-accueil .content .articles .flex_article .thumbnail {
    width: 300px;
  }

  .page-template-template-accueil .content .articles .flex_article .thumbnail .thumbnail_background {
    width: 300px;
  }

}

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

  .page-template-template-accueil .content .articles .title {
    margin-right: 50px;
  }

  .page-template-template-accueil .content .articles .flex_article {
    flex-direction: column;
    margin-right: 50px;
  }

  .page-template-template-accueil .content .articles .flex_article .excerpt {
    padding-left: 0px;
    padding-right: 0px;
  }

  .page-template-template-accueil .content .articles .flex_article .thumbnail {
    width: 100%;
    margin-bottom: 20px;
  }

  .page-template-template-accueil .content .articles .flex_article .thumbnail .thumbnail_background {
    width: 100%;
  }

}

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

  .page-template-template-accueil .content {
    flex-direction: column;
  }

  .page-template-template-accueil .content .articles .title a {
    font-size: 28px;
  }

  .page-template-template-accueil .content .articles .title span {
    font-size: 17px;
  }

  .page-template-template-accueil .content .articles .title {
    margin-left: 50px;
  }

  .page-template-template-accueil .content .articles .flex_article {
    margin-left: 50px;
  }

  div#custom_html-2 {
    text-align: center;
  }

  .page-template-template-accueil .after_content .inspire {
    font-size: 34px;
  }

  .page-template-template-accueil .after_content .imaginez {
    font-size: 45px;
  }

  .load_more {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  div#ajax-primary {
    width: auto;
  }

  .load_more div#nav_menu-2 {
    margin-bottom: 35px;
  }

}

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

  .page-template-template-accueil .content .articles .title {
    margin-left: 0px;
    margin-right: 0px;
  }

  .page-template-template-accueil .content .articles .flex_article {
    margin-left: 0px;
    margin-right: 0px;
  }

}

/*------------------------------------*\
    SINGLE ARTICLE
\*------------------------------------*/

.single_article_flex {
  display: flex;
  max-width: 1280px;
  margin: auto;
  margin-top: 20px;
}

.single_article_flex .article {
  width: 100%;
  padding: 15px;
  max-width: 940px;
  padding-right: 80px;
  font-size: 18px;
  text-align: justify;
}

.single_article_flex .article h1 {
  margin-top: 0px;
  font-size: 34px;
  color: #000;
}

.single_article_flex .article iframe {
  max-width: 100%;
}

.single_article_flex .thumbnail {
  width: 100%;
  height: 300px;
  background-position: center!important;
  background-repeat: no-repeat!important;
  background-size: cover!important;
}

.single_article_flex span.date {
  font-size: 19px;
  color: rgb(155, 155, 155);
  font-style: italic;
  margin-bottom: 15px;
}

.single_article_flex .sidebar {
  width: 350px;
  padding: 15px;
  margin-top: 49px;
  flex-shrink: 0;
}


.single_article_flex .sidebar .recent-posts-extended.rpwe_widget h3 {
  font-size: 20px;
  color: #000;
  text-align: left;
}

.single_article_flex .sidebar .recent-posts-extended.rpwe_widget ul {
  list-style-type: none;
  font-size: 20px;
  color: rgb(146, 146, 146);
  padding: 0;
}

.single_article_flex .sidebar .recent-posts-extended.rpwe_widget ul a{
  font-size: 18px;
  color: black;
  transition: 0.3s;
}

.single_article_flex .sidebar .recent-posts-extended.rpwe_widget ul a:hover {
  color: rgb(255, 83, 83);
  transition: 0.3s;
}



.single_article_flex .sidebar .widget_recent_entries ul li a:hover {
  text-decoration: underline;
}

.single .shares {
  display: flex;
  margin: 20px 0px;
  justify-content: flex-end;
  align-items: center;
}

.single .shares .share {
  width: 40px;
  height: 40px;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s all ease;
}

.single .shares .share:hover {
  opacity: 0.7;
}

.single .shares .share svg {
  width: 100%;
  height: 100%;
}

.display-comments {
  display: flex;
  margin: auto;
}

.display-comments .btn {
  background: #04C0B6;
  color: #FFF;
  border: none;
  border-radius: 5px;
  padding: 7px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s all ease;
}
.display-comments .btn:hover {
  opacity: 0.7;
}

.related-posts-and-comments {
  margin: auto;
  margin-bottom: 60px;
  display: none;
  opacity: 0;
  transition: 0.3s all ease;
}

.related-posts-and-comments.show {
  opacity: 1;
}

.annonce-next {
  position: fixed;
  right: 50px;
  bottom: 100px;
  background: #04C0B6;
  color: #FFF;
  font-size: 20px;
  padding: 10px 20px;
  display: none;
  opacity: 0;
  max-width: 500px;
  box-shadow: 1px 1px 1px 0px #999;
  z-index: 2;
  align-items: flex-end;
  transition: 0.3s all ease;
  cursor: pointer;
}
.annonce-next:hover {
  opacity: 0.8!important;
}

.annonce-next > div:first-of-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
}

.annonce-next > div:last-of-type {
  display: flex;
  width: 35px;
  flex-shrink: 0;
  align-items: flex-end;
}

.annonce-next > div:last-of-type svg {
  width: 100%;
  height: 35px;
  fill: #FFF;
  transform: rotate(90deg);
}

.annonce-next span {
  font-size: 18px;
  margin-bottom: 3px;
}

.comments {
  margin-top: 50px;
}

.comments h2 {
  color: #000;
  font-weight: 900;
  font-size: 32px;
  text-transform: capitalize;
}

.comments ul {
  padding: 0;
  list-style-type: none;
}

.comments .comment-author.vcard {
  display: flex;
  align-items: center;
}

.comments .comment-author.vcard img {
  width: 30px;
  height: 30px;
}

.comments .comment-author.vcard cite.fn {
  font-size: 19px;
  font-style: normal;
  text-transform: capitalize;
  margin-left: 10px;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid rgb(34,34,34,.2);
}

.comments .comment-meta a.comment-edit-link {
  display: none;
}

.comments .comment-meta.commentmetadata {
  padding-left: 40px;
}

.comments .comment-body {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 16px;
}

.comments p {
  color: #000;
}

.comments ul.children {
  padding-left: 100px;
}

.comments a.comment-reply-link:hover {
  text-decoration: underline;
}

.comment-respond h3 {
  font-size: 22px;
  color: #000;
}

.comment-respond p.logged-in-as {
  display: none;
}

.comment-respond textarea#comment {
  background: #ecedec;
  border: none;
  border-radius: 5px;
  width: 400px;
  height: 100px;
  padding: 12px 10px 10px;
  font-size: 15px;
}

.comment-respond textarea#comment:focus {
  outline: 0;
}

.comment-respond p.comment-form-comment label {
  display: none;
}

.comment-respond input#submit {
  background: #000;
  color: #FFF;
  border: none;
  border-radius: 5px;
  padding: 7px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 18px;
  font-weight: 500;
  transition-duration: 0.2s;
  width: 250px;
}

.comment-respond input {
  background: #ecedec;
  border: none;
  border-radius: 5px;
  width: 400px;
  height: 50px;
  padding: 12px 10px 10px;
  font-size: 15px;
}

.comment-respond input#submit:hover {
  background: rgb(0,0,0,0.7);
}

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

  .single_article_flex {
    flex-direction: column;
  }

  .single_article_flex .sidebar {
    /* width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    padding-left: 30px;
    padding-right: 30px; */
    display: none;
  }

  .single_article_flex .article {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
  }

}

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

  .comment-respond textarea#comment {
    width: 250px;
  }

  .comment-respond input {
    width: 250px;
  }

  .comment-respond input#submit {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 17px;
    width: 200px;
  }

}

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

  .single_article_flex .sidebar {
    padding-left: 15px;
    padding-right: 15px;
  }

  .single_article_flex .article {
    padding-left: 15px;
    padding-right: 15px;
  }

}


/*------------------------------------*\
    ARCHIVES
\*------------------------------------*/

.archive main {
  width: 90%;
  margin: auto;
  display: flex;
}

.archive main section {
  width: 100%;
}

.archive .category_title h1 {
  color: #000;
  font-size: 28px;
  width: 90%;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

.archive .content {
	display: flex;
}

.archive .content .articles .title {
  display: flex;
  flex-direction: column;
}

.archive .content .articles .title a {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.archive .content .articles .title span {
  font-size: 18px;
  color: #000;
}

.archive .content .articles .flex_article {
	display: flex;
  margin-top: 25px;
  margin-bottom: 40px;
}

.archive .content .articles .flex_article .thumbnail {
  width: 380px;
  height: 220px;
}

.archive .content .articles .flex_article .thumbnail .thumbnail_background {
  background-repeat: no-repeat!important;
  background-position: center!important;
  background-size: cover!important;
  height: 100%;
  width: 380px;
}

.archive .content .articles .flex_article .excerpt {
  width: 100%;
	color: #000;
	font-size: 18px;
  font-weight: 300;
  text-align: justify;
  padding-left: 15px;
  padding-right: 35px;
}

p.infos {
  margin-top: 0px;
}

span.published {
  font-style: italic;
}

.archive .content .articles .flex_article .excerpt .link {
  text-align: right;
  margin-top: 20px;
}

.archive .content .articles .flex_article .excerpt a {
  white-space: nowrap;
  color: #176da3;
}

.archive .content .articles .flex_article .excerpt a:hover {
  color: #1e85c7;
}




.archive .sidebar {
  width: 370px;
  box-shadow: -8px 0 8px -10px #0e4363;
  margin-bottom: 50px;
}

.archive div#nav_menu-2 {
  border-radius: 10px;
  padding-top: 1px;
  padding-bottom: 5px;
}

.archive .sidebar h3 {
  font-size: 21px;
  color: #0e4363;
  text-align: center;
}

.archive .sidebar ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin-top: 15px;
  margin-bottom: 10px;
}

.archive .sidebar ul li {
  font-size: 20px;
  margin-left: 20px;
  margin-bottom: 15px;
}

.archive .sidebar ul li a {
  color: #0e4363;
}


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

  .archive .content .articles .flex_article .thumbnail {
    width: 300px;
  }

  .archive .content .articles .flex_article .thumbnail .thumbnail_background {
    width: 300px;
  }

}

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

  .archive .content .articles .title {
    margin-right: 50px;
  }

  .archive .content .articles .flex_article {
    flex-direction: column;
    margin-right: 50px;
  }

  .archive .content .articles .flex_article .excerpt {
    padding-left: 0px;
    padding-right: 0px;
  }

  .archive .content .articles .flex_article .thumbnail {
    width: 100%;
    margin-bottom: 20px;
  }

  .archive .content .articles .flex_article .thumbnail .thumbnail_background {
    width: 100%;
  }

}

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

  .archive .content {
    flex-direction: column;
  }

  .archive .content .articles .title a {
    font-size: 28px;
  }

  .archive .content .articles .title span {
    font-size: 17px;
  }

  .archive .content .articles .title {
    margin-left: 50px;
  }

  .archive .content .articles .flex_article {
    margin-left: 50px;
  }

  .archive .after_content .inspire {
    font-size: 34px;
  }

  .archive .after_content .imaginez {
    font-size: 45px;
  }

}

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

  .archive .sidebar {
    display: none
  }

}

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

  .archive .content .articles .title {
    margin-left: 0px;
    margin-right: 0px;
  }

  .archive .content .articles .flex_article {
    margin-left: 0px;
    margin-right: 0px;
  }

}

/*------------------------------------*\
    Search
\*------------------------------------*/

.search main {
  width: 90%;
  margin: auto;
  display: flex;
}

.search main section {
  width: 100%;
}

.search .category_title h1 {
  color: #000;
  font-size: 28px;
  width: 90%;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

.search .content {
	display: flex;
}

.search .content .articles .title {
  display: flex;
  flex-direction: column;
}

.search .content .articles .title a {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.search .content .articles .title span {
  font-size: 18px;
  color: #000;
}

.search .content .articles .flex_article {
	display: flex;
  margin-top: 25px;
  margin-bottom: 40px;
}

.search .content .articles .flex_article .thumbnail {
  width: 380px;
  height: 220px;
}

.search .content .articles .flex_article .thumbnail .thumbnail_background {
  background-repeat: no-repeat!important;
  background-position: center!important;
  background-size: cover!important;
  height: 100%;
  width: 380px;
}

.search .content .articles .flex_article .excerpt {
  width: 100%;
	color: #000;
	font-size: 18px;
  font-weight: 300;
  text-align: justify;
  padding-left: 15px;
  padding-right: 35px;
}

p.infos {
  margin-top: 0px;
}

span.published {
  font-style: italic;
}

.search .content .articles .flex_article .excerpt .link {
  text-align: right;
  margin-top: 20px;
}

.search .content .articles .flex_article .excerpt a {
  white-space: nowrap;
  color: #176da3;
}

.search .content .articles .flex_article .excerpt a:hover {
  color: #1e85c7;
}




.search .sidebar {
  width: 370px;
  box-shadow: -8px 0 8px -10px #0e4363;
  margin-bottom: 50px;
}

.search div#nav_menu-2 {
  border-radius: 10px;
  padding-top: 1px;
  padding-bottom: 5px;
}

.search .sidebar h3 {
  font-size: 21px;
  color: #0e4363;
  text-align: center;
}

.search .sidebar ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin-top: 15px;
  margin-bottom: 10px;
}

.search .sidebar ul li {
  font-size: 20px;
  margin-left: 20px;
  margin-bottom: 15px;
}

.search .sidebar ul li a {
  color: #0e4363;
}


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

  .search .content .articles .flex_article .thumbnail {
    width: 300px;
  }

  .search .content .articles .flex_article .thumbnail .thumbnail_background {
    width: 300px;
  }

}

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

  .search .content .articles .title {
    margin-right: 50px;
  }

  .search .content .articles .flex_article {
    flex-direction: column;
    margin-right: 50px;
  }

  .search .content .articles .flex_article .excerpt {
    padding-left: 0px;
    padding-right: 0px;
  }

  .search .content .articles .flex_article .thumbnail {
    width: 100%;
    margin-bottom: 20px;
  }

  .search .content .articles .flex_article .thumbnail .thumbnail_background {
    width: 100%;
  }

}

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

  .search .content {
    flex-direction: column;
  }

  .search .content .articles .title a {
    font-size: 28px;
  }

  .search .content .articles .title span {
    font-size: 17px;
  }

  .search .content .articles .title {
    margin-left: 50px;
  }

  .search .content .articles .flex_article {
    margin-left: 50px;
  }

  .search .after_content .inspire {
    font-size: 34px;
  }

  .search .after_content .imaginez {
    font-size: 45px;
  }

}

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

  .search .sidebar {
    display: none
  }

}

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

  .search .content .articles .title {
    margin-left: 0px;
    margin-right: 0px;
  }

  .search .content .articles .flex_article {
    margin-left: 0px;
    margin-right: 0px;
  }

}

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

.pagination {
  text-align: center;
  font-size: 18px;
  margin: 20px 0px 20px 0px;
}

.pagination .current {
  text-decoration: underline;
}

/*------------------------------------*\
    CGU & PRVP
\*------------------------------------*/

.page-template-template-prvp-cgu section {
  padding-left: 25px;
  padding-right: 25px;
  color: #000;
  font-size: 15px;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font-family: 'Lato', sans-serif;
	color:#444;
  -webkit-font-smoothing: antialiased;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {

}
/* header */
.header {

}
/* logo */
.logo {

}
.logo-img {

}
/* nav */
.nav {

}
/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

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

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

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

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

}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    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;
	}
}

h2.qc-cmp-title {
    border: 0px;
    padding: 0px;
    margin: 0px;
}

h2.qc-cmp-sub-title {
    border: 0px;
    font-size: 20px;
}

p.qc-cmp-link-text, a.qc-cmp-qc-link {
	display: none;
}


.yarpp-related h3 {
  padding: inherit!important;
  font-size: 22px!important;
  text-transform: none!important;
  margin: 22px 0px!important;
}

#crestashareiconincontent {
	display: none;
}




.wrapper{
  width: 90%;
  margin: auto;
}


.wrapper h1{
  color: #000;
  font-size: 27px;
  margin: 41px 0;
}