@charset "UTF-8";
.vhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.imageRender {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; /*bottom: 0;*/
  overflow: hidden;
}
.imageRender img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.pRelative {
  position: relative;
}

.text-left {
  text-align: left;
}

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

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

.show-md-f, .show-md-ib, .show-md,
.show-sm-f, .show-sm-ib, .show-sm,
.show-xs-f, .show-xs-ib, .show-xs {
  display: none;
}

@media (max-width: 1299px) {
  .show-md-f {
    display: flex !important;
  }
  .show-md-ib {
    display: inline-block;
  }
  .show-md {
    display: block;
  }
  .hide-md {
    display: none;
  }
}
@media (max-width: 1099px) {
  .show-sm-f {
    display: flex !important;
  }
  .show-sm-ib {
    display: inline-block;
  }
  .show-sm {
    display: block;
  }
  .hide-sm {
    display: none;
  }
}
@media (max-width: 767px) {
  .show-xs-f {
    display: flex !important;
  }
  .show-xs-ib {
    display: inline-block;
  }
  .show-xs {
    display: block;
  }
  .hide-xs {
    display: none;
  }
}
@keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}
.cPrimary {
  color: #D41136;
}

@font-face {
  font-family: "Copperplate";
  src: url("../fonts/Copperplate-Bold.woff2") format("woff2"), url("../fonts/Copperplate-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Copperplate";
  src: url("../fonts/Copperplate.woff2") format("woff2"), url("../fonts/Copperplate.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Libre Franklin";
  src: url("../fonts/LibreFranklin-Regular.woff2") format("woff2"), url("../fonts/LibreFranklin-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Libre Franklin";
  src: url("../fonts/LibreFranklin-Bold.woff2") format("woff2"), url("../fonts/LibreFranklin-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "PP Mori";
  src: url("../fonts/PPMori-Regular.woff2") format("woff2"), url("../fonts/PPMori-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Mori";
  src: url("../fonts/PPMori-SemiBold.woff2") format("woff2"), url("../fonts/PPMori-SemiBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*, *::before, *::after, *:before, *:after, *:focus, *:active {
  box-sizing: border-box;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-interpolation-mode: bicubic;
}

/*!
* ress.css • v2.0.4
* MIT License
* github.com/filipelinhares/ress
*/
/* # =================================================================
# Global selectors
# ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
    # General elements
    # ================================================================= */
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
}

details,
main {
  display: block; /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none; /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
    # Forms
    # ================================================================= */
input {
  border-radius: 0;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  color: inherit;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

/* # =================================================================
    # Accessibility
    # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

html {
  font-size: 20px;
  line-height: 1.8;
}
@media (max-width: 1299px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 1099px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

body {
  background: #FFF;
  font-family: "Libre Franklin", -apple-system, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.4);
}

*::-moz-selection {
  background: #D41136;
  color: #FFF;
}

*::selection {
  background: #D41136;
  color: #FFF;
}

*::-moz-selection {
  background: #D41136;
  color: #FFF;
}

*::-webkit-selection {
  background: #D41136;
  color: #FFF;
}

img {
  max-width: 100%;
}

a:not([class]), a:not([class]):visited {
  color: currentColor;
  text-decoration: none;
}
a:not([class]):focus {
  text-decoration: underline;
}
@media (hover: hover) {
  a:not([class]):hover {
    text-decoration: underline;
  }
}

p {
  margin: 0;
}
p + p {
  margin-top: 1.5rem;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
  font-size: 1rem;
}

strong, b {
  font-weight: 700;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

.st2 {
  font-size: 3rem;
  line-height: 1;
  color: #c3c3c3;
  margin-bottom: 40px;
}
@media (max-width: 1299px) {
  .st2 {
    font-size: 2.4444444444rem;
    line-height: 1.0909090909;
    margin-bottom: 30px;
  }
}

.st3 {
  font-size: 1.75rem;
  line-height: 1;
  font-family: "Copperplate";
  font-weight: 400;
  color: #000;
  margin-bottom: 4vh;
}
@media (max-width: 1299px) {
  .st3 {
    font-size: 1.5555555556rem;
    line-height: 1;
    margin-bottom: 2vh;
  }
}

.sp1 {
  font-size: 0.75rem;
  line-height: 1.8666666667;
  color: rgba(0, 0, 0, 0.4);
}

.sp2 {
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  margin-bottom: 3vh;
}

.sp3 {
  font-size: 0.7rem;
  line-height: 2.1428571429;
  color: rgba(0, 0, 0, 0.4);
}

.sp4 {
  margin-bottom: 2vh;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
}
@media (max-width: 1299px) {
  .sp4 {
    font-size: 1rem;
    line-height: 1.3333333333;
  }
}

.sp5 {
  margin-bottom: 4vh;
  font-size: 1.5rem;
  line-height: 1.5333333333;
}
.sp5 b, .sp5 strong {
  color: #D41136;
}
@media (max-width: 1299px) {
  .sp5 {
    font-size: 1.2222222222rem;
    line-height: 1.5454545455;
  }
}

.sp6 {
  font-size: 0.9rem;
  line-height: 1.6666666667;
}

.sp7 {
  color: #000;
  font-size: 0.7rem;
  line-height: 1.7857142857;
}

.firstLetter {
  position: relative;
  padding-left: 45px;
}
.firstLetter_letter {
  position: absolute;
  font-size: 3rem;
  line-height: 1;
  font-family: "Copperplate";
  font-weight: 300;
  color: #D41136;
  top: -18px;
  left: -10px;
  text-align: right;
  width: 50px;
}
.firstLetter_content::first-letter {
  outline: 1px solid red;
  margin-left: -16px;
  visibility: hidden;
  opacity: 0;
}
.firstLetter_content strong, .firstLetter_content b {
  color: #D41136;
}

.icon--arrow-bottom {
  width: 90px;
  height: 209px;
}
.icon--arrow-bottom-menu {
  width: 9px;
  height: 19px;
}
.icon--arrow-left {
  width: 210px;
  height: 91px;
}
.icon--arrow-top {
  width: 90px;
  height: 209px;
}
.icon--drag {
  width: 322px;
  height: 80px;
}
.icon--linkedin {
  width: 41px;
  height: 41px;
}
.icon--logo-p {
  width: 956px;
  height: 860px;
}
.icon--popin-close {
  width: 86px;
  height: 14px;
}
.icon--quote {
  width: 54px;
  height: 43px;
}

/*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
html.has-scroll-dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.c-scrollbar {
  z-index: 10;
}
.c-scrollbar_thumb {
  background: #999;
}

.pageProgress {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #D41136;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.loadingScreen {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.loadingScreen::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232323;
}
.loadingScreen_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.loadingScreen_pct {
  position: relative;
  text-align: center;
  color: #D41136;
  font-family: "Copperplate";
  font-size: 17.5rem;
  line-height: 0.5714285714;
  letter-spacing: -0.05em;
  padding: 8vh 0;
  width: 600px;
}
@media (max-width: 767px) {
  .loadingScreen_pct {
    width: 90%;
    font-size: 7rem;
    line-height: 1;
  }
}
.loadingScreen_pct_icon {
  position: absolute;
  top: 8vh;
  right: 100%;
  transform: scale(0.8);
  color: #FFF;
}
.loadingScreen_progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  transform: scaleX(0);
  transform-origin: center left;
  background: #D41136;
}

.container {
  width: 100%;
  max-width: 86vw;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container {
    max-width: none;
    padding-left: 55px;
    padding-right: 55px;
  }
}
.container--full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.menu {
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.menu_mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  opacity: 0;
}
.menu_content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 820px;
  width: 80%;
  overflow: auto;
  background-color: #D41136;
  color: #FFF;
}
@media (max-width: 767px) {
  .menu_content {
    width: 100%;
  }
}
.menu_scroller {
  padding: 12vh 7vw;
}
@media (max-width: 767px) {
  .menu_scroller {
    position: relative;
    overflow: hidden;
    padding-top: 10vh;
    padding-bottom: 0;
  }
}
.menu .mainMenu {
  position: relative;
  padding-top: 4vh;
  padding-left: 4vw;
  padding-bottom: 6vh;
}
@media (max-width: 767px) {
  .menu .mainMenu {
    padding: 4vh 10vw 5vh 15vw;
  }
}
.menu .mainMenu ul li {
  display: block;
  opacity: 0;
}
.menu .mainMenu ul li a {
  position: relative;
  display: block;
  font-size: 2.5rem;
  line-height: 1.14;
  padding: 10px 0;
  text-transform: lowercase;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.15s linear;
}
@media (max-width: 767px) {
  .menu .mainMenu ul li a {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
@media (hover: hover) {
  .menu .mainMenu ul li a:hover {
    text-decoration: none;
    color: #000;
  }
}
.menu .mainMenu ul li a::before {
  content: "";
  position: absolute;
  right: calc(100% + 3vw);
  bottom: 40%;
  width: 58px;
  height: 46px;
  background-image: url(../images/menu-quote.svg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.15s linear;
}
@media (max-width: 1099px) {
  .menu .mainMenu ul li a::before {
    transform: scale(0.8);
    right: calc(100% + 2vw);
  }
}
@media (max-width: 767px) {
  .menu .mainMenu ul li a::before {
    transform: scale(0.8);
    right: calc(100% + 5vw);
    bottom: 20%;
  }
}
.menu .mainMenu ul li.current-menu-item a {
  color: #000;
}
.menu .mainMenu ul li.current-menu-item a::before {
  opacity: 1;
}
.menu .secondMenuWrap {
  position: relative;
  background-color: none;
}
@media (max-width: 767px) {
  .menu .secondMenuWrap {
    background-color: #FFF;
    margin-left: -7vw;
    margin-right: -7vw;
    padding-left: 7vw;
    padding-right: 7vw;
    margin-top: 10vh;
  }
}
.menu .secondMenu {
  padding-top: 4vh;
  padding-left: 4vw;
  padding-bottom: 4vh;
  margin-left: 5px;
  opacity: 0;
}
@media (max-width: 767px) {
  .menu .secondMenu {
    padding-top: 10vh;
    padding-left: 15vw;
    padding-right: 5vh;
    padding-bottom: 10vh;
  }
}
.menu .secondMenu ul {
  position: relative;
  z-index: 1;
}
.menu .secondMenu ul li a {
  display: block;
  font-size: 0.7rem;
  line-height: 1.4285714286;
  padding: 2px 0;
  text-transform: lowercase;
  transition: color 0.15s linear;
}
@media (max-width: 767px) {
  .menu .secondMenu ul li a {
    color: #000;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
@media (hover: hover) {
  .menu .secondMenu ul li a:hover {
    text-decoration: none;
    color: #000;
  }
}
.menu .secondMenu ul li.current-menu-item a {
  color: #000;
}
.menu .menu_top {
  position: fixed;
  z-index: 10;
  top: 7vh;
  left: 7vw;
  right: 6vw;
  display: flex;
  align-items: center;
  height: 37px;
  opacity: 0;
}
@media (max-width: 767px) {
  .menu .menu_top {
    top: 20px;
    left: 15px;
    right: 15px;
  }
}
.menu .menu_top_logo {
  color: #FFF;
  margin-right: 5px;
  display: none;
}
@media (max-width: 767px) {
  .menu .menu_top_logo {
    display: block;
  }
}
.menu .menu_top_separator {
  height: 2px;
  background-color: #FFF;
  flex: 1;
}
.menu .menu_top_langSelector {
  position: relative;
  display: block;
  height: 100%;
  margin-right: 20px;
  font-family: "Copperplate";
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
}
@media (max-width: 767px) {
  .menu .menu_top_langSelector {
    display: none;
  }
}
.menu .menu_top_langSelector_current svg {
  color: #000;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}
.menu .menu_top_langSelector_dropdown {
  position: absolute;
  z-index: 10;
  left: -10px;
  top: 100%;
  color: #FFF;
  padding: 10px 0 20px 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: visibility 0s linear 0.15s, opacity 0.15s linear, transform 0.15s linear;
}
.menu .menu_top_langSelector_dropdown a {
  display: block;
  padding: 3px 10px;
  transition: color 0.15s linear;
}
@media (hover: hover) {
  .menu .menu_top_langSelector_dropdown a:hover {
    color: #000;
    text-decoration: none;
  }
}
.menu .menu_top_langSelector_dropdown .current-lang a {
  color: #000;
}
@media (hover: hover) {
  .menu .menu_top_langSelector:hover .menu_top_langSelector_dropdown {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    transform: translateY(0);
  }
}
.menu .menu_top_close {
  position: relative;
  width: 34px;
  height: 34px;
  margin-left: 20px;
}
.menu .menu_top_close span {
  position: absolute;
  width: 24px;
  height: 2px;
  left: 5px;
  right: 5px;
  background-color: #FFF;
  top: 50%;
  margin-top: -1px;
  transform-origin: center center;
}
.menu .menu_top_close span:nth-child(1) {
  transform: rotate(40deg);
}
.menu .menu_top_close span:nth-child(2) {
  transform: rotate(-40deg);
}
.menu .menu_bottom {
  display: flex;
  align-items: center;
  opacity: 0;
}
@media (max-width: 767px) {
  .menu .menu_bottom {
    padding-left: 15vw;
  }
}
.menu .menu_bottom_switchLang {
  margin-right: 5px;
  font-family: "Copperplate";
  font-size: 26px;
  line-height: 1;
  font-weight: 300;
  display: none;
}
@media (max-width: 767px) {
  .menu .menu_bottom_switchLang {
    display: block;
  }
}
.menu .menu_bottom_switchLang a, .menu .menu_bottom_switchLang a:visited {
  color: #FFF;
  text-decoration: none;
}
.menu .menu_bottom_switchLang .current-lang {
  display: none;
}
.menu .menuSeparator {
  margin-left: 2vw;
  margin-right: 2vw;
  height: 2px;
  background-color: #FFF;
  flex: 1;
}
.menu--opened {
  display: block;
}

.menuToggle {
  position: fixed;
  z-index: 350;
  top: 7vh;
  right: calc(2.5vw - 2px);
  width: 34px;
  height: 34px;
}
@media (max-width: 767px) {
  .menuToggle {
    top: 15px;
    right: 10px;
  }
}
.menuToggle span {
  position: absolute;
  width: 24px;
  height: 2px;
  left: 5px;
  right: 5px;
  background-color: #F90000;
  top: 50%;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.menuToggle span:nth-child(1) {
  margin-top: -8px;
}
.menuToggle span:nth-child(2) {
  margin-top: -1px;
}
.menuToggle span:nth-child(3) {
  margin-top: 6px;
}
.menuToggle--dark span {
  background-color: #000;
}

.logoContainer {
  position: fixed;
  z-index: 350;
  top: 7vh;
  left: 3.5vw;
}
@media (max-width: 767px) {
  .logoContainer {
    top: 25px;
    left: 15px;
  }
}
.logoContainer .logo {
  position: relative;
  display: block;
}
.logoContainer .logo_text {
  fill: #000;
}
.logoContainer .logo_dot {
  fill: #D41136;
}
.logoContainer .logo_small {
  color: #FFF !important;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
@media (max-width: 1099px) {
  .logoContainer .logo_small {
    display: block;
  }
}
.logoContainer .logo_full {
  display: block;
}
@media (max-width: 1099px) {
  .logoContainer .logo_full {
    display: none;
  }
}

.anchors {
  position: fixed;
  z-index: 250;
  top: 50%;
  right: 2.5vw;
  width: 30px;
  transform: translateY(-50%);
}
@media (max-width: 1099px) {
  .anchors {
    right: 1.5vw;
  }
}
@media (max-width: 767px) {
  .anchors {
    display: none !important;
  }
}
.anchors a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}
.anchors a::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  top: 50%;
  left: 50%;
  margin-left: -4px;
  margin-top: -4px;
  background-color: #CDCDCD;
  transition: background-color 0.15s linear;
}
.anchors a::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -5px;
  background-color: #FFF;
  opacity: 0.7;
  display: none;
}
.anchors a.active::after {
  background-color: #D41136;
}
.anchors a.active::before {
  display: block;
}

html[data-ui=light] .logo_text {
  fill: #FFF;
}
html[data-ui=light] .logo_ {
  fill: #FFF;
}

.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -0.75vw;
  margin-right: -0.75vw;
}
.row--noGutter {
  margin: 0 !important;
}
.row--noGutter > div[class^=col] {
  padding: 0 !important;
}

.row--start {
  justify-content: flex-start;
  text-align: start;
}

.row--center {
  justify-content: center;
  text-align: center;
}

.row--end {
  justify-content: flex-end;
  text-align: end;
}

.row--top {
  align-items: flex-start;
}

.row--middle {
  align-items: center;
}

.row--bottom {
  align-items: flex-end;
}

.row--around {
  justify-content: space-around;
}

.row--between {
  justify-content: space-between;
}

.row--reverse {
  flex-direction: row-reverse;
}

.col--first {
  order: -1;
}

.col--last {
  order: 1;
}

.offset-0 {
  margin-left: 0%;
}

.col-1 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 5.5555555556%;
  flex: 0 0 5.5555555556%;
}

.offset-1 {
  margin-left: 5.5555555556%;
}

.col-2 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 11.1111111111%;
  flex: 0 0 11.1111111111%;
}

.offset-2 {
  margin-left: 11.1111111111%;
}

.col-3 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 16.6666666667%;
  flex: 0 0 16.6666666667%;
}

.offset-3 {
  margin-left: 16.6666666667%;
}

.col-4 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 22.2222222222%;
  flex: 0 0 22.2222222222%;
}

.offset-4 {
  margin-left: 22.2222222222%;
}

.col-5 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 27.7777777778%;
  flex: 0 0 27.7777777778%;
}

.offset-5 {
  margin-left: 27.7777777778%;
}

.col-6 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 33.3333333333%;
  flex: 0 0 33.3333333333%;
}

.offset-6 {
  margin-left: 33.3333333333%;
}

.col-7 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 38.8888888889%;
  flex: 0 0 38.8888888889%;
}

.offset-7 {
  margin-left: 38.8888888889%;
}

.col-8 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 44.4444444444%;
  flex: 0 0 44.4444444444%;
}

.offset-8 {
  margin-left: 44.4444444444%;
}

.col-9 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 50%;
  flex: 0 0 50%;
}

.offset-9 {
  margin-left: 50%;
}

.col-10 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 55.5555555556%;
  flex: 0 0 55.5555555556%;
}

.offset-10 {
  margin-left: 55.5555555556%;
}

.col-11 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 61.1111111111%;
  flex: 0 0 61.1111111111%;
}

.offset-11 {
  margin-left: 61.1111111111%;
}

.col-12 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 66.6666666667%;
  flex: 0 0 66.6666666667%;
}

.offset-12 {
  margin-left: 66.6666666667%;
}

.col-13 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 72.2222222222%;
  flex: 0 0 72.2222222222%;
}

.offset-13 {
  margin-left: 72.2222222222%;
}

.col-14 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 77.7777777778%;
  flex: 0 0 77.7777777778%;
}

.offset-14 {
  margin-left: 77.7777777778%;
}

.col-15 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 83.3333333333%;
  flex: 0 0 83.3333333333%;
}

.offset-15 {
  margin-left: 83.3333333333%;
}

.col-16 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 88.8888888889%;
  flex: 0 0 88.8888888889%;
}

.offset-16 {
  margin-left: 88.8888888889%;
}

.col-17 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 94.4444444444%;
  flex: 0 0 94.4444444444%;
}

.offset-17 {
  margin-left: 94.4444444444%;
}

.col-18 {
  flex: 0 0 auto;
  padding: 0.75vh 0.75vw;
  max-width: 100%;
  flex: 0 0 100%;
}

.offset-18 {
  margin-left: 100%;
}

.col--noPT {
  padding-top: 0 !important;
}

.col--noPL {
  padding-left: 0 !important;
}

.col--noPR {
  padding-right: 0 !important;
}

.col--noPB {
  padding-bottom: 0 !important;
}

@media (min-width: 1500px) {
  .row--start-xl {
    justify-content: flex-start;
    text-align: start;
  }
  .row--center-xl {
    justify-content: center;
    text-align: center;
  }
  .row--end-xl {
    justify-content: flex-end;
    text-align: end;
  }
  .row--top-xl {
    align-items: flex-start;
  }
  .row--middle-xl {
    align-items: center;
  }
  .row--bottom-xl {
    align-items: flex-end;
  }
  .row--around-xl {
    justify-content: space-around;
  }
  .row--between-xl {
    justify-content: space-between;
  }
  .row--reverse-xl {
    flex-direction: row-reverse;
  }
  .col--first-xl {
    order: -1;
  }
  .col--last-xl {
    order: 1;
  }
  .col-xl {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 5.5555555556%;
    flex: 0 0 5.5555555556%;
  }
  .offset-xl-1 {
    margin-left: 5.5555555556%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 11.1111111111%;
    flex: 0 0 11.1111111111%;
  }
  .offset-xl-2 {
    margin-left: 11.1111111111%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 16.6666666667%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 22.2222222222%;
    flex: 0 0 22.2222222222%;
  }
  .offset-xl-4 {
    margin-left: 22.2222222222%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 27.7777777778%;
    flex: 0 0 27.7777777778%;
  }
  .offset-xl-5 {
    margin-left: 27.7777777778%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .offset-xl-6 {
    margin-left: 33.3333333333%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 38.8888888889%;
    flex: 0 0 38.8888888889%;
  }
  .offset-xl-7 {
    margin-left: 38.8888888889%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 44.4444444444%;
    flex: 0 0 44.4444444444%;
  }
  .offset-xl-8 {
    margin-left: 44.4444444444%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .offset-xl-9 {
    margin-left: 50%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 55.5555555556%;
    flex: 0 0 55.5555555556%;
  }
  .offset-xl-10 {
    margin-left: 55.5555555556%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 61.1111111111%;
    flex: 0 0 61.1111111111%;
  }
  .offset-xl-11 {
    margin-left: 61.1111111111%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .offset-xl-12 {
    margin-left: 66.6666666667%;
  }
  .col-xl-13 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 72.2222222222%;
    flex: 0 0 72.2222222222%;
  }
  .offset-xl-13 {
    margin-left: 72.2222222222%;
  }
  .col-xl-14 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 77.7777777778%;
    flex: 0 0 77.7777777778%;
  }
  .offset-xl-14 {
    margin-left: 77.7777777778%;
  }
  .col-xl-15 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .offset-xl-15 {
    margin-left: 83.3333333333%;
  }
  .col-xl-16 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 88.8888888889%;
    flex: 0 0 88.8888888889%;
  }
  .offset-xl-16 {
    margin-left: 88.8888888889%;
  }
  .col-xl-17 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 94.4444444444%;
    flex: 0 0 94.4444444444%;
  }
  .offset-xl-17 {
    margin-left: 94.4444444444%;
  }
  .col-xl-18 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .offset-xl-18 {
    margin-left: 100%;
  }
  .col--noPT-xl {
    padding-top: 0 !important;
  }
  .col--noPL-xl {
    padding-left: 0 !important;
  }
  .col--noPR-xl {
    padding-right: 0 !important;
  }
  .col--noPB-xl {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 1499px) {
  .row--start-lg {
    justify-content: flex-start;
    text-align: start;
  }
  .row--center-lg {
    justify-content: center;
    text-align: center;
  }
  .row--end-lg {
    justify-content: flex-end;
    text-align: end;
  }
  .row--top-lg {
    align-items: flex-start;
  }
  .row--middle-lg {
    align-items: center;
  }
  .row--bottom-lg {
    align-items: flex-end;
  }
  .row--around-lg {
    justify-content: space-around;
  }
  .row--between-lg {
    justify-content: space-between;
  }
  .row--reverse-lg {
    flex-direction: row-reverse;
  }
  .col--first-lg {
    order: -1;
  }
  .col--last-lg {
    order: 1;
  }
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 5.5555555556%;
    flex: 0 0 5.5555555556%;
  }
  .offset-lg-1 {
    margin-left: 5.5555555556%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 11.1111111111%;
    flex: 0 0 11.1111111111%;
  }
  .offset-lg-2 {
    margin-left: 11.1111111111%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 16.6666666667%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 22.2222222222%;
    flex: 0 0 22.2222222222%;
  }
  .offset-lg-4 {
    margin-left: 22.2222222222%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 27.7777777778%;
    flex: 0 0 27.7777777778%;
  }
  .offset-lg-5 {
    margin-left: 27.7777777778%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .offset-lg-6 {
    margin-left: 33.3333333333%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 38.8888888889%;
    flex: 0 0 38.8888888889%;
  }
  .offset-lg-7 {
    margin-left: 38.8888888889%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 44.4444444444%;
    flex: 0 0 44.4444444444%;
  }
  .offset-lg-8 {
    margin-left: 44.4444444444%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .offset-lg-9 {
    margin-left: 50%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 55.5555555556%;
    flex: 0 0 55.5555555556%;
  }
  .offset-lg-10 {
    margin-left: 55.5555555556%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 61.1111111111%;
    flex: 0 0 61.1111111111%;
  }
  .offset-lg-11 {
    margin-left: 61.1111111111%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .offset-lg-12 {
    margin-left: 66.6666666667%;
  }
  .col-lg-13 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 72.2222222222%;
    flex: 0 0 72.2222222222%;
  }
  .offset-lg-13 {
    margin-left: 72.2222222222%;
  }
  .col-lg-14 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 77.7777777778%;
    flex: 0 0 77.7777777778%;
  }
  .offset-lg-14 {
    margin-left: 77.7777777778%;
  }
  .col-lg-15 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .offset-lg-15 {
    margin-left: 83.3333333333%;
  }
  .col-lg-16 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 88.8888888889%;
    flex: 0 0 88.8888888889%;
  }
  .offset-lg-16 {
    margin-left: 88.8888888889%;
  }
  .col-lg-17 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 94.4444444444%;
    flex: 0 0 94.4444444444%;
  }
  .offset-lg-17 {
    margin-left: 94.4444444444%;
  }
  .col-lg-18 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .offset-lg-18 {
    margin-left: 100%;
  }
  .col--noPT-lg {
    padding-top: 0 !important;
  }
  .col--noPL-lg {
    padding-left: 0 !important;
  }
  .col--noPR-lg {
    padding-right: 0 !important;
  }
  .col--noPB-lg {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 1299px) {
  .row--start-md {
    justify-content: flex-start;
    text-align: start;
  }
  .row--center-md {
    justify-content: center;
    text-align: center;
  }
  .row--end-md {
    justify-content: flex-end;
    text-align: end;
  }
  .row--top-md {
    align-items: flex-start;
  }
  .row--middle-md {
    align-items: center;
  }
  .row--bottom-md {
    align-items: flex-end;
  }
  .row--around-md {
    justify-content: space-around;
  }
  .row--between-md {
    justify-content: space-between;
  }
  .row--reverse-md {
    flex-direction: row-reverse;
  }
  .col--first-md {
    order: -1;
  }
  .col--last-md {
    order: 1;
  }
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 5.5555555556%;
    flex: 0 0 5.5555555556%;
  }
  .offset-md-1 {
    margin-left: 5.5555555556%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 11.1111111111%;
    flex: 0 0 11.1111111111%;
  }
  .offset-md-2 {
    margin-left: 11.1111111111%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 16.6666666667%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 22.2222222222%;
    flex: 0 0 22.2222222222%;
  }
  .offset-md-4 {
    margin-left: 22.2222222222%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 27.7777777778%;
    flex: 0 0 27.7777777778%;
  }
  .offset-md-5 {
    margin-left: 27.7777777778%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .offset-md-6 {
    margin-left: 33.3333333333%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 38.8888888889%;
    flex: 0 0 38.8888888889%;
  }
  .offset-md-7 {
    margin-left: 38.8888888889%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 44.4444444444%;
    flex: 0 0 44.4444444444%;
  }
  .offset-md-8 {
    margin-left: 44.4444444444%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .offset-md-9 {
    margin-left: 50%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 55.5555555556%;
    flex: 0 0 55.5555555556%;
  }
  .offset-md-10 {
    margin-left: 55.5555555556%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 61.1111111111%;
    flex: 0 0 61.1111111111%;
  }
  .offset-md-11 {
    margin-left: 61.1111111111%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .offset-md-12 {
    margin-left: 66.6666666667%;
  }
  .col-md-13 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 72.2222222222%;
    flex: 0 0 72.2222222222%;
  }
  .offset-md-13 {
    margin-left: 72.2222222222%;
  }
  .col-md-14 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 77.7777777778%;
    flex: 0 0 77.7777777778%;
  }
  .offset-md-14 {
    margin-left: 77.7777777778%;
  }
  .col-md-15 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .offset-md-15 {
    margin-left: 83.3333333333%;
  }
  .col-md-16 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 88.8888888889%;
    flex: 0 0 88.8888888889%;
  }
  .offset-md-16 {
    margin-left: 88.8888888889%;
  }
  .col-md-17 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 94.4444444444%;
    flex: 0 0 94.4444444444%;
  }
  .offset-md-17 {
    margin-left: 94.4444444444%;
  }
  .col-md-18 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .offset-md-18 {
    margin-left: 100%;
  }
  .col--noPT-md {
    padding-top: 0 !important;
  }
  .col--noPL-md {
    padding-left: 0 !important;
  }
  .col--noPR-md {
    padding-right: 0 !important;
  }
  .col--noPB-md {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 1099px) {
  .row--start-sm {
    justify-content: flex-start;
    text-align: start;
  }
  .row--center-sm {
    justify-content: center;
    text-align: center;
  }
  .row--end-sm {
    justify-content: flex-end;
    text-align: end;
  }
  .row--top-sm {
    align-items: flex-start;
  }
  .row--middle-sm {
    align-items: center;
  }
  .row--bottom-sm {
    align-items: flex-end;
  }
  .row--around-sm {
    justify-content: space-around;
  }
  .row--between-sm {
    justify-content: space-between;
  }
  .row--reverse-sm {
    flex-direction: row-reverse;
  }
  .col--first-sm {
    order: -1;
  }
  .col--last-sm {
    order: 1;
  }
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
  }
  .offset-sm-0 {
    margin-left: 0%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 5.5555555556%;
    flex: 0 0 5.5555555556%;
  }
  .offset-sm-1 {
    margin-left: 5.5555555556%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 11.1111111111%;
    flex: 0 0 11.1111111111%;
  }
  .offset-sm-2 {
    margin-left: 11.1111111111%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 16.6666666667%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 22.2222222222%;
    flex: 0 0 22.2222222222%;
  }
  .offset-sm-4 {
    margin-left: 22.2222222222%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 27.7777777778%;
    flex: 0 0 27.7777777778%;
  }
  .offset-sm-5 {
    margin-left: 27.7777777778%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .offset-sm-6 {
    margin-left: 33.3333333333%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 38.8888888889%;
    flex: 0 0 38.8888888889%;
  }
  .offset-sm-7 {
    margin-left: 38.8888888889%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 44.4444444444%;
    flex: 0 0 44.4444444444%;
  }
  .offset-sm-8 {
    margin-left: 44.4444444444%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .offset-sm-9 {
    margin-left: 50%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 55.5555555556%;
    flex: 0 0 55.5555555556%;
  }
  .offset-sm-10 {
    margin-left: 55.5555555556%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 61.1111111111%;
    flex: 0 0 61.1111111111%;
  }
  .offset-sm-11 {
    margin-left: 61.1111111111%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .offset-sm-12 {
    margin-left: 66.6666666667%;
  }
  .col-sm-13 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 72.2222222222%;
    flex: 0 0 72.2222222222%;
  }
  .offset-sm-13 {
    margin-left: 72.2222222222%;
  }
  .col-sm-14 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 77.7777777778%;
    flex: 0 0 77.7777777778%;
  }
  .offset-sm-14 {
    margin-left: 77.7777777778%;
  }
  .col-sm-15 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .offset-sm-15 {
    margin-left: 83.3333333333%;
  }
  .col-sm-16 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 88.8888888889%;
    flex: 0 0 88.8888888889%;
  }
  .offset-sm-16 {
    margin-left: 88.8888888889%;
  }
  .col-sm-17 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 94.4444444444%;
    flex: 0 0 94.4444444444%;
  }
  .offset-sm-17 {
    margin-left: 94.4444444444%;
  }
  .col-sm-18 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .offset-sm-18 {
    margin-left: 100%;
  }
  .col--noPT-sm {
    padding-top: 0 !important;
  }
  .col--noPL-sm {
    padding-left: 0 !important;
  }
  .col--noPR-sm {
    padding-right: 0 !important;
  }
  .col--noPB-sm {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .row--start-xs {
    justify-content: flex-start;
    text-align: start;
  }
  .row--center-xs {
    justify-content: center;
    text-align: center;
  }
  .row--end-xs {
    justify-content: flex-end;
    text-align: end;
  }
  .row--top-xs {
    align-items: flex-start;
  }
  .row--middle-xs {
    align-items: center;
  }
  .row--bottom-xs {
    align-items: flex-end;
  }
  .row--around-xs {
    justify-content: space-around;
  }
  .row--between-xs {
    justify-content: space-between;
  }
  .row--reverse-xs {
    flex-direction: row-reverse;
  }
  .col--first-xs {
    order: -1;
  }
  .col--last-xs {
    order: 1;
  }
  .col-xs {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
  }
  .offset-xs-0 {
    margin-left: 0%;
  }
  .col-xs-1 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 5.5555555556%;
    flex: 0 0 5.5555555556%;
  }
  .offset-xs-1 {
    margin-left: 5.5555555556%;
  }
  .col-xs-2 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 11.1111111111%;
    flex: 0 0 11.1111111111%;
  }
  .offset-xs-2 {
    margin-left: 11.1111111111%;
  }
  .col-xs-3 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .offset-xs-3 {
    margin-left: 16.6666666667%;
  }
  .col-xs-4 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 22.2222222222%;
    flex: 0 0 22.2222222222%;
  }
  .offset-xs-4 {
    margin-left: 22.2222222222%;
  }
  .col-xs-5 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 27.7777777778%;
    flex: 0 0 27.7777777778%;
  }
  .offset-xs-5 {
    margin-left: 27.7777777778%;
  }
  .col-xs-6 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .offset-xs-6 {
    margin-left: 33.3333333333%;
  }
  .col-xs-7 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 38.8888888889%;
    flex: 0 0 38.8888888889%;
  }
  .offset-xs-7 {
    margin-left: 38.8888888889%;
  }
  .col-xs-8 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 44.4444444444%;
    flex: 0 0 44.4444444444%;
  }
  .offset-xs-8 {
    margin-left: 44.4444444444%;
  }
  .col-xs-9 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .offset-xs-9 {
    margin-left: 50%;
  }
  .col-xs-10 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 55.5555555556%;
    flex: 0 0 55.5555555556%;
  }
  .offset-xs-10 {
    margin-left: 55.5555555556%;
  }
  .col-xs-11 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 61.1111111111%;
    flex: 0 0 61.1111111111%;
  }
  .offset-xs-11 {
    margin-left: 61.1111111111%;
  }
  .col-xs-12 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .offset-xs-12 {
    margin-left: 66.6666666667%;
  }
  .col-xs-13 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 72.2222222222%;
    flex: 0 0 72.2222222222%;
  }
  .offset-xs-13 {
    margin-left: 72.2222222222%;
  }
  .col-xs-14 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 77.7777777778%;
    flex: 0 0 77.7777777778%;
  }
  .offset-xs-14 {
    margin-left: 77.7777777778%;
  }
  .col-xs-15 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .offset-xs-15 {
    margin-left: 83.3333333333%;
  }
  .col-xs-16 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 88.8888888889%;
    flex: 0 0 88.8888888889%;
  }
  .offset-xs-16 {
    margin-left: 88.8888888889%;
  }
  .col-xs-17 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 94.4444444444%;
    flex: 0 0 94.4444444444%;
  }
  .offset-xs-17 {
    margin-left: 94.4444444444%;
  }
  .col-xs-18 {
    flex: 0 0 auto;
    padding: 0.75vh 0.75vw;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .offset-xs-18 {
    margin-left: 100%;
  }
  .col--noPT-xs {
    padding-top: 0 !important;
  }
  .col--noPL-xs {
    padding-left: 0 !important;
  }
  .col--noPR-xs {
    padding-right: 0 !important;
  }
  .col--noPB-xs {
    padding-bottom: 0 !important;
  }
}
.header {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ECECEC;
  overflow: hidden;
}
@media (max-width: 767px) {
  .header {
    min-height: calc(var(--vh, 1vh) * 100);
  }
}
@media (max-width: 767px) {
  .header.pSection {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }
}
.header_action {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .header_action {
    display: none;
  }
}
.header .container {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 25vh;
  padding-bottom: 12vh;
  pointer-events: none;
}
@media (max-width: 767px) {
  .header .container {
    justify-content: flex-end;
    pointer-events: all;
    padding-bottom: 60px;
  }
}
.header .sectionTitle {
  max-width: 37.4722222222vw;
  margin-left: 4.7777777778vw;
  pointer-events: none;
}
@media (max-width: 1299px) {
  .header .sectionTitle {
    max-width: 42.25vw;
  }
}
@media (max-width: 1099px) {
  .header .sectionTitle {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .header .sectionTitle {
    max-width: none;
    margin-left: 0;
    pointer-events: all;
  }
}
.header .sectionTitle .sectionTitle_footer {
  min-height: auto;
}
.header .sectionTitle a {
  position: relative;
  z-index: 10;
  pointer-events: all;
}
.header_download {
  position: relative;
  z-index: 5;
  pointer-events: all;
  margin-top: 2vh;
}
.header_download--withQuote {
  margin-left: 8.2vw;
}
@media (max-width: 1299px) {
  .header_download--withQuote {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .header_download--withQuote {
    margin-left: 0;
    margin-right: 0;
  }
}
.header .sectionQuote {
  opacity: 0;
}
@media (max-width: 767px) {
  .header .sectionQuote {
    display: none;
  }
}
.header_cover {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D41136;
}
@media (max-width: 767px) {
  .header_cover {
    display: none;
  }
}
.header_cover_background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}
.header_cover_logo {
  position: absolute;
  top: -300px;
  left: 65vw;
  color: #D41136;
  mix-blend-mode: lighten;
  z-index: 1;
  transition: top 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.header_behind {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}
.header_behind::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFF;
  opacity: 0.92;
}
@media (max-width: 767px) {
  .header_behind::after {
    background-color: #000;
    opacity: 0.5;
  }
}
.header--withCover.animated .header_cover {
  clip-path: inset(0 0 0 0);
  animation: animated 0.8s forwards;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 1299px) {
  .header--withCover.animated .header_cover {
    animation: animatedMd 0.8s forwards;
    animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}
.header--withCover.animated .header_cover_logo {
  top: 45%;
}
.header_empty {
  position: absolute;
  width: 47.0277777778vw;
  bottom: 10%;
  left: 32%;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.header_empty::before {
  content: "";
  display: block;
  padding-top: 67%;
}
.header_empty span::before, .header_empty span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.header_empty span::before {
  background: linear-gradient(to top right, transparent calc(50% - 2px), rgba(255, 255, 255, 0.6), transparent calc(50% + 2px));
}
.header_empty span::after {
  background: linear-gradient(to bottom right, transparent calc(50% - 2px), rgba(255, 255, 255, 0.6), transparent calc(50% + 2px));
}
.header .mobileHeaderButton {
  display: none;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .header .mobileHeaderButton {
    display: block;
  }
  .header .mobileHeaderButton svg {
    width: 30px;
    height: 69px;
    stroke: #FFF;
    stroke-width: 4px;
  }
}

@keyframes animated {
  100% {
    clip-path: inset(15% 11.9% 15% 55.6%);
  }
}
@keyframes animatedMd {
  100% {
    clip-path: inset(15% 7% 15% 60.5%);
  }
}
.footer {
  position: relative;
  text-align: center;
  padding: 12vh 0;
  color: #000;
  font-size: 0.6rem;
  line-height: 1.25;
  background: #fff;
}
.footer a {
  display: inline-block;
}
.footer a svg {
  stroke: #000;
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .footer a svg.icon-arrow-top {
    width: 45px;
    height: 105px;
  }
}
@media (hover: hover) {
  .footer a:hover svg {
    transform: translateY(-20px);
    opacity: 0.6;
  }
}
.footer p {
  margin-top: 3vh;
}

.pSection {
  position: relative;
  min-height: 100vh;
}
@media (max-width: 1099px) {
  .pSection {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .pSection {
    min-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    min-height: auto;
  }
}
.pSection_target {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.pSection_header {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 12vh;
  padding-bottom: 12vh;
}
@media (max-width: 767px) {
  .pSection_header {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 8vh;
    padding-bottom: 8vh;
  }
}
.pSection_header_inner {
  position: relative;
  z-index: 1;
  max-width: 82.9%;
  margin-left: 4.7777777778vw;
  margin-right: 9.5555555556vw;
}
@media (max-width: 1299px) {
  .pSection_header_inner {
    margin-right: 4.7777777778vw;
  }
}
@media (max-width: 1099px) {
  .pSection_header_inner {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .pSection_header_inner {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}
.pSection_header_cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 64vw;
  background-color: #232323;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .pSection_header_cover {
    width: auto;
    right: -55px;
    left: -55px;
  }
}
.pSection_header_cover::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.15;
}
.pSection_header--center {
  justify-content: center;
}
.pSection_header--top {
  justify-content: flex-start;
  padding-top: 25vh;
}
@media (max-width: 767px) {
  .pSection_header--top {
    padding-top: 8vh;
  }
}
@media (max-width: 767px) {
  .pSection_header--fullMobile {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    justify-content: flex-end;
    padding-top: 8vh;
    padding-bottom: 8vh;
  }
  .pSection_header--fullMobile.pSection_header--top {
    justify-content: flex-start;
  }
}
.pSection_content {
  padding-top: 12vh;
}
@media (max-width: 767px) {
  .pSection_content {
    padding-top: 8vh;
  }
}

.button, .sectionTitle_footer_link {
  position: relative;
  display: inline-block;
  color: #D41136;
  font-family: "Copperplate";
  font-size: 14px;
  line-height: 1;
  padding: 10px 10px;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(1, 0, 0, 1);
  overflow: hidden;
}
@media (max-width: 767px) {
  .button, .sectionTitle_footer_link {
    padding-left: 0;
    padding-right: 0;
  }
}
.button span, .sectionTitle_footer_link span {
  position: relative;
  z-index: 1;
}
.button::after, .sectionTitle_footer_link::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #D41136;
  transform: translateY(calc(100% - 2px));
  transform-origin: top center;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
}
@media (hover: hover) {
  .button:hover, .sectionTitle_footer_link:hover {
    color: #FFF;
  }
  .button:hover::after, .sectionTitle_footer_link:hover::after {
    transform: translateY(0);
  }
}
.button--light {
  color: #FFF;
}
.button--light::after {
  background-color: #FFF;
}
@media (hover: hover) {
  .button--light:hover {
    color: #D41136;
  }
}
.button--dark {
  color: #000;
}
.button--dark::after {
  background-color: #000;
}
@media (hover: hover) {
  .button--dark:hover {
    color: #FFF;
  }
}

.toggleGrid {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: aqua;
  border: 0;
  box-shadow: 0 35px 40px 0 rgba(50, 51, 94, 0.25);
  cursor: pointer;
}
.toggleGrid svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  fill: #FFF;
}

.gridDebug {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  pointer-events: none;
  display: none;
}
.gridDebug[data-state="1"] {
  opacity: 0.15;
  display: block;
}
.gridDebug[data-state="2"] {
  opacity: 0.4;
  display: block;
}
.gridDebug[data-state="3"] {
  display: block;
  opacity: 0.6;
}
.gridDebug[data-state="3"] .colOverlay {
  background: none;
  border-left: 1px solid aqua;
  border-right: 1px solid aqua;
}
.gridDebug .container {
  height: 100%;
}
.gridDebug .row {
  height: 100%;
}
.gridDebug .row .col-1 {
  padding-top: 0;
  padding-bottom: 0;
}
.gridDebug .colOverlay {
  display: block;
  height: 100%;
  background: aqua;
}

.sectionTitle {
  position: relative;
  color: #000;
}
.sectionTitle_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.sectionTitle_header {
  display: flex;
  align-items: flex-start;
}
.sectionTitle_header_content {
  position: relative;
  flex: 1;
  text-transform: lowercase;
  font-family: "Copperplate";
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  padding: 10px 0;
}
.sectionTitle_header_content_title {
  opacity: 0;
}
@media (max-width: 767px) {
  .sectionTitle_header_content_title {
    opacity: 1;
  }
}
.sectionTitle_header_content_title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #6D7278;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .sectionTitle_header_content_title::before {
    margin-right: 15px;
  }
}
.sectionTitle_header_content_separator {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background-color: currentColor;
}
@media (max-width: 767px) {
  .sectionTitle_header_content_separator {
    transform: scaleX(1);
  }
}
.sectionTitle_header_additional {
  opacity: 0;
  margin-left: 20px;
  font-size: 3.5rem;
  line-height: 1;
}
@media (max-width: 1299px) {
  .sectionTitle_header_additional {
    font-size: 2.7777777778rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .sectionTitle_header_additional {
    opacity: 1;
    font-size: 1.875rem;
    line-height: 1.3333333333;
    margin-left: 5px;
  }
}
.sectionTitle_header_additional--counter {
  width: 140px;
  text-align: right;
}
.sectionTitle_content {
  padding-top: 5vh;
  padding-bottom: 4.5vh;
  font-size: 3.5rem;
  line-height: 1;
  opacity: 0;
}
@media (max-width: 1299px) {
  .sectionTitle_content {
    font-size: 2.7777777778rem;
    line-height: 1;
    padding-top: 4vh;
    padding-bottom: 3vh;
  }
}
@media (max-width: 767px) {
  .sectionTitle_content {
    padding-bottom: 2vh;
    font-size: 1.75rem;
    line-height: 1;
    opacity: 1;
  }
}
.sectionTitle_footer {
  display: flex;
  align-items: flex-end;
  min-height: 40px;
}
.sectionTitle_footer_separator {
  flex: 1;
  border-bottom: 2px solid currentColor;
  transform-origin: left;
  transform: scaleX(0);
}
@media (max-width: 767px) {
  .sectionTitle_footer_separator {
    display: none;
  }
}
.sectionTitle_footer_link {
  margin-left: 20px;
  opacity: 0;
}
@media (max-width: 767px) {
  .sectionTitle_footer_link {
    opacity: 1;
    margin-left: 0;
  }
}
.sectionTitle_footer_link--pulse::after {
  animation: buttonPulse 1.5s forwards;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 767px) {
  .sectionTitle_footer--showSeparatorXs .sectionTitle_footer_separator {
    display: block;
    transform: scaleX(1);
  }
  .sectionTitle_footer--showSeparatorXs .sectionTitle_footer_link {
    margin-left: 20px;
  }
}
.sectionTitle--light {
  color: #FFF;
}
.sectionTitle--light .sectionTitle_header_content::before {
  background-color: #FFF;
}
@media (hover: hover) {
  .sectionTitle:hover .sectionTitle_footer_link {
    color: #FFF;
  }
  .sectionTitle:hover .sectionTitle_footer_link::after {
    transform: scaleY(1);
  }
}

@keyframes buttonPulse {
  50% {
    transform: translateY(-101%);
  }
}
.sectionQuote {
  position: relative;
  margin-top: 2vh;
  margin-left: 8.2vw;
  margin-right: 4.7777777778vw;
  padding-bottom: 5px;
}
@media (max-width: 1299px) {
  .sectionQuote {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .sectionQuote {
    margin-left: 0;
    margin-right: 0;
  }
}
.sectionQuote_icon {
  position: absolute;
  top: -10px;
  right: calc(100% + 35px);
  color: #C3C3C3;
}
@media (max-width: 767px) {
  .sectionQuote_icon {
    transform: scale(0.85);
    top: -20px;
    right: calc(100% + 10px);
  }
}
.sectionQuote_content {
  color: #828282;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 700;
}
.sectionQuote_content strong, .sectionQuote_content b {
  color: #D41136;
}
@media (max-width: 1299px) {
  .sectionQuote_content {
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}
@media (max-width: 767px) {
  .sectionQuote_content {
    font-size: 1rem;
    line-height: 1;
  }
  .sectionQuote_content br, .sectionQuote_content br::after {
    content: " ";
  }
}
.sectionQuote_link {
  margin-top: 3vh;
}
.sectionQuote--light .sectionQuote_icon {
  color: rgba(255, 255, 255, 0.4);
}
.sectionQuote--light .sectionQuote_content {
  color: rgba(255, 255, 255, 0.4);
}

.newsBloc {
  position: relative;
  margin-bottom: 8vh;
  color: #000;
}
.newsBloc_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}
.newsBloc_date {
  font-size: 14px;
  line-height: 14px;
  color: #000;
  transition: color 0.2s linear;
}
.newsBloc_type {
  font-family: "Copperplate";
  color: #6D7278;
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  height: 40px;
  flex: 1;
}
@media (max-width: 767px) {
  .newsBloc_type {
    color: #D41136;
  }
}
.newsBloc_type_fake {
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.newsBloc_type_label {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(var(--label-size));
}
.newsBloc_title {
  font-size: 2rem;
  line-height: 1.25;
  color: #c3c3c3;
  margin-top: 4vh;
  margin-bottom: 2vh;
  transition: color 0.2s linear;
}
@media (max-width: 1299px) {
  .newsBloc_title {
    font-size: 1.7777777778rem;
    line-height: 1.1875;
  }
}
@media (max-width: 767px) {
  .newsBloc_title {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
.newsBloc_excerpt {
  font-size: 0.9rem;
  line-height: 2;
  transition: opacity 0.2s linear;
}
@media (max-width: 767px) {
  .newsBloc_excerpt {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}
.newsBloc_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media (hover: hover) {
  .newsBloc:hover .newsBloc_date {
    color: #D41136;
  }
  .newsBloc:hover .newsBloc_title {
    color: #D41136;
  }
  .newsBloc:hover .newsBloc_type_label {
    transform: translateX(0);
  }
}
@media (hover: hover) and (max-width: 767px) {
  .newsBloc:hover .newsBloc_type_label {
    transform: translateX(var(--label-size));
  }
}

.newsBlocList {
  position: relative;
  padding-top: 3vh;
  margin-bottom: 9vh;
  color: #000;
}
@media (max-width: 767px) {
  .newsBlocList {
    padding-top: 0;
    margin-bottom: 9vh;
  }
}
.newsBlocList_header {
  font-family: "Copperplate";
  color: #D41136;
  font-size: 1.75rem;
  line-height: 1.2857142857;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  margin-bottom: 5px;
  transform: translateY(-10px);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (max-width: 1299px) {
  .newsBlocList_header {
    font-size: 1.3333333333rem;
    line-height: 1.25;
  }
}
@media (max-width: 767px) {
  .newsBlocList_header {
    opacity: 1;
    transform: translateY(0);
    font-size: 1.25rem;
    line-height: 1;
  }
}
.newsBlocList_title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #000;
  opacity: 0.3;
  margin-bottom: 2vh;
  transition: opacity 0.15s linear;
}
@media (max-width: 1299px) {
  .newsBlocList_title {
    font-size: 2rem;
    line-height: 1.1111111111;
  }
}
@media (max-width: 767px) {
  .newsBlocList_title {
    opacity: 1;
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }
}
.newsBlocList_title span {
  position: relative;
  display: inline;
  transition: box-shadow 0.15s linear;
  box-shadow: inset 0 0 0 0 #000;
}
.newsBlocList_excerpt {
  font-size: 0.9rem;
  line-height: 2;
  opacity: 0.3;
  transition: opacity 0.2s linear;
}
@media (max-width: 767px) {
  .newsBlocList_excerpt {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}
.newsBlocList_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media (hover: hover) {
  .newsBlocList:hover .newsBlocList_header {
    opacity: 1;
    transform: translateY(0);
  }
  .newsBlocList:hover .newsBlocList_title {
    opacity: 1;
  }
  .newsBlocList:hover .newsBlocList_title span {
    box-shadow: inset 0 -3px 0 0 #000;
  }
  .newsBlocList:hover .newsBlocList_excerpt {
    opacity: 1;
  }
}

.newsBlocHeader {
  position: relative;
  color: #FFF;
  pointer-events: all;
}
.newsBlocHeader_title {
  font-size: 3.5rem;
  line-height: 1;
  color: #FFF;
}
@media (max-width: 1299px) {
  .newsBlocHeader_title {
    font-size: 2.2222222222rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .newsBlocHeader_title {
    font-size: 1.875rem;
    line-height: 1;
  }
}
.newsBlocHeader_title span {
  position: relative;
  display: inline;
  transition: box-shadow 0.15s linear;
  box-shadow: inset 0 0 0 0 #FFF;
}
.newsBlocHeader_footer {
  font-family: "Copperplate";
  color: #D41136;
  font-size: 1.75rem;
  line-height: 1.2857142857;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 4vh;
}
@media (max-width: 1299px) {
  .newsBlocHeader_footer {
    margin-top: 3vh;
    font-size: 1.3333333333rem;
    line-height: 1.25;
  }
}
@media (max-width: 767px) {
  .newsBlocHeader_footer {
    margin-top: 2vh;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.newsBlocHeader_link {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: all;
}
@media (hover: hover) {
  .newsBlocHeader:hover .newsBlocHeader_title span {
    box-shadow: inset 0 -3px 0 0 #FFF;
  }
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}
.slideshow_item {
  position: absolute;
  width: 45vw;
  top: 101vh;
  overflow: hidden;
  will-change: transform;
}
@media (max-width: 767px) {
  .slideshow_item {
    width: 80vw;
  }
}
.slideshow_item_cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}
.slideshow_item::before {
  content: "";
  display: block;
  padding-top: 67%;
}
.slideshow_item::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFF;
  opacity: 0.2;
}
.slideshow_item:nth-child(even) {
  width: 30vw;
}
@media (max-width: 767px) {
  .slideshow_item:nth-child(even) {
    width: 65vw;
  }
}
.slideshow_item:nth-child(even)::before {
  padding-top: 115%;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  overflow: hidden;
  z-index: 0;
}
.carousel--nb .carousel_slide_cover_img {
  filter: grayscale(100%);
}
.carousel_slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  will-change: transform;
}
.carousel_slide_cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  will-change: transform;
}
.carousel_slide_cover_img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}
.carousel_counter {
  position: relative;
  height: 70px;
  padding-left: 64px;
  font-size: 3.5rem;
  line-height: 1;
  line-height: 70px;
  overflow: hidden;
}
@media (max-width: 1299px) {
  .carousel_counter {
    font-size: 2.7777777778rem;
    line-height: 1;
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .carousel_counter {
    height: 40px;
    line-height: 40px;
    padding-left: 32px;
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }
}
.carousel_counter_list {
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  width: 60px;
  will-change: transform;
}
@media (max-width: 767px) {
  .carousel_counter_list {
    width: 30px;
  }
}

.number {
  position: relative;
  border-top: 2px solid #FFF;
  color: #FFF;
  padding-top: 2vh;
  opacity: 0.3;
  transition: opacity 0.4s linear;
}
@media (max-width: 767px) {
  .number {
    opacity: 1;
  }
}
.number.active {
  opacity: 1;
}
.number + .number {
  margin-top: 9vh;
}
.number_pad {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #D41136;
}
.number_value {
  margin-top: 3vh;
  font-size: 7rem;
  line-height: 0.7857142857;
  font-family: "Copperplate";
}
@media (max-width: 1299px) {
  .number_value {
    font-size: 5rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .number_value {
    font-size: 4.0625rem;
    line-height: 1;
    margin-top: 1.5vh;
    letter-spacing: -0.05em;
    width: 110%;
  }
}
.number_content {
  margin-top: 2vh;
  color: #878787;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .number_content {
    margin-top: 1.5vh;
    font-size: 0.875rem;
    line-height: 1.5714285714;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.publicationBloc {
  position: relative;
  overflow: hidden;
  color: #FFF;
}
.publicationBloc + .publicationBloc {
  margin-top: 8vh;
}
.publicationBloc::after {
  content: "";
  display: block;
  padding-top: 120%;
}
.publicationBloc_coverWrap {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transition: transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.publicationBloc_cover {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #FFF;
  filter: grayscale(100%);
  transition: transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.publicationBloc_cover::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.3;
}
.publicationBloc_link {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.publicationBloc_content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10% 12% 15%;
}
@media (max-width: 1299px) {
  .publicationBloc_content {
    padding: 7% 12% 12%;
  }
}
@media (max-width: 767px) {
  .publicationBloc_content {
    padding: 10%;
  }
}
.publicationBloc_surtitle {
  font-family: "Copperplate";
  font-size: 1.75rem;
  line-height: 1;
  padding-bottom: 2vh;
  margin-bottom: 2vh;
  border-bottom: 2px solid #FFF;
}
@media (max-width: 1299px) {
  .publicationBloc_surtitle {
    font-size: 1.5555555556rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .publicationBloc_surtitle {
    font-size: 1.375rem;
    line-height: 1;
  }
}
.publicationBloc_surtitle strong {
  color: #D41136;
  font-weight: 400;
}
.publicationBloc_title {
  font-size: 1.25rem;
  line-height: 1.2;
}
@media (max-width: 1299px) {
  .publicationBloc_title {
    font-size: 1.1111111111rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .publicationBloc_title {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
@media (hover: hover) {
  .publicationBloc:hover .publicationBloc_coverWrap {
    transform: scale(0.9);
  }
  .publicationBloc:hover .publicationBloc_cover {
    transform: scale(1.25);
    filter: grayscale(0%);
  }
}

/**
 * Swiper 6.8.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 23, 2021
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-pagination {
  position: relative;
  bottom: auto;
  left: auto;
  margin-top: 30px;
}
.swiper-pagination-bullet {
  background-color: #CDCDCD;
  opacity: 1;
  margin: 0 10px !important;
}
.swiper-pagination-bullet-active {
  background-color: #D41136;
}

.textRotator {
  position: relative;
  overflow: hidden;
}
.textRotator_item {
  position: absolute;
  transform: translateY(60%);
  opacity: 0;
  will-change: transform;
}
.textRotator_item--first {
  position: relative;
  transform: none;
  opacity: 1;
}

.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  margin-top: -40px;
  margin-left: -40px;
  transform-origin: center center;
  color: #FFF;
  mix-blend-mode: exclusion;
  backface-visibility: hidden;
}
.cursorIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  stroke: currentColor;
  fill: currentColor;
  transition: opacity 0.2s linear;
}
.cursorIcon--header {
  top: auto;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.cursor[data-cursor=popin] {
  mix-blend-mode: normal;
}

html[cursor-active] * {
  cursor: none;
}

html.touch .cursor {
  display: none;
}

.splitQuote .word {
  opacity: 0.15;
}
@media (max-width: 767px) {
  .splitQuote .word {
    opacity: 1;
  }
}

.popin {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
}
.popin--opened {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 767px) {
  .popin .container {
    padding-left: 0;
    padding-right: 52px;
  }
}
.popin_background {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(212, 17, 54, 0.94);
  opacity: 0;
  cursor: pointer;
}
.popin_scroller {
  padding: 22vh 0 7vh 0;
}
@media (max-width: 1099px) {
  .popin_scroller {
    padding: 10vh 0 5vh 0;
  }
}
.popin_box {
  position: relative;
  z-index: 1;
  background-color: #FFF;
  min-height: 86vh;
  overflow: hidden;
  width: 49.15%;
  margin-left: 16.95%;
}
@media (max-width: 1299px) {
  .popin_box {
    width: 60.45%;
  }
}
@media (max-width: 1099px) {
  .popin_box {
    width: 80%;
    margin-left: 10%;
  }
}
@media (max-width: 767px) {
  .popin_box {
    width: 100%;
    margin-left: 0;
  }
}
.popin_loading {
  content: "";
  position: absolute;
  z-index: 1;
  top: 7vh;
  left: 50%;
  margin-left: -30px;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  animation: rotate 0.5s linear infinite;
  border-radius: 100%;
  border-top: 2px solid #CCC;
  border-bottom: 2px solid transparent;
  border-left: 2px solid #CCC;
  border-right: 2px solid transparent;
  opacity: 0;
  transition: opacity 0.2s linear;
}
@media (max-width: 767px) {
  .popin_loading {
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    top: 12vh;
  }
}
.popin_loading--visible {
  opacity: 1;
}
.popin_content {
  opacity: 0;
  transition: opacity 0.2s linear;
}
.popin_content--visible {
  opacity: 1;
}
.popin_close {
  position: fixed;
  top: 9vh;
  left: calc(100% - 25px);
  color: #FFF;
  font-family: "Copperplate";
  text-transform: uppercase;
  font-size: 20px;
  text-decoration: underline;
  line-height: 1;
  transform: rotate(90deg);
  transform-origin: center left;
  display: none;
}
@media (max-width: 767px) {
  .popin_close {
    display: block;
  }
}

.pNews {
  padding: 4.7777777778vw;
}
@media (max-width: 767px) {
  .pNews {
    padding: 40px 25px 0 50px;
  }
}
.pNews_surtitle {
  font-family: "Copperplate";
  font-size: 1.2rem;
  line-height: 1;
  color: #D41136;
  padding-bottom: 4vh;
  margin-bottom: 4vh;
  border-bottom: 2px solid #979797;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .pNews_surtitle {
    font-size: 0.875rem;
    line-height: 1;
    padding-bottom: 2vh;
    margin-bottom: 2vh;
  }
}
.pNews_title {
  font-size: 3.2rem;
  line-height: 1.125;
  color: #000;
  margin-bottom: 4vh;
}
@media (max-width: 1299px) {
  .pNews_title {
    font-size: 2.7777777778rem;
    line-height: 1.08;
  }
}
@media (max-width: 1099px) {
  .pNews_title {
    font-size: 2.5rem;
    line-height: 1.15;
  }
}
@media (max-width: 767px) {
  .pNews_title {
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }
}
.pNews_video {
  margin-bottom: 4vh;
}
.pNews_video .plyr__video-wrapper {
  filter: grayscale(100%);
}
@media (max-width: 767px) {
  .pNews_dateAndType {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.pNews_date {
  font-size: 0.7rem;
  line-height: 1.2142857143;
  color: #000;
  margin-bottom: 1vh;
}
@media (max-width: 767px) {
  .pNews_date {
    margin-bottom: 0;
  }
}
.pNews_type {
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Copperplate";
  color: #D41136;
  text-transform: uppercase;
}
.pNews_baseline {
  font-size: 1.35rem;
  line-height: 1.4074074074;
  color: #989898;
  margin-bottom: 2vh;
}
.pNews_content {
  font-size: 0.8rem;
  line-height: 1.6875;
  color: #989898;
}
.pNews_sharer {
  display: flex;
  align-items: flex-end;
  margin-top: 4vh;
  margin-bottom: 4vh;
}
@media (max-width: 767px) {
  .pNews_sharer {
    margin-top: 1.5vh;
    margin-bottom: 40px;
  }
}
.pNews_sharer_separator {
  flex: 1;
  height: 2px;
  background-color: #979797;
}
@media (max-width: 767px) {
  .pNews_sharer_separator {
    display: none;
  }
}
.pNews_sharer_button {
  width: 180px;
  font-size: 0;
  text-align: right;
}
@media (max-width: 767px) {
  .pNews_sharer_button {
    width: auto;
  }
}
.pNews_sharer_button .button {
  font-size: 0.8rem;
  line-height: 1;
  width: 100px;
  text-align: center;
}
@media (max-width: 767px) {
  .pNews_sharer_button .button {
    width: auto;
  }
}
.pNews_related {
  position: relative;
  width: calc(100% - 100px);
  padding: 40px 0;
}
@media (max-width: 767px) {
  .pNews_related {
    width: 100%;
  }
}
.pNews_related::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25px;
  left: -50px;
  background: #ECECEC;
  display: none;
}
@media (max-width: 767px) {
  .pNews_related::before {
    display: block;
  }
}
.pNews_related .relatedCarousel {
  position: relative;
  overflow: visible;
}
.pNews_related .relatedCarousel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100vw;
  background-color: #FFF;
  z-index: 2;
}
@media (max-width: 767px) {
  .pNews_related .relatedCarousel::before {
    display: none;
  }
}
.pNews_related .relatedCarousel .swiper-slide .newsBloc {
  margin-right: 80px;
  margin-bottom: 0;
  opacity: 0.3;
  transition: opacity 0.2s linear;
}
@media (max-width: 767px) {
  .pNews_related .relatedCarousel .swiper-slide .newsBloc {
    margin-right: 6vw;
  }
}
@media (max-width: 767px) {
  .pNews_related .relatedCarousel .swiper-slide .newsBloc_title {
    font-size: 1.625rem;
    line-height: 1.1538461538;
  }
}
.pNews_related .relatedCarousel .swiper-slide.swiper-slide-active .newsBloc {
  opacity: 1;
}

@keyframes plyr-progress {
  to {
    background-position: 25px 0;
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: 1.7;
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
}

.plyr audio, .plyr iframe, .plyr video {
  display: block;
  height: 100%;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *, .plyr--full-ui :after, .plyr--full-ui :before {
  box-sizing: inherit;
}

.plyr--full-ui a, .plyr--full-ui button, .plyr--full-ui input, .plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5464;
  background: var(--plyr-badge-background, #4a5464);
  border-radius: 2px;
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: #fff;
  color: var(--plyr-badge-text-color, #fff);
  font-size: 9px;
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 15px;
    font-size: var(--plyr-font-size-base, 15px);
    padding: 20px;
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
    font-size: var(--plyr-font-size-large, 18px);
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #fff;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: transparent;
  border: 0;
  border-radius: 3px;
  border-radius: var(--plyr-control-radius, 3px);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  fill: currentColor;
  display: block;
  height: 18px;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: 18px;
  width: var(--plyr-control-icon-size, 18px);
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  outline: 3px dotted #D41136;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #D41136))) dotted 3px;
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed, .plyr__control.plyr__control--pressed .label--not-pressed, .plyr__control:not(.plyr__control--pressed) .icon--pressed, .plyr__control:not(.plyr__control--pressed) .label--pressed, a.plyr__control:after, a.plyr__control:before {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time, .plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr [data-plyr=airplay], .plyr [data-plyr=captions], .plyr [data-plyr=fullscreen], .plyr [data-plyr=pip], .plyr__controls:empty {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay], .plyr--captions-enabled [data-plyr=captions], .plyr--fullscreen-enabled [data-plyr=fullscreen], .plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: hsla(0, 0%, 100%, 0.9);
  background: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  font-size: 15px;
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container:after {
  border: 4px solid transparent;
  border-top-color: hsla(0, 0%, 100%, 0.9);
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: 14px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7 - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container [role=menuitem], .plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child, .plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  display: flex;
  font-size: 13px;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: 4.66667px 10.5px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7 / 1.5) calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control:after {
  border: 4px solid transparent;
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
  padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
}

.plyr__menu__container .plyr__control--forward:after {
  border-left-color: #728197;
  border-left-color: var(--plyr-menu-arrow-color, #728197);
  right: 6.5px;
  right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus:after, .plyr__menu__container .plyr__control--forward:hover:after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: 7px;
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: 3.5px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  padding-left: 28px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
  position: relative;
  width: calc(100% - 14px);
  width: calc(100% - var(--plyr-control-spacing, 10px) * 0.7 * 2);
}

.plyr__menu__container .plyr__control--back:after {
  border-right-color: #728197;
  border-right-color: var(--plyr-menu-arrow-color, #728197);
  left: 6.5px;
  left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--back:before {
  background: #dcdfe5;
  background: var(--plyr-menu-back-border-color, #dcdfe5);
  box-shadow: 0 1px 0 #fff;
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: 3.5px;
  margin-top: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus:after, .plyr__menu__container .plyr__control--back:hover:after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after, .plyr__menu__container .plyr__control[role=menuitemradio]:before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]:before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before {
  background: #D41136;
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, #D41136)));
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus:before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover:before {
  background: rgba(35, 40, 47, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -9px;
  margin-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * -1 + 2);
  overflow: hidden;
  padding-left: 24.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border: 0;
  border-radius: 26px;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: #D41136;
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, #D41136)));
  display: block;
  height: 19px;
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  background-image: linear-gradient(90deg, currentColor 0, transparent 0);
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  margin-top: -4px;
  margin-top: calc(var(--plyr-range-thumb-height, 13px) / 2 * -1 - var(--plyr-range-track-height, 5px) / 2 * -1);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -moz-user-select: none;
       user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
}

.plyr--full-ui input[type=range]::-ms-track {
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper, .plyr--full-ui input[type=range]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: transparent;
  background: currentColor;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  outline: 3px dotted #D41136;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #D41136))) dotted 3px;
  outline-offset: 2px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  outline: 3px dotted #D41136;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #D41136))) dotted 3px;
  outline-offset: 2px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  outline: 3px dotted #D41136;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #D41136))) dotted 3px;
  outline-offset: 2px;
}

.plyr__poster {
  background-color: #000;
  background-color: var(--plyr-video-background, var(--plyr-video-background, #000));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time:before {
  content: "⁄";
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr__tooltip {
  background: hsla(0, 0%, 100%, 0.9);
  background: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  border-radius: 3px;
  border-radius: var(--plyr-tooltip-radius, 3px);
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: #4a5464;
  color: var(--plyr-tooltip-color, #4a5464);
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 5px 7.5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip:before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid hsla(0, 0%, 100%, 0.9);
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip, .plyr__controls > .plyr__control:first-child .plyr__tooltip {
  left: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip:before, .plyr__controls > .plyr__control:first-child .plyr__tooltip:before {
  left: 16px;
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip:before {
  left: auto;
  right: 16px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0) scale(1);
}

.plyr__progress {
  left: 6.5px;
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: 13px;
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}

.plyr__progress__buffer, .plyr__progress input[type=range] {
  margin-left: -6.5px;
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: -6.5px;
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + 13px);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: -2.5px;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 40, 47, 0.6) 25%, transparent 0, transparent 50%, rgba(35, 40, 47, 0.6) 0, rgba(35, 40, 47, 0.6) 75%, transparent 0, transparent);
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: hsla(0, 0%, 100%, 0.25);
  background-color: var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__volume {
  align-items: center;
  display: flex;
  max-width: 110px;
  min-width: 80px;
  position: relative;
  width: 20%;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: 5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  position: relative;
  z-index: 2;
}

.plyr--is-ios .plyr__volume {
  min-width: 0;
  width: auto;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: #fff;
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: #4a5464;
  color: var(--plyr-audio-control-color, #4a5464);
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: #D41136;
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #D41136)));
  color: #fff;
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 200, 209, 0.6);
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr--video {
  background: #000;
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}

@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}
.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  background: var(--plyr-video-controls-background, linear-gradient(transparent, rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: 5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: 20px;
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px);
    padding-top: 35px;
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #D41136;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #D41136)));
  color: #fff;
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: #D41136;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #D41136)));
  border: 0;
  border-radius: 100%;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: 15px;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus, .plyr__control--overlaid:hover {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: hsla(0, 0%, 100%, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: hsla(0, 0%, 100%, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: hsla(0, 0%, 100%, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px 0 0 0 1px rgba(35, 40, 47, 0.15) rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}

.plyr--video .plyr__progress__buffer {
  color: hsla(0, 0%, 100%, 0.25);
  color: var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25));
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div, .plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads:after {
  background: #23282f;
  border-radius: 2px;
  bottom: 10px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}

.plyr__ads:empty:after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: hsla(0, 0%, 100%, 0.9);
  background-color: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 3px;
  padding: var(--plyr-tooltip-radius, 3px);
  pointer-events: none;
  position: absolute;
  transform: translateY(10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0) scale(1);
}

.plyr__preview-thumb:before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid hsla(0, 0%, 100%, 0.9);
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c8d1;
  border-radius: 2px;
  border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
  color: #fff;
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
  padding: 3px 6px;
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  border: 0 !important;
  height: 1px !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

.anchorsList {
  margin-top: 4vh;
}
.anchorsList > li {
  border-bottom: 2px solid #000;
}
.anchorsList > li:first-child {
  border-top: 2px solid #000;
}
.anchorsList > li a {
  position: relative;
  display: block;
  font-size: 2rem;
  line-height: 1;
  padding-top: 4vh;
  padding-bottom: 4vh;
  text-decoration: none;
  transition: color 0.15s linear;
}
@media (max-width: 1299px) {
  .anchorsList > li a {
    font-size: 1.6666666667rem;
    line-height: 1;
  }
}
.anchorsList > li a, .anchorsList > li a:visited {
  color: rgba(0, 0, 0, 0.4);
}
.anchorsList > li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 45px);
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin-top: -5px;
  background-color: #D41136;
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: scale(0);
  transform-origin: center center;
}
@media (hover: hover) {
  .anchorsList > li a:hover {
    color: #000;
    text-decoration: none;
  }
  .anchorsList > li a:hover::before {
    transform: scale(1);
  }
}

.podcastPlayer {
  position: fixed;
  bottom: 3.5vw;
  left: 3.5vw;
  z-index: 15;
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .podcastPlayer {
    bottom: 10px;
    left: auto;
    right: 10px;
    transform: scale(0.7);
    transform-origin: bottom right;
  }
}
.podcastPlayer_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/cabinet.svg);
  background-size: cover;
  animation: rotate 15s linear infinite;
}
.podcastPlayer_progress {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid #D41136;
  border-radius: 50%;
  transition: background-color 0.2s linear;
}
.podcastPlayer_progressBar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.podcastPlayer_progressBar_bar {
  stroke-dashoffset: 214px;
  stroke: #D41136;
  stroke-width: 3px;
  transition: stroke-dashoffset 1s linear;
}
.podcastPlayer_icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s linear;
}
.podcastPlayer_icon path, .podcastPlayer_icon rect {
  stroke: #D41136;
  transition: stroke 0.2s linear;
}
.podcastPlayer_icon_hover {
  opacity: 0;
  transition: opacity 0.2s linear;
}
.podcastPlayer_time {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  right: 0;
  height: 28px;
  margin-top: -14px;
  font-size: 0.6rem;
  line-height: 1.8;
  line-height: 28px;
  text-align: center;
  color: #D41136;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.podcastPlayer_toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 50%;
  transition: 0.4s transform cubic-bezier(0.34, 1.56, 0.64, 1);
}
.podcastPlayer_toggle:active {
  transform: scale(0.8);
}
.podcastPlayer_toggle:hover .podcastPlayer_progress {
  background-color: #D41136;
}
.podcastPlayer_toggle:hover .podcastPlayer_icon path, .podcastPlayer_toggle:hover .podcastPlayer_icon rect {
  stroke: #FFF;
}
.podcastPlayer_toggle:hover .podcastPlayer_icon_hover {
  opacity: 1;
}
.podcastPlayer_toggle:hover .podcastPlayer_time {
  color: #FFF;
}
.podcastPlayer_toggle:hover .podcastPlayer_progressBar_bar {
  stroke: #FFF;
}
.podcastPlayer--playing .podcastPlayer_icon {
  opacity: 0;
}
.podcastPlayer--playing .podcastPlayer_time {
  opacity: 1;
}
.podcastPlayer--playing .podcastPlayer_progressBar {
  opacity: 1;
}

.webinarBloc {
  margin: 7.5vh 25% 0 25%;
}
@media (max-width: 767px) {
  .webinarBloc {
    margin-left: 20px;
    margin-right: 0;
    margin-top: 80px;
  }
}
.webinarBloc_surtitle {
  font-family: "Copperplate";
  text-transform: uppercase;
  font-size: 0.7rem;
  line-height: 1.1428571429;
  font-weight: 700;
  color: #D41136;
  margin-bottom: 10px;
}
.webinarBloc_title {
  font-family: "Copperplate";
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 0.8333333333;
  font-weight: 700;
  margin-bottom: 20px;
}
.webinarBloc_content {
  font-size: 0.7rem;
  line-height: 1.7142857143;
  margin-bottom: 10px;
}
.webinarBloc_link {
  display: flex;
  align-items: flex-end;
}
.webinarBloc_link > div {
  width: calc(50% - 35px);
  height: 1px;
  background-color: #FFF;
  margin-right: 50px;
}
@media (max-width: 767px) {
  .webinarBloc_link > div {
    width: auto;
    flex: 1;
    margin-right: 20px;
  }
}

lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  max-width: none;
}

/* gradient */
lite-youtube::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
  background-position: top;
  background-repeat: repeat-x;
  height: 60px;
  padding-bottom: 50px;
  width: 100%;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

/* responsive iframe with a 16:9 aspect ratio
    thanks https://css-tricks.com/responsive-iframes/
  */
lite-youtube::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}

/* play button */
lite-youtube > .lty-playbtn {
  width: 68px;
  height: 48px;
  position: absolute;
  cursor: pointer;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  left: 50%;
  z-index: 1;
  background-color: transparent;
  /* YT's actual play button svg */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 68 48"><path fill="%23f00" fill-opacity="0.8" d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z"></path><path d="M 45,24 27,14 27,34" fill="%23fff"></path></svg>');
  filter: grayscale(100%);
  transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
  border: none;
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
  filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
  cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}

.lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

lite-youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}
@media (min-aspect-ratio: 16/9) {
  lite-youtube {
    height: 400%;
    top: -150%;
  }
}
@media (max-aspect-ratio: 16/9) {
  lite-youtube {
    width: 400%;
    left: -150%;
  }
}

.hp_intro {
  min-height: 300vh;
  background-color: #ECECEC;
  z-index: 3;
}
@media (max-width: 767px) {
  .hp_intro {
    min-height: auto;
    z-index: 0;
  }
}
.hp_intro .intro_action {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .hp_intro .intro_action {
    display: none;
  }
}
.hp_intro .intro_progress {
  position: absolute;
  top: 30vh;
  bottom: 30vh;
  pointer-events: none;
}
.hp_intro .intro_setUi {
  position: absolute;
  pointer-events: none;
  z-index: 22;
}
.hp_intro .intro_setUi--1 {
  top: 0;
  height: 55vh;
}
.hp_intro .intro_setUi--2 {
  top: 55vh;
  bottom: 0;
}
.hp_intro .intro_cover {
  position: absolute;
  top: -1vh;
  left: -1vw;
  width: 102vw;
  height: 102vh;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hp_intro .intro_cover {
    position: fixed;
    height: calc(var(--vh, 1vh) * 102);
    height: 102vh;
  }
  .hp_intro .intro_cover.playing .intro_cover_inner::after {
    opacity: 0;
  }
  .hp_intro .intro_cover.playing .intro_cover_mobile img {
    opacity: 0;
  }
}
.hp_intro .intro_cover_inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform-origin: 72.5% calc(75vh - 0px);
  background: #000;
  overflow: hidden;
}
.hp_intro .intro_cover_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s linear;
}
.hp_intro .intro_cover_mobile {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hp_intro .intro_cover_mobile img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.2s linear;
}
.hp_intro .intro_cover_mobile video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hp_intro .intro_cover video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hp_intro .intro_mobile_play {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  outline: 2px solid #FFF;
  border-radius: 40px;
  margin-top: 20px;
  transition: opacity 0.2s linear;
  mix-blend-mode: difference;
}
.hp_intro .intro_mobile_play svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -8px;
  transform: scale(0.65);
  transform-origin: center center;
}
.hp_intro .intro_mobile_play svg:first-child {
  margin-top: -12px;
  margin-left: -8px;
}
.hp_intro .intro_mobile_play svg:last-child {
  margin-top: -10px;
  margin-left: -8px;
  transform: scale(0.85);
  opacity: 0;
}
.hp_intro .intro_titleWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  height: 100vh;
  z-index: 8;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hp_intro .intro_titleWrap {
    position: fixed;
    pointer-events: all;
  }
  .hp_intro .intro_titleWrap.playing {
    mix-blend-mode: difference;
  }
  .hp_intro .intro_titleWrap.playing .intro_titleBorder {
    opacity: 0;
  }
  .hp_intro .intro_titleWrap.playing .intro_title {
    opacity: 0;
  }
  .hp_intro .intro_titleWrap.playing .intro_mobile_play svg:first-child {
    opacity: 0;
  }
  .hp_intro .intro_titleWrap.playing .intro_mobile_play svg:last-child {
    opacity: 1;
  }
}
.hp_intro .intro_titleContainer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 45vh;
}
@media (max-width: 767px) {
  .hp_intro .intro_titleContainer {
    bottom: calc(var(--vh, 1vh) * 12);
    bottom: 12vh;
  }
}
.hp_intro .intro_titleBorder {
  position: absolute;
  top: 120%;
  left: 20.5vw;
  height: 2px;
  width: 30vw;
  background-color: #FFF;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: top right;
  transform: scaleX(0);
}
@media (max-width: 1099px) {
  .hp_intro .intro_titleBorder {
    left: 16vw;
  }
}
@media (max-width: 767px) {
  .hp_intro .intro_titleBorder {
    left: 55px;
    width: calc(100% - 110px);
    top: 0;
  }
}
.hp_intro .intro_titleBorder.visible {
  transform: scaleX(1);
}
.hp_intro .intro_title {
  display: inline-block;
  margin-left: 13.5833333333vw;
  text-align: left;
  font-size: 7.5rem;
  line-height: 0.9;
  font-size: clamp(90px, 8vmax, 150px);
  line-height: 0.9;
  color: #000;
  font-weight: 200;
  transform-origin: 0% 220%;
  transform: scale(0.4);
  transition: color 0.2s linear;
  will-change: transform;
}
@media (max-width: 1099px) {
  .hp_intro .intro_title {
    margin-left: 8.8055555556vw;
  }
}
@media (max-width: 767px) {
  .hp_intro .intro_title {
    font-size: 1.875rem;
    line-height: 1.0666666667;
    transform: none !important;
    margin-left: 0;
    padding-top: 25px;
    font-weight: 300;
    display: block;
  }
}
.hp_intro .intro_title--light {
  color: #FFF;
}
.hp_intro .intro_title strong {
  color: #D41136;
  font-weight: 700;
}
.hp_intro .intro_content {
  position: absolute;
  z-index: 10;
  height: 100vh;
  left: 31.3vw;
  width: 18.3611111111vw;
  font-size: 0.9rem;
  line-height: 1.8;
  padding-top: 66.5vh;
  color: #000;
  pointer-events: none;
}
@media (max-width: 1099px) {
  .hp_intro .intro_content {
    left: 17vw;
    width: 32.6944444444vw;
    padding-top: 62vh;
  }
}
@media (max-width: 767px) {
  .hp_intro .intro_content {
    position: relative;
    height: auto;
    width: 100%;
    left: auto;
    padding-left: 55px;
    padding-right: 55px;
    padding-top: calc(var(--vh, 1vh) * 25);
    padding-top: 25vh;
    padding-bottom: calc(var(--vh, 1vh) * 25);
    padding-bottom: 25vh;
    margin-top: calc(var(--vh, 1vh) * 100);
    margin-top: 100vh;
    background-color: #ECECEC;
  }
}
.hp_intro .intro_content_inner {
  position: relative;
  padding-top: 40px;
  pointer-events: all;
}
@media (max-width: 1099px) {
  .hp_intro .intro_content_inner {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .hp_intro .intro_content_inner {
    padding-top: 10px;
  }
}
.hp_intro .intro_content_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: top left;
  transform: scaleX(0);
}
.hp_intro .intro_content_inner > div {
  transform: translateY(-40px);
  visibility: hidden;
  opacity: 0;
  will-change: transform, opacity;
  transition: visibility 0s linear 0.3s, opacity 0.4s linear, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 767px) {
  .hp_intro .intro_content_inner > div {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.hp_intro .intro_content_inner > div + div {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .hp_intro .intro_content_inner > div + div {
    margin-top: 40px;
  }
}
.hp_intro .intro_content_inner > div.intro_popinOpenWrap {
  margin-top: 0 !important;
}
.hp_intro .intro_content.visible .intro_content_inner::before {
  transform: scaleX(1);
}
.hp_intro .intro_content.visible .intro_content_inner > div {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.hp_intro .intro_contentStart {
  position: absolute;
  bottom: 0;
  height: 130vh;
}
.hp_intro .intro_popinOpen {
  position: absolute;
  z-index: 11;
  white-space: nowrap;
  bottom: 10px;
  left: calc(100% + 11vw);
  pointer-events: all;
  cursor: pointer;
}
@media (max-width: 1099px) {
  .hp_intro .intro_popinOpen {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
  }
}

.hp_popin {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(212, 17, 54, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  padding: 5vw;
  transition: opacity 0.2s linear;
}
@media (max-width: 767px) {
  .hp_popin {
    padding-top: 10vh;
  }
}
.hp_popin.visible {
  opacity: 1;
  pointer-events: all;
}
.hp_popin_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.hp_popin_mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.hp_popin .plyr {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  aspect-ratio: 1.7777777778;
}
.hp_popin_close {
  position: absolute;
  z-index: 20;
  left: 50%;
  top: 2.5vw;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .hp_popin_close {
    top: 5vh;
  }
}

.hp_header {
  z-index: 10;
}
.hp_header .container {
  position: relative;
  justify-content: flex-end;
  padding-top: 12vh;
  mix-blend-mode: exclusion;
}
.hp_header .sectionTitle {
  color: #FFF;
}
.hp_header .sectionTitle_footer_link {
  color: #FFF;
}
.hp_header .sectionTitle_footer_link::after {
  background-color: #FFF;
}
@media (hover: hover) {
  .hp_header .sectionTitle_footer_link:hover {
    color: #000;
  }
}

.hp_news {
  z-index: 2;
  background-color: #fff;
}
.hp_news .contentBg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(101%);
  width: 36.2vw;
  z-index: 0;
  background-color: #fff;
}
@media (max-width: 1299px) {
  .hp_news .contentBg {
    width: 41vw;
  }
}
@media (max-width: 1099px) {
  .hp_news .contentBg {
    width: 45vw;
  }
}
@media (max-width: 767px) {
  .hp_news .contentBg {
    display: none;
  }
}
.hp_news .pSection_header_cover {
  right: auto;
  left: -7vw;
  width: 100vw;
}
.hp_news .pSection_header_cover:after {
  display: none;
}
.hp_news .pSection_header_cover .carousel {
  opacity: 0;
}
.hp_news .pSection_header_cover .carousel:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.15;
}
.hp_news .pSection_content {
  min-height: 100vh;
  padding-bottom: 15vh;
}
.hp_news_list--active:hover .newsBloc {
  opacity: 0.2 !important;
}
.hp_news_list--active .newsBloc {
  transition: opacity 0.25s linear;
}
.hp_news_list--active .newsBloc:hover {
  opacity: 1 !important;
}
.hp_news .newsBloc {
  opacity: 0;
}
@media (max-width: 767px) {
  .hp_news .newsBloc {
    opacity: 1;
  }
}
.hp_news_logo {
  position: absolute;
  z-index: 2;
  bottom: calc(12vh + 70px + 9.5vh + 3.5rem);
  left: 25vw;
  opacity: 0;
  color: #D41136;
  mix-blend-mode: lighten;
  width: 956px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hp_news_logo {
    display: none;
  }
}
.hp_news_logo svg {
  display: block;
}
.hp_news_mobileTitle {
  display: none;
  color: #000;
  text-transform: lowercase;
  font-family: "Copperplate";
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 6vh;
}
.hp_news_mobileTitle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #000;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .hp_news_mobileTitle {
    display: block;
  }
}

@media (max-width: 767px) {
  .hp_webi {
    min-height: 100vh;
    background: #fff;
  }
}
.hp_webi .hp_webi_contentTarget {
  top: 100lvh;
  bottom: 0;
}
.hp_webi_progress {
  position: absolute;
  z-index: 10000;
  top: 0;
  left: 0;
  height: 140lvh;
}
.hp_webi_cover {
  position: relative;
  z-index: -1;
  height: 100lvh;
}
@media (max-width: 767px) {
  .hp_webi_cover {
    z-index: 0;
  }
}
.hp_webi_cover::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.5;
}
.hp_webi_cover_img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hp_webi_cover video {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hp_webi_cover_media {
  filter: grayscale(1);
}
@media (max-width: 767px) {
  .hp_webi .pSection_header .sectionTitle--light {
    color: #000;
  }
}
.hp_webi .contentBg {
  position: absolute;
  z-index: -1;
  top: 100lvh;
  right: 0;
  bottom: 0;
  width: 36.2vw;
  background-color: #fff;
}
@media (max-width: 1299px) {
  .hp_webi .contentBg {
    width: 41vw;
  }
}
@media (max-width: 1099px) {
  .hp_webi .contentBg {
    width: 45vw;
  }
}
@media (max-width: 767px) {
  .hp_webi .contentBg {
    display: none;
  }
}
.hp_webi_content .pSection_content {
  margin-top: 100lvh;
  padding-bottom: 12vh;
}
@media (max-width: 767px) {
  .hp_webi_content .pSection_content {
    margin-top: 0;
  }
}
.hp_webi_content .st2 {
  margin-bottom: 25px;
}
.hp_webi_content .webi_media {
  margin: 60px 0;
  width: calc(100% + 70px);
  margin-left: -35px;
}
@media (max-width: 1099px) {
  .hp_webi_content .webi_media {
    width: 100%;
    margin-left: 0;
    margin: 40px 0;
  }
}
.hp_webi_content .webi_media_render {
  position: relative;
  aspect-ratio: 1.4814814815;
  margin-bottom: 5px;
}
.hp_webi_content .webi_iframe {
  width: 100%;
  aspect-ratio: 1;
  min-height: 550px;
  width: calc(100% + 70px);
  margin-left: -35px;
}
@media (max-width: 1099px) {
  .hp_webi_content .webi_iframe {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
.hp_webi .pSection_header_inner {
  max-width: 100%;
}

.hp_cabinet {
  z-index: 1;
}
@media (max-width: 767px) {
  .hp_cabinet {
    overflow: hidden;
  }
}
.hp_cabinet_intro {
  min-height: 140vh;
  background-color: #000;
  color: #FFF;
  padding-top: 25vh;
  padding-bottom: 15vh;
}
@media (max-width: 767px) {
  .hp_cabinet_intro {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 300px;
  }
}
.hp_cabinet_quote {
  position: relative;
  font-size: 3rem;
  line-height: 1.1666666667;
  font-weight: 300;
}
@media (max-width: 1299px) {
  .hp_cabinet_quote {
    font-size: 2.4444444444rem;
    line-height: 1.1363636364;
  }
}
@media (max-width: 767px) {
  .hp_cabinet_quote {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-left: 20px;
  }
  .hp_cabinet_quote br, .hp_cabinet_quote br::after {
    content: " ";
  }
}
.hp_cabinet_quote_icon {
  position: absolute;
  top: 0;
  right: calc(100% + 40px);
  color: #D41136;
}
@media (max-width: 767px) {
  .hp_cabinet_quote_icon {
    transform: scale(0.85);
    top: -20px;
    right: calc(100% + 10px);
  }
}
.hp_cabinet_quoteSource {
  margin-top: 3vh;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .hp_cabinet_quoteSource {
    margin-left: 20px;
  }
}
.hp_cabinet_presentation {
  position: relative;
  margin-top: -30vh;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .hp_cabinet_presentation {
    margin-top: 0;
  }
}
.hp_cabinet_presentation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30vh;
  background: #000;
}
.hp_cabinet_presentation .pSection_content {
  padding-top: 52vh;
  min-height: 140vh;
  padding-bottom: 20vh;
}
.hp_cabinet_logo {
  position: absolute;
  top: -5vh;
  left: 36.5%;
  z-index: 2;
  color: #D41136;
  mix-blend-mode: lighten;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hp_cabinet_logo {
    transform: scale(0.6);
    left: 20%;
    top: -200px;
    transform-origin: top left;
  }
}
.hp_cabinet_arrow {
  display: block;
  margin: 5vh auto 0 auto;
}

.hp_expertise {
  padding-bottom: 12vh;
}
@media (max-width: 767px) {
  .hp_expertise {
    padding-bottom: 0;
    min-height: 100vh;
    background: #fff;
  }
}
.hp_expertise_video {
  z-index: 0;
  height: 100vh;
}
@media (max-width: 1099px) {
  .hp_expertise_video {
    display: none;
  }
}
.hp_expertise_videoMobile {
  display: none;
  position: absolute;
  top: 20vh;
  left: 20vw;
  max-width: none;
}
@media (max-width: 1099px) {
  .hp_expertise_videoMobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .hp_expertise_videoMobile {
    display: none;
  }
}
.hp_expertise_content {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .hp_expertise_content {
    padding-top: 10vh;
  }
}
.hp_expertise .pSection_header_inner {
  max-width: 100%;
}
.hp_expertise .pSection_content {
  position: relative;
  margin-top: 100vh;
  padding-top: 0;
  padding-bottom: 25vh;
}
@media (max-width: 767px) {
  .hp_expertise .pSection_content {
    margin-top: 0;
  }
  .hp_expertise .pSection_content .firstLetter {
    padding-left: 40px;
  }
  .hp_expertise .pSection_content .firstLetter svg {
    display: none;
  }
  .hp_expertise .pSection_content .firstLetter_letter {
    left: -14px;
  }
  .hp_expertise .pSection_content .firstLetter_content::first-letter {
    margin-left: -10px;
  }
}
.hp_expertise_quote {
  position: absolute;
  top: -10px;
  right: calc(100% + 35px);
  color: #D41136;
}
.hp_expertise .prestaCovers {
  position: absolute;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  width: 400px;
  height: 300px;
  margin-left: -200px;
  margin-top: -150px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hp_expertise .prestaList {
  margin-top: 6vh;
  margin-bottom: 0;
}
.hp_expertise .prestaList .prestaItem > a {
  font-size: 2rem;
  line-height: 1;
  padding-top: 4vh;
  padding-bottom: 4vh;
}
@media (max-width: 1299px) {
  .hp_expertise .prestaList .prestaItem > a {
    font-size: 1.6666666667rem;
    line-height: 1;
  }
}
.hp_expertise .prestaList .prestaItem > a_title {
  position: relative;
  z-index: 1;
}

.videoPlayTrigger {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.videoMaskTrigger {
  position: absolute;
  top: 100vh;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.videoGreyscaleTrigger {
  position: absolute;
  top: 150vh;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  will-change: opacity;
  transition: opacity 0.2s linear;
}
.video.hidden {
  opacity: 0.2;
}
.video video {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: filter 0.6s linear;
}
.video_overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFF;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.video_mask {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  background-image: url(../svg/videoMask.svg);
  background-position: center center;
  background-size: cover;
  transform: scale(7);
  transition: transform 1s cubic-bezier(0.8, 0, 0.2, 1);
}
.video--masked .video_mask {
  transform: scale(1);
}
.video--greyscale .video_overlay {
  opacity: 0.6;
}

.page-template-tpl-cabinet .cabinet_numbers {
  background-color: #000;
  color: #FFF;
  padding-bottom: 15vh;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_numbers {
    padding-bottom: 8vh;
  }
}
.page-template-tpl-cabinet .cabinet_numbers .pSection_header_inner {
  max-width: none;
}
.page-template-tpl-cabinet .cabinet_numbers .pSection_content {
  padding-top: 90vh;
  padding-bottom: 25vh;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_numbers .pSection_content {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.page-template-tpl-cabinet .cabinet_numbers .sectionQuote {
  margin-left: 4.9vw;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_numbers .sectionQuote {
    margin-left: 25px;
    margin-right: 40px;
  }
}
.page-template-tpl-cabinet .cabinet_numbers .numbersCarousel {
  overflow: visible;
}
.page-template-tpl-cabinet .cabinet_team .member_picture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: 20% center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.2s linear, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  filter: grayscale(100%);
}
.page-template-tpl-cabinet .cabinet_team .member_picture::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.15;
}
.page-template-tpl-cabinet .cabinet_team .member_picture.active {
  opacity: 1;
  transform: scale(1);
}
.page-template-tpl-cabinet .cabinet_team .member_intro {
  margin-bottom: 3vh;
  margin-right: 4.7777777778vw;
  color: #000;
}
@media (max-width: 1299px) {
  .page-template-tpl-cabinet .cabinet_team .member_intro {
    font-size: 1.3333333333rem;
    line-height: 1.0833333333;
  }
}
.page-template-tpl-cabinet .cabinet_team .member_description {
  margin-right: 4.7777777778vw;
  margin-bottom: 8vh;
  font-size: 0.9rem;
  line-height: 2.1111111111;
  color: #000;
}
.page-template-tpl-cabinet .cabinet_team .memberMask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(249, 249, 249, 0.8);
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.2s linear;
}
.page-template-tpl-cabinet .cabinet_team .memberMask.visible {
  opacity: 1;
}
.page-template-tpl-cabinet .cabinet_team .member_news {
  margin-bottom: 4vh;
}
.page-template-tpl-cabinet .cabinet_team .newsBloc:hover {
  z-index: 10;
}
.page-template-tpl-cabinet .cabinet_team .publicationBloc:hover {
  z-index: 10;
}
.page-template-tpl-cabinet .cabinet_team .member_external {
  display: none;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 1;
}
.page-template-tpl-cabinet .cabinet_team .pSection_header {
  z-index: 10;
}
.page-template-tpl-cabinet .cabinet_team .pSection_header_cover {
  background-color: transparent;
  overflow: hidden;
}
.page-template-tpl-cabinet .cabinet_team .pSection_header_cover::after {
  display: none;
}
.page-template-tpl-cabinet .cabinet_team .sectionTitle .sectionTitle_content {
  position: relative;
  z-index: 2;
}
.page-template-tpl-cabinet .cabinet_team .sectionTitle .sectionTitle_content a {
  position: relative;
  display: block;
  color: #000;
  text-decoration: none;
  text-transform: lowercase;
  line-height: 1.2;
  font-weight: 300;
}
.page-template-tpl-cabinet .cabinet_team .sectionTitle .sectionTitle_content a.active {
  font-weight: 700;
}
.page-template-tpl-cabinet .cabinet_team .sectionTitle--light .sectionTitle_content a {
  color: #FFF;
  opacity: 0.5;
}
.page-template-tpl-cabinet .cabinet_team .sectionTitle--light .sectionTitle_content a.active {
  opacity: 1;
}
@media (hover: hover) {
  .page-template-tpl-cabinet .cabinet_team .sectionTitle--light .sectionTitle_content a:hover {
    opacity: 1;
  }
}
.page-template-tpl-cabinet .cabinet_teamMobile {
  display: none;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_teamMobile {
    display: block;
  }
}
.page-template-tpl-cabinet .cabinet_teamIntro .pSection {
  min-height: auto;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_intro {
  position: relative;
  margin-top: 150vh;
  margin-bottom: 20vh;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_intro_icon {
  position: absolute;
  top: -15px;
  right: calc(100% + 20px);
  color: #D41136;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_intro strong {
  color: #D41136;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures_trigger1 {
  position: absolute;
  left: 0;
  top: 50vh;
  width: 0;
  height: 90vh;
  z-index: 100;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures_trigger2 {
  position: absolute;
  left: 0;
  top: 140vh;
  width: 0;
  height: 0;
  z-index: 100;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures {
  position: absolute;
  top: 15vh;
  left: 11.85vw;
  right: 11.85vw;
  height: 70vh;
  backface-visibility: hidden;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures .team_picture {
  position: absolute;
  top: 0;
  height: 100%;
  width: 30%;
  opacity: 0;
  will-change: transform, opacity;
  overflow: hidden;
  transition: filter 0.4s linear;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures .team_picture_bg {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-size: cover;
  background-position: 0% 0%;
  background-repeat: no-repeat;
}
@media (max-width: 1299px) {
  .page-template-tpl-cabinet .cabinet_teamIntro .team_pictures .team_picture_bg {
    background-position: 26% 0%;
  }
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures .team_picture:nth-child(1) {
  z-index: 19;
  left: 0%;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures .team_picture:nth-child(2) {
  z-index: 18;
  left: 17.5%;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures .team_picture:nth-child(3) {
  z-index: 17;
  left: 35%;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures .team_picture:nth-child(4) {
  z-index: 16;
  left: 52.5%;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures .team_picture:nth-child(5) {
  z-index: 15;
  left: 70%;
}
.page-template-tpl-cabinet .cabinet_teamIntro .team_pictures .team_picture.greyscale {
  filter: grayscale(100%);
}
@media (max-width: 1099px) {
  .page-template-tpl-cabinet .pSection--membersName {
    overflow: visible;
  }
}
.page-template-tpl-cabinet .pSection--member {
  padding-top: 20vh;
  padding-bottom: 10vh;
  background-color: #F9F9F9;
}
.page-template-tpl-cabinet .pSection--member .pSection_content {
  opacity: 0;
}
.page-template-tpl-cabinet .cabinet_publications {
  background-color: #D41136;
  color: #FFF;
  overflow: hidden;
}
@media (max-width: 1099px) {
  .page-template-tpl-cabinet .cabinet_publications {
    min-height: auto;
  }
}
.page-template-tpl-cabinet .cabinet_publications_intro {
  position: relative;
  font-size: 3rem;
  line-height: 1.3333333333;
  font-weight: 300;
}
@media (max-width: 1299px) {
  .page-template-tpl-cabinet .cabinet_publications_intro {
    font-size: 2.2222222222rem;
    line-height: 1.25;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_publications_intro {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.page-template-tpl-cabinet .cabinet_publications_intro strong {
  color: #000;
  font-weight: 700;
}
.page-template-tpl-cabinet .cabinet_publications_intro_icon {
  position: absolute;
  top: 10px;
  right: calc(100% + 45px);
  color: #000;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_publications_intro_icon {
    transform: scale(0.85);
    top: -20px;
    right: calc(100% + 20px);
  }
}
.page-template-tpl-cabinet .cabinet_publications_link {
  margin-top: 4vh;
}
.page-template-tpl-cabinet .cabinet_publiSlider {
  position: relative;
  padding-top: 15vh;
  padding-bottom: 0vh;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_publiSlider {
    padding-top: 10vh;
  }
}
.page-template-tpl-cabinet .cabinet_publiSlider::before {
  content: "";
  position: absolute;
  top: 30vh;
  left: 50%;
  bottom: 0;
  width: 110vw;
  transform: translateX(-50%);
  z-index: 0;
  background: #FFF;
}
.page-template-tpl-cabinet .cabinet_publiSlider .row {
  position: relative;
  z-index: 1;
}
.page-template-tpl-cabinet .cabinet_publiSlider .swiper-container {
  overflow: visible;
}
.page-template-tpl-cabinet .cabinet_publiSlider .publicationBloc {
  opacity: 0;
  will-change: transform;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_publiSlider .publicationBloc {
    opacity: 1;
  }
}
.page-template-tpl-cabinet .cabinet_honors {
  padding-bottom: 20vh;
}
.page-template-tpl-cabinet .cabinet_honors .pSection_content {
  position: relative;
  z-index: 1;
  padding-top: 88vh;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_honors .pSection_content {
    padding-top: 0;
  }
}
.page-template-tpl-cabinet .cabinet_honors_logo {
  position: absolute;
  z-index: 0;
  left: 23vw;
  bottom: 50vh;
  color: #CDCDCD;
  opacity: 0.14;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_honors_logo {
    display: none;
  }
}
.page-template-tpl-cabinet .honor + .honor {
  margin-top: 12vh;
}
.page-template-tpl-cabinet .honor_title {
  margin-top: 3vh;
}
.page-template-tpl-cabinet .honor_quote {
  position: relative;
  margin-bottom: 18vh;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .honor_quote {
    margin-bottom: 14vh;
  }
}
.page-template-tpl-cabinet .honor_quote strong {
  font-weight: 700;
  color: #D41136;
}
.page-template-tpl-cabinet .honor_quote svg {
  position: absolute;
  top: -10px;
  right: calc(100% + 35px);
  color: #000;
  opacity: 0.1;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .honor_quote svg {
    transform: scale(0.85);
    top: -20px;
    right: calc(100% + 10px);
    opacity: 1;
  }
}
.page-template-tpl-cabinet .honor_cover {
  position: relative;
  width: 22.7vw;
  margin-bottom: 9vh;
}
@media (max-width: 1299px) {
  .page-template-tpl-cabinet .honor_cover {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .honor_cover {
    margin-bottom: 12vh;
  }
}
.page-template-tpl-cabinet .honor_cover_img {
  display: block;
  width: 100%;
}
.page-template-tpl-cabinet .honor_cover_picto {
  position: absolute;
  top: -90px;
  left: -90px;
  animation: rotate 10s linear infinite;
}
@media (max-width: 1299px) {
  .page-template-tpl-cabinet .honor_cover_picto {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .honor_cover_picto {
    width: 90px;
    height: 90px;
    top: -45px;
    left: -45px;
  }
}
.page-template-tpl-cabinet .honor_content {
  font-size: 0.9rem;
  line-height: 2;
  color: rgba(0, 0, 0, 0.6);
}
.page-template-tpl-cabinet .cabinet_partner {
  background-color: #F9F9F9;
}
.page-template-tpl-cabinet .cabinet_partner .partnerCover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50vw;
  background-color: #000;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_partner .partnerCover {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100vw;
    margin-left: -55px;
    margin-right: -55px;
  }
}
.page-template-tpl-cabinet .cabinet_partner .partnerCover_logo {
  position: absolute;
  z-index: 2;
  top: 22vh;
  right: 20vw;
  color: #D41136;
  mix-blend-mode: lighten;
  overflow: hidden;
  width: 956px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_partner .partnerCover_logo {
    transform: scale(0.6);
    transform-origin: right top;
  }
}
.page-template-tpl-cabinet .cabinet_partner .partnerCover_logo svg {
  display: block;
}
.page-template-tpl-cabinet .cabinet_partner .partnerCover::before {
  content: "";
  display: block;
  padding-top: 114%;
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_partner .partnerCover::before {
    padding-top: 175%;
  }
}
.page-template-tpl-cabinet .cabinet_partner .partnerCover::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #F9F9F9;
  width: 100vw;
}
.page-template-tpl-cabinet .cabinet_partner .partnerCover_img {
  position: absolute;
  top: 10vw;
  left: 10vw;
  right: 10vw;
  bottom: 10vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}
@media (max-width: 1299px) {
  .page-template-tpl-cabinet .cabinet_partner .partnerCover_img {
    top: 5vw;
    left: 5vw;
    right: 5vw;
    bottom: 5vw;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-cabinet .cabinet_partner .partnerCover_img {
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
  }
}

.teamMobileCarousel {
  position: relative;
}
.teamMobileCarousel_next {
  position: absolute;
  z-index: 2;
  bottom: calc(8vh + 50px);
  right: 15px;
  width: 96.8px;
  height: 41.8px;
}
.teamMobileCarousel_next svg {
  width: 96.8px;
  height: 41.8px;
  stroke-width: 3px;
  stroke: #FFF;
}
.teamMobileCarousel .swiper-slide .pSection_header {
  box-sizing: border-box;
  padding-left: 55px;
  padding-right: 55px;
}
.teamMobileCarousel .swiper-slide .pSection_header .pSection_header_cover {
  left: 0;
  right: 0;
}
.teamMobileCarousel .swiper-slide .sectionTitle_header_additional {
  margin-left: 10px;
  margin-top: 5px;
}
.teamMobileCarousel .swiper-slide .sectionTitle_link {
  z-index: 3;
}
.teamMobileCarousel .swiper-slide .member_picture {
  opacity: 1;
  transform: scale(1);
  background-position: 30% center;
}
.teamMobileCarousel .swiper-slide .member_external {
  display: block;
}

.page-template-tpl-expertises .sectionQuote_icon {
  color: rgba(212, 17, 54, 0.4);
}
.page-template-tpl-expertises .sectionQuote_content {
  color: rgba(255, 255, 255, 0.4);
}
.page-template-tpl-expertises .header_behind::after {
  background-color: #000;
}
.page-template-tpl-expertises .expertises_prestas .pSection_header {
  z-index: 10;
}
.page-template-tpl-expertises .expertises_prestas .pSection_header_inner {
  max-width: 100%;
}
.page-template-tpl-expertises .expertises_prestas .sectionTitle_content {
  position: relative;
}
.page-template-tpl-expertises .expertises_prestas .sectionTitle_content .prestaTitle_container {
  position: relative;
}
.page-template-tpl-expertises .expertises_prestas .sectionTitle_content .prestaTitle {
  display: none;
}
.page-template-tpl-expertises .expertises_prestas .sectionTitle_content .prestaTitle--visible {
  display: block;
}
.page-template-tpl-expertises .expertises_prestas .pSection_content {
  padding-top: 88vh;
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .pSection_content {
    padding-top: 0;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaQuote {
  position: relative;
  margin-bottom: 10vh;
  width: 90%;
  max-width: 550px;
}
@media (max-width: 1299px) {
  .page-template-tpl-expertises .expertises_prestas .prestaQuote {
    margin-bottom: 8vh;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaQuote {
    margin-top: 8vh;
    margin-bottom: 5vh;
    width: 100%;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaQuote_icon {
  position: absolute;
  top: -30px;
  right: calc(100% + 30px);
  color: #D41136;
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaQuote_icon {
    transform: scale(0.85);
    top: -20px;
    right: calc(100% + 10px);
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaQuote strong {
  color: #D41136;
  font-weight: 400;
}
.page-template-tpl-expertises .expertises_prestas .prestaIntro {
  margin-bottom: 10vh;
  font-size: 0.7rem;
  line-height: 2.1428571429;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaIntro {
    margin-bottom: 6vh;
    font-size: 0.75rem;
    line-height: 2;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer {
  position: relative;
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta {
  position: relative;
  display: none;
  padding-top: 5vh;
  padding-bottom: 20vh;
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta--visible {
  display: block;
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 20vh;
  bottom: 0;
  left: 17.5%;
  width: 110vw;
  transform: translateX(-50%);
  background-color: #F8F8F8;
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta::before {
    display: none;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_item + .presta_item {
  margin-top: 16vh;
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_cover {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 6vh;
  opacity: 0;
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_cover {
    opacity: 1;
    margin-bottom: 0vh;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_cover::before {
  content: "";
  display: block;
  padding-top: 65.1%;
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_cover::before {
    padding-top: 120%;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_cover--portrait::before {
  padding-top: 134%;
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_cover--portrait::before {
    padding-top: 120%;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_content {
  padding-left: 4.9vw;
  padding-right: 4.9vw;
  opacity: 0;
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_content {
    opacity: 1;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 6vh;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_content--2col {
  padding-left: 24.3vw;
}
@media (max-width: 1299px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_content--2col {
    padding-left: 4.9vw;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_content--2col {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_num {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5vh;
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_num {
    margin-bottom: 4vh;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_num span:first-child {
  font-size: 3rem;
  line-height: 1;
  color: #000;
  margin-right: 15px;
}
@media (max-width: 1299px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_num span:first-child {
    font-size: 2.7777777778rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_num span:first-child {
    font-size: 3.125rem;
    line-height: 1;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_num span:last-child {
  flex-grow: 1;
  height: 2px;
  background-color: #000;
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #C3C3C3;
  margin-bottom: 4vh;
}
@media (max-width: 1299px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_title {
    font-size: 2rem;
    line-height: 1.1111111111;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_title {
    font-size: 1.625rem;
    line-height: 1.1538461538;
  }
}
.page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_description {
  font-size: 0.75rem;
  line-height: 1.8666666667;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_prestas .prestaContainer .presta_description {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-expertises .expertises_cabinet .carousel_slide_cover_img {
    background-position: 30% center;
  }
}

.prestaList {
  position: relative;
  margin-bottom: 12vh;
}
@media (max-width: 767px) {
  .prestaList {
    margin-bottom: 6vh;
  }
}
.prestaList .prestaItem {
  position: relative;
  z-index: 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  margin-top: -2px;
}
@media (hover: hover) {
  .prestaList .prestaItem:hover {
    z-index: 2;
  }
}
.prestaList .prestaItem a {
  position: relative;
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  padding-top: 5vh;
  padding-bottom: 5vh;
  text-decoration: none;
  transition: color 0.15s linear;
}
@media (max-width: 1299px) {
  .prestaList .prestaItem a {
    font-size: 1.6666666667rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .prestaList .prestaItem a {
    font-size: 1.25rem;
    line-height: 1;
  }
}
.prestaList .prestaItem a, .prestaList .prestaItem a:visited {
  color: rgba(0, 0, 0, 0.4);
}
.prestaList .prestaItem a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 45px);
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin-top: -5px;
  background-color: #D41136;
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: scale(0);
  transform-origin: center center;
}
@media (max-width: 767px) {
  .prestaList .prestaItem a::before {
    right: calc(100% + 20px);
  }
}
.prestaList .prestaItem a.prestaList_link--active {
  color: #000;
  text-decoration: none;
}
.prestaList .prestaItem a.prestaList_link--active::before {
  transform: scale(1);
}
@media (hover: hover) {
  .prestaList .prestaItem a:hover {
    color: #000;
    text-decoration: none;
  }
  .prestaList .prestaItem a:hover::before {
    transform: scale(1);
  }
}
.prestaList .prestaCovers {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  width: 400px;
  height: 260px;
  margin-left: -200px;
  margin-top: -130px;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.prestaList .prestaCovers .prestaCover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: opacity, transform;
  transform: scale(0.6);
  transform-origin: center center;
  filter: grayscale(1);
  transition: opacity 0.4s linear, transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.prestaList .prestaCovers .prestaCover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #FFF;
  opacity: 0.55;
}
.prestaList .prestaCovers .prestaCover.visible {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1099px) {
  .prestaList .prestaCovers {
    display: none;
  }
}
.prestaList:hover .prestaCovers {
  opacity: 1;
}

.page-template-tpl-actualites .header_behind::after {
  background-color: #222;
}
@media (max-width: 767px) {
  .page-template-tpl-actualites .sectionTitle_content {
    padding-top: 3vh;
  }
}
.page-template-tpl-actualites .actus_list {
  padding-bottom: 10vh;
}
@media (max-width: 767px) {
  .page-template-tpl-actualites .actus_list {
    padding-bottom: 0;
  }
}
.page-template-tpl-actualites .actus_list .sectionTitle_content {
  padding: 0;
}
.page-template-tpl-actualites .actus_list .sectionTitle_footer {
  min-height: auto;
}
.page-template-tpl-actualites .actus_list .colYear {
  padding-top: 20vh;
  margin-right: 4.85vw;
}
.page-template-tpl-actualites .actus_list .colYear--prev {
  margin-left: 4.85vw;
  margin-right: 0;
}
.page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_header_content {
  text-align: right;
}
.page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_header_content_title::before {
  display: none;
}
.page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_header_content a {
  display: inline-block;
  font-size: 1rem;
  line-height: 2;
  font-family: "Libre Franklin";
  font-weight: 300;
  opacity: 0.3;
  transition: opacity 0.15s linear;
}
@media (max-width: 1299px) {
  .page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_header_content a {
    font-size: 0.7777777778rem;
    line-height: 2;
  }
}
.page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_header_content a, .page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_header_content a:visited {
  color: #000;
  text-decoration: none;
}
.page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_header_content a + a {
  margin-left: 0.85vw;
}
.page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_header_content a.active {
  opacity: 1;
}
@media (hover: hover) {
  .page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_header_content a:hover {
    opacity: 1;
  }
}
.page-template-tpl-actualites .actus_list .colYear--prev .sectionTitle_content {
  text-align: right;
  opacity: 0.3;
}
.page-template-tpl-actualites .actus_list_content {
  padding-top: 20vh;
}
@media (max-width: 767px) {
  .page-template-tpl-actualites .actus_list_content {
    padding-top: 0;
  }
}
.page-template-tpl-actualites .actus_list .yearsList_container {
  height: calc(9vh + 70px);
  overflow: hidden;
}
.page-template-tpl-actualites .actus_list .yearsList {
  transition: transform 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.page-template-tpl-actualites .actus_list .yearsList > li a {
  display: block;
  padding: 4.5vh 0;
  text-decoration: none;
}
@media (hover: hover) {
  .page-template-tpl-actualites .actus_list .yearsList > li a:hover {
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-actualites .actus_year {
    opacity: 0;
    display: none;
  }
}
.page-template-tpl-actualites .actus_navMobile {
  position: relative;
  margin-bottom: 10vh;
}
.page-template-tpl-actualites .actus_navMobile_categories {
  padding-top: 10vh;
  padding-bottom: 3vh;
  display: flex;
  justify-content: space-between;
}
.page-template-tpl-actualites .actus_navMobile_categories a {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-family: "Libre Franklin";
  font-weight: 400;
  opacity: 0.3;
}
.page-template-tpl-actualites .actus_navMobile_categories a, .page-template-tpl-actualites .actus_navMobile_categories a:visited {
  color: #000;
  text-decoration: none;
}
.page-template-tpl-actualites .actus_navMobile_categories a + a {
  margin-left: 2vw;
}
.page-template-tpl-actualites .actus_navMobile_categories a.active {
  opacity: 1;
}
.page-template-tpl-actualites .actus_navMobile_carousel {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.page-template-tpl-actualites .actus_navMobile .swiper-slide > div {
  font-size: 3.75rem;
  line-height: 1.1666666667;
  padding-top: 4vh;
  padding-bottom: 4vh;
  color: #000;
}
.page-template-tpl-actualites .actus_navMobile_next {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -40px;
  width: 88px;
  height: 38px;
  margin-top: -19px;
}
.page-template-tpl-actualites .actus_navMobile_next > svg {
  width: 88px;
  height: 38px;
  stroke-width: 3px;
  stroke: #000 !important;
}
.page-template-tpl-actualites .popin_box {
  margin-left: 25.425%;
}
@media (max-width: 1299px) {
  .page-template-tpl-actualites .popin_box {
    margin-left: 16.95%;
  }
}
@media (max-width: 1099px) {
  .page-template-tpl-actualites .popin_box {
    margin-left: 10%;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-actualites .popin_box {
    margin-left: 0;
  }
}

.page-template-tpl-publications .publications_introContainer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publications_introContainer {
    min-height: auto;
    padding: 15vh 0 5vh 0;
  }
}
.page-template-tpl-publications .publications_intro {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 350vh;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publications_intro {
    min-height: auto;
  }
}
.page-template-tpl-publications .publications_intro_covers {
  padding-left: 45px;
  padding-right: 45px;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publications_intro_covers {
    display: none;
  }
}
.page-template-tpl-publications .publications_intro_cover {
  position: absolute;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #CCC;
  filter: grayscale(100%);
  z-index: -1;
}
.page-template-tpl-publications .publications_intro_cover::before {
  content: "";
  display: block;
}
.page-template-tpl-publications .publications_intro_cover--1, .page-template-tpl-publications .publications_intro_cover--3, .page-template-tpl-publications .publications_intro_cover--5 {
  width: 8.8055555556vw;
}
.page-template-tpl-publications .publications_intro_cover--1::before, .page-template-tpl-publications .publications_intro_cover--3::before, .page-template-tpl-publications .publications_intro_cover--5::before {
  padding-top: 128%;
}
.page-template-tpl-publications .publications_intro_cover--2, .page-template-tpl-publications .publications_intro_cover--4, .page-template-tpl-publications .publications_intro_cover--6 {
  width: 13.5833333333vw;
}
.page-template-tpl-publications .publications_intro_cover--2::before, .page-template-tpl-publications .publications_intro_cover--4::before, .page-template-tpl-publications .publications_intro_cover--6::before {
  padding-top: 78%;
}
.page-template-tpl-publications .publications_intro_cover--1 {
  left: 11%;
  top: 315vh;
}
.page-template-tpl-publications .publications_intro_cover--2 {
  left: 22%;
  top: 249vh;
}
.page-template-tpl-publications .publications_intro_cover--3 {
  left: 38%;
  top: 153vh;
  z-index: 1;
}
.page-template-tpl-publications .publications_intro_cover--4 {
  left: 49%;
  top: 105vh;
}
.page-template-tpl-publications .publications_intro_cover--5 {
  left: 66%;
  top: 197vh;
  z-index: 1;
}
.page-template-tpl-publications .publications_intro_cover--6 {
  left: 79%;
  top: 278vh;
}
.page-template-tpl-publications .publications_introCarouselMobile {
  margin-top: 8vh;
  margin-bottom: 10vh;
}
.page-template-tpl-publications .publications_introCarouselMobile_slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #CCC;
  filter: grayscale(100%);
}
.page-template-tpl-publications .publications_introCarouselMobile_slide::before {
  content: "";
  display: block;
  padding-top: 66%;
}
.page-template-tpl-publications .publications_quote {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  line-height: 1.1666666667;
  color: #000;
}
@media (max-width: 1299px) {
  .page-template-tpl-publications .publications_quote {
    font-size: 2.2222222222rem;
    line-height: 1.25;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publications_quote {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-left: 20px;
  }
  .page-template-tpl-publications .publications_quote br, .page-template-tpl-publications .publications_quote br::after {
    content: " ";
  }
}
.page-template-tpl-publications .publications_quote_icon {
  position: absolute;
  top: 0;
  right: calc(100% + 55px);
  color: #D41136;
}
.page-template-tpl-publications .publications_quote_link {
  margin-top: 3vh;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publications_quote_link {
    margin-left: 20px;
  }
}
.page-template-tpl-publications .publications_container {
  overflow: hidden;
  position: relative;
  z-index: 2;
  background-color: #FFF;
}
.page-template-tpl-publications .publications {
  position: relative;
  padding-top: 40vh;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publications {
    padding-top: 0;
  }
}
.page-template-tpl-publications .publications_yearContainer {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 20vh;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publications_yearContainer {
    display: none;
  }
}
.page-template-tpl-publications .publications_yearContainer .sectionTitle {
  width: 100%;
}
.page-template-tpl-publications .publications_yearContainer .sectionTitle_content {
  padding: 0;
}
.page-template-tpl-publications .publications_yearContainer .sectionTitle_footer {
  min-height: auto;
}
.page-template-tpl-publications .publications_yearContainer .col-3 {
  position: relative;
}
.page-template-tpl-publications .publications_yearContainer .colYear {
  position: absolute;
  top: 0;
  width: 10.3055555556vw;
  min-width: 190px;
  right: 4.65vw;
}
@media (max-width: 1299px) {
  .page-template-tpl-publications .publications_yearContainer .colYear {
    right: auto;
    left: 0;
  }
}
.page-template-tpl-publications .publications_yearContainer .colYear--prev {
  left: 4.65vw;
  right: auto;
}
@media (max-width: 1299px) {
  .page-template-tpl-publications .publications_yearContainer .colYear--prev {
    right: 0;
    left: auto;
  }
}
.page-template-tpl-publications .publications_yearContainer .colYear--prev .sectionTitle_header_content_title::before {
  display: none;
}
.page-template-tpl-publications .publications_yearContainer .colYear--prev .sectionTitle_content {
  text-align: right;
}
.page-template-tpl-publications .publications_yearContainer .yearsList_container {
  height: calc(9vh + 70px);
  overflow: hidden;
}
.page-template-tpl-publications .publications_yearContainer .yearsList {
  transition: transform 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.page-template-tpl-publications .publications_yearContainer .yearsList > li a {
  display: block;
  padding: 4.5vh 0;
  text-decoration: none;
}
@media (hover: hover) {
  .page-template-tpl-publications .publications_yearContainer .yearsList > li a:hover {
    text-decoration: none;
  }
}
.page-template-tpl-publications .publications_navMobile {
  position: relative;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  margin-bottom: 10vh;
  display: none;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publications_navMobile {
    display: block;
  }
}
.page-template-tpl-publications .publications_navMobile .swiper-slide > div {
  font-size: 3.75rem;
  line-height: 1.1666666667;
  padding-top: 4vh;
  padding-bottom: 4vh;
  color: #000;
}
.page-template-tpl-publications .publications_navMobile_next {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -40px;
  width: 88px;
  height: 38px;
  margin-top: -19px;
}
.page-template-tpl-publications .publications_navMobile_next > svg {
  width: 88px;
  height: 38px;
  stroke-width: 3px;
  stroke: #000 !important;
}
.page-template-tpl-publications .publications_list {
  position: relative;
  padding-bottom: 20vh;
}
.page-template-tpl-publications .publications_list::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 35vh;
  bottom: 0;
  left: 50%;
  width: 110vw;
  transform: translateX(-50%);
  background: #ECECEC;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publications_list::before {
    top: calc(-14vh - 37px);
  }
}
.page-template-tpl-publications .publicationWrap {
  will-change: opacity;
  transition: opacity 0.2s linear;
}
.page-template-tpl-publications .publicationWrap.hidden {
  opacity: 0.2;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publicationWrap {
    opacity: 0;
    display: none;
  }
}
.page-template-tpl-publications .publication {
  position: relative;
}
.page-template-tpl-publications .publication_year {
  position: absolute;
  width: 1px;
  height: 10vh;
  left: 0;
  bottom: 100%;
}
@media (max-width: 767px) {
  .page-template-tpl-publications .publication {
    margin-bottom: 4vh;
  }
}
.page-template-tpl-publications .publication-1 {
  margin-top: 10%;
}
@media (max-width: 1099px) {
  .page-template-tpl-publications .publication-1 {
    margin-top: 0;
    margin-left: -40px;
  }
}
.page-template-tpl-publications .publication-2 {
  margin-top: -55%;
  margin-left: 1.5vw;
}
@media (max-width: 1099px) {
  .page-template-tpl-publications .publication-2 {
    margin-top: 0;
    margin-right: -40px;
  }
}
.page-template-tpl-publications .publication-3 {
  margin-top: -2%;
  margin-right: 1.5vw;
}
@media (max-width: 1099px) {
  .page-template-tpl-publications .publication-3 {
    margin-top: 0;
    margin-right: 0;
    margin-left: -40px;
  }
}
.page-template-tpl-publications .publication-4 {
  margin-top: -65%;
}
@media (max-width: 1099px) {
  .page-template-tpl-publications .publication-4 {
    margin-top: 0;
    margin-right: -40px;
  }
}

.page-template-tpl-contact {
  background-color: #000;
  color: #FFF;
}
.page-template-tpl-contact .footer {
  display: none;
}
.page-template-tpl-contact .logoContainer .logo_text {
  fill: #FFF;
}
.page-template-tpl-contact .logoContainer .menuToggle span {
  background-color: #FFF;
}
.page-template-tpl-contact .main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .main {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    background: #FFF;
    overflow: hidden;
  }
}
.page-template-tpl-contact .main .officesCovers {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: grayscale(100%);
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .page-template-tpl-contact .main .officesCovers {
    z-index: 0;
    width: 100vw;
    height: 85vh;
    transform: scale(1);
  }
}
.page-template-tpl-contact .main .officesCovers.animated {
  clip-path: inset(0 0 0 0);
  animation: officesAnimation 0.8s forwards;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 767px) {
  .page-template-tpl-contact .main .officesCovers.animated {
    animation: none;
  }
}
.page-template-tpl-contact .main .officesCovers .officeCover {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.1);
}
.page-template-tpl-contact .officesCarousel {
  position: absolute;
  top: 14vh;
  left: 7vw;
  right: 7vw;
  bottom: 0;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .officesCarousel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    overflow: hidden;
  }
}
.page-template-tpl-contact .officesCarousel_next {
  position: absolute;
  z-index: 20;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45vw;
  transition: opacity 0.15s linear;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .officesCarousel_next {
    width: 141px;
  }
}
.page-template-tpl-contact .officesCarousel_next svg {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  stroke: #FFF;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .officesCarousel_next svg {
    top: calc(45vh + 130px);
    left: 0;
    width: 141px;
    height: 61px;
    stroke-width: 2px;
  }
}
@media (hover: hover) {
  .page-template-tpl-contact .officesCarousel_next:hover {
    opacity: 0.6;
  }
  .page-template-tpl-contact .officesCarousel_next:hover svg {
    transform: translate(-20%, -50%);
  }
}
.page-template-tpl-contact .office {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}
.page-template-tpl-contact .office_content {
  width: 47.0277777778vw;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
    padding-left: 55px;
    padding-right: 55px;
  }
}
.page-template-tpl-contact .office_titlesWrapper {
  position: relative;
  height: 10rem;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office_titlesWrapper {
    height: 70px;
  }
}
.page-template-tpl-contact .office_title {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10rem;
  line-height: 1;
  text-transform: lowercase;
}
@media (max-width: 1299px) {
  .page-template-tpl-contact .office_title {
    font-size: 8.8888888889rem;
    line-height: 1;
  }
}
@media (max-width: 1099px) {
  .page-template-tpl-contact .office_title {
    font-size: 7.5rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office_title {
    font-size: 4.375rem;
    line-height: 1;
  }
}
.page-template-tpl-contact .office_nextTitlesWrapper {
  position: absolute;
  left: 80vw;
  top: 4vh;
  height: 10rem;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office_nextTitlesWrapper {
    display: none;
  }
}
.page-template-tpl-contact .office_nextTitle {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10rem;
  line-height: 1;
  text-transform: lowercase;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office .sectionTitle {
    margin-top: 35vh;
    margin-bottom: 25vh;
  }
}
.page-template-tpl-contact .office .sectionTitle_content {
  position: relative;
  padding-top: 4vh;
  padding-bottom: 6vh;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office .sectionTitle_content {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.page-template-tpl-contact .office .sectionTitle_footer {
  min-height: auto;
}
.page-template-tpl-contact .office_detailsWrapper {
  position: relative;
  height: 180px;
  margin-top: 6vh;
  margin-left: 9.7555555556vw;
  opacity: 0;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office_detailsWrapper {
    opacity: 1;
    color: #000;
    background-color: #FFF;
    height: calc(160px + 12vh);
    margin-top: 0;
    margin-left: -55px;
    margin-right: -55px;
  }
}
.page-template-tpl-contact .office_details {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.8rem;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office_details {
    padding: 6vh 55px 6vh 96.25px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.page-template-tpl-contact .office_details_icon {
  position: absolute;
  top: 0;
  right: calc(100% + 30px);
  color: #D41136;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office_details_icon {
    display: none;
  }
}
.page-template-tpl-contact .office_details_iconMobile {
  position: absolute;
  top: -30px;
  left: 4px;
  color: #D41136;
  display: none;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office_details_iconMobile {
    display: block;
  }
}
.page-template-tpl-contact .office_details .button {
  margin-top: 3vh;
}
@media (max-width: 767px) {
  .page-template-tpl-contact .office_details .button {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }
}

@keyframes officesAnimation {
  100% {
    clip-path: inset(14% 0% 0% 41%);
    transform: scale(1);
  }
}
.page-template-default .editoSection {
  margin-bottom: 12vh;
}
@media (max-width: 767px) {
  .page-template-default .editoSection {
    padding: 6vh 0;
    margin-bottom: 0;
  }
}
.page-template-default .editoSection .pSection_header {
  min-height: auto;
  padding-top: 20vh;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .page-template-default .editoSection .pSection_header {
    padding-top: 0;
  }
}
.page-template-default .editoSection .pSection_header_inner {
  max-width: none;
}
@media (max-width: 767px) {
  .page-template-default .editoSection .pSection_header .sectionTitle_footer {
    display: none;
  }
}
.page-template-default .editoSection .pSection_content {
  padding-top: 20vh;
}
@media (max-width: 767px) {
  .page-template-default .editoSection .pSection_content {
    padding-top: 2vh;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.page-template-default .editoSection .pSection_content a, .page-template-default .editoSection .pSection_content a:visited {
  color: #D41136;
  text-decoration: none;
  transition: color 0.15s linear;
}
@media (hover: hover) {
  .page-template-default .editoSection .pSection_content a:hover {
    color: #000;
  }
}
.page-template-default .editoSection .sectionTitle_content {
  padding-top: 5vh;
  padding-bottom: 5vh;
}
.page-template-default .editoSection .sectionTitle_footer {
  min-height: auto;
}
.page-template-default .editoSection .sectionTitle_header_content {
  color: #D41136;
}
.page-template-default .editoSection .sectionTitle_header_content_title::before {
  background: #D41136;
}
.page-template-default .editoSection .sectionTitle_header_content_separator {
  background: #000;
}
.page-template-default .editoQuote {
  position: relative;
  margin-bottom: 5vh;
  margin-top: 2vh;
  width: 90%;
  max-width: 550px;
}
@media (max-width: 767px) {
  .page-template-default .editoQuote {
    margin-top: 0;
    margin-bottom: 4vh;
    width: 100%;
    font-size: 1rem;
    line-height: 1.25;
  }
}
.page-template-default .editoQuote_icon {
  position: absolute;
  top: -30px;
  right: calc(100% + 30px);
  color: #D41136;
}
@media (max-width: 767px) {
  .page-template-default .editoQuote_icon {
    transform: scale(0.85);
    top: -20px;
    right: calc(100% + 10px);
  }
}
.page-template-default .contentSection {
  overflow: hidden;
}
.page-template-default .edito_logo {
  position: absolute;
  top: 70vh;
  left: -150px;
  color: #CDCDCD;
  z-index: 1;
  opacity: 0.15;
}
@media (max-width: 767px) {
  .page-template-default .edito_logo {
    display: none;
  }
}

.page-template-tpl-webinaire,
.single-webinaire {
  background-color: #212020;
  color: #FFF;
}
.page-template-tpl-webinaire .logoContainer,
.page-template-tpl-webinaire .menuToggle,
.page-template-tpl-webinaire .footer,
.single-webinaire .logoContainer,
.single-webinaire .menuToggle,
.single-webinaire .footer {
  display: none;
}
.page-template-tpl-webinaire .webinaire,
.single-webinaire .webinaire {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  padding: 6vh 0;
}
@media (max-width: 1099px) {
  .page-template-tpl-webinaire .webinaire,
  .single-webinaire .webinaire {
    min-height: 100vh;
  }
}
.page-template-tpl-webinaire .webinaire_header,
.single-webinaire .webinaire_header {
  text-align: center;
  font-family: "Copperplate";
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
}
.page-template-tpl-webinaire .webinaire_header h2,
.single-webinaire .webinaire_header h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #FFF;
  font-weight: 300;
}
.page-template-tpl-webinaire .webinaire_title,
.single-webinaire .webinaire_title {
  margin-top: 6vh;
  text-align: center;
  font-size: clamp(70px, 12vmin, 150px);
  line-height: 0.95;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaire .webinaire_title,
  .single-webinaire .webinaire_title {
    font-size: 2.5rem;
    line-height: 1;
  }
}
.page-template-tpl-webinaire .webinaire_title em, .page-template-tpl-webinaire .webinaire_title i,
.single-webinaire .webinaire_title em,
.single-webinaire .webinaire_title i {
  color: #D41136;
}
.page-template-tpl-webinaire .webinaire_title .word,
.single-webinaire .webinaire_title .word {
  display: inline-block;
}
.page-template-tpl-webinaire .webinaire_date,
.single-webinaire .webinaire_date {
  margin-bottom: 3.5vh;
  padding-bottom: 1.5vh;
  border-bottom: 1px solid #FFF;
  text-transform: uppercase;
  font-family: "Copperplate";
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 3px;
}
.page-template-tpl-webinaire .webinaire_content,
.single-webinaire .webinaire_content {
  padding-bottom: 3.5vh;
  position: relative;
  border-bottom: 1px solid #FFF;
  font-size: 0.7rem;
  line-height: 1.7142857143;
  margin-top: 4vh;
}
.page-template-tpl-webinaire .webinaire_content_icon,
.single-webinaire .webinaire_content_icon {
  position: absolute;
  top: calc(3.5vh + 60px);
  right: calc(100% + 30px);
  color: #D41136;
}
.page-template-tpl-webinaire .webinaire_action,
.single-webinaire .webinaire_action {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 12vh auto 0 auto;
  background-color: #D41136;
  font-size: 1.3rem;
  line-height: 1.1538461538;
  text-transform: uppercase;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.page-template-tpl-webinaire .webinaire_action strong,
.single-webinaire .webinaire_action strong {
  font-style: italic;
}
.page-template-tpl-webinaire .webinaire_action:hover,
.single-webinaire .webinaire_action:hover {
  transform: scale(1.2) !important;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaire .webinaire_action,
  .single-webinaire .webinaire_action {
    margin-top: 4vh;
    width: 140px;
    height: 140px;
  }
}
.page-template-tpl-webinaire .webinaire_action::before,
.single-webinaire .webinaire_action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  margin-top: -120px;
  margin-left: -120px;
  background-image: url(../images/webinar.svg);
  opacity: 0.5;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: rotate 10s linear infinite;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaire .webinaire_action::before,
  .single-webinaire .webinaire_action::before {
    width: 180px;
    height: 180px;
    margin-top: -90px;
    margin-left: -90px;
  }
}
.page-template-tpl-webinaire .trailImg,
.single-webinaire .trailImg {
  max-width: 400px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: transform;
  transform-origin: center center;
}
.page-template-tpl-webinaire .trailEffect,
.single-webinaire .trailEffect {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  opacity: 0.6;
  filter: grayscale(100%);
}
@media (max-width: 767px) {
  .page-template-tpl-webinaire .trailEffect,
  .single-webinaire .trailEffect {
    display: none;
  }
}

.webinaire_form {
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.webinaire_form, .webinaire_form * {
  cursor: auto !important;
}
.webinaire_form_mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer !important;
  opacity: 0;
}
.webinaire_form_content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 960px;
  width: 80%;
  overflow: auto;
  background-color: #FFF;
  color: #000;
  transform: translateX(101%) translateZ(0px);
}
@media (max-width: 767px) {
  .webinaire_form_content {
    width: 90%;
  }
}
.webinaire_form_scroller {
  padding: 6vw 6vw;
}
@media (max-width: 767px) {
  .webinaire_form_scroller {
    position: relative;
    overflow: hidden;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}
.webinaire_form_title {
  position: relative;
  text-transform: uppercase;
  font-family: "Copperplate";
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  padding: 10px 0 20px 25px;
  margin-bottom: 20px;
  border-bottom: 2px solid #000;
}
.webinaire_form_title::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #6D7278;
}
.webinaire_form_intro {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.webinaire_form_intro strong, .webinaire_form_intro b {
  color: #D41136;
}
.webinaire_form_code .iframe-wrapper, .webinaire_form_code iframe {
  height: 600px !important;
}
@media (max-width: 767px) {
  .webinaire_form_code .iframe-wrapper, .webinaire_form_code iframe {
    height: 700px !important;
  }
}
.webinaire_form_iframe {
  width: 100%;
  height: 630px;
}
@media (max-width: 767px) {
  .webinaire_form_iframe {
    height: 850px;
  }
}
.webinaire_form--opened {
  display: block;
}

.page-template-tpl-webinaires .header_behind::after {
  background-color: #222;
}
.page-template-tpl-webinaires .header .sectionTitle a {
  z-index: 10;
  pointer-events: all;
}
.page-template-tpl-webinaires .header .sectionTitle a, .page-template-tpl-webinaires .header .sectionTitle a:visited {
  color: #FFF;
  text-decoration: none;
}
.page-template-tpl-webinaires .header .sectionTitle a:hover {
  text-decoration: underline;
}
.page-template-tpl-webinaires .topWebinar {
  padding-bottom: 10vh;
}
.page-template-tpl-webinaires .topWebinar .pSection_header {
  min-height: auto;
}
.page-template-tpl-webinaires .topWebinar_content {
  position: relative;
  font-size: 3rem;
  line-height: 1.1666666667;
  font-weight: 300;
  color: #000;
  margin-top: 25vh;
}
@media (max-width: 1299px) {
  .page-template-tpl-webinaires .topWebinar_content {
    font-size: 2.4444444444rem;
    line-height: 1.1363636364;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-webinaires .topWebinar_content {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 75px;
  }
  .page-template-tpl-webinaires .topWebinar_content br, .page-template-tpl-webinaires .topWebinar_content br::after {
    content: " ";
  }
}
.page-template-tpl-webinaires .topWebinar_content_icon {
  position: absolute;
  left: 0;
  bottom: calc(100% + 40px);
  color: #D41136;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaires .topWebinar_content_icon {
    transform: scale(0.85);
    bottom: calc(100% + 10px);
    left: -30px;
  }
}
.page-template-tpl-webinaires .topWebinar_bottomWrap {
  position: relative;
  margin-top: 4vh;
  background-color: #fff;
  overflow: hidden;
}
.page-template-tpl-webinaires .topWebinar_bottom {
  position: relative;
}
.page-template-tpl-webinaires .topWebinar_bottom_target {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.page-template-tpl-webinaires .topWebinar_date {
  position: absolute;
  z-index: 5;
  top: 10vh;
  left: 50%;
  width: 104vw;
  margin-left: -52vw;
  font-size: 8.5rem;
  line-height: 1;
  height: 170px;
  font-weight: 300;
  color: #D2D2D2;
  opacity: 0.5;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}
.page-template-tpl-webinaires .topWebinar_date_rail {
  position: absolute;
  top: 0;
  left: -30vw;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaires .topWebinar_date {
    display: none;
  }
}
.page-template-tpl-webinaires .topWebinar_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-template-tpl-webinaires .topWebinar_cover::before {
  content: "";
  display: block;
  padding-top: 150%;
}
.page-template-tpl-webinaires .topWebinar_additional {
  margin-top: 30vh;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 300;
  color: #000;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaires .topWebinar_additional {
    margin-top: 30px;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.page-template-tpl-webinaires .topWebinar_additional b, .page-template-tpl-webinaires .topWebinar_additional strong {
  font-weight: 700;
}
.page-template-tpl-webinaires .topWebinar_additional a {
  font-weight: 700;
}
.page-template-tpl-webinaires .topWebinar_logo {
  position: absolute;
  z-index: 2;
  left: 23vw;
  top: 10vh;
  color: #D41136;
  opacity: 1;
  pointer-events: none;
  mix-blend-mode: lighten;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaires .topWebinar_logo {
    display: none;
  }
}
.page-template-tpl-webinaires .webinarsSocial {
  background-color: #D41136;
  min-height: auto;
}
.page-template-tpl-webinaires .webinarsSocial .pSection_header {
  min-height: auto;
  padding-top: 20vh;
  padding-bottom: 20vh;
}
.page-template-tpl-webinaires .webinarsSocial .sectionTitle_footer_link {
  color: #FFF;
}
.page-template-tpl-webinaires .webinarsSocial .sectionTitle_footer_link::after {
  background-color: #fff;
}
.page-template-tpl-webinaires .webinarsSocial .sectionTitle:hover .sectionTitle_footer_link {
  color: #D41136;
}
.page-template-tpl-webinaires .webinarsSocial_txt {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  height: 100%;
  width: 51vw;
  font-size: 15rem;
  line-height: 1;
  font-weight: 300;
  color: #FFF;
  opacity: 0.2;
  overflow: hidden;
  pointer-events: none;
}
.page-template-tpl-webinaires .webinarsSocial_txt_rail {
  position: absolute;
  top: -100vh;
  left: 0;
  right: 0;
}
.page-template-tpl-webinaires .webinarsList {
  padding-bottom: 10vh;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaires .webinarsList {
    padding-bottom: 0;
  }
}
.page-template-tpl-webinaires .webinarsList .sectionTitle_content {
  padding: 0;
}
.page-template-tpl-webinaires .webinarsList .sectionTitle_footer {
  min-height: auto;
}
.page-template-tpl-webinaires .webinarsList .webinars_list_content {
  padding-top: 18vh;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaires .webinarsList .webinars_list_content {
    padding-top: 0;
  }
}
.page-template-tpl-webinaires .webinarsList .colYear {
  padding-top: 20vh;
  margin-right: 1.85vw;
}
.page-template-tpl-webinaires .webinarsList .colYear--prev {
  text-align: center;
}
.page-template-tpl-webinaires .webinarsList .colYear--prev button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  opacity: 0.3;
  transition: opacity 0.2s linear;
}
.page-template-tpl-webinaires .webinarsList .colYear--prev button:hover {
  opacity: 1;
}
.page-template-tpl-webinaires .webinarsList .colYear--prev .sectionTitle_content {
  padding: 4.5vh 0;
}
.page-template-tpl-webinaires .webinarsList_content {
  padding-top: 20vh;
}
@media (max-width: 767px) {
  .page-template-tpl-webinaires .webinarsList_content {
    padding-top: 0;
  }
}
.page-template-tpl-webinaires .webinarsList .yearsList_container {
  height: calc(9vh + 70px);
  overflow: hidden;
}
.page-template-tpl-webinaires .webinarsList .yearsList {
  transition: transform 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.page-template-tpl-webinaires .webinarsList .yearsList > li a {
  display: block;
  padding: 4.5vh 0;
  text-decoration: none;
}
@media (hover: hover) {
  .page-template-tpl-webinaires .webinarsList .yearsList > li a:hover {
    text-decoration: none;
  }
}

.webinarBlocList {
  position: relative;
  padding-top: 3vh;
  margin-bottom: 9vh;
  color: #000;
}
@media (max-width: 767px) {
  .webinarBlocList {
    padding-top: 0;
    margin-bottom: 9vh;
  }
}
.webinarBlocList_header {
  font-family: "Copperplate";
  color: #D41136;
  font-size: 1.75rem;
  line-height: 1.2857142857;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  margin-bottom: 5px;
  transform: translateY(-10px);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (max-width: 1299px) {
  .webinarBlocList_header {
    font-size: 1.3333333333rem;
    line-height: 1.25;
  }
}
@media (max-width: 767px) {
  .webinarBlocList_header {
    opacity: 1;
    transform: translateY(0);
    font-size: 1.25rem;
    line-height: 1;
  }
}
.webinarBlocList_header > * {
  display: inline-block;
  vertical-align: middle;
}
.webinarBlocList_title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #000;
  opacity: 0.3;
  margin-bottom: 2vh;
  transition: opacity 0.15s linear;
}
@media (max-width: 1299px) {
  .webinarBlocList_title {
    font-size: 2rem;
    line-height: 1.1111111111;
  }
}
@media (max-width: 767px) {
  .webinarBlocList_title {
    opacity: 1;
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }
}
.webinarBlocList_title span {
  position: relative;
  display: inline;
  transition: box-shadow 0.15s linear;
  box-shadow: inset 0 0 0 0 #000;
}
.webinarBlocList_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.webinarBlocList_content {
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .webinarBlocList_content {
    padding-bottom: 30px;
  }
}
.webinarBlocList .button {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1), color 0.5s cubic-bezier(1, 0, 0, 1);
}
@media (max-width: 767px) {
  .webinarBlocList .button {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: hover) {
  .webinarBlocList:hover .webinarBlocList_header, .webinarBlocList:hover .button {
    opacity: 1;
    transform: translateY(0);
  }
  .webinarBlocList:hover .webinarBlocList_title {
    opacity: 1;
  }
  .webinarBlocList:hover .webinarBlocList_title span {
    box-shadow: inset 0 -3px 0 0 #000;
  }
  .webinarBlocList:hover .webinarBlocList_excerpt {
    opacity: 1;
  }
}

.webinars_navMobile {
  position: relative;
  margin-bottom: 10vh;
}
.webinars_navMobile_carousel {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.webinars_navMobile .swiper-slide > div {
  font-size: 3.75rem;
  line-height: 1.1666666667;
  padding-top: 4vh;
  padding-bottom: 4vh;
  color: #000;
}
.webinars_navMobile_next {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -40px;
  width: 88px;
  height: 38px;
  margin-top: -19px;
}
.webinars_navMobile_next > svg {
  width: 88px;
  height: 38px;
  stroke-width: 3px;
  stroke: #000 !important;
}

.page-template-tpl-audit-inscription {
  background-color: #212020;
  color: #FFF;
}
.page-template-tpl-audit-inscription .logoContainer,
.page-template-tpl-audit-inscription .menuToggle,
.page-template-tpl-audit-inscription .footer {
  display: none;
}
.page-template-tpl-audit-inscription .audit {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  padding: 6vh 0 12vh;
}
@media (max-width: 1099px) {
  .page-template-tpl-audit-inscription .audit {
    min-height: 100vh;
  }
}
.page-template-tpl-audit-inscription .audit_header {
  text-align: center;
  font-family: "Copperplate";
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
}
.page-template-tpl-audit-inscription .audit_header h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #FFF;
  font-weight: 300;
}
.page-template-tpl-audit-inscription .audit_title {
  margin-top: 3vh;
  text-align: center;
  font-size: clamp(70px, 9.5vmin, 135px);
  line-height: 0.95;
}
@media (max-width: 1299px) {
  .page-template-tpl-audit-inscription .audit_title {
    font-size: clamp(50px, 6vmin, 90px);
  }
}
@media (max-width: 767px) {
  .page-template-tpl-audit-inscription .audit_title {
    font-size: 2.5rem;
    line-height: 1;
  }
}
.page-template-tpl-audit-inscription .audit_title em, .page-template-tpl-audit-inscription .audit_title i {
  color: #D41136;
}
.page-template-tpl-audit-inscription .audit_title .word {
  display: inline-block;
}
.page-template-tpl-audit-inscription .audit_content {
  padding-top: 3.5vh;
  position: relative;
  border-top: 1px solid #FFF;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 4vh;
  text-align: left;
}
@media (max-width: 1099px) {
  .page-template-tpl-audit-inscription .audit_content {
    margin-bottom: 4vh;
  }
}
.page-template-tpl-audit-inscription .audit_content_icon {
  position: absolute;
  top: calc(3.5vh + 0px);
  right: calc(100% + 30px);
  color: #D41136;
}
.page-template-tpl-audit-inscription .audit_action {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 0 auto;
  background-color: #D41136;
  font-size: 1.3rem;
  line-height: 1.1538461538;
  text-transform: uppercase;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.page-template-tpl-audit-inscription .audit_action strong {
  font-style: italic;
}
.page-template-tpl-audit-inscription .audit_action:hover {
  transform: scale(1.2) !important;
}
@media (max-width: 767px) {
  .page-template-tpl-audit-inscription .audit_action {
    margin-top: 4vh;
    width: 140px;
    height: 140px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.page-template-tpl-audit-inscription .audit_form .wpcf7-email {
  width: 100%;
  font-size: 3.5rem;
  line-height: 1;
  padding: 20px;
  text-align: center;
  border: 1px solid #686868;
  color: #FFF;
}
@media (max-width: 767px) {
  .page-template-tpl-audit-inscription .audit_form .wpcf7-email {
    font-size: 1.5rem;
    line-height: 1;
  }
}
.page-template-tpl-audit-inscription .audit_form .wpcf7-not-valid-tip {
  margin-top: 10px;
}
.page-template-tpl-audit-inscription .audit_form .wpcf7 form .wpcf7-response-output {
  margin-top: 20px;
  margin-left: 5.5555%;
  border: 0 !important;
  padding-left: 0;
}

.p-1 {
  position: absolute;
  z-index: -1;
  top: 2vh;
  right: 45vw;
  color: rgba(255, 255, 255, 0.2);
  mix-blend-mode: lighten;
  opacity: 0.1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-1 {
    display: none;
  }
}

.p-2 {
  position: absolute;
  z-index: -1;
  bottom: 44vh;
  left: 68vw;
  color: rgba(255, 255, 255, 0.2);
  mix-blend-mode: lighten;
  opacity: 0.1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-2 {
    display: none;
  }
}

.p-3 {
  position: absolute;
  z-index: -1;
  top: 75vh;
  left: 32vw;
  color: rgba(255, 255, 255, 0.2);
  mix-blend-mode: lighten;
  opacity: 0.1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-3 {
    display: none;
  }
}

.page-template-tpl-audit-validation {
  background-color: #212020;
  color: #FFF;
}
.page-template-tpl-audit-validation .logoContainer,
.page-template-tpl-audit-validation .menuToggle,
.page-template-tpl-audit-validation .footer {
  display: none;
}
.page-template-tpl-audit-validation .audit {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  padding: 6vh 0 12vh;
}
@media (max-width: 1099px) {
  .page-template-tpl-audit-validation .audit {
    min-height: 100vh;
  }
}
.page-template-tpl-audit-validation .audit_header {
  text-align: center;
  font-family: "Copperplate";
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
}
.page-template-tpl-audit-validation .audit_header h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #FFF;
  font-weight: 300;
}
.page-template-tpl-audit-validation .audit_title {
  margin-top: 3vh;
  text-align: center;
  font-size: clamp(70px, 11vmin, 150px);
  line-height: 0.95;
}
@media (max-width: 767px) {
  .page-template-tpl-audit-validation .audit_title {
    font-size: 2.5rem;
    line-height: 1;
  }
}
.page-template-tpl-audit-validation .audit_title strong, .page-template-tpl-audit-validation .audit_title b {
  color: #D41136;
  font-weight: normal;
}
.page-template-tpl-audit-validation .audit_title .word {
  display: inline-block;
}
.page-template-tpl-audit-validation .audit_content {
  padding-top: 3.5vh;
  padding-bottom: 3.5vh;
  position: relative;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 4vh;
}
.page-template-tpl-audit-validation .audit_content_icon {
  position: absolute;
  top: calc(3.5vh + 0px);
  right: calc(100% + 30px);
  color: #D41136;
}
.page-template-tpl-audit-validation .audit_action {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 0 auto;
  background-color: #D41136;
  font-size: 1.3rem;
  line-height: 1.1538461538;
  text-transform: uppercase;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.page-template-tpl-audit-validation .audit_action strong {
  font-style: italic;
}
.page-template-tpl-audit-validation .audit_action:hover {
  transform: scale(1.2) !important;
}
@media (max-width: 767px) {
  .page-template-tpl-audit-validation .audit_action {
    margin-top: 4vh;
    width: 140px;
    height: 140px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.page-template-tpl-audit-validation .audit_form form p:first-child {
  text-align: center;
  width: 50%;
  margin: auto auto 40px auto;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .page-template-tpl-audit-validation .audit_form form p:first-child {
    display: block;
    width: 100%;
    margin: 40px auto;
  }
}
.page-template-tpl-audit-validation .audit_form form p:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: auto;
}
@media (max-width: 767px) {
  .page-template-tpl-audit-validation .audit_form form p:last-child {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.page-template-tpl-audit-validation .audit_form label {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
}
.page-template-tpl-audit-validation .audit_form label input {
  display: block;
  margin-top: 20px;
  width: 100%;
  font-size: 3.5rem;
  line-height: 1;
  padding: 20px;
  text-align: left;
  border: 1px solid #686868;
  color: #FFF;
}
@media (max-width: 767px) {
  .page-template-tpl-audit-validation .audit_form label input {
    text-align: center;
    font-size: 2rem;
    line-height: 1;
    padding: 20px;
  }
}
.page-template-tpl-audit-validation .audit_form input[type=submit] {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
  min-width: 180px;
  border-radius: 50%;
  margin-left: 50px;
  background-color: #D41136;
  font-size: 1.1rem;
  line-height: 1.3636363636;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.page-template-tpl-audit-validation .audit_form input[type=submit] strong {
  font-style: italic;
}
.page-template-tpl-audit-validation .audit_form input[type=submit]:hover {
  transform: scale(1.1) !important;
}
@media (max-width: 767px) {
  .page-template-tpl-audit-validation .audit_form input[type=submit] {
    margin-top: 4vh;
    width: 140px;
    height: 140px;
    min-width: 140px;
    font-size: 1rem;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-template-tpl-audit-validation .audit .open-audit {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
  min-width: 180px;
  border-radius: 50%;
  margin: auto;
  background-color: #D41136;
  font-size: 1.1rem;
  line-height: 1.3636363636;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.page-template-tpl-audit-validation .audit_iframe {
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-template-tpl-audit-validation .audit_iframe, .page-template-tpl-audit-validation .audit_iframe * {
  cursor: auto !important;
}
.page-template-tpl-audit-validation .audit_iframe_mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(212, 17, 54, 0.5);
}
.page-template-tpl-audit-validation .audit_iframe_content {
  position: absolute;
  top: 5vh;
  left: 50%;
  bottom: 5vh;
  max-width: 800px;
  width: 80%;
  margin: auto;
  overflow: auto;
  background-color: #FFF;
  color: #000;
  transform: translateX(-50%) translateZ(0px);
}
@media (max-width: 767px) {
  .page-template-tpl-audit-validation .audit_iframe_content {
    width: 90%;
  }
}

.page-template-tpl-services {
  background-color: #212020;
  color: #FFF;
  font-family: "PP Mori";
}
.page-template-tpl-services .logoContainer,
.page-template-tpl-services .menuToggle,
.page-template-tpl-services .footer {
  display: none;
}
.page-template-tpl-services .main {
  padding-left: 5vw;
  padding-right: 5vw;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  opacity: 1 !important;
}
@media (max-width: 900px) {
  .page-template-tpl-services .main {
    padding-left: 0;
    padding-right: 0;
    min-height: auto;
  }
}
.page-template-tpl-services .services_header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24vh;
  padding-bottom: 4vh;
  padding-left: 5vw;
  padding-right: 5vw;
  color: #FFF;
  display: flex;
  align-items: flex-end;
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 22vh;
    height: calc(var(--vh, 1vh) * 22);
    padding-bottom: 3vh;
    padding-bottom: calc(var(--vh, 1vh) * 3);
    padding-left: 5vw;
    padding-right: 5vw;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}
.page-template-tpl-services .services_header::after {
  content: "";
  position: absolute;
  left: 5vw;
  bottom: 0;
  right: 5vw;
  height: 2px;
  background: #FFF;
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_header::after {
    display: none;
  }
}
.page-template-tpl-services .services_header_title {
  text-transform: uppercase;
  font-size: 7vh;
  line-height: 0.85;
  margin-right: 12vw;
  mix-blend-mode: difference;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_header_title {
    margin-right: 10vw;
  }
}
.page-template-tpl-services .services_header_content {
  width: 22vw;
  margin-right: 5vw;
  font-size: 0.8rem;
  line-height: 1.75;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_header_content {
    width: 26vw;
  }
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_header_content {
    display: none;
  }
}
.page-template-tpl-services .services_header_link {
  display: inline-block;
  background: #FFF;
  padding: 10px 30px;
  border-radius: 30px;
  margin-left: auto;
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_header_link {
    display: none;
  }
}
.page-template-tpl-services .services_list {
  width: 35vw;
  margin-left: auto;
  padding-top: 30vh;
  padding-bottom: 10vh;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_list {
    width: 40vw;
  }
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_list {
    display: none;
  }
}
.page-template-tpl-services .services_list_item {
  position: relative;
  padding: 25px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_list_item {
    padding: 20px 0;
  }
}
.page-template-tpl-services .services_list_item + .services_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 2px;
  background: #FFF;
}
.page-template-tpl-services .services_list_item_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 2;
}
.page-template-tpl-services .services_list_item_num {
  position: absolute;
  top: 50%;
  right: calc(100% + 20px);
  transform: translate(-20px, -50%);
  font-size: 3rem;
  line-height: 1;
  text-align: right;
  opacity: 0;
  transition: opacity 0.2s linear, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_list_item_num {
    font-size: 2rem;
    line-height: 1;
  }
}
.page-template-tpl-services .services_list_item_title {
  flex: 1;
  padding-left: 25px;
  opacity: 0.5;
  transition: opacity 0.2s linear;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_list_item_title {
    padding-left: 20px;
  }
}
.page-template-tpl-services .services_list_item_title h2 {
  font-size: 1.3rem;
  line-height: 1.0769230769;
}
.page-template-tpl-services .services_list_item_title h3 {
  font-size: 1rem;
  line-height: 1.4;
  font-style: italic;
}
.page-template-tpl-services .services_list_item_action {
  margin-left: 20px;
  transform: translateX(20px);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.page-template-tpl-services .services_list_item_button {
  height: 60px;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1.8;
  font-weight: 700;
  border-radius: 30px;
  padding: 0 20px;
  transition: opacity 0.2s linear;
  animation: pulse 6s infinite;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_list_item_button {
    height: 45px;
  }
}
.page-template-tpl-services .services_list_item_button:hover {
  opacity: 0.6;
}
.page-template-tpl-services .services_list_item--active .services_list_item_num {
  opacity: 1;
  transform: translate(0, -50%);
}
.page-template-tpl-services .services_list_item--active .services_list_item_title {
  opacity: 1;
}
.page-template-tpl-services .services_list_item--active .services_list_item_action {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  transform: translateX(0);
}
.page-template-tpl-services .services_list_item--active .services_list_item_link {
  display: none;
}
.page-template-tpl-services .services_list_item:hover .services_list_item_title {
  opacity: 1;
}
.page-template-tpl-services .services_carousel {
  position: relative;
  height: 78vh;
  height: calc(var(--vh, 1vh) * 78);
  padding-left: 5vw;
  padding-right: 5vw;
  display: none;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_carousel {
    display: block;
  }
}
.page-template-tpl-services .services_carousel .swiper-pagination {
  position: absolute;
  bottom: 4vh;
  bottom: calc(var(--vh, 1vh) * 4);
  left: 5vw;
  width: auto;
  z-index: 5;
  mix-blend-mode: difference;
}
.page-template-tpl-services .services_carousel .swiper-pagination-bullet {
  margin: 0 5px !important;
  width: 12px;
  height: 12px;
  border: 1px solid #FFFFFF;
  background-color: transparent;
}
.page-template-tpl-services .services_carousel .swiper-pagination-bullet-active {
  background-color: #FFF;
}
.page-template-tpl-services .services_carousel .swiper-nav {
  position: absolute;
  bottom: 3vh;
  bottom: calc(var(--vh, 1vh) * 3);
  right: 15vw;
  z-index: 5;
}
.page-template-tpl-services .services_carousel .swiper-button-prev, .page-template-tpl-services .services_carousel .swiper-button-next {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  left: auto;
  right: auto;
}
.page-template-tpl-services .services_carousel .swiper-button-prev::after, .page-template-tpl-services .services_carousel .swiper-button-next::after {
  display: none;
}
.page-template-tpl-services .services_carousel_item {
  position: relative;
}
.page-template-tpl-services .services_carousel_item_media {
  position: relative;
  width: 100%;
  height: 55vh;
  height: calc(var(--vh, 1vh) * 55);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
}
.page-template-tpl-services .services_carousel_item_media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-tpl-services .services_carousel_item_num {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 55px;
  line-height: 1;
  mix-blend-mode: difference;
}
@media (max-width: 767px) {
  .page-template-tpl-services .services_carousel_item_num {
    font-size: 40px;
  }
}
.page-template-tpl-services .services_carousel_item_button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 40px;
  line-height: 40px;
  mix-blend-mode: difference;
  color: #000;
  background-color: #FFF;
  width: 60px;
  height: 60px;
  font-size: 18px;
  border-radius: 60px;
  animation: pulse 6s infinite;
}
@media (max-width: 767px) {
  .page-template-tpl-services .services_carousel_item_button {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
.page-template-tpl-services .services_carousel_item_title {
  padding-top: 3vh;
  padding-top: calc(var(--vh, 1vh) * 3);
}
.page-template-tpl-services .services_carousel_item_title h2, .page-template-tpl-services .services_carousel_item_title h3 {
  font-size: 2.5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .page-template-tpl-services .services_carousel_item_title h2, .page-template-tpl-services .services_carousel_item_title h3 {
    font-size: 1.5rem;
    line-height: 1;
  }
}
.page-template-tpl-services .services_backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_backgrounds {
    display: none;
  }
}
.page-template-tpl-services .services_backgrounds .services_background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.25s linear;
}
.page-template-tpl-services .services_backgrounds .services_background--active {
  opacity: 1;
}
.page-template-tpl-services .services_backgrounds .services_background svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: currentColor;
}
.page-template-tpl-services .services_backgrounds .services_background svg.service--2 {
  fill: none;
  stroke: currentColor;
}
.page-template-tpl-services .services_backgroundsMobile {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 0;
  display: none;
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_backgroundsMobile {
    display: block;
  }
}
.page-template-tpl-services .services_backgroundsMobile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
}
.page-template-tpl-services .services_backgroundsMobile_item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.25s linear;
}
.page-template-tpl-services .services_backgroundsMobile_item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-tpl-services .services_backgroundsMobile_item--active {
  opacity: 1;
}
.page-template-tpl-services .services_medias {
  position: absolute;
  top: 24vh;
  left: 5vw;
  bottom: 16vh;
  width: 49vw;
  height: 60vh;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_medias {
    width: 42vw;
    left: 3vw;
    height: 55vh;
  }
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_medias {
    display: none;
  }
}
.page-template-tpl-services .services_medias_inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.page-template-tpl-services .services_media {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.4s linear, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_media {
    height: 55vh;
  }
}
.page-template-tpl-services .services_media--active {
  opacity: 1;
}
.page-template-tpl-services .services_media--active .services_media_render lite-youtube + img {
  opacity: 0;
}
.page-template-tpl-services .services_media_render {
  width: 90%;
  max-height: 90%;
  margin: auto;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
}
.page-template-tpl-services .services_media_render::before {
  content: "";
  padding-top: 56.25%;
  display: block;
}
.page-template-tpl-services .services_media_render img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  transition: opacity 0.4s linear;
}
.page-template-tpl-services .services_form {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  background-color: #FFF;
  color: #000;
  display: flex;
  transform: translateY(101%);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_form {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }
}
.page-template-tpl-services .services_form--active {
  transform: translateY(0);
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_form--active {
    display: block;
  }
}
.page-template-tpl-services .services_form_close {
  position: absolute;
  top: 5vw;
  right: 5vw;
  z-index: 5;
  width: 80px;
  height: 80px;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 80px;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_form_close {
    width: 50px;
    height: 50px;
    border-radius: 50px;
  }
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_form_close {
    width: 30px;
    height: 30px;
  }
}
.page-template-tpl-services .services_form_close:hover {
  transform: rotate(180deg);
}
.page-template-tpl-services .services_form_close::before, .page-template-tpl-services .services_form_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 80px;
  height: 2px;
  background-color: #FFF;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_form_close::before, .page-template-tpl-services .services_form_close::after {
    width: 50px;
  }
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_form_close::before, .page-template-tpl-services .services_form_close::after {
    width: 30px;
    background-color: #000;
  }
}
.page-template-tpl-services .services_form_close::before {
  transform: rotate(-45deg);
}
.page-template-tpl-services .services_form_close::after {
  transform: rotate(45deg);
}
.page-template-tpl-services .services_form_arrow {
  position: absolute;
  top: 8vh;
  left: 50%;
  transform: translateX(-40%);
  mix-blend-mode: difference;
}
.page-template-tpl-services .services_form_left, .page-template-tpl-services .services_form_right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_form_left, .page-template-tpl-services .services_form_right {
    display: block;
    width: 100%;
    height: auto;
  }
}
.page-template-tpl-services .services_form_left h2 {
  font-size: 3.1rem;
  line-height: 1;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_form_left h2 {
    font-size: 2.2rem;
    line-height: 1;
  }
}
.page-template-tpl-services .services_form_left h3 {
  font-size: 2.1rem;
  line-height: 1.4761904762;
  font-style: italic;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_form_left h3 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.page-template-tpl-services .services_form_right {
  color: #FFF;
}
.page-template-tpl-services .services_form_right h2 {
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3vh;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_form_right h2 {
    font-size: 2.2rem;
    line-height: 1;
  }
}
.page-template-tpl-services .services_form_right .services_form_inner {
  padding-left: 10vw;
  padding-right: 10vw;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_form_right .services_form_inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.page-template-tpl-services .services_form_inner {
  padding: 5vw;
  max-height: 100%;
  overflow: auto;
  width: 100%;
  position: relative;
}
@media (max-width: 900px) {
  .page-template-tpl-services .services_form_inner {
    padding: 15vh 5vw;
  }
}
.page-template-tpl-services .services_form_intro {
  margin-top: 3vh;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 1099px) {
  .page-template-tpl-services .services_form_intro {
    font-size: 1.2rem;
    line-height: 1.3333333333;
  }
}
.page-template-tpl-services .services_form_content {
  margin-top: 3vh;
}
.page-template-tpl-services .services_form_link {
  margin-top: 3vh;
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1.25;
  font-weight: 700;
  border-radius: 30px;
  padding: 20px 30px 18px 30px;
  text-decoration: none;
  transition: opacity 0.2s linear;
}
.page-template-tpl-services .services_form_link, .page-template-tpl-services .services_form_link:visited {
  color: #FFF;
}
.page-template-tpl-services .services_form_link:hover {
  opacity: 0.7;
}
.page-template-tpl-services .services_form .wpcf7 label {
  display: block;
  margin-bottom: 20px;
  font-size: 0.6rem;
  line-height: 1.8;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-form-control {
  padding: 5px 0;
  color: #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 0.8rem;
  line-height: 1.8;
  width: 100%;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-not-valid-tip {
  color: #FFF;
  font-weight: 700;
  margin-top: 5px;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-submit {
  width: auto;
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1.25;
  font-weight: 700;
  border-radius: 30px;
  padding: 20px 30px 18px 30px;
  margin-top: 20px;
  text-decoration: none;
  background-color: #FFF;
  border: 0;
  transition: opacity 0.2s linear;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-submit[disabled] {
  opacity: 0.7;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-submit:hover {
  opacity: 0.7;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-spinner {
  display: block;
  margin: 10px 10px;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-response-output {
  background-color: #FFF;
  border-radius: 15px;
  margin: 0;
  padding: 20px 30px;
  font-size: 0.9rem;
  line-height: 1.5555555556;
  border: 0;
  text-align: center;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance {
  border: 0;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
  position: relative;
  text-transform: none;
  font-size: 0.7rem;
  line-height: 1.5714285714;
  margin-bottom: 5px;
  padding-left: 27px;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label input {
  position: absolute;
  margin-top: 3px;
  opacity: 0;
  visibility: hidden;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label input:checked + span::before {
  background: #FFF;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label input:checked + span::after {
  opacity: 1;
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 18px;
  border: 2px solid #FFF;
}
@media (max-width: 767px) {
  .page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label span::before {
    top: -2px;
  }
}
.page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label span::after {
  position: absolute;
  top: 6px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: black;
  opacity: 0;
}
@media (max-width: 767px) {
  .page-template-tpl-services .services_form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label span::after {
    top: 3px;
  }
}
.page-template-tpl-services .services_form .wpcf7 .form-infos {
  font-size: 0.7rem;
  line-height: 1.5714285714;
  margin-top: 0;
  padding-left: 27px;
  font-weight: 700;
}
.page-template-tpl-services .services_form .wpcf7 .form-infos a, .page-template-tpl-services .services_form .wpcf7 .form-infos a:visited {
  text-decoration: underline;
}
.page-template-tpl-services .services_form .wpcf7 .form-infos a:hover, .page-template-tpl-services .services_form .wpcf7 .form-infos a:visited:hover {
  text-decoration: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  65% {
    transform: scale(1);
  }
  70% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.9);
  }
  85% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.page-template-tpl-rse-parent .sectionQuote_icon {
  color: #D41136;
}
.page-template-tpl-rse-parent .sectionQuote_content {
  color: #FFF;
}
.page-template-tpl-rse-parent .header_behind::after {
  background-color: #232323;
}
.page-template-tpl-rse-parent .rse-light .pSection_content, .page-template-tpl-rse-parent .rse-dark-image .pSection_content {
  padding-top: 20vh;
  padding-bottom: 40vh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-parent .rse-light .pSection_content, .page-template-tpl-rse-parent .rse-dark-image .pSection_content {
    padding-top: 8vh;
    padding-bottom: 12vh;
  }
}
.page-template-tpl-rse-parent .rse-light .pSection_content .sp4, .page-template-tpl-rse-parent .rse-dark-image .pSection_content .sp4 {
  margin-top: 4vh;
}
.page-template-tpl-rse-parent .rse-light .pSection_content .sp6, .page-template-tpl-rse-parent .rse-dark-image .pSection_content .sp6 {
  margin-top: 4vh;
}
.page-template-tpl-rse-parent .rse-dark {
  background-color: #000;
  color: #fff;
  padding-bottom: 30vh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-parent .rse-dark {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-rse-parent .rse-dark .pSection_header {
    padding-bottom: 0;
  }
}
.page-template-tpl-rse-parent .rse-dark .pSection_header_inner {
  margin-right: 4.7777777778vw;
  max-width: none;
}
.page-template-tpl-rse-parent .rse-dark .pSection_content {
  padding-top: 70vh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-parent .rse-dark .pSection_content {
    padding-top: 6vh;
    padding-bottom: 12vh;
  }
}
.page-template-tpl-rse-parent .rse-dark .rse-links li a {
  transition: opacity 0.15s linear;
}
.page-template-tpl-rse-parent .rse-dark .rse-links li a:hover {
  color: #FFF;
  opacity: 0.5;
}
.page-template-tpl-rse-parent .rse-dark-image .pSection_header_cover {
  right: auto;
  left: 0;
  width: 50vw;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-parent .rse-dark-image .pSection_header_cover {
    width: 100vw;
    left: -55px;
  }
}
.page-template-tpl-rse-parent .rse-dark-image .sp4 {
  color: #FFF;
}
.page-template-tpl-rse-parent .rse-dark-image .carousel--nb .carousel_slide_cover_img {
  filter: none;
}
.page-template-tpl-rse-parent .rse-child {
  min-height: 140svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-parent .rse-child {
    min-height: 100svh;
  }
}
.page-template-tpl-rse-parent .rse-child .pSection_header_inner {
  margin-right: 0;
  max-width: none;
}
.page-template-tpl-rse-parent .rse-child_background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.page-template-tpl-rse-parent .rse-child_background .imageRender {
  height: 100%;
}
.page-template-tpl-rse-parent .rse-child_background .imageRender::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.6;
}
.page-template-tpl-rse-parent .rse-child_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.page-template-tpl-rse-parent .rse-child .container {
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .page-template-tpl-rse-parent .rse-child:hover .sectionTitle_footer_link {
    color: #FFF;
  }
  .page-template-tpl-rse-parent .rse-child:hover .sectionTitle_footer_link::after {
    transform: scaleY(1);
  }
}

.rse-links {
  margin-top: 8vh;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
@media (max-width: 1299px) {
  .rse-links {
    font-size: 1.2222222222rem;
    line-height: 1.5454545455;
  }
}
.rse-links li {
  border-bottom: 2px solid currentColor;
}
.rse-links li:first-child {
  border-top: 2px solid currentColor;
}
.rse-links li a {
  display: block;
  padding: 2.5vh 0;
  color: currentColor;
  transition: color 0.2s linear;
}
.rse-links li a:hover {
  text-decoration: none;
  color: #000;
}

.page-template-tpl-rse-child .sectionQuote_icon {
  color: #D41136;
}
.page-template-tpl-rse-child .sectionQuote_content {
  color: #FFF;
}
.page-template-tpl-rse-child .header_behind::after {
  background-color: #232323;
}
.page-template-tpl-rse-child .header_cover_background {
  filter: none;
}
.page-template-tpl-rse-child .pSection.rse-light {
  background-color: #FFF;
  color: #232323;
}
.page-template-tpl-rse-child .pSection.rse-dark {
  background-color: #000;
  color: #FFF;
}
.page-template-tpl-rse-child .pSection.rse-dark .rse-links li a {
  transition: opacity 0.15s linear;
}
.page-template-tpl-rse-child .pSection.rse-dark .rse-links li a:hover {
  color: #FFF;
  opacity: 0.5;
}
.page-template-tpl-rse-child .pSection.rse-dark .rse-video_button {
  color: #FFF;
}
.page-template-tpl-rse-child .pSection_header_inner {
  margin-right: 0;
  max-width: none;
}
.page-template-tpl-rse-child .rse_flex + .rse_flex {
  margin-top: 4svh;
}
.page-template-tpl-rse-child .rse_flex--text {
  font-size: 0.8rem;
  line-height: 1.8;
}
.page-template-tpl-rse-child .rse_flex--intro {
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
.page-template-tpl-rse-child .rse_flex--quote {
  position: relative;
}
.page-template-tpl-rse-child .rse_flex--quote svg {
  position: absolute;
  right: calc(100% + 85px);
  top: -14px;
  color: #D41136;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse_flex--quote svg {
    display: none;
  }
}
.page-template-tpl-rse-child .rse_flex--quote .firstLetter {
  margin-right: 4.7777777778vw;
  padding-left: 0;
}
.page-template-tpl-rse-child .rse_flex--quote .firstLetter_letter {
  top: -22px;
  left: auto;
  right: calc(100% + 10px);
  text-align: right;
}
.page-template-tpl-rse-child .rse_flex--quote .firstLetter_content {
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 700;
}
.page-template-tpl-rse-child .rse_flex--image {
  position: relative;
  aspect-ratio: 0.7507507508;
}
.page-template-tpl-rse-child .rse_flex--image .imageRender {
  bottom: 0;
}
.page-template-tpl-rse-child .rse_flex--image .imageRender_label {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  right: 30px;
  left: 30px;
  text-align: right;
  color: #FFF;
  font-weight: 700;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse_flex--image .imageRender_label {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }
}
.page-template-tpl-rse-child .rse-video .pSection_header {
  z-index: 0;
}
.page-template-tpl-rse-child .rse-video .pSection_content {
  padding-top: 50svh;
  padding-bottom: 15svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-video .pSection_content {
    padding-top: 0;
    padding-bottom: 8vh;
  }
}
.page-template-tpl-rse-child .rse-video_content {
  margin-bottom: 3svh;
}
.page-template-tpl-rse-child .rse-video_button {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
  transition: opacity 0.15s linear;
}
.page-template-tpl-rse-child .rse-video_button:hover {
  opacity: 0.7;
}
.page-template-tpl-rse-child .rse-video_button_play {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: #D41136;
  margin-left: 10px;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-video_button_play {
    width: 50px;
    height: 50px;
  }
}
.page-template-tpl-rse-child .rse-video_button_play svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #FFF;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-video_button_play svg {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
.page-template-tpl-rse-child .rse-video_button_play svg:first-child {
  margin-left: 2px;
}
.page-template-tpl-rse-child .rse-video_render {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.7777777778;
  overflow: hidden;
}
.page-template-tpl-rse-child .rse-video_render.-playing .rse-video_render_cover {
  display: none;
}
.page-template-tpl-rse-child .rse-video_render_cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
}
.page-template-tpl-rse-child .rse-video_render_cover::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.4;
}
.page-template-tpl-rse-child .rse-video_render_cover_button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: #D41136;
}
.page-template-tpl-rse-child .rse-video_render_cover_button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #FFF;
}
.page-template-tpl-rse-child .rse-video_render_cover_button svg:first-child {
  margin-left: 2px;
}
.page-template-tpl-rse-child .rse-video_render_cover .imageRender {
  bottom: 0;
  z-index: 1;
}
.page-template-tpl-rse-child .rse-video_render_cover video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-tpl-rse-child .rse-video_render .plyr__video-wrapper {
  pointer-events: none;
}
.page-template-tpl-rse-child .rse-content-1 {
  padding-top: 12svh;
  padding-bottom: 12svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-content-1 {
    padding-top: 8svh;
    padding-bottom: 8svh;
  }
}
.page-template-tpl-rse-child .rse-content-1_quote--big {
  position: relative;
  font-size: 3.5rem;
  line-height: 1.1428571429;
  font-weight: 700;
  margin-bottom: 10svh;
}
@media (max-width: 1299px) {
  .page-template-tpl-rse-child .rse-content-1_quote--big {
    font-size: 2.4444444444rem;
    line-height: 1.1363636364;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-content-1_quote--big {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 60px;
  }
  .page-template-tpl-rse-child .rse-content-1_quote--big br, .page-template-tpl-rse-child .rse-content-1_quote--big br::after {
    content: " ";
  }
}
.page-template-tpl-rse-child .rse-content-1_quote--big svg {
  position: absolute;
  top: 0;
  right: calc(100% + 40px);
  color: #D41136;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-content-1_quote--big svg {
    transform: scale(0.75);
    top: -20px;
    right: calc(100% + 10px);
  }
}
.page-template-tpl-rse-child .rse-content-1_quote--small {
  margin-right: 4.7777777778vw;
  margin-bottom: 7.5svh;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-content-1_quote--small {
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}
.page-template-tpl-rse-child .rse-content-1_quote--small strong, .page-template-tpl-rse-child .rse-content-1_quote--small b {
  color: #D41136;
}
.page-template-tpl-rse-child .rse-content-1_sticky {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 150px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-content-1_sticky {
    padding-top: 0;
    padding-bottom: 8svh;
  }
}
.page-template-tpl-rse-child .rse-content-1_number_value {
  position: relative;
  display: inline-block;
  font-size: 10.5rem;
  line-height: 0.8095238095;
}
@media (max-width: 1499px) {
  .page-template-tpl-rse-child .rse-content-1_number_value {
    font-size: 9rem;
    line-height: 0.7777777778;
  }
}
@media (max-width: 1299px) {
  .page-template-tpl-rse-child .rse-content-1_number_value {
    font-size: 8.8888888889rem;
    line-height: 0.8125;
  }
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-content-1_number_value {
    font-size: 6.875rem;
    line-height: 0.8181818182;
  }
}
.page-template-tpl-rse-child .rse-content-1_number_value_fake {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-content-1_number_value_fake {
    opacity: 1;
  }
}
.page-template-tpl-rse-child .rse-content-1_number_value_anim {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-content-1_number_value_anim {
    display: none;
  }
}
.page-template-tpl-rse-child .rse-content-1_number_label {
  position: absolute;
  top: 100%;
  left: 100%;
  transform-origin: top left;
  transform: rotate(-90deg);
  font-size: 1.5rem;
  line-height: 1.8;
  opacity: 0.3;
}
.page-template-tpl-rse-child .rse-content-1 .rse_flex_wrap {
  margin-top: 20svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-content-1 .rse_flex_wrap {
    margin-top: 0;
  }
}
.page-template-tpl-rse-child .rse-2-cols {
  padding-top: 12svh;
  padding-bottom: 12svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-2-cols {
    padding-top: 8svh;
    padding-bottom: 8svh;
  }
}
.page-template-tpl-rse-child .rse-2-cols .pSection_target {
  top: 12svh;
  bottom: 12svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-2-cols .pSection_target {
    top: 8svh;
    bottom: 8svh;
  }
}
.page-template-tpl-rse-child .rse-2-cols_sticky {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 150px;
  padding-bottom: 0;
}
@media (max-width: 1499px) {
  .page-template-tpl-rse-child .rse-2-cols_sticky {
    padding-top: 5vw;
  }
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-2-cols_sticky {
    padding-top: 110px;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-2-cols_sticky {
    padding-top: 0;
  }
}
.page-template-tpl-rse-child .rse-2-cols_col-right .rse_flex_wrap {
  margin-top: 40svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-2-cols_col-right .rse_flex_wrap {
    margin-top: 8svh;
  }
}
.page-template-tpl-rse-child .rse-audio {
  padding-top: 12svh;
  padding-bottom: 12svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-audio {
    padding-top: 8svh;
    padding-bottom: 8svh;
  }
}
.page-template-tpl-rse-child .rse-audio .pSection_target {
  top: 12svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-audio .pSection_target {
    top: 8svh;
  }
}
.page-template-tpl-rse-child .rse-audio_sticky {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 12svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-audio_sticky {
    padding-bottom: 0;
  }
}
.page-template-tpl-rse-child .rse-audio_render {
  position: relative;
  margin-top: 10svh;
  aspect-ratio: 0.7507507508;
}
.page-template-tpl-rse-child .rse-audio_render .imageRender {
  bottom: 0;
}
.page-template-tpl-rse-child .rse-audio_render .imageRender::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.page-template-tpl-rse-child .rse-audio_render:hover .imageRender::after {
  opacity: 0.3;
}
.page-template-tpl-rse-child .rse-audio_render .imageRender_label {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  right: 30px;
  left: 30px;
  text-align: right;
  color: #FFF;
  font-weight: 700;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-audio_render .imageRender_label {
    bottom: 20px;
    right: 20px;
  }
}
.page-template-tpl-rse-child .rse-audio_render_button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: #D41136;
  margin-left: 10px;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-audio_render_button {
    width: 50px;
    height: 50px;
  }
}
.page-template-tpl-rse-child .rse-audio_render_button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #FFF;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-audio_render_button svg {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
.page-template-tpl-rse-child .rse-audio_render_button svg:first-child {
  margin-left: 2px;
}
.page-template-tpl-rse-child .rse-audio_render_button svg:last-child {
  display: none;
}
.page-template-tpl-rse-child .rse-audio_render_toggle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  cursor: pointer;
}
.page-template-tpl-rse-child .rse-audio_render.-playing .rse-audio_render_button svg:first-child {
  display: none;
}
.page-template-tpl-rse-child .rse-audio_render.-playing .rse-audio_render_button svg:last-child {
  display: block;
}
.page-template-tpl-rse-child .rse-audio .rse_flex_wrap {
  margin-top: 5svh;
}
.page-template-tpl-rse-child .rse-key-numbers {
  padding-top: 12svh;
  padding-bottom: 12svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-key-numbers {
    padding-top: 8svh;
    padding-bottom: 8svh;
  }
}
.page-template-tpl-rse-child .rse-key-numbers .pSection_target {
  top: 12svh;
  bottom: 12svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-key-numbers .pSection_target {
    top: 8svh;
    bottom: 8svh;
  }
}
.page-template-tpl-rse-child .rse-key-numbers_sticky {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 150px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-key-numbers_sticky {
    padding-top: 0;
  }
}
.page-template-tpl-rse-child .rse-key-numbers_col-right {
  padding-top: 40svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-key-numbers_col-right {
    padding-top: 4svh;
  }
}
.page-template-tpl-rse-child .rse-key-numbers .rse-keynumber {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4svh 0;
}
.page-template-tpl-rse-child .rse-key-numbers .rse-keynumber::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: currentColor;
}
.page-template-tpl-rse-child .rse-key-numbers .rse-keynumber_value {
  width: 50%;
  font-size: 3.5rem;
  line-height: 1;
  text-align: right;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-key-numbers .rse-keynumber_value {
    font-size: 2.25rem;
    line-height: 1;
  }
}
.page-template-tpl-rse-child .rse-key-numbers .rse-keynumber_value_mobile {
  display: none;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-key-numbers .rse-keynumber_value_mobile {
    display: block;
  }
}
.page-template-tpl-rse-child .rse-key-numbers .rse-keynumber_label {
  width: 40%;
  font-size: 0.8rem;
  line-height: 1.8;
  font-weight: 700;
}
.page-template-tpl-rse-child .rse-gallery {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 350vh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-gallery {
    min-height: auto;
  }
}
.page-template-tpl-rse-child .rse-gallery [data-scroll-sticky] {
  mix-blend-mode: difference;
  color: #FFF;
}
.page-template-tpl-rse-child .rse-gallery_content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-gallery_content {
    min-height: auto;
    padding: 15vh 0 8vh 0;
  }
}
.page-template-tpl-rse-child .rse-gallery_content h2 {
  text-align: center;
  font-size: 7rem;
  line-height: 1;
  margin-left: 13.5833333333vw;
  margin-right: 13.5833333333vw;
}
@media (max-width: 1499px) {
  .page-template-tpl-rse-child .rse-gallery_content h2 {
    font-size: 5.5rem;
    line-height: 1;
  }
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-gallery_content h2 {
    font-size: 4rem;
    line-height: 1;
    margin-left: 4.0277777778vw;
    margin-right: 4.0277777778vw;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-gallery_content h2 {
    font-size: 2.5rem;
    line-height: 1;
    margin: 0;
  }
}
.page-template-tpl-rse-child .rse-gallery_covers {
  padding-left: 45px;
  padding-right: 45px;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-gallery_covers {
    display: none;
  }
}
.page-template-tpl-rse-child .rse-gallery_cover {
  position: absolute;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #CCC;
  z-index: -1;
}
.page-template-tpl-rse-child .rse-gallery_cover::before {
  content: "";
  display: block;
}
.page-template-tpl-rse-child .rse-gallery_cover--1, .page-template-tpl-rse-child .rse-gallery_cover--3, .page-template-tpl-rse-child .rse-gallery_cover--5, .page-template-tpl-rse-child .rse-gallery_cover--7 {
  width: 13.5833333333vw;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-gallery_cover--1, .page-template-tpl-rse-child .rse-gallery_cover--3, .page-template-tpl-rse-child .rse-gallery_cover--5, .page-template-tpl-rse-child .rse-gallery_cover--7 {
    width: 18.3611111111vw;
  }
}
.page-template-tpl-rse-child .rse-gallery_cover--1::before, .page-template-tpl-rse-child .rse-gallery_cover--3::before, .page-template-tpl-rse-child .rse-gallery_cover--5::before, .page-template-tpl-rse-child .rse-gallery_cover--7::before {
  padding-top: 128%;
}
.page-template-tpl-rse-child .rse-gallery_cover--2, .page-template-tpl-rse-child .rse-gallery_cover--4, .page-template-tpl-rse-child .rse-gallery_cover--6, .page-template-tpl-rse-child .rse-gallery_cover--8 {
  width: 18.3611111111vw;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-gallery_cover--2, .page-template-tpl-rse-child .rse-gallery_cover--4, .page-template-tpl-rse-child .rse-gallery_cover--6, .page-template-tpl-rse-child .rse-gallery_cover--8 {
    width: 23.1388888889vw;
  }
}
.page-template-tpl-rse-child .rse-gallery_cover--2::before, .page-template-tpl-rse-child .rse-gallery_cover--4::before, .page-template-tpl-rse-child .rse-gallery_cover--6::before, .page-template-tpl-rse-child .rse-gallery_cover--8::before {
  padding-top: 78%;
}
.page-template-tpl-rse-child .rse-gallery_cover--1 {
  left: 6%;
  top: 305vh;
}
.page-template-tpl-rse-child .rse-gallery_cover--2 {
  left: 22%;
  top: 195vh;
}
.page-template-tpl-rse-child .rse-gallery_cover--3 {
  left: 18%;
  top: 143vh;
}
.page-template-tpl-rse-child .rse-gallery_cover--4 {
  left: 49%;
  top: 105vh;
  opacity: 0;
}
.page-template-tpl-rse-child .rse-gallery_cover--5 {
  left: 66%;
  top: 177vh;
}
.page-template-tpl-rse-child .rse-gallery_cover--6 {
  left: 74%;
  top: 258vh;
}
.page-template-tpl-rse-child .rse-gallery_cover--7 {
  left: 45%;
  top: 298vh;
}
.page-template-tpl-rse-child .rse-gallery_cover--8 {
  left: 15%;
  top: 248vh;
}
.page-template-tpl-rse-child .rse-gallery_carousel {
  margin-bottom: 8svh;
}
.page-template-tpl-rse-child .rse-gallery_carousel_swiper {
  overflow: visible;
}
.page-template-tpl-rse-child .rse-gallery_carousel_swiper_slide {
  position: relative;
  aspect-ratio: 0.7717121588;
}
.page-template-tpl-rse-child .rse-gallery_carousel_swiper_slide .imageRender {
  bottom: 0;
}
.page-template-tpl-rse-child .rse-carousel {
  overflow: hidden;
  padding-top: 12svh;
  padding-bottom: 12svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-carousel {
    padding-top: 8svh;
    padding-bottom: 8svh;
  }
}
.page-template-tpl-rse-child .rse-carousel_quote {
  position: relative;
  font-size: 3.5rem;
  line-height: 1.1428571429;
  margin-bottom: 10svh;
}
@media (max-width: 1299px) {
  .page-template-tpl-rse-child .rse-carousel_quote {
    font-size: 2.4444444444rem;
    line-height: 1.1363636364;
  }
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-carousel_quote {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 4svh;
  }
  .page-template-tpl-rse-child .rse-carousel_quote br, .page-template-tpl-rse-child .rse-carousel_quote br::after {
    content: " ";
  }
}
.page-template-tpl-rse-child .rse-carousel_quote svg {
  position: absolute;
  top: 0;
  right: calc(100% + 40px);
  color: #D41136;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-carousel_quote svg {
    transform: scale(0.75);
    top: -20px;
    right: calc(100% + 10px);
  }
}
.page-template-tpl-rse-child .rse-carousel_swiper {
  overflow: visible;
}
.page-template-tpl-rse-child .rse-carousel_swiper_slide {
  position: relative;
  aspect-ratio: 0.7717121588;
  opacity: 0;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-carousel_swiper_slide {
    opacity: 1;
  }
}
.page-template-tpl-rse-child .rse-carousel_swiper_slide .imageRender {
  bottom: 0;
}
.page-template-tpl-rse-child .rse-carousel_swiper_slide .imageRender_label {
  position: absolute;
  z-index: 1;
  left: 10%;
  right: 10%;
  bottom: 5%;
}
.page-template-tpl-rse-child .rse-carousel_swiper_slide .imageRender_label_num {
  font-family: "Copperplate";
  color: #D41136;
  font-size: 3rem;
  line-height: 1;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-carousel_swiper_slide .imageRender_label_num {
    font-size: 2rem;
    line-height: 1;
  }
}
.page-template-tpl-rse-child .rse-carousel_swiper_slide .imageRender_label_txt {
  font-size: 1.5rem;
  line-height: 1;
  color: #FFF;
}
@media (max-width: 1099px) {
  .page-template-tpl-rse-child .rse-carousel_swiper_slide .imageRender_label_txt {
    font-size: 1rem;
    line-height: 1;
  }
}
.page-template-tpl-rse-child .rse-related-rse {
  min-height: 140svh;
}
@media (max-width: 767px) {
  .page-template-tpl-rse-child .rse-related-rse {
    min-height: 100svh;
  }
}
.page-template-tpl-rse-child .rse-related-rse .pSection_header_inner {
  margin-right: 0;
  max-width: none;
}
.page-template-tpl-rse-child .rse-related-rse_background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.page-template-tpl-rse-child .rse-related-rse_background .imageRender {
  height: 100%;
}
.page-template-tpl-rse-child .rse-related-rse_background .imageRender::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.6;
}
.page-template-tpl-rse-child .rse-related-rse_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.page-template-tpl-rse-child .rse-related-rse .container {
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .page-template-tpl-rse-child .rse-related-rse:hover .sectionTitle_footer_link {
    color: #FFF;
  }
  .page-template-tpl-rse-child .rse-related-rse:hover .sectionTitle_footer_link::after {
    transform: scaleY(1);
  }
}

.error404 {
  background-color: #ECECEC;
  color: #000;
}
.error404 .main {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .error404 .main {
    height: calc(var(--vh, 1vh) * 100);
  }
}
.error404 .main .content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.error404 .main .content h1 {
  font-size: 15rem;
  line-height: 0.8;
  font-family: "Copperplate";
}
@media (max-width: 767px) {
  .error404 .main .content h1 {
    font-size: 8.75rem;
    line-height: 0.8571428571;
  }
}
.error404 .main .content h3 {
  font-size: 1.5rem;
  line-height: 1.5333333333;
  max-width: 450px;
  margin: auto;
  margin-bottom: 2.5vh;
}
@media (max-width: 767px) {
  .error404 .main .content h3 {
    max-width: 450px;
    width: 80%;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.error404 .footer {
  display: none;
}