<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/******************************************************************
Stylesheet: Main Stylesheet
******************************************************************/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700|Oswald:200,300,400,500,600");

:root {
  --grey:#868380;
  --darkgrey:#534e48;
  --jet:#332f2a;
  --fogra-39:#090405;
  --desert-sand:#f3cdb0;
  --ocre:#ca7c4d;
  --saumon:#fd5c43;
  --rouge:#e10a19;
  --brique:#b7352e;
  --marron:#874e36;
  --umber:#8c2a23;
  --rosewood:#580006;
  --short-transition:0.4s;
}

* {
  box-sizing: border-box;
}

*:before, *:after {
  box-sizing: inherit;
}

html, body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* line 9, ../scss/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  position: relative;
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.6;
  /* color: var(--grey); */
  color: #000;
  font-size: 13px;
}

/* HTML5 display definitions
   ========================================================================== */

/* Prevent modern browsers from displaying `audio` without controls. */

/* line 67, ../scss/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Links
   ========================================================================== */

/**
    Improve readability when focused and also mouse hovered in all browsers.
    line 97, ../scss/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}


/* Grouping content
   ========================================================================== */

/* Address margin not present in IE 8/9 and Safari. */

/* line 203, ../scss/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* Address differences between Firefox and other browsers. */

/* line 211, ../scss/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* Forms
   ========================================================================== */

/* line 252, ../scss/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 277, ../scss/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* Re-set default cursor for disabled elements. */

button[disabled],
html input[disabled] {
  cursor: default;
}

/* Remove inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

hr {
  height: 1px;
  padding: 0;
  margin: 40px 0;
  background-color: var(--desert-sand);
  border: 0;
}

iframe, textarea {
  max-width: 100%;
}

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

p {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  -ms-word-break: keep-all;
  word-break: keep-all;
}

/******************************************************************
                  Stylesheet: layout css
******************************************************************/

.wrap {
  margin: 0 auto;
  max-width: 1160px;
}

.site {
  position: relative;
}

.flex {
  display:flex;
  justify-content:space-between;
}

.wrap article {
  width:69%;
  padding:0 16px;
}

.wrap aside {
  width:29%;
  background-color:var(--brique);
  padding:16px;
  color:white;
  padding:0;
  overflow:hidden;
}

.wrap aside &gt; * {
  padding:0 16px;
}

.wrap aside &gt; img {
  padding:0;
}

.cf {
  overflow: hidden;
  *zoom: 1;
}

.wp-caption {
  max-width: 100%;
}

.alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}

.alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}

.aligncenter {
  display: block;
  margin:auto;
}

.moinslarge {
  padding-left: 15px;
  padding-right: 15px;
}

.moinslarge .row {
  width: 76%;
  margin:auto;
}

.site-aside {
  position: absolute;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--rouge);
  padding: 20px;
  z-index: 20;
  -moz-transition: all var(--short-transition) ease-in-out;
  -o-transition: all var(--short-transition) ease-in-out;
  -webkit-transition: all var(--short-transition) ease-in-out;
  transition: all var(--short-transition) ease-in-out;
}

.site-aside.site-menuburger-show {
  right: 0;
}

.site-aside .row, .site-aside .col {
  display: block;
}

.site-aside .aside-row-menuburgerclose {
  text-align: right;
  cursor: pointer;
}

.section-header {
  background-size: cover;
  background-position: center center;
  height: 615px;
}

.site-header {
  position: relative;
}

.site-header:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 220px;
  background-image: url(/wp-content/uploads/2017/11/bandeau-briques-interne.png);
  background-repeat: repeat-x;
}

.tm-titre-saumon {
  color: var(--saumon);
}

.accordeon-close {
  display: none;
}

.accordeon-title {
  margin-left: -20px;
  margin-right: -20px;
}

.accordeon-title h3 {
  -moz-transition: all var(--short-transition) ease-in-out;
  -o-transition: all var(--short-transition) ease-in-out;
  -webkit-transition: all var(--short-transition) ease-in-out;
  transition: all var(--short-transition) ease-in-out;
  font-family: Oswald;
  color: white;
  background-color: var(--saumon);
  border: 5px solid var(--saumon);
  border-bottom: 0;
  padding: 20px 25px 25px;
  margin: 0;
  font-size: 25px;
  display: block;
  cursor: pointer;
}

.accordeon-title h3:before {
  content: "\f055";
  font-family: 'FontAwesome';
  color: white;
  font-size: 30px;
  border-right: 2px solid;
  padding-right: 10px;
  margin-right: 10px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.75em;
}

h3.accordeon-title-opened:before {
  content: "\f139";
}

.accordeon-content {
  display: none;
}

.section-accordeon_vertical-col {
  padding-left: 15px;
  padding-right: 15px;
}

.section-accordeon_vertical {
  border-top: 1px solid var(--desert-sand);
  margin-bottom: 4px;
  padding-top: 8px;
}

body.clr-marron .section-accordeon_vertical {
  width: 98%;
  margin-left: 1%;
  display: inline-block;
}

.section-accordeon_vertical:last-child {
  border-bottom: 1px solid var(--desert-sand);
  padding-bottom: 10px;
  margin-bottom: 40px;
}

body.clr-marron .section-accordeon_vertical:last-child {
  width: 98%;
  margin-left: 1%;
}

.site-content-article-main {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.prof-small {
  display: inline-block;
  vertical-align: top;
  padding-left: 30px;
  text-align: center;
}

.prof-small img {
  border-radius: 100px;
}

/*************************************
 * generic styling for ALS elements
 ************************************/

.als-container {
  position: relative;
  width: 100%;
  margin: 0px auto;
  z-index: 0;
}

.als-viewport {
  position: relative;
  overflow: hidden;
  margin: 0px auto;
}

.als-wrapper {
  position: relative;
  list-style: none;
}

.als-item {
  position: relative;
  display: block;
  text-align: center;
  float: left;
}

.als-prev, .als-next {
  position: absolute;
  cursor: pointer;
  clear: both;
}

/*****************************************************
 *                SLIDER HOME
 ****************************************************/

#slider-home {
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

#slider-home .als-viewport {
  width: 3600px;
  left: 50%;
  margin-left: -2250px;
}

#slider-home .als-wrapper {
  margin: 0;
  padding: 0;
}

#slider-home .als-prev,
#slider-home .als-next {
  width: 39px;
  height: 33px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -16px;
}

#slider-home .als-prev {
  left: 0;
}

#slider-home .als-next {
  right: 0;
}

#slider-home .als-item {
  min-width: 1500px;
  height: 637px;
  float: left;
  text-align: center;
}

#slider-home .als-item img {
  width: 1500px;
}

#slider-home .als-item img {
  display: block;
  margin: 0 auto;
}

.site-header-slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: -20px;
}

.abslink {
  position: fixed;
  right: 0;
  top: 280px;
  z-index: 9;
  text-align: right;
  line-height: 12px;
  display: block;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

.abslink-taxeapp, .abslink-contact, .abslink-actus, .abslink-search, .abslink-ziggy {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  background-image: url('../images/icones-sa7ed91bfe4.png');
  background-repeat: no-repeat;
  width: 75px;
  display: inline-block;
  border-bottom: 1px solid #89a39b;
}

.abslink-contact, .abslink-actus, .abslink-search, .abslink-ziggy {
  height: 80px;
}

.abslink-taxeapp {
  background-position: 0 -570px;
  height: 90px;
}

.abslink-taxeapp:hover, .abslink-taxeapp.taxeapp-hover {
  background-position: 0 -480px;
}

.abslink-contact {
  background-position: 0 -240px;
}

.abslink-contact:hover, .abslink-contact.contact-hover {
  background-position: 0 -160px;
}

.abslink-actus {
  background-position: 0 -80px;
}

.abslink-actus:hover, .abslink-actus.actus-hover {
  background-position: 0 0;
}

.abslink-search {
  background-position: 0 -400px;
}

.abslink-search:hover, .abslink-search.search-hover {
  background-position: 0 -320px;
}

.abslink-ziggy {
  background-position: 0 -740px;
}

.abslink-ziggy:hover, .abslink-ziggy.ziggy-hover {
  background-position: 0 -660px;
}

.fichetechnique {
  position: absolute;
  margin-top: -50px;
  background-color: #f5e9dd;
  padding: 20px;
  width: 340px;
  z-index: 1;
  display: none;
}

.fichetechnique .module-posts-sidebar-widget:last-child {
  border: 0;
}

.accordeon-wrapper {
  border: 5px solid white;
  border-top: 0;
  -moz-transition: all var(--short-transition) ease-in-out;
  -o-transition: all var(--short-transition) ease-in-out;
  -webkit-transition: all var(--short-transition) ease-in-out;
  transition: all var(--short-transition) ease-in-out;
}

.accordeon-wrapper-opened {
  border-color: var(--saumon);
}

.accordeon-wrapper-opened .accordeon-title h3 {
  color: var(--saumon);
  background-color: white;
}

.accordeon-wrapper-opened .accordeon-title h3:before {
  color: var(--saumon);
}

.clr-marron .accordeon-title h3 {
  background-color: var(--marron);
  border-color: var(--marron);
}

.clr-marron .accordeon-title h3:before {
  color: white;
}

.clr-marron .accordeon-wrapper-opened {
  border-color: var(--marron);
}

.clr-marron .accordeon-wrapper-opened .accordeon-title h3 {
  color: var(--marron);
  background-color: white;
}

.clr-marron .accordeon-wrapper-opened .accordeon-title h3:before {
  color: var(--marron);
}

.clr-ocre .accordeon-title h3 {
  background-color: var(--ocre);
  border-color: var(--ocre);
}

.clr-ocre .accordeon-title h3:before {
  color: white;
}

.clr-ocre .accordeon-wrapper-opened {
  border-color: var(--ocre);
}

.clr-ocre .accordeon-wrapper-opened .accordeon-title h3 {
  color: var(--ocre);
  background-color: white;
}

.clr-ocre .accordeon-wrapper-opened .accordeon-title h3:before {
  color: var(--ocre);
}

.clr-brique .accordeon-title h3 {
  background-color: var(--brique);
  border-color: var(--brique);
}

.clr-brique .accordeon-title h3:before {
  color: white;
}

.clr-brique .accordeon-wrapper-opened {
  border-color: var(--brique);
}

.clr-brique .accordeon-wrapper-opened .accordeon-title h3 {
  color: var(--brique);
  background-color: white;
}

.clr-brique .accordeon-wrapper-opened .accordeon-title h3:before {
  color: var(--brique);
}

.tab-cell {
  display: table;
  border-collapse: collapse;
  width: 100%;
  margin: -1px 0 0;
}

.tab-cell-wrapper {
  display: table-cell;
  width: 50%;
  vertical-align: top;
  border: 1px solid var(--brique);
}

.tab-cell-wrapper h4 {
  border-bottom: 1px solid var(--brique);
  padding: 0 15px;
  height: 60px;
  margin-top: -15px;
}

.tab-cell-wrapper ul {
  padding: 0 15px;
}

.is-partenaires img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px;
}

.module-concerts-wrapper {
  width: 100%;
  border: 4px solid var(--brique);
  margin: 0 0 10px 0;
  padding: 10px;
  position: relative;
}

.is-read-concert-next:hover {
  cursor: pointer;
  color: var(--rouge);
}

.page-id-155 .section-colonnes-col.col_1_3 .tm-btn-rouge {
  display: block;
}

/******************************************************************
                Stylesheet: Main Stylesheet
******************************************************************/
/*  Styles de base */

p {
  margin-bottom: 2em;
}

strong {
  font-weight: 700;
  color: var(--darkgrey);
}

h1, h2, h5 {
  font-family: 'Oswald', sans-serif;
}

h1, h2 {
  font-weight:600;
}

h3, h4 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1.6;
}

h1 {
  font-size: 30px;
  color: white;
  margin: 0.67em 0;
}

h2 {
  font-size: 28px;
  line-height: 1.2em;
}

h3 {
  font-size: 17px;
  color: var(--marron);
}

h4 {
  font-size: 15px;
  color: var(--fogra-39);
}

h5 {
  color: var(--grey);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-titre {
  min-height: 500px;
}

h1:after {
  background: none 0px 0px repeat scroll white;
  content: "";
  display: block;
  width: 180px;
  height: 5px;
  margin: 40px auto 0;
}

h2, a {
  color: var(--rouge);
  text-decoration: none!important;
}

a:hover {
  text-decoration: none;
}

.clr-marron .section a, .clr-marron h2, .clr-marron .section a[class|="tm-btn"], .clr-marron .site-content ul li:before {
  color: var(--marron);
}

.clr-marron .section a[class|="tm-btn"] {
  border-color: var(--marron);
}

.clr-marron .section a[class|="tm-btn"]:hover {
  color: white;
  background-color: var(--marron);
}

.clr-ocre .section a, .clr-ocre h2, .clr-ocre .section a[class|="tm-btn"], .clr-ocre .site-content ul li:before {
  color: var(--ocre);
}

.clr-ocre .section a[class|="tm-btn"] {
  border-color: var(--ocre);
}

.clr-ocre .section a[class|="tm-btn"]:hover {
  color: white;
  background-color: var(--ocre);
}

/* line 82, ../scss/_style.scss */
.clr-brique .module-posts-sidebar-widget .fa,
.clr-brique .section a, .clr-brique h2, .clr-brique .section a[class|="tm-btn"], .clr-brique .site-content ul li:before {
  color: var(--brique);
}
/* line 86, ../scss/_style.scss */
.clr-brique .section a[class|="tm-btn"] {
  border-color: var(--brique);
}
/* line 88, ../scss/_style.scss */
.clr-brique .section a[class|="tm-btn"]:hover {
  color: white;
  background-color: var(--brique);
}

/* line 136, ../scss/_style.scss */
.section .site-content ul,
ul.textList {
  padding-left: 50px;
}

/* line 141, ../scss/_style.scss */
.site-content p + ul {
  margin-top: -20px;
}

/* line 145, ../scss/_style.scss */
.mce-content-body ul li,
.site-content ul li,
ul.textList li {
  position: relative;
  padding-left: 15px;
}

/* line 152, ../scss/_style.scss */
.mce-content-body ul li:before,
.site-content .section ul li:before,
ul.textList li:before {
  content: "\f111";
  font-family: FontAwesome;
  color: var(--rouge);
  margin-right: 4px;
  margin-bottom: 5px;
  font-size: 6px;
  position: absolute;
  left: 0;
  top: 6px;
}

/* LEGENDE IMAGE */

.photolegende-row-col .photo {
  position: relative;
  display: inline-block;
}

.legende {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25em;
  color: white;
  background-color: var(--rouge);
  font-weight: 200;
  padding: 1.5em 1em;
  margin-top: -8px;
}

/* NAVIGATION PAR DEFAUT */

.menu {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
}

/* FIL D'ARIANE */

.header-titre-col {
  position: relative;
}

.header-ariane {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 15px;
  position: absolute;
  z-index: 2;
  bottom: 45px;
}

.ariane_space::before {
  content: "\f105";
  font-family: FontAwesome;
  color: var(--darkgrey);
  font-size: 15px;
  display: inline-block;
  margin: 0 10px;
}

/*Boutons*/

a.btn,
a[class|="tm-btn"],
.is-btn-rouge {
  display: inline-block;
  margin: 5px;
  padding: 15px 30px;
  border: 2px solid var(--rouge);
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0px;
  text-align: center;
  transition: var(--short-transition);
  -webkit-transition: var(--short-transition);
}

a.btn .fa {
  margin-right: 5px;
}

.first-btn {
  border-color: var(--rouge);
  color: var(--rouge);
}

.first-btn:hover {
  background: var(--rouge);
  color: white;
}

a.tm-btn-rouge:hover {
  background: var(--rouge);
  color: white;
}

a.tm-btn-saumon {
  border-color: var(--saumon);
  color: var(--saumon);
}

a.tm-btn-saumon:hover {
  background: var(--saumon);
  color: white;
}

.section-encart a[class|="tm-btn"]:hover {
  background-color: white;
}

.section-encart a.tm-btn-saumon:hover {
  color: var(--saumon);
}

a.tm-btn-agenda, a.tm-btn-blanc, a.tm-btn-blanc-rouge {
  border-color: white;
  color: white;
}

a.tm-btn-agenda {
  padding-left: 50px;
  padding-right: 50px;
}

a.tm-btn-agenda:hover {
  background-color: white;
  color: var(--umber);
}

a.tm-btn-blanc {
  display: block;
  text-align: center;
  max-width: 280px;
}

a.tm-btn-blanc:hover {
  background-color: #adbfb9;
}

a.tm-btn-blanc-rouge:hover {
  background-color: var(--rouge);
}

.is-load-plus:hover {
  color: white;
  background-color: var(--rouge);
}

/* ===========================================================
                      HEADER
============================================================*/

.section-header {
  position: relative;
}

/*logo*/
.header-row {
  position: relative;
  height: 115px;
}

.item-logo {
  position: absolute;
}

/* NAVIGATION STYLES GENERAUX */

.menu-top-menu-container {
  height: 30px;
  padding: 20px 0 50px 0;
}

.menu-menu-principal-container {
  height: 45px;
  margin-left: 100px;
}

.menu-top-menu-container ul,
.menu-menu-principal-container ul {
  text-align: right;
}

.menu-top-menu-container ul li,
.menu-menu-principal-container ul li {
  display: inline-block;
  margin-left: 24px;
  position: relative;
}

.menu-top-menu-container ul li a,
.menu-menu-principal-container ul li a {
  color: white;
}

.menu-top-menu-container ul .current-menu-item &gt; a::after,
.menu-top-menu-container ul .current-page-ancestor &gt; a::after,
.menu-top-menu-container ul .menu-item:hover &gt; a::after,
.menu-menu-principal-container ul .current-menu-item &gt; a::after,
.menu-menu-principal-container ul .current-page-ancestor &gt; a::after,
.menu-menu-principal-container ul .menu-item:hover &gt; a::after {
  background-color: white;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
}

.site-aside ul .menu-item a::after {
  display: none !important;
}

.site-aside .menu-top-menu-container ul .current-menu-item &gt; a,
.site-aside .menu-top-menu-container ul .menu-item:hover &gt; a,
.site-aside .menu-menu-principal-container ul .current-menu-item &gt; a,
.site-aside .menu-menu-principal-container ul .menu-item:hover &gt; a {
  background-color: #333;
  color: white;
  padding: 0 5px;
  display: inline-block;
}

.menu-top-menu-container ul li:not(:first-of-type)::before,
.menu-menu-principal-container ul li:not(:first-of-type)::before {
  background-color: white;
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  position: absolute;
  top: 6px;
  left: -13px;
}

/* TOP MENU */

.menu-top-menu-container ul li a {
  font-size: 16.8px;
}

/* MENU PRINCIPAL */

.menu-menu-principal-container ul li a {
  font-size: 17.8px;
  text-transform: uppercase;
}

/* =================================
            Home Accueil
==================================== */

/* MENU RAPIDE */

.menu-rapide {
  margin-bottom: 104px;
  position: relative;
  text-align: center;
}

a[class|="is-cta"], a[class|="is-cta"] strong {
  font-weight: 200;
  color: #ffe2df;
}

a[class|="is-cta"] {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  line-height: 1em;
  text-transform: uppercase;
  display: inline-block;
  width: 270px;
  height: 270px;
  padding: 175px 15px 40px;
  margin: 0 0.5% 0.6%;
}

a[class|="is-cta"] strong {
  font-size: 25px;
}

.is-cta-saumon {
  background-color: var(--saumon);
}

a.is-cta-brique {
  background-color: var(--brique);
}

a.is-cta-marron {
  background-color: var(--marron);
}

a.is-cta-ocre {
  background-color: var(--ocre);
}

a[class|="is-cta"]:hover {
  background-color: var(--rosewood);
  transition:var(--short-transition);
}

/* DERNIERES ACTUS */

h2.home-title-news {
  font-size: 20px;
  color: var(--fogra-39);
  font-weight: 300;
  margin-bottom: 25px;
  margin-left: 10px;
}

.module-posts-wrapper {
  width: 31%;
  margin: 0 1%;
  text-align: left;
  margin-bottom: 50px;
}

.module-posts {
  margin-bottom: 40px;
}

/* COLONNES HOME */

.home .module-posts {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

/* BIG NUMBERS */

.item.bignumber-row-col-item {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

.item-bignumber {
  padding:8px;
}

.item-bignumber:nth-child(2),
.item-bignumber:nth-child(3),
.item-bignumber:nth-child(4) {
  border-left: 1px solid #dadada;
}

.nombre {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.nombre::after {
  content: "";
  background: none 0px 0px repeat scroll var(--rouge);
  display: block;
  width: 50px;
  height: 5px;
  margin: 0 auto;
}

.texte {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #89a39b;
  text-align: center;
  padding-top: 10px;
}

/*====================================================
                 ACCUEIL AGENDA
====================================================*/

.section-accueilagenda {
  background-color: var(--umber);
  background: url(/wp-content/uploads/2017/12/fond-focus.jpg) center top no-repeat var(--umber);
  font-family: 'Oswald', sans-serif;
  color: white;
  padding: 40px 0;
  margin: 72px 0 32px;
}

.accueilagenda-header-cat {
  display: inline-block !important;
  padding-right: 0;
  font-size: 60px;
  font-weight: bold;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
  color: var(--umber);
}

.accueilagenda-header-cat::before {
  content: "\f101";
  font-family: FontAwesome;
  margin-right: 10px;
}

.accueilagenda-header-date {
  display: inline-block !important;
  font-size: 20px;
  font-weight: 200;
  padding-left: 0;
  margin-left:10px;
}

.accueilagenda-header-date strong {
  color: white;
}

.accueilagenda-content-content {
  vertical-align: middle;
  width: 65%;
}

.accueilagenda-content-content-item {
  font-size: 25px;
  font-weight: 500;
}

/* ====================================================
                      ENCART
==================================================== */

.encart-row {
  padding: 35px 0 15px 0;
}

.encart-row p {
  font-family: 'Oswald', sans-serif;
  font-size: 1.875em;
  font-weight: 600;
  margin-bottom: 50px;
  color: white;
}

.encart-saumon .encart-row {
  background-color: var(--saumon);
}

.encart-rouge .encart-row {
  background-color: var(--rouge);
}

.fort-row-col-image {
  padding: 40px;
}

.fort-row-col-texte {
  padding: 15px;
}

/* ============================================
             SECTION DECOUVREZ AUSSI
============================================ */

/* line 659, ../scss/_style.scss */
.section-decouvrezaussi {
  background: url("/wp-content/uploads/2017/11/fond-effet-brique-1.png") top repeat-x;
  height: 468px;
  margin-top: 56px;
}

.decouvrezaussi-header-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 90px;
  color: var(--darkgrey);
  text-align: center;
  margin-bottom: 50px;
}

.decouvrezaussi-liens-col-content a .texte {
  color: white;
  font-size: 25px;
  font-weight: 500;
}

/* ====================================
        COURS ET ACCOMPAGNEMENT
==================================== */

.row-extrait_page {
  padding: 40px 0 50px 0;
  position: relative;
}

.col-extrait::before {
  content: "";
  height: 1px;
  background: none 0px 0px repeat scroll var(--desert-sand);
  display: block;
  width: 960px;
  position: absolute;
  left: 50px;
  top: 0;
}

.row-extrait_page:nth-child(1) {
  padding-top: 0;
}

.row-extrait_page:nth-child(1) .col-extrait::before {
  background: none;
  padding-top: 0;
}

.col-extrait p {
  margin-bottom: 60px;
}

.module-prof {
  margin-bottom: 20px;
}

/* =================================
          APPRENTISSAGE
==================================== */

.is-logos {
  height: 40px;
  float: right;
}

.is-logos img {
  height: 100%;
  width: auto;
  margin-right: 10px;
}

/* =================================
             ACCUEIL DU BLOG
==================================== */

/*Agenda*/

.section-agenda .wrap {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  background-color: #89a39b;
  color: white;
  padding: 16px;
  margin-bottom: 70px;
  max-width: 1120px;
}

.agenda-header {
  border-bottom: 1px solid white;
}

.agenda-header-title, .agenda-header-toggle {
  font-weight: 200;
  padding-bottom: 20px;
}

.agenda-header-toggle {
  text-align: right;
  position: relative;
}

.agenda-header-toggle-item::after {
  content: "\f00d";
  font-family: FontAwesome;
  margin-left: 10px;
}

.agenda-header p, .agenda-content p {
  font-size: 0;
}

.agenda-content-month-item {
  text-align: center;
}

.calendar_prev_month, .calendar_next_month {
  font-size: 70px;
}

.agenda-content-month-item strong::after {
  content: "";
  height: 5px;
  background: none 0px 0px repeat scroll white;
  display: block;
  width: 400px;
  margin: 0 auto;
}

.agenda-content-month-item strong {
  font-size: 90px;
  line-height: 110px;
  color: white;
}

.module-agenda-list {
  border-bottom: 1px solid #55716d;
  padding-top: 24px;
  margin-bottom: 30px;
}

.module-agenda-list-item {
  padding: 10px;
}

.module-agenda-list-item a,
.module-agenda-list-item h4 {
  font-family: 'Oswald', sans-serif;
}

.module-agenda-list-item a,
.module-agenda-list-item b {
  color: #55716d;
  font-weight: 400;
}

.module-agenda-list-item h4 {
  color: white;
  font-size: 25px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 460px;
}

.module-agenda-list-item:hover {
  background-color: #adbfb9;
}

.module-agenda-list-item {
  position: relative;
}

.module-agenda-list-item:hover::after {
  content: "\f105";
  font-family: FontAwesome;
  color: #89a39b;
  margin-left: 10px;
  position: absolute;
  font-size: 50px;
  right: 10px;
  top: 8px;
}

/*======================================
                FILTRES
======================================*/

.news-filter-wrapper {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--rouge);
  text-align: center;
  margin-bottom: 40px;
  padding-left: 0px !important;
}

.news-filter-wrapper li {
  display: inline-block;
  margin-left: 24px;
  position: relative;
}

.news-filter-wrapper li::before {
  content: "\f111";
  font-family: FontAwesome;
  font-size: 8px;
  margin-right: 10px;
  position: absolute;
  top: 16px;
  left: -16px;
}

.news-filter-wrapper li:nth-child(1)::before {
  color: white;
}

.news-filter-wrapper li a {
  padding: 4px 8px;
}

.news-filter-wrapper li a:hover, .news-filter-active {
  color: var(--rosewood);
  background-color: #eee4da;
  transition:var(--short-transition);
}

.is-btn-rouge {
  display: inline-block;
  color: var(--rouge);
}

.is-btn-rouge .fa-level-down {
  margin-left: 4px;
}

.module-posts {
  display: flex;
  flex-wrap: wrap;
}

/*======================================
        ARTICLE A LA UNE
======================================*/

/* line 917, ../scss/_style.scss */
h2.module-posts-title {
  font-size: 25px;
  font-weight: 500;
  margin-top: 0;
}

.is-read-next {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  padding: 10px;
  font-size: 15px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin: 5px;
  border-left: 2px solid #b3b1ae;
  border-bottom: 2px solid #b3b1ae;
  transition: var(--short-transition);
  -webkit-transition: var(--short-transition);
}

.module-posts-wrapper a:hover .is-read-next {
  background-color: var(--rouge);
  color: white;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
}

/* =================================
         Article de blog pied
==================================== */

/* line 950, ../scss/_style.scss */
.endsingle-title::before {
  content: "";
  height: 1px;
  background: none 0px 0px repeat scroll var(--desert-sand);
  display: block;
  width: 960px;
  margin: 0 auto 15px;
}

.endsingle-title {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 200;
  color: var(--fogra-39);
  text-align: center;
  margin-bottom: 30px;
}

.endsingle-now {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fogra-39);
  text-align: center;
}

.single-share, .is-close-post {
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.single-share {
  color: var(--fogra-39);
  margin-bottom: 30px;
}

.is-close-post {
  color: var(--rouge);
  border-bottom: 2px solid var(--rouge);
  display: block;
  width: 200px;
  height: 50px;
  padding: 0;
  margin: 30px auto 50px;
}

.is-close-post::after {
  content: "\f00d";
  font-family: FontAwesome;
  color: var(--rouge);
  font-size: 25px;
  padding-left: 15px;
}

.is-close-post:hover {
  color: var(--rosewood);
  border-color: var(--rosewood);
}

.is-close-post:hover:after {
  color: var(--rosewood);
}

.section-endsingle {
  text-align: center;
}

/*=============================================
            ACTU PRECEDENTE OU SUIVANTE
=============================================*/

/* line 1027, ../scss/_style.scss */
.is-btn-news-prev,
.is-btn-news-next {
  background-color: var(--brique);
  position: relative;
  margin: 30px 5px 50px 5px;
  width: 48%;
}

.is-btn-news-prev a,
.is-btn-news-next a {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 200;
  color: white;
  display: block;
  padding: 40px;
}

.is-btn-news-prev a::before {
  content: "\f104";
  font-family: FontAwesome;
  color: white;
  font-size: 60px;
  position: absolute;
  top: 27px;
  left: 14px;
}

.is-btn-news-next a {
  text-align: right;
}

.is-btn-news-next {
  background-color: var(--umber);
}

.is-btn-news-next a::after {
  content: "\f105";
  font-family: FontAwesome;
  color: white;
  font-size: 60px;
  position: absolute;
  top: 27px;
  right: 14px;
}

/* ====================================
               SIDEBAR
==================================== */

/* line 1081, ../scss/_style.scss */
.module-posts-sidebar-widget {
  border-bottom: 1px solid var(--desert-sand);
  margin-bottom: 10px;
}

.module-posts-sidebar-widget:nth-child(5)::after {
  background: none 0px 0px repeat scroll white;
}

.module-posts-sidebar-widget {
  position: relative;
}

.module-posts-sidebar-widget .fa {
  font-size: 30px;
  color: var(--desert-sand);
  position: absolute;
  top: 10px;
}

.is-wrapper-saumon .module-posts-sidebar-widget .fa {
  color: var(--saumon);
}

.module-posts-sidebar-widget p:nth-of-type(1) {
  padding-left: 40px;
}

.module-posts-sidebar-widget p {
  display: inline-block;
  font-family: 'Noto Sans', sans-serif;
}

.sidebar-widget-title, .module-posts-sidebar .module-posts-sidebar-widget p span {
  font-weight: bold;
  color: var(--darkgrey);
}

.module-posts-sidebar-widget.sidebar-widget-contact p {
  padding-left: 0;
}

.module-posts-sidebar-widget.sidebar-widget-contact ul li a .fa {
  position: inherit;
  font-size: 15px;
  padding-right: 10px;
}

.module-posts-sidebar-widget.sidebar-widget-contact ul {
  padding-left: 30px;
}

/*==================================
            PARTAGE BLOG
==================================*/

/* line 1143, ../scss/_style.scss */
.single-share, .is-social-wrapper {
  display: inline-block;
  padding: 0;
  margin: 0;
}

.a2a_dd,
.a2a_button_facebook,
.a2a_button_google_plus,
.a2a_button_twitter {
  text-indent: -119988px;
  overflow: hidden;
  margin-left: 10px;
}

.a2a_dd img,
.a2a_button_facebook img,
.a2a_button_google_plus img,
.a2a_button_twitter img {
  visibility: hidden;
  position: absolute;
}

.a2a_dd:before,
.a2a_button_facebook:before,
.a2a_button_google_plus:before,
.a2a_button_twitter:before {
  content: "\f081";
  font-family: FontAwesome;
  color: var(--rouge);
  font-size: 30px;
}

.a2a_dd:hover:before,
.a2a_button_facebook:hover:before,
.a2a_button_google_plus:hover:before,
.a2a_button_twitter:hover:before {
  color: var(--rosewood);
}

.a2a_button_google_plus:before {
  content: "\f0d4";
}

.a2a_button_facebook:before {
  content: "\f082";
}

.a2a_dd:before {
  content: "\f0fe";
}

.site-header .single-share,
.site-header .is-social-wrapper,
.site-header .a2a_dd:before,
.site-header .a2a_button_facebook:before,
.site-header .a2a_button_google_plus:before,
.site-header .a2a_button_twitter:before {
  color: white;
}

/* ==============================================
                BANDEAU PRE-FOOTER
===============================================*/

/* line 1220, ../scss/_style.scss */
.section-fort {
  background-image: url(/wp-content/uploads/2017/11/bandeau-fullscreen.jpg);
  background-size: cover;
  background-position: center center;
}

.fort-row-col {
  vertical-align: middle;
}

.fort-row-col-texte p {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: white;
}

/* =================================================
                        FOOTER
==================================================*/

#footer {
  font-family:'Oswald', sans-serif;
}

.section-footer {
  font-size: 15px;
  background-color: var(--jet);
  border-top: 2px solid #000;
}

#footer a {
  color: var(--grey);
}

#footer a:hover {
  color: white;
}

.menu-footer-liste-1-container,
.menu-footer-liste-2-container {
  padding-top: 1em;
}

.menu-footer-liste-1-container ul li,
.menu-footer-liste-2-container ul li {
  padding-bottom: 0.5em;
}

/*======================================================
                 SOCIAL WIDGET
======================================================*/

.footer-row-right {
  background-color: var(--fogra-39);
  padding: 0;
}

.footer-row-right-footer-social-icon{
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-widget {
  text-transform: uppercase;
  width: 100%;
  padding: 30px 40px 0 50px;
  max-width: 375px;
  margin: 0 auto;
}

.item-hautdepage a {
  text-align: center;
  display: block;
  padding: 16px 0;
  font-weight: 200;
  font-size: 1.5624em;
  border-bottom: 2px solid var(--jet);
}

.item-hautdepage a i.fa-angle-up {
  font-size: 30px;
  font-weight: 600;
  margin-right: 10px;
}

.item-newsletter a,
.item-flux-rss a {
  font-size: 1.25em;
  display: block;
}

.item-newsletter a i.fa-send,
.item-flux-rss a i.fa-rss {
  margin-right: 10px;
}

.item-flux-rss a {
  font-weight: 200;
  margin-bottom: 30px;
}

.item-footer-social-icon a {
  font-size: 30px;
  margin-right: 28px;
}

.site-footer, .section-footerbottom .wrap {
  position: relative;
}

.footerbottom-row {
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-row &gt; .col {
  padding-bottom: 40px;
}

/* COPYRIGHT */

/* line 1340, ../scss/_style.scss */
.footerbottom-row-col-item {
  font-size: 14px;
  font-weight: 300;
}

/*================================================================
                        FORMULAIRE DE CONTACT
================================================================*/

/* line 1353, ../scss/_style.scss */
fieldset {
  border: 0;
  margin-bottom: 60px;
}

fieldset p {
  margin: 0 0 10px 0;
  display: inline-block;
  vertical-align: middle;
}

.redborder {
  border-left: 2px solid var(--rouge);
  padding-left: 15px;
}

legend {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: var(--rouge);
  padding: 0 0 20px 0;
  max-width: 95%;
}

label {
  font-size: 15px;
}

.wpcf7-form-control-wrap {
  display: inline-block;
  vertical-align: middle;
}

.wpcf7-form input {
  padding: 5px 7px;
  border:none;
  border-bottom: 1px solid var(--grey);
  margin-bottom: 8px;
  margin-left: 13px;
}

.wpcf7-form input[name="your-name"] {
  width: 150px;
}

.wpcf7-form textarea {
  border:none;
  border-bottom: 1px solid var(--grey);
  padding: 5px 7px;
  height: 30px;
  width: 278px;
  margin-left: 13px;
}

.wpcf7-form input[name="tel-13"] {
  width: 294px;
}

.wpcf7-form input[name="your-email"] {
  width: 328px;
}

.wpcf7-form .wpcf7-submit {
  background: white;
  cursor: pointer;
  padding: 15px 30px;
  color: var(--rouge);
  border: 2px solid  var(--rouge);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 20px;
  width: 200px;
  margin: 0 auto;
  display: block;
}

.wpcf7-form .wpcf7-submit:hover {
  background-color: var(--rouge);
  color: white;
}

div.wpcf7 .wpcf7-recaptcha iframe {
  margin-left: 10px;
  max-width: 100%;
}

fieldset.entete {
  position: relative;
}

p.bonjour {
  font-family: "Oswald", sans-serif;
  color: var(--rouge);
  font-weight: 200;
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  padding-bottom: 8px;
}

/*========================================================
                     BOUTONS MAP
========================================================*/

/* line 1466, ../scss/_style.scss */
a.btn-map .fa {
  font-size: 30px;
}

.adresse-rouge {
  position: relative;
  left: -100px;
  width: 275px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.25em;
  color: white;
  background-color: var(--rouge);
  font-weight: 200;
  padding: 1.5em 1em;
}

.adresse-rouge p {
  margin-bottom: 1em;
}

a.btn-map:nth-child(1):hover {
  background-color: var(--rouge);
  border-color: var(--rouge);
}

/* ====================================================================================
*
*                                  MEDIA QUERIES
*
==================================================================================== */

/* MIN WIDTH 320PX */

@media (min-width: 320px) {
  /* line 34, ../scss/_style.scss */
  h1 {
    font-size: calc(2.23214vw + 22.85714px);
  }

  a[class|="is-cta"] {
    font-size: calc(5vw + 4px);
  }

  a[class|="is-cta"] strong {
    font-size: calc(12.5vw + -15px);
  }

  .nombre {
    font-size: calc(14.28571vw + 4.28571px);
  }

  .texte {
    font-size: calc(2.5vw + 10px);
  }

  .accueilagenda-content-content-item {
    font-size: calc(3.57143vw + 13.57143px);
  }

  .news-filter-wrapper {
    font-size: calc(2.5vw + 10px);
  }

  .is-evt-texte {
    font-size: calc(2.23214vw + 7.85714px);
  }
}

/* MOBILE */

@media (max-width: 599px) {

  div.wpcf7 .wpcf7-recaptcha iframe {
    margin-left: 0;
  }

  .social-widget {
    padding: 18px;
  }

  .legende {
    font-size: 1em;
  }

  .menu-rapide {
    margin: 0 auto;
    padding: 0;
  }

  a[class|="is-cta"] {
    margin: 0.5% 0.5%;
    width: 48%;
    min-width: 150px;
    padding-top: 33%;
    padding-bottom: 7%;
    height: auto;
  }

  .btn, a[class|="tm-btn"], .is-btn-rouge {
    font-size: 15px;
  }
}

/* MAX WIDTH 599PX */
@media (max-width: 599px) {
  .is-btn-news-prev,
  .is-btn-news-next {
    width: 98%;
    margin: 10px 5px 10px 5px;
  }
}

/* MIN WIDTH 600PX */
@media (min-width: 600px) {
  a[class|="is-cta"] {
    font-size: 34px;
  }

  a[class|="is-cta"] strong {
    font-size: 60px;
  }

  .nombre {
    font-size: 90px;
  }

  .texte {
    font-size: 25px;
  }

  .accueilagenda-content-content-item {
    font-size: 35px;
  }

  .news-filter-wrapper {
    font-size: 25px;
  }
}

/* TABLETTE */

@media (max-width: 767px) {
  .abslink {
    display: none;
  }

  .fichetechnique {
    position: relative;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .item-bignumber {
    width: 49%;
  }

  .item-bignumber:nth-child(3) {
    border: 0;
  }

  .agenda-content-month {
    display: none;
  }

  .footerbottom-row {
    width: 100%;
    text-align: center;
  }

  .footer-row-menu1-menu1,
  .footer-row-menu2-menu2,
  .footerbottom-row-col-item {
    text-align: center;
  }

  /*Changement ordre widget social*/

  .footer-row {
    display: flex;
    flex-direction: column;
  }

  .footer-row-right {
    order: -1;
  }

  .page-template-default .module-posts-wrapper:nth-child(n+5),
  .page-template-default .module-posts-wrapper:nth-child(3),
  .page-template-default .module-posts-wrapper:nth-child(4),
  .page-template-default .module-posts-wrapper:nth-child(5) {
    flex: 1 350px;
    margin-bottom: 20px;
  }

  .module-posts-wrapper:nth-child(1),
  .module-posts-wrapper:nth-child(2) {
    flex-grow: 1;
    flex-basis: 50%;
  }

  .footerbottom-row-col-item {
    max-width: 50%;
  }

  .legende {
    position: absolute;
    top: 50px;
    right: 30px;
    width: 275px;
  }

  /*inversion colonnes*/

  .row-extrait_page:nth-child(2), .row-extrait_page:nth-child(4), .row-extrait_page:nth-child(6) {
    display: flex;
    flex-direction: row;
  }

  .col-extrait.section-extrait_page-extrait {
    order: -1;
  }

  .menu-rapide {
    width: 76%;
    margin: 0 auto 104px;
    position: relative;
    text-align: center;
  }

  .section-row-col-bignumber.col_1_4 {
    width: 24%;
  }

  .home .module-posts-wrapper:nth-child(1),
  .home .module-posts-wrapper:nth-child(2),
  .home .module-posts-wrapper:nth-child(3) {
    flex-grow: 1;
    flex-basis: 30%;
    margin-bottom: 20px;
  }
}

/* MIN WIDTH 768PX */

@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }

  .is-evt-texte {
    font-size: 25px;
  }

  body.clr-marron .section-accordeon_vertical {
    width: 48.5%;
    margin-left: 1%;
  }

  .site-content-article-img {
    margin-right: 20px;
  }

  .footer-row-right {
    min-width: 375px;
  }
}

/* SMALL DESKTOP */

@media (max-width: 939px) {

  .moinslarge .row {
    width: 100%;
  }

  .adresse-rouge {
    left: 0;
  }

  .section-accueilagenda .wrap:before {
    display: none;
  }

  a.btn,
  a[class|="tm-btn"],
  .is-btn-rouge {
    padding: 15px;
  }
}

@media (min-width: 960px) {
  .fichetechnique {
    margin-left: 65px;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {

  .legende {
    position: absolute;
    top: 50px;
    right: -211px;
    width: 275px;
  }

  .menu-rapide {
    width: 100%;
    margin: 0 auto 104px;
    text-align: center;
    position: relative;
  }

  /*formulaire*/

  label {
    margin-left: 130px;
  }

  div.wpcf7 {
    margin-left: 170px;
  }

  fieldset.recap-form {
    position: relative;
  }

  .accueilagenda-content-image img {
    margin-left: 66px;
  }

  .accueilagenda-content-content {
    width: 55%;
  }
}

.home .site-content {
  margin-top: -50px;
  position: relative;
}

.bignumber-row {
  margin-bottom: 50px;
}

.accueilagenda-content-content {
  position: relative;
}

.section-accueilagenda {
  overflow: hidden;
}

.section-accueilagenda .wrap {
  position: relative;
}

.section-accueilagenda .wrap:before {
  display: block;
  content: '';
  filter: blur(5px);
  position: absolute;
  width: 35%;
  height: 150%;
  top: -25%;
  right: 0;
}

.is-partage-wrapper {
  text-align: center;
}

.js-agenda-year {
  font-size: 25px;
  line-height: 60px;
}

.agenda-header-toggle-item {
  display: none;
}

.tab_title_wrapper {
  text-align: center;
}

.page-id-159 .site-content {
  background: url("../images/briques-bottom.png") left bottom repeat-x;
}
</pre></body></html>