/*

ITCAvantGardeStd-Bold (title, cta)
ITCAvantGardeStd-Md (nav)
ITCAvantGardeStd-Bk (legal links)
OpenSans (texte)
OpenSans-Bold (subtitle)

*/
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../font/opensans-bold-webfont.v1581067002601.woff2) format("woff2"), url(../font/opensans-bold-webfont.v1581067002580.woff) format("woff");
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../font/opensans-regular-webfont.v1581067002611.woff2) format("woff2"), url(../font/opensans-regular-webfont.v1581067002586.woff) format("woff");
}

@font-face {
  font-family: 'ITCAvantGardeStd';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../font/ITCAvantGardeStdBk.v1581067002589.woff2) format("woff2"), url(../font/ITCAvantGardeStdBk.v1581067002562.woff) format("woff");
}

@font-face {
  font-family: 'ITCAvantGardeStd';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../font/ITCAvantGardeStdMd.v1581067002600.woff2) format("woff2"), url(../font/ITCAvantGardeStdMd.v1581067002578.woff) format("woff");
}

@font-face {
  font-family: 'ITCAvantGardeStd';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../font/ITCAvantGardeStdBold.v1581067002595.woff2) format("woff2"), url(../font/ITCAvantGardeStdBold.v1581067002573.woff) format("woff");
}

/**
 * Assert given value is in pixel. That function is tolerant
 * to unit-less values which are converted.
 * @param $value The value to assert
 */
/**
 * @param $breakpoint Window width, should be expressed in pixel
 */
/**
 * @deprecated Use rem($size) directly
 */
/**
 * Allow fluid size variation (interpolation) linked to window width.
 * Given breakpoints and corresponding values are expressed in pixels.
 * @param $map - A Sass map of viewport widths and length value pairs
 */
/**
 * Above the threshold, font-size will increase in proportion of the viewport
 */
/*
 * @deprecated Element should be disabled with `disabled` attribute
 */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

@media screen and (min-width: 100em) {
  html {
    font-size: 0.625vw;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  font-size: 1.4rem;
  font-family: sans-serif;
  --color-front: #1d1d1b;
  --color-back: white;
  --color-accent: #c49109;
  background-color: white;
  background-color: var(--back,  white);
  color: #1d1d1b;
  color: var(--front,  #1d1d1b);
  line-height: 1.71428571;
  text-rendering: optimizeLegibility;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  padding: 0;
}

@media (min-width: 20em) {
  body {
    font-size: 1.4rem;
  }
}

@media (min-width: 73.125em) {
  body {
    font-size: 1.4rem;
  }
}

.fonts-on body {
  font-family: "Open Sans", sans-serif;
}

body {
  --scrollbar-width: 0;
  -webkit-box-align: stretch;
          align-items: stretch;
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  min-height: 100vh;
  padding-top: 5rem;
}

.js-off body {
  padding: 0;
}

@media (min-width: 56.25em) {
  body {
    padding-top: 8rem;
  }
  .js-off body {
    padding-top: 11rem;
  }
}

/*
 * Opacity set to 0 by inline CSS. Transition occurs when this
 * stylesheet is loaded and allows to detect loading in JS.
 */
#main-css-ctrl {
  opacity: 1;
  -webkit-transition: opacity 0ms linear 1ms;
  transition: opacity 0ms linear 1ms;
}

/*
 * Trigger transition when passing $header-breakpoint, allows
 * to detect desktop mode changes.
 */
#desktop-mode-ctrl {
  opacity: 0;
  -webkit-transition: opacity 0ms linear 1ms;
  transition: opacity 0ms linear 1ms;
}

@media (min-width: 56.25em) {
  #desktop-mode-ctrl {
    opacity: 1;
  }
}

/*
 * Trigger transition for nav opening and nav closing.
 * This is listened by JS to detect opening an closing ends.
 */
#nav-trans-ctrl {
  opacity: 0;
}

.nav-opening #nav-trans-ctrl {
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}

.nav-closing #nav-trans-ctrl {
  -webkit-transition: opacity 180ms;
  transition: opacity 180ms;
}

.nav-on #nav-trans-ctrl {
  opacity: 1;
}

@media (max-width: 56.1875em) {
  #wpadminbar {
    position: fixed;
  }
}

.visually-hidden {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

[data-object-fit="cover"] {
  object-fit: cover;
  -o-object-fit: cover;
  font-family: "object-fit: cover;";
}

[data-object-fit="contain"] {
  object-fit: contain;
  -o-object-fit: contain;
  font-family: "object-fit: contain;";
}

[data-object-position="center center"] {
  object-position: center center;
  -o-object-position: center center;
}

[data-object-position="center top"] {
  object-position: center top;
  -o-object-position: center top;
}

[data-object-position="right top"] {
  object-position: right top;
  -o-object-position: right top;
}

[data-object-position="right center"] {
  object-position: right center;
  -o-object-position: right center;
}

[data-object-position="right bottom"] {
  object-position: right bottom;
  -o-object-position: right bottom;
}

[data-object-position="center bottom"] {
  object-position: center bottom;
  -o-object-position: center bottom;
}

[data-object-position="left bottom"] {
  object-position: left bottom;
  -o-object-position: left bottom;
}

[data-object-position="left center"] {
  object-position: left center;
  -o-object-position: left center;
}

[data-object-position="left top"] {
  object-position: left top;
  -o-object-position: left top;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

[tabindex="-1"] {
  outline: none !important;
}

h1, h2, h3, h4, em {
  font-weight: normal;
  font-style: normal;
}

small {
  font-size: 80%;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 150ms;
  transition: color 150ms;
}

a:hover, a:focus, a:active {
  color: #c49109;
  color: var(--color-accent,  #c49109);
}

code, kbd, samp, pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

.grecaptcha-badge {
  display: none !important;
}

.tac_activate {
  -webkit-box-align: center;
          align-items: center;
  box-sizing: border-box;
  display: -webkit-box !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 1rem;
}

.home .last-refs {
  margin-bottom: 0;
}

.home .last-refs::after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  content: '';
  display: block;
  margin-top: 3rem;
  width: 100%;
}

.home .last-refs + * {
  margin-top: 3rem;
}

.space-mts {
  margin-top: 1.5rem;
}

@media (min-width: 20em) {
  .space-mts {
    margin-top: calc(1.5rem + (100vw - 32rem) * 0.01764706);
  }
}

@media (min-width: 73.125em) {
  .space-mts {
    margin-top: 3rem;
  }
}

.space-mtl {
  margin-top: 3rem;
}

@media (min-width: 20em) {
  .space-mtl {
    margin-top: calc(3rem + (100vw - 32rem) * 0.03529412);
  }
}

@media (min-width: 73.125em) {
  .space-mtl {
    margin-top: 6rem;
  }
}

.space-mbs {
  margin-bottom: 1.5rem;
}

@media (min-width: 20em) {
  .space-mbs {
    margin-bottom: calc(1.5rem + (100vw - 32rem) * 0.01764706);
  }
}

@media (min-width: 73.125em) {
  .space-mbs {
    margin-bottom: 3rem;
  }
}

.space-mbl {
  margin-bottom: 3rem;
}

@media (min-width: 20em) {
  .space-mbl {
    margin-bottom: calc(3rem + (100vw - 32rem) * 0.03529412);
  }
}

@media (min-width: 73.125em) {
  .space-mbl {
    margin-bottom: 6rem;
  }
}

.space-pts {
  padding-top: 1.5rem;
}

@media (min-width: 20em) {
  .space-pts {
    padding-top: calc(1.5rem + (100vw - 32rem) * 0.01764706);
  }
}

@media (min-width: 73.125em) {
  .space-pts {
    padding-top: 3rem;
  }
}

.space-ptl {
  padding-top: 3rem;
}

@media (min-width: 20em) {
  .space-ptl {
    padding-top: calc(3rem + (100vw - 32rem) * 0.03529412);
  }
}

@media (min-width: 73.125em) {
  .space-ptl {
    padding-top: 6rem;
  }
}

.space-pbs {
  padding-bottom: 1.5rem;
}

@media (min-width: 20em) {
  .space-pbs {
    padding-bottom: calc(1.5rem + (100vw - 32rem) * 0.01764706);
  }
}

@media (min-width: 73.125em) {
  .space-pbs {
    padding-bottom: 3rem;
  }
}

.space-pbl {
  padding-bottom: 3rem;
}

@media (min-width: 20em) {
  .space-pbl {
    padding-bottom: calc(3rem + (100vw - 32rem) * 0.03529412);
  }
}

@media (min-width: 73.125em) {
  .space-pbl {
    padding-bottom: 6rem;
  }
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 117rem;
}

@media (min-width: 20em) {
  .container {
    padding-left: calc(1rem + (100vw - 32rem) * 0.00588235);
    padding-right: calc(1rem + (100vw - 32rem) * 0.00588235);
  }
}

@media (min-width: 73.125em) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.container--row {
  padding-left: 0;
  padding-right: 0;
}

.content .has-text-color {
  color: #1d1d1b;
}

.content .has-text-background-color {
  background-color: #1d1d1b;
}

.content .has-text-light-color {
  color: #828282;
}

.content .has-text-light-background-color {
  background-color: #828282;
}

.content .has-grey-color {
  color: #d9d9d9;
}

.content .has-grey-background-color {
  background-color: #d9d9d9;
}

.content .has-accent-color {
  color: #c49109;
}

.content .has-accent-background-color {
  background-color: #c49109;
}

.content > *:first-child {
  margin-top: 0;
}

.content > *:last-child {
  margin-bottom: 0;
}

.content * + p {
  margin-top: 1.71428571em 0;
}

.content ul {
  padding-left: 1.3em;
}

.content ul ul {
  padding-left: 2em;
}

.content a:not(.cta) {
  color: #c49109;
  font-weight: 700;
}

.content a:not(.cta):hover, .content a:not(.cta):focus, .content a:not(.cta):active {
  text-decoration: underline;
}

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

.content .alignleft,
.content .alignright {
  margin-bottom: 1.71428571em;
}

.content .alignleft {
  float: left;
  margin-right: 2.14285714em;
}

.content .alignright {
  float: right;
  margin-left: 2.14285714em;
}

.content .aligncenter {
  display: block;
  margin: 1.71428571em auto;
}

.content .content__title {
  font-family: sans-serif;
  font-size: 1.75294118rem;
  font-weight: 700;
  letter-spacing: -0.02076923em;
  line-height: 1.34615385;
  margin: 0.96153846em 0;
}

.fonts-on .content .content__title {
  font-family: "ITCAvantGardeStd", sans-serif;
}

@media (min-width: 20em) {
  .content .content__title {
    font-size: calc(1.75294118rem + (100vw - 32rem) * 0.0099654);
  }
}

@media (min-width: 73.125em) {
  .content .content__title {
    font-size: 2.6rem;
  }
}

.content .content__title:first-child {
  margin-top: 0;
}

.content .content__subtitle {
  font-size: 1.45882353rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 1.5em 0 0;
}

@media (min-width: 20em) {
  .content .content__subtitle {
    font-size: calc(1.45882353rem + (100vw - 32rem) * 0.0016609);
  }
}

@media (min-width: 73.125em) {
  .content .content__subtitle {
    font-size: 1.6rem;
  }
}

.content .content__subtitle + p {
  margin-top: 0;
}

.content .content__subtitle:first-child {
  margin-top: 0;
}

.content .content__cta {
  margin: 3rem 0;
  text-align: center;
}

.content .content__cta:first-child {
  margin-top: 0;
}

.content .content__cta:last-child {
  margin-bottom: 0;
}

.content .content__cta a + a {
  margin-left: 1.78571429em;
}

@media (min-width: 56.25em) {
  .content .content__cta {
    text-align: left;
  }
}

.cta {
  font-family: sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  color: #1d1d1b !important;
  color: var(--front, #1d1d1b) !important;
  border: 1px solid #1d1d1b;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  padding: 3em !important;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}

.fonts-on .cta {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.cta:hover, .cta:focus, .cta:active {
  color: white !important;
  border-color: #c49109;
  background-color: #c49109;
}

.js-on .gmap {
  background: rgba(29, 29, 27, 0.1);
  height: 27rem;
}

.js-on .gmap__link {
  display: none;
}

.grid {
  list-style: none;
  padding-left: 0;
}

.grid:not(.grid__item) {
  margin-bottom: -1.5rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

@media (min-width: 20em) {
  .grid:not(.grid__item) {
    margin-bottom: calc(-1.5rem + (100vw - 32rem) * -0.01764706);
  }
}

@media (min-width: 73.125em) {
  .grid:not(.grid__item) {
    margin-bottom: -3rem;
  }
}

@media (min-width: 20em) {
  .grid:not(.grid__item) {
    margin-left: calc(-0.75rem + (100vw - 32rem) * -0.00882353);
    margin-right: calc(-0.75rem + (100vw - 32rem) * -0.00882353);
  }
}

@media (min-width: 73.125em) {
  .grid:not(.grid__item) {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

.grid > .grid__item {
  box-sizing: border-box;
}

.grid > .grid__item:not(.grid) {
  padding-bottom: 1.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 20em) {
  .grid > .grid__item:not(.grid) {
    padding-bottom: calc(1.5rem + (100vw - 32rem) * 0.01764706);
  }
}

@media (min-width: 73.125em) {
  .grid > .grid__item:not(.grid) {
    padding-bottom: 3rem;
  }
}

@media (min-width: 20em) {
  .grid > .grid__item:not(.grid) {
    padding-left: calc(0.75rem + (100vw - 32rem) * 0.00882353);
    padding-right: calc(0.75rem + (100vw - 32rem) * 0.00882353);
  }
}

@media (min-width: 73.125em) {
  .grid > .grid__item:not(.grid) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slider {
  background: rgba(0, 0, 0, 0.2);
}

.js-on .slider:not(.slick-initialized) .slider__slide:not(.slide-1) {
  display: none;
}

.js-off .slider--background .slider__slide:not(.slide-1) {
  display: none;
}

.js-off .slider--fixed-height .slider__slide.slide-1 {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.js-off .slider--fixed-height .slider__slide:not(.slide-1) {
  display: none;
}

.slider--background .slider__slide {
  display: block;
  height: 100%;
  width: 100%;
}

.slider--fixed-height {
  position: relative;
}

.slider--fixed-height .slider__slide,
.slider--fixed-height .slick-list,
.slider--fixed-height .slick-track,
.slider--fixed-height .slick-slide,
.slider--fixed-height .slick-slide > div {
  height: 100% !important;
}

.slider--fixed-height .slick-list {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.slider .slick-dots {
  font-size: 1rem;
  bottom: 1em;
  line-height: 1;
  list-style: none;
  margin: 0 0 -0.5rem;
  padding: 0;
  position: absolute;
  right: 1em;
}

@media (min-width: 20em) {
  .slider .slick-dots {
    font-size: calc(1rem + (100vw - 32rem) * 0.03571429);
  }
}

@media (min-width: 37.5em) {
  .slider .slick-dots {
    font-size: 2rem;
  }
}

.slider .slick-dots li {
  display: inline-block;
  vertical-align: middle;
}

.slider .slick-dots button {
  background: transparent;
  border: 0;
  color: inherit;
  display: block;
  height: 2rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 2rem;
  -webkit-transition: color 150ms;
  transition: color 150ms;
  width: 2rem;
}

.slider .slick-dots button::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
  content: '';
  display: block;
  left: 0.5rem;
  height: 1rem;
  position: absolute;
  top: 0.5rem;
  width: 1rem;
}

.slider .slick-dots li.slick-active button::after {
  background: currentColor;
}

.light-on .slider li {
  padding: 0 1rem;
}

.light-on .slider .slick-dots button {
  font-size: 2rem;
  background: #1d1d1b;
  border: 1px solid currentColor;
  height: 2em;
  text-align: center;
  text-indent: 0;
  width: 2em;
}

.light-on .slider .slick-dots button::after {
  content: none;
}

.light-on .slider li.slick-active button {
  background: white;
  color: #1d1d1b;
}

@media screen {
  .actu-card {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column nowrap;
    min-height: 100%;
    position: relative;
    width: 100%;
  }
  .actu-card__content {
    font-family: sans-serif;
    background-color: #1d1d1b;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    display: block;
    padding: 1.5em;
  }
  .fonts-on .actu-card__content {
    font-family: "ITCAvantGardeStd", sans-serif;
  }
  .actu-card__date {
    display: block;
    margin: 0 0 0.7em;
  }
  .actu-card__title {
    color: #c49109;
    font-size: 1.2rem;
    line-height: 1.33333333;
  }
  .actu-card__thumb {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
            flex-grow: 1;
    -webkit-box-ordinal-group: 0;
            order: -1;
    position: relative;
  }
  .actu-card__thumb::before {
    background: rgba(196, 145, 9, 0.9);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
    width: 100%;
  }
  .actu-card__image {
    display: block;
    height: auto;
    min-height: 100%;
    width: 100%;
  }
  .actu-card__more {
    font-family: sans-serif;
    box-sizing: border-box;
    color: white;
    font-weight: 700;
    left: 0;
    letter-spacing: 0.14285714em;
    line-height: 1;
    opacity: 0;
    padding: 0 1.07142857em;
    position: absolute;
    top: calc(50% - 0.5em);
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: opacity 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
    transition: opacity 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
    width: 100%;
  }
  .fonts-on .actu-card__more {
    font-family: "ITCAvantGardeStd", sans-serif;
  }
  .actu-card:hover .actu-card__thumb::before, .actu-card:focus .actu-card__thumb::before, .actu-card:active .actu-card__thumb::before {
    opacity: 1;
  }
  .actu-card:hover .actu-card__more, .actu-card:focus .actu-card__more, .actu-card:active .actu-card__more {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.coords {
  font-size: 1.2rem;
  font-family: sans-serif;
  font-weight: 600;
  line-height: 1.33333333;
}

.fonts-on .coords {
  font-family: "ITCAvantGardeStd", sans-serif;
}

@media (max-width: 24.9375em) {
  .coords {
    font-size: 1.1rem;
  }
  .coords__detail {
    letter-spacing: -0.04166667em;
  }
}

.coords__inner {
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
}

.coords__name {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 1em;
}

.coords a {
  color: inherit;
}

.coords__detail {
  -webkit-box-flex: 1;
          flex-grow: 1;
  margin: 0;
}

.coords__picto {
  font-size: 1.2rem;
}

@media (min-width: 20em) {
  .coords__picto {
    font-size: calc(1.2rem + (100vw - 32rem) * 0.00941176);
  }
}

@media (min-width: 73.125em) {
  .coords__picto {
    font-size: 2rem;
  }
}

.coords__picto svg {
  display: block;
  height: 8.25em;
  width: 8.25em;
}

.images {
  overflow: hidden;
}

.images img {
  display: block;
  height: auto;
  width: 100%;
}

.images__image {
  width: 100%;
}

.images__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
}

@media (min-width: 37.5em) {
  .images--2 .images__inner,
  .images--3 .images__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row;
  }
  .images--2 .images__image {
    width: 50%;
  }
  .images--3 .images__image {
    width: 33.33333333%;
  }
}

@media screen {
  .last-actus__title {
    font-size: 1.75294118rem;
    font-family: sans-serif;
    font-weight: 700;
    letter-spacing: -0.03846154em;
    margin: 0 0 1.15384615em;
  }
}

@media screen and (min-width: 20em) {
  .last-actus__title {
    font-size: calc(1.75294118rem + (100vw - 32rem) * 0.0099654);
  }
}

@media screen and (min-width: 73.125em) {
  .last-actus__title {
    font-size: 2.6rem;
  }
}

@media screen {
  .fonts-on .last-actus__title {
    font-family: "ITCAvantGardeStd", sans-serif;
  }
  .last-actus__more {
    margin: 2.14285714em 0 0;
    text-align: center;
  }
  .last-actus__list {
    -webkit-box-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
    margin-top: 0;
    margin-bottom: 0;
  }
  .last-actus__item {
    display: -webkit-box;
    display: flex;
    min-height: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 25em) {
  .last-actus__item {
    width: 50%;
  }
}

@media screen and (min-width: 37.5em) {
  .last-actus__item {
    width: 33.33333333%;
  }
}

.last-refs {
  overflow: hidden;
}

.last-refs__more .cta {
  display: block;
}

.refs {
  -webkit-box-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  margin: 0;
}

.refs__item {
  width: 100%;
}

@media (min-width: 37.5em) {
  .refs {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
  }
  .refs__item {
    width: 50%;
  }
}

@media (min-width: 56.25em) {
  .refs__item {
    width: 33.33333333%;
  }
}

.ref-card {
  font-family: sans-serif;
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  display: block;
  font-weight: 700;
  letter-spacing: 0.14285714em;
  line-height: 1.14285714;
  min-height: 12rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  z-index: 0;
}

.fonts-on .ref-card {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.ref-card::after {
  background-color: rgba(196, 145, 9, 0.9);
  box-sizing: border-box;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
  width: 100%;
}

.ref-card__title {
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  padding: 0 1.5rem;
  top: 0;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
  -webkit-transition: opacity 200ms, -webkit-transform 200ms;
  transition: opacity 200ms, -webkit-transform 200ms;
  transition: opacity 200ms, transform 200ms;
  transition: opacity 200ms, transform 200ms, -webkit-transform 200ms;
  width: 100%;
  z-index: 1;
}

.ref-card__image {
  display: block;
  height: auto;
  width: 100%;
}

.ref-card:hover, .ref-card:focus, .ref-card:active {
  color: white;
}

.ref-card:hover::after, .ref-card:focus::after, .ref-card:active::after {
  opacity: 1;
}

.ref-card:hover .ref-card__title, .ref-card:focus .ref-card__title, .ref-card:active .ref-card__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sitemap h2 {
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: bold;
}

.fonts-on .sitemap h2 {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.sitemap a {
  color: inherit;
}

.text {
  overflow: hidden;
}

.text--orphan-title {
  margin-bottom: 0;
}

.text--orphan-title + .text {
  margin-top: 0;
}

@media (min-width: 56.25em) {
  .text--2-cols .text__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
  }
  .text--2-cols .text__col--1, .text--2-cols .text__col--2 {
    width: 50%;
  }
  .home .text--2-cols .text__col--1 {
    width: 44.4191344%;
  }
  .home .text--2-cols .text__col--2 {
    width: 55.5808656%;
  }
}

.text-images {
  overflow: hidden;
}

.text-images__images img {
  display: block;
  height: auto;
  width: 100%;
}

@media (min-width: 37.5em) and (max-width: 56.1875em) {
  .text-images .content__cta:last-child {
    margin-bottom: 3rem;
  }
  .text-images__images {
    -webkit-box-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
  }
  .text-images__image {
    width: 50%;
  }
}

@media (min-width: 56.25em) {
  .text-images__inner {
    -webkit-box-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
  }
  .text-images__text {
    -webkit-box-flex: 1;
            flex-grow: 1;
    width: 55.5808656%;
  }
  .text-images__images {
    max-width: 39rem;
    width: 44.4191344%;
  }
  .text-images.is-style-align-right .text-images__text {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}

.video__inner {
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.video__inner::before {
  content: '';
  display: block;
  padding-top: 56.2%;
}

.video__inner > *,
.video__inner iframe,
.video__inner object {
  height: 100% !important;
  left: 0;
  position: absolute;
  top: 0;
  width: 100% !important;
}

.video-tac {
  box-sizing: border-box;
  height: 0 !important;
  width: 100% !important;
}

.video-tac > *,
.video-tac iframe,
.video-tac object {
  height: 100% !important;
  left: 0;
  position: absolute;
  top: 0;
  width: 100% !important;
}

@media screen {
  .actu-intro__date {
    font-family: sans-serif;
    color: #c49109;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.33333333;
    margin: 0 0 0.58333333em;
  }
  .fonts-on .actu-intro__date {
    font-family: "ITCAvantGardeStd", sans-serif;
  }
  .actu-intro__title {
    font-size: 1.75294118rem;
    font-family: sans-serif;
    font-weight: 700;
    letter-spacing: -0.02076923em;
    line-height: 1.15384615;
    margin: 0 0 1.15384615em;
  }
}

@media screen and (min-width: 20em) {
  .actu-intro__title {
    font-size: calc(1.75294118rem + (100vw - 32rem) * 0.0099654);
  }
}

@media screen and (min-width: 73.125em) {
  .actu-intro__title {
    font-size: 2.6rem;
  }
}

@media screen {
  .fonts-on .actu-intro__title {
    font-family: "ITCAvantGardeStd", sans-serif;
  }
  .actu-intro__image {
    display: block;
    height: auto;
    width: 100%;
  }
}

@media screen and (max-width: 49.9375em) {
  .actu-intro__thumb {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
}

@media screen and (min-width: 50em) {
  .actu-intro__inner {
    -webkit-box-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
  }
  .actu-intro__text, .actu-intro__thumb {
    width: 50%;
  }
}

@media screen {
  .actus__list {
    -webkit-box-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
  }
  .actus__item {
    display: -webkit-box;
    display: flex;
    min-height: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 25em) {
  .actus__item {
    width: 50%;
  }
}

@media screen and (min-width: 37.5em) {
  .actus__item {
    width: 33.33333333%;
  }
}

.baseline {
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
  font-size: 5.6rem;
  font-family: sans-serif;
  color: #d9d9d9;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

@media (min-width: 20em) {
  .baseline {
    font-size: calc(5.6rem + (100vw - 32rem) * 0.01766784);
  }
}

@media (min-width: 73.0625em) {
  .baseline {
    font-size: 7.1rem;
  }
}

.fonts-on .baseline {
  font-family: "ITCAvantGardeStd", sans-serif;
}

@media (max-width: 73.0625em) {
  .baseline {
    margin: 3rem 0 2rem;
  }
}

@media (min-width: 73.125em) {
  .baseline {
    padding: 0.02816901em 1.5rem 5.5rem;
    text-align: right;
  }
  .baseline--alt {
    font-size: 6.2rem;
  }
}

.breadcrumbs {
  font-size: 1rem;
  font-family: sans-serif;
  color: #828282;
  font-weight: 600;
}

.fonts-on .breadcrumbs {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.breadcrumbs::after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  content: '';
  display: block;
  margin-top: 0.5em;
}

.breadcrumbs strong {
  color: #c49109;
  font-weight: 600;
}

.content-blocks > *:first-child {
  margin-top: 0;
}

.content-blocks > *:last-child {
  margin-bottom: 0;
}

.filter {
  font-size: 1.2rem;
  font-family: sans-serif;
  color: #828282;
  font-weight: 600;
  text-transform: uppercase;
}

.fonts-on .filter {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.filter__list {
  list-style: none;
  margin: -2rem 0 2.5rem;
  padding: 0;
}

.filter a {
  display: block;
  padding: 0.41666667em 0;
}

.filter__item {
  display: inline-block;
}

.filter__item--current {
  color: #c49109;
}

.filter__item + .filter__item {
  margin-left: 0.6rem;
}

.footer {
  --color-front: white;
  --color-back: #1d1d1b;
  --color-accent: #c49109;
  background-color: #1d1d1b;
  background-color: var(--back,  #1d1d1b);
  color: white;
  color: var(--front,  white);
  padding: 3rem 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.footer a {
  color: inherit;
}

.footer a:hover, .footer a:focus, .footer a:active {
  color: #c49109;
}

.footer__to-top {
  font-size: 4.2rem;
  background: transparent url("data:image/svg+xml,%3Csvg%20width%3D%2260%22%20height%3D%2260%22%20viewBox%3D%220%200%2060%2060%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%233A3A36%22%20d%3D%22M0%200h60v60H0z%22%2F%3E%3Cpath%20stroke%3D%22%23C49109%22%20fill%3D%22none%22%20stroke-width%3D%222%22%20d%3D%22M39.326%2034.163L30.163%2025%2021%2034.163%22%2F%3E%3C%2Fsvg%3E") no-repeat center center;
  background-size: contain;
  bottom: 100%;
  height: 1em;
  position: absolute;
  right: 0;
  width: 1em;
}

@media (min-width: 20em) {
  .footer__to-top {
    font-size: calc(4.2rem + (100vw - 32rem) * 0.02117647);
  }
}

@media (min-width: 73.125em) {
  .footer__to-top {
    font-size: 6rem;
  }
}

.footer__name {
  color: inherit !important;
  display: block;
}

.footer__logo {
  display: block;
  height: 5rem;
  margin-bottom: 1.25em;
  width: 16.9rem;
}

.footer__address {
  font-size: 1.1rem;
  font-family: sans-serif;
  font-weight: 600;
  line-height: 1.45454545;
}

.fonts-on .footer__address {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.footer__address, .footer__phone {
  margin: 0;
}

.footer__inner {
  -webkit-box-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
}

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

.footer__menus {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.footer__menu--main {
  font-family: sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  width: 50%;
}

.fonts-on .footer__menu--main {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.footer__menu--legal {
  font-family: sans-serif;
  font-weight: 400;
  width: 48%;
}

.fonts-on .footer__menu--legal {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.footer__menu--main, .footer__menu--legal {
  line-height: 1.25;
  max-width: 22rem;
  overflow: hidden;
}

.footer__menu--main .menu, .footer__menu--legal .menu {
  margin-bottom: -0.6rem;
}

.footer__menu--main a, .footer__menu--legal a {
  display: block;
  padding: 0.5em 0;
}

.footer__menu--social {
  width: 100%;
}

.footer__menu--social .menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
}

.footer__menu--social .menu-item + .menu-item {
  margin-left: 1.5rem;
}

@media (min-width: 37.5em) {
  .footer__logo {
    margin-bottom: 3rem;
  }
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row;
  }
  .footer__menus {
    -webkit-box-pack: end;
            justify-content: flex-end;
    -webkit-box-flex: 1;
            flex-grow: 1;
    text-align: right;
  }
  .footer__menu--social .menu {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
}

.front-wrapper {
  position: relative;
}

.front-baseline {
  overflow: hidden;
  pointer-events: none;
}

.front-baseline .baseline:first-child {
  color: black;
}

@media (max-width: 73.0625em) {
  .front-baseline--fixed {
    display: none;
  }
}

@media (min-width: 73.125em) {
  .front-baseline {
    left: calc(50vw - 60rem) !important;
    left: calc((100vw - var(--scrollbar-width) - 117rem) / 2) !important;
    top: 15rem !important;
    position: fixed;
    width: 29.2rem !important;
    right: auto !important;
    z-index: 1;
  }
  .admin-bar .front-baseline {
    top: 18.2rem;
  }
  .front-baseline--static {
    display: none;
  }
  .front-baseline.hidden {
    opacity: 0;
  }
  .front-baseline .baseline {
    font-size: 7.5rem;
  }
  .front-baseline .midnightHeader {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .video-played .front-baseline .midnightHeader.white {
    opacity: 0;
  }
  .front-baseline--fixed {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .front-baseline--fixed:not(.midnight--on) {
    opacity: 0;
  }
  .front-baseline--fixed.static {
    bottom: 0 !important;
    left: 0 !important;
    position: absolute !important;
    top: auto !important;
  }
}

.midnightHeader.white .baseline {
  color: white;
}

.midnightHeader.black .baseline {
  color: black;
}

.front-hero {
  background: rgba(29, 29, 27, 0.25);
  min-height: 46.15384615vw;
  position: relative;
}

.front-hero__image {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.front-hero__link {
  display: none;
}

.front-hero .video-tac .tac_activate {
  background: transparent;
}

@media (min-width: 56.25em) {
  .front-hero__link {
    font-size: 1rem;
    font-family: sans-serif;
    bottom: 3rem;
    color: white !important;
    display: inline-block;
    font-weight: 700;
    left: calc(50% - 5em);
    letter-spacing: 0.2em;
    opacity: 1;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    width: 14em;
  }
  .fonts-on .front-hero__link {
    font-family: "ITCAvantGardeStd", sans-serif;
  }
  .front-hero__link svg {
    display: block;
    height: 3rem;
    margin: 1em auto 0;
    width: 3rem;
  }
  .video-played .front-hero__link {
    pointer-events: none;
    opacity: 0;
  }
}

.header {
  background-color: white;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.3);
  max-width: 100vw;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.admin-bar .header {
  top: 46px;
}

@media (min-width: 48.9375em) {
  .admin-bar .header {
    top: 32px;
  }
}

.header {
  -webkit-transition: opacity 0ms, -webkit-transform 200ms ease-out;
  transition: opacity 0ms, -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out, opacity 0ms;
  transition: transform 200ms ease-out, opacity 0ms, -webkit-transform 200ms ease-out;
}

.scrolling-down:not(.nav-on):not(.nav-opening):not(.nav-closing) .header:not(:focus-within) {
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0ms linear 400ms, -webkit-transform 400ms ease-in;
  transition: opacity 0ms linear 400ms, -webkit-transform 400ms ease-in;
  transition: transform 400ms ease-in, opacity 0ms linear 400ms;
  transition: transform 400ms ease-in, opacity 0ms linear 400ms, -webkit-transform 400ms ease-in;
}

.header__inner {
  position: relative;
}

.header__title {
  display: block;
  height: 1em;
  margin: 0;
  width: 3.38em;
}

.header__logo {
  display: block;
  height: 100%;
  width: 100%;
}

@media (max-width: 56.1875em) {
  .js-off .header {
    position: relative;
  }
  .header__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .header__title {
    font-size: 2.14285714em;
  }
}

@media (min-width: 56.25em) {
  .header__inner {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .header__title {
    font-size: 3.57142857em;
    position: relative;
    z-index: 1;
  }
}

.index__title {
  font-family: sans-serif;
  font-size: 2.04705882rem;
  font-weight: 700;
}

.fonts-on .index__title {
  font-family: "ITCAvantGardeStd", sans-serif;
}

@media (min-width: 20em) {
  .index__title {
    font-size: calc(2.04705882rem + (100vw - 32rem) * 0.0182699);
  }
}

@media (min-width: 73.125em) {
  .index__title {
    font-size: 3.6rem;
  }
}

.index__list {
  list-style: none;
  padding: 0;
}

.index__item + .index__item {
  margin-top: 3rem;
}

.index__label {
  font-family: sans-serif;
  font-size: 1.57647059rem;
  font-weight: 600;
  display: block;
}

.fonts-on .index__label {
  font-family: "ITCAvantGardeStd", sans-serif;
}

@media (min-width: 20em) {
  .index__label {
    font-size: calc(1.57647059rem + (100vw - 32rem) * 0.0049827);
  }
}

@media (min-width: 73.125em) {
  .index__label {
    font-size: 2rem;
  }
}

.index__link {
  color: inherit;
}

.index__date {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  display: block;
}

.index__excerpt {
  display: block;
}

.load-more {
  font-size: 1rem;
  font-family: sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 1em;
  margin: -1em 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 150ms;
  transition: color 150ms;
  vertical-align: middle;
}

.fonts-on .load-more {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.load-more:not([hidden]) {
  display: inline-block;
}

.load-more__picto {
  display: block;
  font-size: 3em;
  height: 1em;
  margin: 0.5em auto 0;
  -webkit-transform-origin: 0.48333333em;
          transform-origin: 0.48333333em;
  -webkit-transition: -webkit-transform 150ms;
  transition: -webkit-transform 150ms;
  transition: transform 150ms;
  transition: transform 150ms, -webkit-transform 150ms;
  width: 1em;
}

.load-more:hover, .load-more:focus, .load-more:active {
  color: #c49109;
}

.load-more:hover .load-more__picto, .load-more:focus .load-more__picto, .load-more:active .load-more__picto {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.main {
  -webkit-box-flex: 1;
          flex-grow: 1;
  margin: 0 auto;
  max-width: 117rem;
  overflow: hidden;
  width: 100%;
  margin-top: 3rem;
}

@media (min-width: 56.25em) {
  .main {
    margin-top: 5.6rem;
  }
}

.main__breadcrumbs {
  margin-bottom: 3rem;
}

.main__content {
  margin-bottom: 8rem;
}

@media (min-width: 73.125em) {
  body:not(.baseline-off) .main {
    position: relative;
  }
  body:not(.baseline-off) .main__baseline, body:not(.baseline-off) .main__content {
    box-sizing: border-box;
  }
  body:not(.baseline-off) .main__baseline {
    left: calc(50vw - 58.5rem);
    left: calc((100vw - var(--scrollbar-width) - 117rem) / 2);
    margin: 0;
    top: 13.6rem;
    position: fixed;
    padding: 0;
    pointer-events: none;
    width: 29.2rem;
  }
  body:not(.baseline-off) .main__baseline.static {
    bottom: 0;
    left: 0;
    position: absolute !important;
    top: auto !important;
  }
  body:not(.baseline-off) .main__baseline.hidden {
    opacity: 0;
  }
  body:not(.baseline-off) .main__breadcrumbs, body:not(.baseline-off) .main__content {
    margin-left: auto;
    margin-right: 0;
    width: 75.04273504%;
  }
  body:not(.baseline-off) .main__breadcrumbs {
    padding: 0 1.5rem;
  }
}

body:not(.baseline-off).admin-bar .main__baseline {
  top: 16.8rem;
}

.nav a {
  color: inherit;
  display: block;
}

.nav a:hover, .nav a:focus, .nav a:active {
  color: #c49109;
}

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

.nav__menu--main .menu > .menu-item > a {
  font-family: sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.fonts-on .nav__menu--main .menu > .menu-item > a {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.nav .sub-menu {
  list-style: none;
}

.nav .sub-menu a {
  font-family: sans-serif;
  font-weight: 600;
}

.fonts-on .nav .sub-menu a {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.nav__menu--social .menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
}

.nav__menu--social .menu-item + .menu-item {
  margin-left: 1.5rem;
}

.nav__toggle svg {
  display: block;
}

@media (max-width: 56.1875em) {
  .nav {
    box-sizing: border-box;
    padding: 2.4rem 0;
  }
  .js-on .nav {
    overflow-x: hidden;
    overflow-y: auto;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    background: #f6f6f6;
    bottom: 0;
    height: calc(100% - 5rem);
    position: fixed;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    width: 100%;
  }
  .js-on .admin-bar .nav {
    height: calc(100vh - 5rem - 46px);
  }
}

@media (max-width: 56.1875em) and (min-width: 48.9375em) {
  .js-on .admin-bar .nav {
    height: calc(100vh - 5rem - 32px);
  }
}

@media (max-width: 56.1875em) {
  .nav__toggle {
    font-size: 3.2rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0.9rem;
    position: absolute;
    right: 0;
    top: 0;
  }
  .nav__toggle svg {
    display: block;
    height: 1em;
    width: 1em;
  }
  .nav__toggle .cross {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .nav .popup-menu__menu {
    opacity: 1;
    position: static;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .nav__menu--main .menu a {
    padding: 0.6rem 0;
  }
  .nav__menu--main .menu > .menu-item > a {
    font-size: 1.6rem;
    line-height: 1;
  }
  .nav__menu--main .menu > .menu-item + .menu-item {
    margin-top: 2.4rem;
  }
  .nav__menu--social {
    margin-top: 3rem;
  }
  .nav .sub-menu {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    margin: 0;
    padding-left: 3rem;
    padding-top: 0.9rem;
  }
  .nav .sub-menu a {
    line-height: 1.21428571;
  }
  .nav-opening .nav {
    -webkit-transition: -webkit-transform 300ms cubic-bezier(0, 0, 0.5, 1);
    transition: -webkit-transform 300ms cubic-bezier(0, 0, 0.5, 1);
    transition: transform 300ms cubic-bezier(0, 0, 0.5, 1);
    transition: transform 300ms cubic-bezier(0, 0, 0.5, 1), -webkit-transform 300ms cubic-bezier(0, 0, 0.5, 1);
  }
  .nav-opening .nav__toggle .lines * {
    -webkit-transition: -webkit-transform 150ms ease-in;
    transition: -webkit-transform 150ms ease-in;
    transition: transform 150ms ease-in;
    transition: transform 150ms ease-in, -webkit-transform 150ms ease-in;
  }
  .nav-opening .nav__toggle .cross {
    -webkit-transition: -webkit-transform 150ms ease-out;
    transition: -webkit-transform 150ms ease-out;
    transition: transform 150ms ease-out;
    transition: transform 150ms ease-out, -webkit-transform 150ms ease-out;
    -webkit-transition-delay: 150ms;
            transition-delay: 150ms;
  }
  .nav-closing .nav {
    -webkit-transition: -webkit-transform 180ms cubic-bezier(0.5, 0, 1, 1);
    transition: -webkit-transform 180ms cubic-bezier(0.5, 0, 1, 1);
    transition: transform 180ms cubic-bezier(0.5, 0, 1, 1);
    transition: transform 180ms cubic-bezier(0.5, 0, 1, 1), -webkit-transform 180ms cubic-bezier(0.5, 0, 1, 1);
  }
  .nav-closing .nav__toggle .lines * {
    -webkit-transition: -webkit-transform 90ms ease-out;
    transition: -webkit-transform 90ms ease-out;
    transition: transform 90ms ease-out;
    transition: transform 90ms ease-out, -webkit-transform 90ms ease-out;
    -webkit-transition-delay: 90ms;
            transition-delay: 90ms;
  }
  .nav-closing .nav__toggle .cross {
    -webkit-transition: -webkit-transform 90ms ease-in;
    transition: -webkit-transform 90ms ease-in;
    transition: transform 90ms ease-in;
    transition: transform 90ms ease-in, -webkit-transform 90ms ease-in;
  }
  .nav-on .nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .nav-on .nav__toggle .line2 {
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
  .nav-on .nav__toggle .line1,
  .nav-on .nav__toggle .line3 {
    -webkit-transform: translateX(-105%);
            transform: translateX(-105%);
  }
  .nav-on .nav__toggle .cross {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (min-width: 56.25em) {
  .nav {
    bottom: 0;
    position: absolute;
    width: 100%;
  }
  .nav__inner {
    -webkit-box-align: center;
            align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
            justify-content: center;
    padding-left: 18.4rem;
  }
  .nav__menu--main {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }
  .nav__menu--main .menu {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .nav__menu--main .menu-item-label {
    display: block;
  }
  .nav__menu--main .menu-item-label::after {
    border-bottom: 0.3rem solid #c49109;
    content: '';
    display: block;
    -webkit-transition: -webkit-transform 150ms;
    transition: -webkit-transform 150ms;
    transition: transform 150ms;
    transition: transform 150ms, -webkit-transform 150ms;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .nav__menu--main .menu > * + * {
    margin-left: 3rem;
  }
  .nav__menu--main .menu > .menu-item > a {
    font-size: 1.1rem;
    line-height: 1.45454545;
    overflow: hidden;
    padding: 1.36363636em 0 2.36363636em;
    position: relative;
    z-index: 0;
  }
  .nav__menu--main .menu > .menu-item > a:hover .menu-item-label::after, .nav__menu--main .menu > .menu-item > a:focus .menu-item-label::after, .nav__menu--main .menu > .menu-item > a:active .menu-item-label::after {
    -webkit-transform: none;
            transform: none;
  }
  .nav__menu--main .menu > .menu-item > a:hover::after, .nav__menu--main .menu > .menu-item > a:focus::after, .nav__menu--main .menu > .menu-item > a:active::after, .nav__menu--main .menu > .menu-item > a[aria-expanded="true"]::after {
    -webkit-transform: none;
            transform: none;
  }
  .nav .menu-item-has-children:hover > a .menu-item-label::after,
  .nav .menu-item-has-children:focus-within > a .menu-item-label::after {
    -webkit-transform: none;
            transform: none;
  }
  .nav__menu--social {
    align-self: flex-start;
    margin-left: auto;
    margin-top: 0.5rem;
  }
  .nav__menu--social .menu > * + * {
    margin-left: 1.5rem;
  }
  .nav .menu {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
  }
  .nav .sub-menu {
    font-size: 1rem;
    font-family: sans-serif;
    background: white;
    font-weight: 600;
    line-height: 1.3;
    list-style: none;
    min-width: 18rem;
    overflow: hidden;
    padding: 0.5rem 0;
    text-align: center;
  }
  .fonts-on .nav .sub-menu {
    font-family: "ITCAvantGardeStd", sans-serif;
  }
  .nav .sub-menu::before, .nav .sub-menu::after {
    content: '';
    display: block;
    position: absolute;
  }
  .nav .sub-menu::before {
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.3);
    height: 30px;
    left: -7px;
    top: -30px;
    width: calc(100% + 14px);
  }
  .nav .sub-menu::after {
    border: 1rem solid transparent;
    border-top-color: white;
    border-bottom: none;
    left: calc(50% - 1rem);
    top: 0;
  }
  .nav .sub-menu a {
    padding: 1.7em 3em 1.3em;
    position: relative;
  }
  .nav .sub-menu > * + * a::after {
    top: -0.1rem;
    left: 1.5rem;
    border-bottom: 2px solid #1d1d1b;
    content: '';
    display: block;
    opacity: .2;
    position: absolute;
    width: calc(100% - 3rem);
  }
  .nav__toggle {
    display: none;
  }
}

.pager {
  border-top: 1px solid rgba(29, 29, 27, 0.25);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  margin-top: 6rem;
  margin-bottom: 0;
  padding: 3rem 0;
}

@media (min-width: 37.5em) {
  .pager {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

.pager__arrow {
  border: 1px solid #1d1d1b;
  border-radius: 50%;
  display: inline-block;
  height: 3rem;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
  vertical-align: -.9em;
  width: 3rem;
}

.pager__link {
  font-size: 1.2rem;
  font-family: sans-serif;
  color: inherit;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}

.fonts-on .pager__link {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.pager__link--next {
  margin-left: auto;
}

.pager__link--prev .pager__arrow {
  margin-right: 1.5rem;
}

.pager__link--next .pager__arrow {
  margin-left: 1.5rem;
}

.pager__link:hover, .pager__link:focus, .pager__link:active {
  color: #c49109;
}

.pager__link:hover .pager__arrow, .pager__link:focus .pager__arrow, .pager__link:active .pager__arrow {
  border-color: #c49109;
  background-color: #c49109;
  color: white;
}

@media (max-width: 37.4375em) {
  .pager__link ~ .pager__link {
    margin-top: 1.5rem;
  }
}

.pagination {
  font-size: 1.2rem;
  line-height: 2.33333333;
  text-align: center;
}

.pagination__list {
  list-style: none;
  padding: 0;
}

.pagination__item {
  display: inline-block;
}

.pagination__item + .pagination__item {
  margin-left: 1rem;
}

.pagination .page-numbers {
  border: 1px solid #1d1d1b;
  border-radius: 50%;
  color: inherit;
  box-sizing: border-box;
  display: block;
  min-width: 2.5em;
  text-align: center;
}

.pagination .page-numbers.current {
  border-color: #c49109;
  color: #c49109;
}

.pagination a {
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}

.pagination a:hover, .pagination a:focus, .pagination a:active {
  background-color: #1d1d1b;
  color: white;
}

.popup-menu {
  position: relative;
}

.popup-menu__menu {
  left: -9999em;
  opacity: 0;
  position: absolute;
  top: 100%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transition: opacity 150ms, left 0ms linear 150ms, -webkit-transform 150ms;
  transition: opacity 150ms, left 0ms linear 150ms, -webkit-transform 150ms;
  transition: transform 150ms, opacity 150ms, left 0ms linear 150ms;
  transition: transform 150ms, opacity 150ms, left 0ms linear 150ms, -webkit-transform 150ms;
}

.popup-menu__toggle:hover ~ .popup-menu__menu, .popup-menu__menu:hover,
.popup-menu__toggle:focus ~ .popup-menu__menu,
.popup-menu__toggle:active ~ .popup-menu__menu,
.popup-menu__toggle[aria-expanded="true"] ~ .popup-menu__menu,
.popup-menu--open .popup-menu__menu {
  left: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: opacity 150ms, left 0ms, -webkit-transform 150ms;
  transition: opacity 150ms, left 0ms, -webkit-transform 150ms;
  transition: transform 150ms, opacity 150ms, left 0ms;
  transition: transform 150ms, opacity 150ms, left 0ms, -webkit-transform 150ms;
}

.popup-menu:focus-within .popup-menu__menu {
  left: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: opacity 150ms, left 0ms, -webkit-transform 150ms;
  transition: opacity 150ms, left 0ms, -webkit-transform 150ms;
  transition: transform 150ms, opacity 150ms, left 0ms;
  transition: transform 150ms, opacity 150ms, left 0ms, -webkit-transform 150ms;
}

.related-refs {
  border-top: 1px solid rgba(29, 29, 27, 0.25);
}

.related-refs__title {
  font-family: sans-serif;
  font-size: 1.69411765rem;
  letter-spacing: -0.02791667em;
  font-weight: 700;
  margin: 3rem 0;
}

.fonts-on .related-refs__title {
  font-family: "ITCAvantGardeStd", sans-serif;
}

@media (min-width: 20em) {
  .related-refs__title {
    font-size: calc(1.69411765rem + (100vw - 32rem) * 0.0083045);
  }
}

@media (min-width: 73.125em) {
  .related-refs__title {
    font-size: 2.4rem;
  }
}

.related-refs .ref-card::before {
  content: '';
  display: block;
  padding-top: 67.9389313%;
}

.related-refs .ref-card__image {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (min-width: 37.5em) {
  .related-refs__list {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
  }
  .related-refs__item {
    width: 50%;
  }
}

@media (min-width: 73.125em) {
  .related-refs__item {
    width: 25%;
  }
}

.single-ref__title, .single-ref__location {
  font-family: sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02777778em;
}

.fonts-on .single-ref__title, .fonts-on .single-ref__location {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.single-ref__title {
  font-size: 3.6rem;
  margin: 0 0 0.19444444em;
  text-transform: uppercase;
}

.single-ref__location {
  font-size: 2.4rem;
  margin: 0 0 0.54166667em;
}

.single-ref__details {
  font-size: 1.6rem;
  font-family: sans-serif;
  font-weight: 600;
  line-height: 1.625;
  margin: 0 0 3rem;
}

.fonts-on .single-ref__details {
  font-family: "ITCAvantGardeStd", sans-serif;
}

.single-ref__details p {
  margin: 0;
}

.single-ref__details strong {
  font-weight: 700;
}

.single-ref .content-blocks > * {
  margin-bottom: 0;
}

.single-ref .content-blocks > * + *:not(.images) {
  margin-top: 3rem;
}

.skips {
  font-size: 1.2rem;
  background: #1d1d1b;
  color: white;
  z-index: 15;
}

.js-on .skips {
  height: 0;
}

.js-on .skips-on .skips, .skips:focus-within {
  height: auto;
}

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

.skips__item {
  display: inline-block;
}

.skips__link {
  color: inherit;
  display: block;
  line-height: 3rem;
  padding: 0 1.5rem;
}

.skips__link:hover, .skips__link:active, .skips__link:focus {
  background: #c49109;
  color: #1d1d1b;
}

@media print {
  .skips {
    display: none;
  }
}

.social-link {
  font-size: 3rem;
}

.social-link svg {
  display: block;
  height: 1em;
  width: 1em;
}
