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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
    color: inherit;
}

@font-face {
  font-family: Gotham;
  src: url('/fonts/Gotham-Rounded-Book_21018.ttf');
  font-weight: normal;
}

@font-face {
  font-family: Gotham;
  src: url('/fonts/Gotham-Rounded-Bold_21016.ttf');
  font-weight: bold;
}

@font-face {
  font-family: Gotham;
  src: url('/fonts/Gotham-Rounded-Light_21020.ttf');
  font-weight: 100;
}

body {
  font-family: Gotham, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin: 0;
  background-color: #f7f7f7;
}

/* HEADER */
#header {
  height: 150px;
  z-index: 12;
}

#headerElements {
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 150px;
  z-index: 10;
  box-sizing: border-box;
}

#header #nav ul li:nth-child(n+4) {
  display: none;
}

#header #nav ul li {
  padding: 0 20px;
  white-space: nowrap;
  position: relative;
}

#header #nav ul li.active a {
  font-weight: bold;
}

#header #nav ul li.active:before {
  content: "";
  width: 10px;
  height: 1px;
  background: white;
  left: 0;
  right: 0;
  bottom: -15px;
  position: absolute;
  text-align: center;
  margin: 0 auto;
}

#header #nav ul {
  list-style: none;
  display: flex;
	z-index: 10000;
}

#header #nav li {
  transition: opacity .2s ease;
  cursor: pointer;
  color: #FFF;
}

#header #nav li:hover {
  color: #6BBCED;
}

#header #nav li:active {
  color: #0f4b6f;
}

#header #nav li.active:hover {
  color: #FFF;
}

#header #nav li.active:active {
  color: #FFF;
}

#header #nav a {
  color: inherit;
  font-size: 16px;
  font-weight: 100;
  text-decoration: none;
  transition: color .2s ease;
}


#header #nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.search-inputs {
  display: flex;
  align-items: center;
}

#header #recherche {
  margin-left: 10px;
}

#header #recherche form > div {
  display: flex;
}

#header #recherche form {
  margin-bottom: 0;
}

#header #recherche input[type="text"] {
  border: none;
  font-family: Gotham, Arial, sans-serif;
  font-weight: 100;
  background: #FFFFFF;
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  color: #666;
  font-size: 16px;
  padding: 2px 10px 0 20px;
  height: 44px;
  width: 180px;
  line-height: 44px;
  background-repeat: no-repeat;
  background-position: 13px center;
  outline: none;
  box-sizing: border-box;
}

#header #recherche input[type="text"]::placeholder {
  color: #999;
}

#header #recherche input#recherche-submit {
    font-family: Gotham, Arial, sans-serif;
    border: none;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    height: 44px;
    width: 50px;
    background: white;
    color: white;
    font-size: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='7' transform='rotate(-90 11 11)' stroke='%23999999' stroke-width='2'/%3E%3Cpath d='M19.9395 20L16.4395 16.5' stroke='%23999999' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: 10px center;
    cursor: pointer;
    transition: background-color .2s ease;
    padding: 0;
    outline: none;
    position: relative;
    left: -2px;
    z-index: 2;
    box-sizing: border-box;
}

#header #recherche input#recherche-submit:hover {
  background-color: #eaeaea;
}

#header #recherche input#recherche-submit:active {
  background-color: #cccccc;
}

#header #logoH1 {
  max-width: 429px;
  margin-right: 30px;
}

#header #logoH1 img {
  width: 100%;
}

::-webkit-input-placeholder {
  color: #999;
}

::placeholder {
  color: #999;
}

input[type="text"]::-webkit-search-decoration,
input[type="text"]::-webkit-search-cancel-button,
input[type="text"]::-webkit-search-results-button,
input[type="text"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

/* Header mobile */
.show-menu {
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
.show-menu span {
  width: 30px;
  height: 2px;
  background: white;
}

#show-menu {
  display: none;
}

/* Typography */
h1 {
  font-family: Gotham;
  font-style: normal;
  font-weight: 100;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #ED331C;
}

h2.lienRubrique a {
  font-family: Gotham;
  font-weight: normal;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

h2.lienRubrique a:hover {
  color: #ED331C;
}

h2.lienRubrique + p a {
  font-family: Gotham;
  font-weight: 100;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}


h2.lienRubrique + p a:hover {
  color: #ED331C;
}

h3.title {
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #ED331C;
}

.lienRubrique.bold a {
  font-weight: bold;
  font-size: 22px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
  margin-top: 30px;
}
.lienRubrique.bold a:after {
  content: "";
  width: 20px;
  height: 2px;
  background: #ED331C;
  display: block;
  margin: 10px 0;
}

/* Layout main */
.main-section, .container {
  max-width: 1390px;
  margin: 0 auto;
  box-sizing: border-box;
}

.main-section {
  z-index: 10;
  position: relative;
  padding: 0 30px 0 30px;
  box-sizing: border-box;
  min-height: 396px;
}

.main-section.has-aside {
  display: flex;
  flex-wrap: wrap;
}
.main-section.has-aside .main-headline {
  width: calc(100% - 350px);
}

.main-section.has-aside .aside {
  width: 300px;
  background: white;
  position: relative;
  top: -126px;
  height: fit-content;
  height: -moz-fit-content;
}

.aside ul li ul {
  padding: 40px 0;
  border-left: 1px solid #e5e5e5;
}
.aside h3 {
  background: #ED331C;
  height: 126px;
  font-weight: normal;
  font-size: 22px;
  line-height: 126px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0 40px;
  box-sizing: border-box;
}

.aside a {
  font-weight: 100;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  text-decoration: none;
}

.aside a:hover, .aside a.active {
  color: #ED331C;
}

.aside ul li ul li {
  padding: 5px 40px;
}

/*.aside li {
  display: inline-block;
}*/


.container {
  padding: 0 30px;
}

.col2 {
  display: flex;
}
.col2 .blocRubrique {
  width: 50%;
  padding: 0 20px;
}

.bottom-section {
  background: #f7f7f7;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 60px;
}

.bottom-section.no-pb {
  padding-bottom: 0;
}
.bottom-section + .bottom-section {
  margin-top: 0px;
}

.bottom-section .container {
  padding-top: 60px;
}

.last-added .entry {
  display: flex;
  margin: 40px -15px 0;
}

.last-added .entry .blocThumb {
  width: calc(25% - 20px);
  height: auto;
  min-height: 150px;
  background: lightgrey;
  border: 1px solid #C4C4C4;
  cursor: pointer;
  transition: opacity .2s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
}

.last-added .entry .blocThumb:hover {
  opacity: 0.8;
}
.last-added .entry .blocThumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer-mention p {
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  color: #666666;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  background: linear-gradient(90deg, rgba(1,113,187,0.60) 0%, rgba(25,94,128,1) 100%);

}


.full-width-container {
  overflow: hidden;
  min-width: 100%;
  width: 100%;
  height: 700px;
  display: flex;
  background: #205169;
}
.full-width-container.transparent {
  background: transparent;
  position: absolute;
  top: 0;
  z-index: -1;
}
.full-width-container_half {
  width: 50%;
  overflow: hidden;
}
.full-width-container_half.photo {
  height: calc(100% - 150px);
  margin-top: auto;
}
.full-width-container_half.photo img {
  object-fit: cover;
}
.full-width-container_half.carte {
  max-width: 100%;
  display: flex;
  position: relative;
}
.full-width-container_half.carte img {
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  margin-left: auto;
}

.banniere {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 30px;
    top: 250px;
    box-sizing: border-box;
}

.banniere-content {
    background: white;
    max-width: 756px;
    width: calc(100% - 390px);
    padding: 60px;
    box-sizing: border-box;
    position: absolute;
    top: 230px;
    z-index: 9;
}

.banniere_title {
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 50px;
  color: #ED331C;
}

.banniere p.copy {
  font-weight: 100;
  font-size: 31px;
  line-height: 48px;
  color: #666666;
  margin-top: 20px;
  font-weight: 100;
}


.square-intro {
  position: relative;
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  top: -300px;
  box-sizing: border-box;
  z-index: 2;
}

.square-intro_content {
  margin-left: auto;
  width: 300px;
  height: 600px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.square-intro_content_half  {
  height: 300px;
  width: 300px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 26px;
  padding: 30px;
}

.square-intro_content_half.part1 {
  background: white;
}

.square-intro_content_half.part2 {
  background: #ED331C;
  color: white;
}

.square-intro .intro-head {
  display: block;
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-top: 10px;
  white-space: nowrap;
}

.square-intro .intro-head:after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.square-intro .part1 .intro-head:after {
  background: #ED331C;
}

.square-intro .part2 .intro-head:after {
  background: white;
}

#center.relative-pos {
    position: relative;
    top: -450px;
    margin-bottom: -450px;
}

#center {
  background: linear-gradient(to left, #185A7A 50%, transparent 50%);
}

#center.has-header {
  margin-top: 300px;
}
.title-pos {
  position: relative;
  top: -86px;
}

.main-headline {
  top: -80px;
  position: relative;
}

.fil_ariane {
    position: absolute;
    top: -112px;

}

.fil_ariane a, .fil_ariane {
  font-size: 14px;
  line-height: 17px;
  color: #666666;
  text-decoration: none;
}

.fil_ariane a:hover {
  color: #ED331C;
}

.search-results p a {
  color: #ED331C;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all .2s ease;
  padding-bottom: 1px;
}

.search-results p a:hover {
  border-bottom: 1px solid #ED331C;
  padding-bottom: 1px;
}

#col_gauche .main-list {
    background: white;
    width: calc(100% - 300px);
    padding: 50px;
    box-sizing: border-box;
    min-height: 350px;
}

#col_gauche .main-list.col2 {
    background: white;
    width: calc(100% - 300px);
    padding: 30px 50px 50px 50px;
    box-sizing: border-box;
}

#accueil .main-list {
    columns: 3;
}


/* Footer */

#footer {
  background: linear-gradient(90deg, #014F82 0%, #11425B 100%);
}

#footer.has-mt {
  margin-top: 40px;
}

#footer.has-mt {
  margin-top: 60px;
}

#footerElements {
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 83px;
  box-sizing: border-box;
}

#footerElements .show-menu,
#footerElements #show-menu,
#footerElements .accueil,
#footerElements .listeCategories,
#footerElements .inscription {
  display: none;
}

#footerElements ul {
  display: flex;
}
#footerElements ul li a {
  display: flex;
  font-weight: 300;
  font-size: 15px;
  line-height: 18px;
  color: white;
  padding-left: 20px;
  cursor: pointer;
  opacity: 0.8;
  text-decoration: none;
}
#footerElements ul li a:hover {
  opacity: 1;
}


.linkeo-footer-logo {
  width: 234px;
  cursor: pointer;
}

.linkeo-footer-logo img {
  max-width: 100%;
}

.item-listing {
  margin-bottom: 40px;
}

.item-listing .entry  {
  display: flex;
  flex-wrap: wrap;
}

.item-listing .entry a  {
  text-decoration: none;
  color: inherit;
}

.item-listing .blocLoop  {
  margin-bottom: 50px;
}

.details-listing.item-listing .blocLoop {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1f1f1;;

}

.details-listing.item-listing .blocLoop:last-child  {
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: 0;
}

.item-listing .blocLoop:last-child  {
  margin-bottom: 25px;
}

.item-listing .entry > a  {
  width: 150px;
  height: 150px;
  background: lightgrey;
  border: 1px solid #C4C4C4;
  cursor: pointer;
}

.item-listing .entry a img  {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-listing .entry .paragraph {
  width: calc(100% - 200px);
  padding-left: 20px;
}

.item-listing .entry .paragraph h2 {
  font-weight: bold;
  font-size: 22px;
  line-height: 24px;
}

.item-listing .entry .paragraph h2:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #ED331C;
  margin: 8px 0;
}

.item-listing .entry .links  {
  width: 100%;
  margin-top: 20px;
}

.item-listing .entry .links a  {
  color: #ED331C;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all .2s ease;
  padding-bottom: 1px;
}

.item-listing .entry .links a:hover  {
  border-bottom: 1px solid #ED331C;
  padding-bottom: 1px;
}

.blocDetail {
  margin-bottom: 80px;
}

.blocDetail .entry {
  display: flex;
}

.blocDetail .entry img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  position: relative;
  top: -45px;
}

.blocDetail .meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
}

.blocDetail .meta .label {
  font-weight: bold;
}

.blocDetail .meta .meta_item {
  margin-bottom: 15px;
  padding-right: 15px;
  padding-left: 15px;
}

.blocDetail .entry .desc {
  width: calc(100% - 150px);
}

.blocDetail .entry .desc p {
    padding-right: 30px;
}

.blocDetail .entry .desc a {
  border-bottom: 1px solid #666;
}
.blocDetail .entry .desc a:hover {
  border-bottom: 1px solid transparent;
  color: #ED331C;
}

.blocDetail #wcb a {
  color: #ED331C;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all .2s ease;
  padding-bottom: 1px;
  text-decoration: none;
}

.blocDetail #wcb a:hover {
  border-bottom: 1px solid #ED331C;
  padding-bottom: 1px;
}

.blocDetail h2 {
  font-weight: bold;
  font-size: 22px;
  line-height: 24px;
}

.blocDetail h2:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #ED331C;
  margin: 8px 0;
}

.details-listing .bloc h2 {
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #ED331C;
  margin-bottom: 40px;
}

.blocLoop .entry .title {
  font-weight: bold;
  font-size: 22px;
  line-height: 24px;
  display: block;
}

.blocLoop .entry .title:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #ED331C;
  margin: 8px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a, .pagination span {
    margin: 0 5px;
    text-decoration: none;
    color: #999;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all .2s ease;
}

.pagination .page:hover {
  border: 2px solid #C4CCD4;
}

.pagination span.active-page {
  border: 2px solid #ED331C;
  color: #ED331C;
  font-weight: bold;
}

.pagination svg path {
    fill: #C4CCD4;
}
.pagination svg:hover path {
    fill: #999999;
}
.site-form {
	margin-bottom: 40px;
}
.site-form form {
  max-width: 540px;
}
.site-form form div {
  margin-bottom: 20px;
}
.site-form form div input:not([type=radio]),
.site-form form div select {
  margin-top: 2px;
  width: 100%;
  height: 42px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 4px;
  padding: 0 10px;
  font-family: Gotham, arial, sans-sans-serif;
  font-size: 16px;
  color: #6d6d6d;
}
.site-form form div textarea {
  margin-top: 2px;
  width: 100%;
  height: 150px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-family: Gotham, arial, sans-sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  color: #6d6d6d;
}

.site-form form p {
  font-weight: 400;
  color: #848484;
  margin-bottom: 5px;
}

#spryCivilite {
  margin: 0 -15px;
  display: block;
}

#spryCivilite p {
  margin-left: 15px;
}


#spryCivilite input[type="radio"] {
  margin: 10px 10px 10px 15px;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.5303 9.46967C16.2374 9.17678 15.7626 9.17678 15.4697 9.46967L12 12.9393L8.5303 9.46967C8.2374 9.17678 7.7626 9.17678 7.4697 9.46967C7.1768 9.76256 7.1768 10.2374 7.4697 10.5303L11.4697 14.5303C11.7626 14.8232 12.2374 14.8232 12.5303 14.5303L16.5303 10.5303C16.8232 10.2374 16.8232 9.76256 16.5303 9.46967Z' fill='%23999999'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center right 8px;
  cursor: pointer;
  padding-right: 36px;
}

#spryCaptcha img {
  margin-top: 10px;
}

.site-form form input[type="submit"] {
  border: none;
  line-height: 40px;
  color: white;
  background: #11425d;
  border: none;
  height: 50px;
  padding: 0 20px;
  font-size: 15px;
  font-family: 'Gotham';
  border-radius: 4px;
  margin: 30px 0 10px;
  cursor: pointer;
  transition: background .2s ease;

}

.site-form form input[type="submit"]:hover {
  background: #9e9e9e;
}

.site-form form input[type="submit"]:active {
  background: #737373;
}

.textareaRequiredState .textareaRequiredMsg, .textareaMinCharsState .textareaMinCharsMsg, .textareaMaxCharsState .textareaMaxCharsMsg, .textfieldRequiredState .textfieldRequiredMsg, .textfieldInvalidFormatState .textfieldInvalidFormatMsg, .textfieldMinValueState .textfieldMinValueMsg, .textfieldMaxValueState, .selectRequiredState .selectRequiredMsg, .selectInvalidState .selectInvalidMsg, .textfieldMaxValueMsg, .textfieldMinCharsState .textfieldMinCharsMsg, .textfieldMaxCharsState .textfieldMaxCharsMsg {
  font-size: 13px!important;
  background: none!important;
  text-align: left!important;
  font-weight: normal!important;
  border: none!important;
  color: #ED331C!important;
}

/* Media queries */

@media screen and (max-width: 1340px) {
  h2.lienRubrique a {
    font-size: 14px;
  }
  .full-width-container.transparent .full-width-container_half.carte {
    width: 100%;
  }
  .full-width-container.transparent .full-width-container_half.carte img {
    margin-left: 0;
  }
}
@media screen and (max-width: 1135px) {
  .banniere_title {
    font-size: 40px;
  }
  .banniere p.copy {
    font-size: 26px;
    line-height: 42px;
    margin-top: 15px;
  }
  .banniere-content {
    padding: 40px;
  }
}

@media screen and (max-width: 1024px) {
  #accueil .main-list {
    columns: 2;
  }
  .full-width-container {
    height: 580px;
  }
  .banniere-content {
    top: 205px;
  }
  .square-intro_content_half {
    font-size: 14px;
    line-height: 22px;
    padding: 24px;
  }
  .square-intro .intro-head {
    font-size: 18px;
    line-height: 20px;
  }
  .square-intro .intro-head:after {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .square-intro_content_half {
    width: 250px;
    height: 250px;
  }
  .square-intro_content {
    width: 250px;
    height: 500px;
  }
  .square-intro {
    top: -250px;
  }
  #col_gauche .main-list {
    width: calc(100% - 250px);
    padding: 30px;
  }
	#col_gauche .main-list.item-listing.details-listing {
    width: 100%;
  }
	#col_gauche .main-list.item-listing.item-listing {
    width: 100%;
  }
	#col_gauche .main-list.site-form {
    width: 100%;
  }
  #center.relative-pos {
    top: -365px;
    margin-bottom: -365px;
  }
  h1 {
    font-size: 24px;
  }
  .title-pos {
    top: -80px;
    max-width: 60%;
    line-height: 30px;
  }
  .banniere-content {
    width: calc(100% - 340px);
  }
  .banniere_title {
    font-size: 36px;
    line-height: 42px;
  }
  .banniere p.copy {
    font-size: 21px;
    line-height: 35px;
  }
  h2.lienRubrique a {
    font-size: 13px;
  }
  #col_gauche .main-list.col2 {
    width: 100%;
  }
  h2.lienRubrique + p a {
    font-size: 13px;
    line-height: 22px;
  }

  #header #nav ul {
    visibility: hidden;
    height: 0;
    left: 0;
    top: 150px;
    position: absolute;
    width: 100vw;
    right: 0;
    background: linear-gradient(90deg, rgba(1,113,187,0.60) 0%, rgba(25,94,128,1) 100%);
    overflow: hidden;
    line-height: 40px;
    padding: 0px 0 15px;
    height: 0;
    display: block;
    visibility: hidden;
    transition: height .2s ease;
    justify-content: flex-end;
    align-items: flex-end;
    display: flex;
    box-sizing: border-box;
    padding-right: 15px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 15px;
  }
  #header #nav .show-menu {
    display: flex;
    margin-left: 20px;
  }
  #header #nav {
    flex-direction: row-reverse;
  }
  #show-menu:checked + ul {
    height: 75px!important;
    visibility: visible!important;
    transition: height .2s ease!important;
  }
  #header #nav ul li.active:before {
    content: none;
  }
	.aside  {
		display: none;
	}
}
@media screen and (max-width: 755px) {
  #header {
    background: linear-gradient(90deg, rgba(1,113,187,1) 0%, rgba(25,94,128,1) 100%);
    position: static;
  }
  #header #nav ul {
    background: linear-gradient(90deg, rgba(1,113,187,1) 0%, rgba(25,94,128,1) 100%);
  }
  #header #logoH1 img {
    width: 100%;
  }
  .full-width-container {
    flex-direction: column;
    height: auto;
    margin-top: 0;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .full-width-container_half {
    width: 100%;
    overflow: hidden;
    height: 50%;
  }
  .banniere {
    margin-top: 30px;
  }
  .banniere-content {
    width: 100%;
    top: 0;
    position: static;
    padding: 24px;
  }
  .square-intro {
    position: static;
  }
  .square-intro_content {
    width: 100%;
    height: auto;
  }
  .square-intro_content_half {
    width: 100%;
    height: auto;
  }
  .banniere_title {
    font-size: 24px;
    line-height: 24px;
  }
  .banniere p.copy {
    font-size: 14px;
    line-height: 24px;
  }
  #center.relative-pos {
    position: static;
    margin-bottom: 0;
  }
  #center {
    background: #f7f7f7;
    margin-top: 30px;
  }
	#center.has-header {
		margin-top: 0;
	}
	.main-headline {
		top: 0;
	}
  .title-pos {
    max-width: 100%;
    width: 100%;
    position: static;
  }
  #col_gauche .main-list {
    width: 100%;
  }
	#col_gauche .main-list.col2 {
		padding: 15px 15px 50px 15px;
	}
	.col2 .blocRubrique {
		padding: 0;
	}
	.fil_ariane {
		white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    position: static;
    margin-top: 30px;
		top: 0;
	}
  #accueil .main-list {
    columns: 1;
  }
	.fil_ariane + h1 {
		padding: 15px 0 30px;
	}
  h1 {
    padding: 30px 0;
  }
  .last-added .entry {
    flex-wrap: wrap;
  }
  .last-added .entry .blocThumb {
    width: 100%;
    margin: 20px 0;
  }

  .col2 {
    flex-direction: column;
  }
  h2.lienRubrique + p a {
    font-size: 14px;
    line-height: 22px;
  }
  .col2 .blocRubrique {
    width: 100%;
  }
	.blocDetail .entry .desc {
		width: 100%;
	}
	.blocDetail .entry img {
		top: 0;
    margin: 30px 0;
	}
}

@media screen and (max-width: 640px) {
  #header {
    height: auto;
  }

  #headerElements {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 30px;
    height: auto;
  }
  #header #logoH1 {
    margin-right: auto;
    margin-left: auto;
  }
  #header #nav {
    flex-direction: row;
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
    position: relative;
  }
  #header #nav .show-menu {
    margin-left: 0;
    margin-right: 20px;
  }
  #header #recherche {
    margin-left: 0;
  }
  #header #nav ul {
    position: absolute;
    width: 100vw;
    left: -30px;
    right: 0;
    top: 60px;
    background: linear-gradient(90deg, rgba(1,113,187,1) 0%, rgba(25,94,128,1) 100%);
    flex-direction: column;
    overflow: hidden;
    line-height: 40px;
    padding: 0px 0 15px;
    height: 0;
    display: block;
    visibility: hidden;
    transition: height .2s ease;
    border-top: none;
  }
  #header #nav ul li.active:before {
    content: none;
  }
  #header #nav ul li {
    padding: 0 30px;
  }
  #show-menu:checked + ul {
    height: 135px!important;
    visibility: visible!important;
    transition: height .2s ease!important;
  }
}
