@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: 'soehne';
  src: url("font/soehne-extraleicht.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'soehne';
  src: url("font/soehne-extraleicht-kursiv.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: 'soehne';
  src: url("font/soehne-leicht.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'soehne';
  src: url("font/soehne-buch.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'soehne';
  src: url("font/soehne-kraftig.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'soehne';
  src: url("font/soehne-kraftig-kursiv.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  font-family: 'soehne';
  font-weight: 100;
  font-size: 15px;
  line-height: 20px;
}
body ::selection {
  background: rgba(204, 204, 204, 0.99);
  /* WebKit/Blink Browsers */
  color: #000;
  opacity: 1;
}
body ::-moz-selection {
  background: rgba(204, 204, 204, 0.99);
  /* Gecko Browsers */
  color: #000;
  opacity: 1;
}

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

b, strong {
  font-weight: 400;
}

p {
  break-inside: avoid-column;
}

a, a:active, a:visited, a:hover, .btn-top {
  color: inherit;
  text-decoration: none;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

sup {
  vertical-align: top;
  font-size: 0.8em;
}

.layout {
  display: table;
  height: 100%;
  text-align: center;
  width: 100%;
}

.layout-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.layout-content {
  display: inline-block;
}

.burger {
  display: none;
}

header {
  position: fixed;
  top: 0px;
  padding-top: 28px;
  left: 0px;
  right: 0px;
  height: 33px;
  line-height: 30px;
  z-index: 9999;
}
header h1 {
  font-weight: 400;
}
header .left, header .right {
  position: relative;
  float: left;
  width: 50%;
}
header .left .filet, header .right .filet {
  width: calc(100% - 7px);
  margin-left: 7px;
  position: relative;
  float: left;
  border-top: solid 1px;
  height: 1px;
}
header .right .filet {
  margin-left: auto;
  margin-right: 7px;
}
header a:hover, header .wpml-ls-current-language, header .current_page_item {
  font-weight: 400;
}
header .lang ul li {
  position: relative;
  float: left;
  width: auto;
  transition: font-weight .2s ease-in-out;
}
header .lang ul li:first-child::after, header .lang ul li:first-of-type::after {
  content: '·\00a0';
  font-weight: 100;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #000;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after {
  bottom: -7px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.grid {
  display: none;
  position: fixed;
  left: 21px;
  right: 21px;
  top: 0px;
  bottom: 0px;
  z-index: -1;
  opacity: 0.1;
  overflow: hidden;
}
.grid .col {
  position: relative;
  float: left;
  width: calc(8.33% - 14px);
  margin: 0 7px;
  background-color: #000;
  height: 100vh;
}

.col-1 {
  width: calc( 8.33% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-2 {
  width: calc( 16.66% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-3 {
  width: calc( 24.99% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-4 {
  width: calc( 33.32% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-5 {
  width: calc( 41.65% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-6 {
  width: calc( 49.98% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-7 {
  width: calc( 58.31% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-8 {
  width: calc( 66.64% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-9 {
  width: calc( 74.97% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-10 {
  width: calc( 83.3% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-11 {
  width: calc( 91.63% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.col-12 {
  width: calc( 99.96% - 14px );
  margin: 0 7px;
  position: relative;
  float: left;
}

.deux-col {
  column-count: 2;
  column-gap: 14px;
}

.content {
  margin: 0 21px;
  width: calc(100% - 42px);
  position: relative;
  float: left;
}

.strate {
  position: relative;
  float: left;
  width: 100%;
}

.just-rgt {
  text-align: right;
}

.flex {
  display: flex;
}

.flx-lft {
  align-items: flex-end;
}

.flx-rgt {
  align-items: flex-start;
}

.flex.ctr {
  align-items: center;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-14 {
  margin-bottom: 14px;
}

.home .swiper {
  z-index: -1;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.home .swiper .swiper-slide .left, .home .swiper .swiper-slide .right {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
}
.home .swiper .swiper-slide .left img, .home .swiper .swiper-slide .right img {
  object-fit: cover;
  height: 100%;
}
.home .swiper .swiper-slide .btm img {
  object-position: bottom;
}
.home .swiper .swiper-slide a {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.page-template-page-index header {
  background-color: #fff;
}
.page-template-page-index .mt-global {
  margin-top: 61px;
}
.page-template-page-index table {
  width: 100%;
}
.page-template-page-index table thead {
  position: fixed;
  width: calc(66.66% - 42px);
  left: 28px;
  top: 61px;
  background-color: #fff;
  z-index: 9998;
  color: #bbb;
  padding-top: 31px;
}
.page-template-page-index table thead tr {
  width: 100%;
  position: relative;
  float: left;
  border-bottom-color: #000;
  border-top: solid 1px #000;
}
.page-template-page-index table thead tr .sorting-desc, .page-template-page-index table thead tr .sorting-asc {
  color: #000;
}
.page-template-page-index table thead tr .sorting-desc::after {
  content: " ↓";
}
.page-template-page-index table thead tr .sorting-asc::after {
  content: " ↑";
}
.page-template-page-index table thead tr th {
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.page-template-page-index table thead tr th:hover {
  cursor: pointer;
  color: #000;
}
.page-template-page-index table tbody {
  margin-top: 62px;
  position: relative;
  float: left;
  width: 100%;
}
.page-template-page-index table tbody tr:hover, .page-template-page-index table tbody tr.cur {
  cursor: pointer;
  border-bottom-color: #000;
  border-top-color: #000;
}
.page-template-page-index table tbody tr:hover td, .page-template-page-index table tbody tr.cur td {
  font-weight: 400;
}
.page-template-page-index table tr {
  position: relative;
  float: left;
  width: 100%;
  border-bottom: solid 1px #CCC;
  border-top: solid 1px transparent;
  margin-top: -1px;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.page-template-page-index table tr th, .page-template-page-index table tr td {
  padding-top: 5px;
  padding-bottom: 5px;
  transition: font-weight .2s ease-in-out;
}
.page-template-page-index caption, .page-template-page-index th, .page-template-page-index td {
  font-weight: 100;
  vertical-align: sub;
}
.page-template-page-index .ref, .page-template-page-index .proj, .page-template-page-index .type, .page-template-page-index .year, .page-template-page-index .pays {
  position: relative;
  float: left;
}
.page-template-page-index .ref {
  width: calc(12.5% - 13px);
  padding-right: 7px;
}
.page-template-page-index .proj {
  width: calc(37.5% - 9px);
  padding-right: 7px;
  padding-left: 8px;
}
.page-template-page-index .type {
  width: calc(25% - 10px);
  padding-right: 7px;
  padding-left: 7px;
}
.page-template-page-index .year {
  width: calc(12.5% - 13px);
  padding-right: 7px;
  padding-left: 7px;
}
.page-template-page-index .pays {
  width: calc(12.5% - 12px);
  padding-left: 7px;
}
.page-template-page-index .bloc-img {
  opacity: 0;
  z-index: -1;
  position: fixed;
  top: 90px;
  bottom: 28px;
  right: 28px;
  left: calc(66.66% + 0px);
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.page-template-page-index .bloc-img a {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.page-template-page-index .bloc-img img {
  object-fit: cover;
  max-height: 100%;
  height: 44vw;
}
.page-template-page-index .bloc-img.btm img {
  object-position: bottom;
}
.page-template-page-index .bloc-img.current {
  opacity: 1;
  z-index: 9998;
}

.single header {
  background-color: #fff;
}
.single .mt-global {
  margin-top: 90px;
}
.single h2, .single h3 {
  font-size: 70px;
  line-height: 80px;
  font-weight: 400;
}
.single h3 {
  font-weight: 100;
}
.single p {
  margin-bottom: 20px;
}
.single .texte {
  margin-top: 16px;
  margin-bottom: 10px;
}
.single ul.infos {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 16px;
  margin-top: 16px;
  border-top: solid 1px #ccc;
}
.single ul.infos li {
  border-bottom: solid 1px #ccc;
  margin-top: -1px;
  display: inline-block;
  width: 100%;
  padding: 5px 0;
  margin-bottom: -4px;
}
.single ul.infos li .contenu {
  font-weight: 400;
}
.single ul.infos:before {
  content: " ";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  /* Put the gaps on the <ul> top margin */
  top: -1px;
  /* Background-size = 1/4 of the width + 1/4 of the space between columns */
  background-size: calc(50% + 7px) 1px;
  /* Or it will hide the border-top of the ul */
  background-color: transparent;
  /* The actual white gaps at the top */
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) calc(100% - 14px), #ffffff 14px);
  /* Those 20px are white */
}
.single .une_ok, .single .deux_ok, .single .col-12.ok {
  background-color: #f5f5f5;
}
.single .une_ok img, .single .deux_ok img, .single .col-12.ok img {
  mix-blend-mode: multiply;
}
.single .col-6 img:hover, .single .col-12 img:hover {
  cursor: zoom-in;
}
.single .nav-post {
  margin-bottom: 28px;
  margin-top: 14px;
}
.single .nav-post .filet {
  height: 1px;
  background-color: #000;
}
.single .nav-post .filet.bt {
  margin-top: 5px;
}
.single .nav-post .filet.tp {
  margin-bottom: 5px;
}
.single .nav-post a:hover, .single .nav-post .btn-top:hover {
  font-weight: 400;
  cursor: pointer;
}
.single #lg-share, .single #lg-actual-size, .single #lg-zoom-in, .single #lg-zoom-out, .single .lg-fullscreen, .single .lg-autoplay-button, .single #lg-download, .single .lg-sub-html {
  display: none !important;
}
.single #lg-counter {
  font-size: 15px;
  color: #000;
  padding-left: 28px;
  padding-top: 34px;
}
.single #lg-counter-current::after {
  content: " · ";
}
.single .lg-toolbar .lg-icon {
  height: 13px;
  width: 13px;
  padding: 0px;
  margin-right: 28px;
  margin-top: 30px;
}
.single .lg-toolbar .lg-close:after {
  content: "×";
  font-family: 'soehne';
  font-weight: 200;
  font-size: 30px;
  color: #000;
}
.single .lg-toolbar .lg-close:hover:after {
  color: #000;
}
.single .lg-actions .lg-prev:after, .single .lg-actions .lg-prev:before, .single .lg-actions .lg-next:after, .single .lg-actions .lg-next:before {
  content: '';
}
.single .lg-hide-items .lg-prev, .single .lg-hide-items .lg-next, .single .lg-hide-items .lg-toolbar {
  opacity: 1 !important;
  -webkit-transform: none;
  transform: none;
}
.single .lg-toolbar, .single .lg-prev, .single .lg-next {
  background-color: transparent;
}
.single .lg-prev, .single .lg-next {
  position: absolute;
  height: 100%;
  top: 0px;
  bottom: 0px;
  margin-top: 0px;
  width: 50%;
  padding: 0px;
}
.single .lg-prev {
  left: 0px;
}
.single .lg-next {
  right: 0px;
}
.single .lg-prev:hover {
  cursor: url('data:image/svg+xml,<svg width="23" height="20" viewBox="0 0 23 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.6298 18.9299L8.8498 19.6499L0.299805 10.1399L8.8498 0.629883L9.6298 1.34988L2.1598 9.62988H22.1398V10.6499H2.1598L9.6298 18.9299Z" fill="black"/></svg>'), e-resize;
}
.single .lg-next:hover {
  cursor: url('data:image/svg+xml,<svg width="23" height="20" viewBox="0 0 23 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.3684 18.9299L20.8384 10.6499H0.858398V9.62988H20.8384L13.3684 1.34988L14.1484 0.629883L22.6984 10.1399L14.1484 19.6499L13.3684 18.9299Z" fill="black"/></svg>'), w-resize;
}
.single .lg-backdrop {
  background-color: #fff;
  z-index: 99998;
}
.single .lg-outer {
  z-index: 99999;
}
.single .lg-outer .lg-img-wrap {
  padding: 0px;
  top: 28px;
  left: 28px;
  right: 28px;
  bottom: 28px;
  width: auto;
  height: auto;
}

.page-template-page-about header {
  background-color: #fff;
}
.page-template-page-about header .filet {
  background-color: transparent;
}
.page-template-page-about .mt-global {
  margin-top: 125px;
  margin-bottom: 63px;
}
.page-template-page-about .intro, .page-template-page-about .piliers, .page-template-page-about .un-pil {
  font-size: 20px;
  line-height: 24px;
}
.page-template-page-about .intro h2, .page-template-page-about .intro h3, .page-template-page-about .piliers h2, .page-template-page-about .piliers h3, .page-template-page-about .un-pil h2, .page-template-page-about .un-pil h3 {
  font-weight: 400;
}
.page-template-page-about .intro p, .page-template-page-about .intro h2, .page-template-page-about .piliers p, .page-template-page-about .piliers h2, .page-template-page-about .un-pil p, .page-template-page-about .un-pil h2 {
  margin-bottom: 24px;
}
.page-template-page-about .intro ul li, .page-template-page-about .piliers ul li, .page-template-page-about .un-pil ul li {
  list-style: disc;
}
.page-template-page-about .intro {
  min-height: calc(100vh - 374px);
}
.page-template-page-about .le-texte {
  margin-bottom: 24px;
}
.page-template-page-about .filet {
  height: 1px;
  background-color: #000;
}
.page-template-page-about .filet.tp {
  margin-bottom: 40px;
}
.page-template-page-about .piliers {
  margin-top: 70px;
  margin-bottom: 40px;
}
.page-template-page-about .un-pil .filet.bt {
  margin-top: 5px;
}
.page-template-page-about .un-pil .filet.tp {
  margin-bottom: 5px;
}
.page-template-page-about .un-pil .strate.texte {
  margin-top: 24px;
  margin-bottom: 48px;
}
.page-template-page-about .ech-un img {
  width: 59px;
}
.page-template-page-about .pied {
  margin-bottom: 28px;
  word-break: break-word;
}
.page-template-page-about .pied .filet.bt {
  margin-top: 24px;
}
.page-template-page-about .pied .filet.tp {
  margin-bottom: 24px;
}
.page-template-page-about .pied a:hover {
  font-weight: 400;
}
.page-template-page-about .pied .credit {
  margin-top: 24px;
}
.page-template-page-about .pied .hiden-rsp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .single h2, .single h3 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 920px) {
  header .left {
    width: 33.33%;
  }
  header .right {
    width: 66.66%;
  }
  header .right .col-4 {
    width: calc(25% - 14px);
  }

  .home header .right {
    color: #000;
  }
  .home .swiper .swiper-slide .left, .home .swiper .swiper-slide .right {
    width: 100%;
    height: 100%;
  }
  .home .swiper .swiper-slide .right {
    display: none;
  }

  .page-template-page-index .mt-global .col-8 {
    width: calc(100% - 14px);
  }
  .page-template-page-index .mt-global .col-4 {
    display: none;
  }
  .page-template-page-index .mt-global thead {
    width: calc(100% - 56px);
  }
  .page-template-page-index .mt-global .ref, .page-template-page-index .mt-global .type, .page-template-page-index .mt-global .pays, .page-template-page-index .mt-global .year {
    width: calc(16.66% - 12px);
  }
  .page-template-page-index .mt-global .proj {
    width: calc(33.33% - 9px);
  }
  .page-template-page-index .mt-global .year {
    display: none;
  }
  .page-template-page-index .mt-global .type {
    width: calc(33.33% - 10px);
  }

  .page-template-page-about .hide-rsp {
    display: none;
  }
  .page-template-page-about .mt-global {
    margin-top: 89px;
  }
  .page-template-page-about .intro .col-8 {
    width: calc( 100% - 14px );
  }
  .page-template-page-about .piliers {
    margin-top: 50px;
  }
  .page-template-page-about .piliers .col-4, .page-template-page-about .piliers .col-8 {
    width: calc( 50% - 14px );
  }
  .page-template-page-about .piliers .col-4 h2 br, .page-template-page-about .piliers .col-8 h2 br {
    display: none;
  }
  .page-template-page-about .piliers .col-4 ul, .page-template-page-about .piliers .col-8 ul {
    margin-left: 17px;
  }
  .page-template-page-about .intro, .page-template-page-about .piliers, .page-template-page-about .un-pil {
    font-size: 15px;
    line-height: 20px;
  }
  .page-template-page-about .intro p, .page-template-page-about .piliers p, .page-template-page-about .un-pil p {
    margin-bottom: 20px;
  }
  .page-template-page-about .un-pil .col-4, .page-template-page-about .un-pil .col-8 {
    width: calc( 50% - 14px );
  }
  .page-template-page-about .un-pil .strate.texte .col-8.deux-col {
    width: calc( 100% - 14px );
  }
  .page-template-page-about .pied .col-2, .page-template-page-about .pied .col-3 {
    width: calc( 33.33% - 14px );
  }
  .page-template-page-about .pied .col-1 {
    width: calc( 33.33% - 14px );
    margin-top: 24px;
    clear: left;
  }
  .page-template-page-about .pied .col-1 svg {
    float: right;
  }
  .page-template-page-about .pied .col-4 {
    width: calc( 66.66% - 14px );
    margin-top: 24px;
  }
  .page-template-page-about .pied .col-4 p {
    max-width: 400px;
  }
  .page-template-page-about .pied .col-1 {
    width: auto;
  }
  .page-template-page-about .pied .hiden-rsp {
    display: block;
    margin-top: 24px;
  }
  .page-template-page-about .pied .col-4 {
    width: calc(100% - 87px);
  }
  .page-template-page-about .pied .credit .col-2 {
    width: calc( 16.66% - 14px );
  }
  .page-template-page-about .pied .credit .col-1 {
    margin-top: 0px;
    width: calc( 16.66% - 14px );
    clear: none;
  }
  .page-template-page-about .pied .credit .col-3 {
    margin-left: calc(16.66% + 7px);
  }

  .single .lg-prev, .single .lg-next {
    display: none;
  }
  .single ul.infos.deux-col {
    column-count: 1;
  }
  .single ul.infos.deux-col li {
    border-top: none;
  }
  .single ul.infos.deux-col li:first-child, .single ul.infos.deux-col li:first-of-type {
    border-top: solid 1px #ccc;
  }
  .single ul.infos:before {
    display: none;
  }
}
@media only screen and (max-width: 670px) {
  header .left, header .right {
    width: 50%;
  }
  header .left .col-4, header .left .col-6, header .left .col-2, header .right .col-4, header .right .col-6, header .right .col-2 {
    width: auto;
  }
  header .left .lang, header .right .lang {
    float: right;
  }

  .page-template-page-about .intro .col-4, .page-template-page-about .intro .col-8 {
    width: calc(100% - 14px);
  }
  .page-template-page-about .intro .col-4 h2, .page-template-page-about .intro .col-8 h2 {
    margin-bottom: 20px;
  }
  .page-template-page-about .intro .col-4 br, .page-template-page-about .intro .col-8 br {
    display: none;
  }
  .page-template-page-about .intro .deux-col {
    column-count: 1;
  }
  .page-template-page-about .piliers .col-4, .page-template-page-about .piliers .col-8 {
    width: calc(100% - 14px);
  }
  .page-template-page-about .titre .col-4 {
    width: 50px;
  }
  .page-template-page-about .titre .col-8 {
    width: calc( 100% - 78px );
  }
  .page-template-page-about .strate.texte .col-4 {
    width: calc( 50% - 14px );
  }
  .page-template-page-about .strate.texte .col-4:first-child, .page-template-page-about .strate.texte .col-4:first-of-type {
    width: calc( 100% - 14px );
  }
  .page-template-page-about .strate.texte .col-8 {
    width: calc( 100% - 14px );
  }
  .page-template-page-about .pied .col-2, .page-template-page-about .pied .col-3 {
    width: calc( 50% - 14px );
  }
  .page-template-page-about .pied .col-2.rsp {
    margin-left: calc(50% + 7px);
    margin-top: 20px;
  }
  .page-template-page-about .pied .credit .col-3 {
    margin-left: 7px;
  }
  .page-template-page-about .deux-col {
    column-count: 1;
  }

  .single .mt-global .col-6, .single .deux-img .col-6 {
    width: calc( 100% - 14px );
  }
  .single .deux-col {
    column-count: 1;
  }
  .single .deux-img .col-6 {
    margin-bottom: 14px;
  }
  .single .deux-img.mb-14 {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .page-template-page-about .piliers .col-4, .page-template-page-about .piliers .col-8 {
    width: calc(100% - 14px);
  }
  .page-template-page-about .piliers .col-4 h2, .page-template-page-about .piliers .col-8 h2 {
    margin-bottom: 20px;
  }
  .page-template-page-about .pied .col-2, .page-template-page-about .pied .col-3 {
    width: calc(100% - 14px);
  }
  .page-template-page-about .pied .col-2 p, .page-template-page-about .pied .col-3 p {
    margin-bottom: 20px;
  }
  .page-template-page-about .pied .col-2.rsp {
    margin-left: 7px;
    margin-top: 0px;
  }
  .page-template-page-about .pied .col-2.rsp p {
    margin-bottom: 0px;
  }
  .page-template-page-about .pied .credit .col-2, .page-template-page-about .pied .credit .col-1, .page-template-page-about .pied .credit .col-3 {
    width: auto;
  }
  .page-template-page-about .pied .credit .col-3 {
    float: right;
  }

  .page-template-page-index .mt-global .ref, .page-template-page-index .mt-global .type {
    display: none;
  }
  .page-template-page-index .mt-global .proj {
    padding-left: 0px;
    width: calc(75% - 7px);
  }
  .page-template-page-index .mt-global .pays {
    width: calc(25% - 11px);
  }
  .page-template-page-index .mt-global .year {
    width: calc(25% - 10px);
  }
}
@media only screen and (max-width: 420px) {
  header h1 .hide {
    display: none;
  }
}
