@charset "UTF-8";
/*!
Video.js Default Styles (http://videojs.com)
Version 4.12.12
Create your own skin at http://designer.videojs.com
*/
/* SKIN
================================================================================
The main class name for all skin-specific styles. To make your own skin,
replace all occurrences of 'vjs-default-skin' with a new name. Then add your new
skin name to your video tag instead of the default skin.
e.g. <video class="video-js my-skin-name">
*/
.vjs-default-skin {
  color: #cccccc; }

/* Custom Icon Font
--------------------------------------------------------------------------------
The control icons are from a custom font. Each icon corresponds to a character
(e.g. "\e001"). Font icons allow for easy scaling and coloring of icons.
*/
@font-face {
  font-family: 'VideoJS';
  src: url("font/vjs.eot");
  src: url("font/vjsd41d.eot?#iefix") format("embedded-opentype"), url("font/vjs.woff") format("woff"), url("font/vjs.ttf") format("truetype"), url("font/vjs.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Base UI Component Classes
--------------------------------------------------------------------------------
*/
/* Slider - used for Volume bar and Seek bar */
.vjs-default-skin .vjs-slider {
  /* Replace browser focus highlight with handle highlight */
  outline: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
  /* background-color-with-alpha */
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.9); }

.vjs-default-skin .vjs-slider:focus {
  /* box-shadow */
  box-shadow: 0 0 2em #ffffff; }

.vjs-default-skin .vjs-slider-handle {
  position: absolute;
  /* Needed for IE6 */
  left: 0;
  top: 0; }

.vjs-default-skin .vjs-slider-handle:before {
  content: "\e009";
  font-family: VideoJS;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  text-shadow: 0em 0em 1em #fff;
  position: absolute;
  top: 0;
  left: 0;
  /* Rotate the square icon to make a diamond */
  /* transform */
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/* Control Bar
--------------------------------------------------------------------------------
The default control bar that is a container for most of the controls.
*/
.vjs-default-skin .vjs-control-bar {
  /* Start hidden */
  display: none;
  position: absolute;
  /* Place control bar at the bottom of the player box/video.
     If you want more margin below the control bar, add more height. */
  bottom: 0;
  /* Use left/right to stretch to 100% width of player div */
  left: 0;
  right: 0;
  /* Height includes any margin you want above or below control items */
  height: 3.0em;
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7); }

/* Show the control bar only once the video has started playing */
.vjs-default-skin.vjs-has-started .vjs-control-bar {
  display: block;
  /* Visibility needed to make sure things hide in older browsers too. */
  visibility: visible;
  opacity: 1;
  /* transition */
  transition: visibility 0.1s, opacity 0.1s; }

/* Hide the control bar when the video is playing and the user is inactive  */
.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  display: block;
  visibility: hidden;
  opacity: 0;
  /* transition */
  transition: visibility 1s, opacity 1s; }

.vjs-default-skin.vjs-controls-disabled .vjs-control-bar {
  display: none; }

.vjs-default-skin.vjs-using-native-controls .vjs-control-bar {
  display: none; }

/* The control bar shouldn't show after an error */
.vjs-default-skin.vjs-error .vjs-control-bar {
  display: none; }

/* Don't hide the control bar if it's audio */
.vjs-audio.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible; }

/* IE8 is flakey with fonts, and you have to change the actual content to force
fonts to show/hide properly.
  - "\9" IE8 hack didn't work for this
  - Found in XP IE8 from http://modern.ie. Does not show up in "IE8 mode" in IE9
*/
@media \0screen {
  .vjs-default-skin.vjs-user-inactive.vjs-playing .vjs-control-bar :before {
    content: ""; } }
/* General styles for individual controls. */
.vjs-default-skin .vjs-control {
  outline: none;
  position: relative;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 3.0em;
  width: 4em; }

/* Font button icons */
.vjs-default-skin .vjs-control:before {
  font-family: VideoJS;
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }

/* Replacement for focus outline */
.vjs-default-skin .vjs-control:focus:before,
.vjs-default-skin .vjs-control:hover:before {
  text-shadow: 0em 0em 1em #ffffff; }

.vjs-default-skin .vjs-control:focus {
  /*  outline: 0; */
  /* keyboard-only users cannot see the focus on several of the UI elements when
  this is set to 0 */ }

/* Hide control text visually, but have it available for screenreaders */
.vjs-default-skin .vjs-control-text {
  /* hide-visually */
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/* Play/Pause
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-play-control {
  width: 5em;
  cursor: pointer; }

.vjs-default-skin .vjs-play-control:before {
  content: "\e001"; }

.vjs-default-skin.vjs-playing .vjs-play-control:before {
  content: "\e002"; }

/* Playback toggle
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-playback-rate .vjs-playback-rate-value {
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }

.vjs-default-skin .vjs-playback-rate.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 4em;
  left: -2em;
  list-style: none; }

/* Volume/Mute
-------------------------------------------------------------------------------- */
.vjs-default-skin .vjs-mute-control,
.vjs-default-skin .vjs-volume-menu-button {
  cursor: pointer;
  float: right; }

.vjs-default-skin .vjs-mute-control:before,
.vjs-default-skin .vjs-volume-menu-button:before {
  content: "\e006"; }

.vjs-default-skin .vjs-mute-control.vjs-vol-0:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-0:before {
  content: "\e003"; }

.vjs-default-skin .vjs-mute-control.vjs-vol-1:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-1:before {
  content: "\e004"; }

.vjs-default-skin .vjs-mute-control.vjs-vol-2:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-2:before {
  content: "\e005"; }

.vjs-default-skin .vjs-volume-control {
  width: 5em;
  float: right; }

.vjs-default-skin .vjs-volume-bar {
  width: 5em;
  height: 0.6em;
  margin: 1.1em auto 0; }

.vjs-default-skin .vjs-volume-level {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.5em;
  /* assuming volume starts at 1.0 */
  width: 100%;
  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat; }

.vjs-default-skin .vjs-volume-bar .vjs-volume-handle {
  width: 0.5em;
  height: 0.5em;
  /* Assumes volume starts at 1.0. If you change the size of the
     handle relative to the volume bar, you'll need to update this value
     too. */
  left: 4.5em; }

.vjs-default-skin .vjs-volume-handle:before {
  font-size: 0.9em;
  top: -0.2em;
  left: -0.2em;
  width: 1em;
  height: 1em; }

/* The volume menu button is like menu buttons (captions/subtitles) but works
    a little differently. It needs to be possible to tab to the volume slider
    without hitting space bar on the menu button. To do this we're not using
    display:none to hide the slider menu by default, and instead setting the
    width and height to zero. */
.vjs-default-skin .vjs-volume-menu-button .vjs-menu {
  display: block;
  width: 0;
  height: 0;
  border-top-color: transparent; }

.vjs-default-skin .vjs-volume-menu-button .vjs-menu .vjs-menu-content {
  height: 0;
  width: 0; }

.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing {
  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */ }

.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu .vjs-menu-content,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing .vjs-menu-content {
  height: 2.9em;
  width: 10em; }

/* Progress
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-progress-control {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  font-size: 0.3em;
  height: 1em;
  /* Set above the rest of the controls. */
  top: -1em;
  /* Shrink the bar slower than it grows. */
  /* transition */
  transition: all 0.4s; }

/* On hover, make the progress bar grow to something that's more clickable.
    This simply changes the overall font for the progress bar, and this
    updates both the em-based widths and heights, as wells as the icon font */
.vjs-default-skin:hover .vjs-progress-control {
  font-size: .9em;
  /* Even though we're not changing the top/height, we need to include them in
      the transition so they're handled correctly. */
  /* transition */
  transition: all 0.2s; }

/* Box containing play and load progresses. Also acts as seek scrubber. */
.vjs-default-skin .vjs-progress-holder {
  height: 100%; }

/* Progress Bars */
.vjs-default-skin .vjs-progress-holder .vjs-play-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  /* updated by javascript during playback */
  width: 0;
  /* Needed for IE6 */
  left: 0;
  top: 0; }

.vjs-default-skin .vjs-play-progress {
  /*
    Using a data URI to create the white diagonal lines with a transparent
      background. Surprisingly works in IE8.
      Created using http://www.patternify.com
    Changing the first color value will change the bar color.
    Also using a paralax effect to make the lines move backwards.
      The -50% left position makes that happen.
  */
  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat; }

.vjs-default-skin .vjs-load-progress {
  background: #646464;
  background: rgba(255, 255, 255, 0.2); }

/* there are child elements of the load progress bar that represent the
   specific time ranges that have been buffered */
.vjs-default-skin .vjs-load-progress div {
  background: #787878;
  background: rgba(255, 255, 255, 0.1); }

.vjs-default-skin .vjs-seek-handle {
  width: 1.5em;
  height: 100%; }

.vjs-default-skin .vjs-seek-handle:before {
  padding-top: 0.1em; }

/* Live Mode
--------------------------------------------------------------------------------
*/
.vjs-default-skin.vjs-live .vjs-time-controls,
.vjs-default-skin.vjs-live .vjs-time-divider,
.vjs-default-skin.vjs-live .vjs-progress-control {
  display: none; }

.vjs-default-skin.vjs-live .vjs-live-display {
  display: block; }

/* Live Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-live-display {
  display: none;
  font-size: 1em;
  line-height: 3em; }

/* Time Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-time-controls {
  font-size: 1em;
  /* Align vertically by making the line height the same as the control bar */
  line-height: 3em; }

.vjs-default-skin .vjs-current-time {
  float: left; }

.vjs-default-skin .vjs-duration {
  float: left; }

/* Remaining time is in the HTML, but not included in default design */
.vjs-default-skin .vjs-remaining-time {
  display: none;
  float: left; }

.vjs-time-divider {
  float: left;
  line-height: 3em; }

/* Fullscreen
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-fullscreen-control {
  width: 3.8em;
  cursor: pointer;
  float: right; }

.vjs-default-skin .vjs-fullscreen-control:before {
  content: "\e000"; }

/* Switch to the exit icon when the player is in fullscreen */
.vjs-default-skin.vjs-fullscreen .vjs-fullscreen-control:before {
  content: "\e00b"; }

/* Big Play Button (play button at start)
--------------------------------------------------------------------------------
Positioning of the play button in the center or other corners can be done more
easily in the skin designer. http://designer.videojs.com/
*/
.vjs-default-skin .vjs-big-play-button {
  left: 0.5em;
  top: 0.5em;
  font-size: 3em;
  display: block;
  z-index: 2;
  position: absolute;
  width: 4em;
  height: 2.6em;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  opacity: 1;
  /* Need a slightly gray bg so it can be seen on black backgrounds */
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  border: 0.1em solid #3b4249;
  /* border-radius */
  border-radius: 0.8em;
  /* box-shadow */
  box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  /* transition */
  transition: all 0.4s; }

/* Optionally center */
.vjs-default-skin.vjs-big-play-centered .vjs-big-play-button {
  /* Center it horizontally */
  left: 50%;
  margin-left: -2.1em;
  /* Center it vertically */
  top: 50%;
  margin-top: -1.4000000000000001em; }

/* Hide if controls are disabled */
.vjs-default-skin.vjs-controls-disabled .vjs-big-play-button {
  display: none; }

/* Hide when video starts playing */
.vjs-default-skin.vjs-has-started .vjs-big-play-button {
  display: none; }

/* Hide on mobile devices. Remove when we stop using native controls
    by default on mobile  */
.vjs-default-skin.vjs-using-native-controls .vjs-big-play-button {
  display: none; }

.vjs-default-skin:hover .vjs-big-play-button,
.vjs-default-skin .vjs-big-play-button:focus {
  outline: 0;
  border-color: #fff;
  /* IE8 needs a non-glow hover state */
  background-color: #505050;
  background-color: rgba(50, 50, 50, 0.75);
  /* box-shadow */
  box-shadow: 0 0 3em #ffffff;
  /* transition */
  transition: all 0s; }

.vjs-default-skin .vjs-big-play-button:before {
  content: "\e001";
  font-family: VideoJS;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */
  line-height: 2.6em;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%; }

.vjs-error .vjs-big-play-button {
  display: none; }

/* Error Display
--------------------------------------------------------------------------------
*/
.vjs-error-display {
  display: none; }

.vjs-error .vjs-error-display {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.vjs-error .vjs-error-display:before {
  content: 'X';
  font-family: Arial;
  font-size: 4em;
  color: #666666;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */
  line-height: 1;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  width: 100%; }

.vjs-error-display div {
  position: absolute;
  bottom: 1em;
  right: 0;
  left: 0;
  font-size: 1.4em;
  text-align: center;
  padding: 3px;
  background: #000000;
  background: rgba(0, 0, 0, 0.5); }

.vjs-error-display a,
.vjs-error-display a:visited {
  color: #F4A460; }

/* Loading Spinner
--------------------------------------------------------------------------------
*/
.vjs-loading-spinner {
  /* Should be hidden by default */
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4em;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-left: -0.5em;
  margin-top: -0.5em;
  opacity: 0.75; }

/* Show the spinner when waiting for data and seeking to a new time */
.vjs-waiting .vjs-loading-spinner,
.vjs-seeking .vjs-loading-spinner {
  display: block;
  /* only animate when showing because it can be processor heavy */
  /* animation */
  -webkit-animation: spin 1.5s infinite linear;
  animation: spin 1.5s infinite linear; }

/* Errors are unrecoverable without user interaction so hide the spinner */
.vjs-error .vjs-loading-spinner {
  display: none;
  /* ensure animation doesn't continue while hidden */
  /* animation */
  -webkit-animation: none;
  animation: none; }

.vjs-default-skin .vjs-loading-spinner:before {
  content: "\e01e";
  font-family: VideoJS;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  text-align: center;
  text-shadow: 0em 0em 0.1em #000; }
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg); } }
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg); } }
/* Menu Buttons (Captions/Subtitles/etc.)
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-menu-button {
  float: right;
  cursor: pointer; }

.vjs-default-skin .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0em;
  /* (Width of vjs-menu - width of button) / 2 */
  width: 0em;
  height: 0em;
  margin-bottom: 3em;
  border-left: 2em solid transparent;
  border-right: 2em solid transparent;
  border-top: 1.55em solid #000000;
  /* Same width top as ul bottom */
  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */ }

/* Button Pop-up Menu */
.vjs-default-skin .vjs-menu-button .vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 10em;
  bottom: 1.5em;
  /* Same bottom as vjs-menu border-top */
  max-height: 15em;
  overflow: auto;
  left: -5em;
  /* Width of menu - width of button / 2 */
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  /* box-shadow */
  box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2); }

.vjs-default-skin .vjs-menu-button:hover .vjs-control-content .vjs-menu,
.vjs-default-skin .vjs-control-content .vjs-menu.vjs-lock-showing {
  display: block; }

/* prevent menus from opening while scrubbing (FF, IE) */
.vjs-default-skin.vjs-scrubbing .vjs-menu-button:hover .vjs-control-content .vjs-menu {
  display: none; }

.vjs-default-skin .vjs-menu-button ul li {
  list-style: none;
  margin: 0;
  padding: 0.3em 0 0.3em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase; }

.vjs-default-skin .vjs-menu-button ul li.vjs-selected {
  background-color: #000; }

.vjs-default-skin .vjs-menu-button ul li:focus,
.vjs-default-skin .vjs-menu-button ul li:hover,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:focus,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:hover {
  outline: 0;
  color: #111;
  /* background-color-with-alpha */
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.75);
  /* box-shadow */
  box-shadow: 0 0 1em #ffffff; }

.vjs-default-skin .vjs-menu-button ul li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default; }

/* Subtitles Button */
.vjs-default-skin .vjs-subtitles-button:before {
  content: "\e00c"; }

/* Captions Button */
.vjs-default-skin .vjs-captions-button:before {
  content: "\e008"; }

/* Chapters Button */
.vjs-default-skin .vjs-chapters-button:before {
  content: "\e00c"; }

.vjs-default-skin .vjs-chapters-button.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 24em;
  left: -12em; }

/* Replacement for focus outline */
.vjs-default-skin .vjs-captions-button:focus .vjs-control-content:before,
.vjs-default-skin .vjs-captions-button:hover .vjs-control-content:before {
  /* box-shadow */
  box-shadow: 0 0 1em #ffffff; }

/*
REQUIRED STYLES (be careful overriding)
================================================================================
When loading the player, the video tag is replaced with a DIV,
that will hold the video tag or object tag for other playback methods.
The div contains the video playback element (Flash or HTML5) and controls,
and sets the width and height of the video.

** If you want to add some kind of border/padding (e.g. a frame), or special
positioning, use another containing element. Otherwise you risk messing up
control positioning and full window mode. **
*/
.video-js {
  background-color: #000;
  position: relative;
  padding: 0;
  /* Start with 10px for base font size so other dimensions can be em based and
     easily calculable. */
  font-size: 10px;
  /* Allow poster to be vertically aligned. */
  vertical-align: middle;
  /*  display: table-cell; */
  /*This works in Safari but not Firefox.*/
  /* Provide some basic defaults for fonts */
  font-weight: normal;
  font-style: normal;
  /* Avoiding helvetica: issue #376 */
  font-family: Arial, sans-serif;
  /* Turn off user selection (text highlighting) by default.
     The majority of player components will not be text blocks.
     Text areas will need to turn user selection back on. */
  /* user-select */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* Playback technology elements expand to the width/height of the containing div
    <video> or <object> */
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* Fix for Firefox 9 fullscreen (only if it is enabled). Not needed when
   checking fullScreenEnabled. */
.video-js:-moz-full-screen {
  position: absolute; }

/* Fullscreen Styles */
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
  /* Fix for IE6 full-window. http://www.cssplay.co.uk/layouts/fixed.html */
  overflow-y: auto; }

.video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  /* IE6 full-window (underscore hack) */
  _position: absolute; }

.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important; }

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none; }

/* Poster Styles */
.vjs-poster {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  width: 100%; }

/* Hide the poster after the video has started playing */
.video-js.vjs-has-started .vjs-poster {
  display: none; }

/* Don't hide the poster if we're playing audio */
.video-js.vjs-audio.vjs-has-started .vjs-poster {
  display: block; }

/* Hide the poster when controls are disabled because it's clickable
    and the native poster can take over */
.video-js.vjs-controls-disabled .vjs-poster {
  display: none; }

/* Hide the poster when native controls are used otherwise it covers them */
.video-js.vjs-using-native-controls .vjs-poster {
  display: none; }

/* Text Track Styles */
/* Overall track holder for both captions and subtitles */
.video-js .vjs-text-track-display {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 3em;
  right: 0;
  pointer-events: none; }

/* Captions Settings Dialog */
.vjs-caption-settings {
  position: relative;
  top: 1em;
  background-color: #000;
  opacity: 0.75;
  color: #FFF;
  margin: 0 auto;
  padding: 0.5em;
  height: 15em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  width: 40em; }

.vjs-caption-settings .vjs-tracksettings {
  top: 0;
  bottom: 2em;
  left: 0;
  right: 0;
  position: absolute;
  overflow: auto; }

.vjs-caption-settings .vjs-tracksettings-colors,
.vjs-caption-settings .vjs-tracksettings-font {
  float: left; }

.vjs-caption-settings .vjs-tracksettings-colors:after,
.vjs-caption-settings .vjs-tracksettings-font:after,
.vjs-caption-settings .vjs-tracksettings-controls:after {
  clear: both; }

.vjs-caption-settings .vjs-tracksettings-controls {
  position: absolute;
  bottom: 1em;
  right: 1em; }

.vjs-caption-settings .vjs-tracksetting {
  margin: 5px;
  padding: 3px;
  min-height: 40px; }

.vjs-caption-settings .vjs-tracksetting label {
  display: block;
  width: 100px;
  margin-bottom: 5px; }

.vjs-caption-settings .vjs-tracksetting span {
  display: inline;
  margin-left: 5px; }

.vjs-caption-settings .vjs-tracksetting > div {
  margin-bottom: 5px;
  min-height: 20px; }

.vjs-caption-settings .vjs-tracksetting > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  min-height: 0; }

.vjs-caption-settings label > input {
  margin-right: 10px; }

.vjs-caption-settings input[type="button"] {
  width: 40px;
  height: 40px; }

/* Hide disabled or unsupported controls */
.vjs-hidden {
  display: none !important; }

.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible; }

/*  In IE8 w/ no JavaScript (no HTML5 shim), the video tag doesn't register.
    The .video-js classname on the video tag also isn't considered.
    This optional paragraph inside the video tag can provide a message to users
    about what's required to play video. */
.vjs-no-js {
  padding: 2em;
  color: #ccc;
  background-color: #333;
  font-size: 1.8em;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 30em;
  height: 15em;
  margin: 0 auto; }

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #F4A460; }

/* -----------------------------------------------------------------------------
The original source of this file lives at
https://github.com/videojs/video.js/blob/master/src/css/video-js.less */
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1; }

.bx-wrapper img {
  max-width: 100%;
  display: block; }

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  left: -5px;
  background: #fff;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  transform: translatez(0); }

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%; }

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(images/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000; }

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px; }

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline; }

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  border-radius: 5px; }

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000; }

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url(images/controls.png) no-repeat 0 -32px; }

.bx-wrapper .bx-next {
  right: 10px;
  background: url(images/controls.png) no-repeat -43px -32px; }

.bx-wrapper .bx-prev:hover {
  background-position: 0 0; }

.bx-wrapper .bx-next:hover {
  background-position: -43px 0; }

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999; }

.bx-wrapper .bx-controls-direction a.disabled {
  display: none; }

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center; }

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -11px no-repeat;
  margin: 0 3px; }

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0; }

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -44px no-repeat;
  margin: 0 3px; }

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px; }

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%; }

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px; }

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%; }

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px; }

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

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

a {
  text-decoration: none; }

::-moz-selection {
  /*background: transparent;*/ }

::selection {
  /*background: transparent;*/ }

::-moz-selection {
  /*background: transparent;*/ }

input, textarea, button {
  -webkit-appearance: none;
  /*Safari/Chrome*/
  -moz-appearance: none;
  /*Firefox*/
  -ms-appearance: none;
  /*IE*/
  -o-appearance: none;
  /*Opera*/
  appearance: none;
  -webkit-border-radius: 0;
  outline: none; }

@font-face {
  font-family: 'HelveticaRoundedLTStd-BdCn';
  src: url("../fonts/HelveticaRoundedLTStd-BdCnd41d.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaRoundedLTStd-BdCn.otf") format("opentype"), url("../fonts/HelveticaRoundedLTStd-BdCn.woff") format("woff"), url("../fonts/HelveticaRoundedLTStd-BdCn.ttf") format("truetype"), url("../fonts/HelveticaRoundedLTStd-BdCn.svg#HelveticaRoundedLTStd-BdCn") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'HelveticaNeueLTStd-Cn';
  src: url("../fonts/HelveticaNeueLTStd-Cnd41d.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeueLTStd-Cn.otf") format("opentype"), url("../fonts/HelveticaNeueLTStd-Cn.woff") format("woff"), url("../fonts/HelveticaNeueLTStd-Cn.ttf") format("truetype"), url("../fonts/HelveticaNeueLTStd-Cn.svg#HelveticaNeueLTStd-Cn") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Gotham-bold';
  src: url("../fonts/Gothamd41d.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham.otf") format("opentype"), url("../fonts/Gotham.woff") format("woff"), url("../fonts/Gotham.ttf") format("truetype"), url("../fonts/Gotham.svg#Gotham") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'VideoJS';
  src: url("../fonts/vjs.eot");
  src: url("../fonts/vjsd41d.eot?#iefix") format("embedded-opentype"), url("../fonts/vjs.woff") format("woff"), url("../fonts/vjs.ttf") format("truetype"), url("../fonts/vjs.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }
.sans {
  font-family: Arial, Helvetica, sans-serif; }

.serif {
  font-family: "Times New Roman", times, serif; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon311a.eot?t1msbc");
  src: url("../fonts/icomoond41d.eot?#iefixt1msbc") format("embedded-opentype"), url("../fonts/icomoon311a.ttf?t1msbc") format("truetype"), url("../fonts/icomoon311a.woff?t1msbc") format("woff"), url("../fonts/icomoon311a.svg?t1msbc#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-tumblr:before {
  content: "\e600"; }

.icon-arrow:before {
  content: "\e601"; }

.icon-burger:before {
  content: "\e602"; }

.icon-facebook:before {
  content: "\e603"; }

.icon-googleplus:before {
  content: "\e604"; }

.icon-instagram:before {
  content: "\e605"; }

.icon-linkedin:before {
  content: "\e606"; }

.icon-pinterest:before {
  content: "\e607"; }

.icon-share:before {
  content: "\e608"; }

.icon-twitter:before {
  content: "\e609"; }

.icon-youtube:before {
  content: "\e60a"; }

.page-title {
  font-family: "Gotham-bold", "Times New Roman", times, serif;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  max-width: 100%;
  word-wrap: break-word;
  margin-bottom: 50px; }
  .page-title b {
    font-size: 100px; }

.page-subtitle {
  padding: 15px 0 35px;
  font-family: "Gotham-bold", "Times New Roman", times, serif;
  font-size: 30px;
  color: #ffffff;
  text-transform: uppercase; }

.page-minititle {
  padding: 15px 0 25px;
  font-family: "Gotham-bold", "Times New Roman", times, serif;
  font-size: 23px;
  color: #ffffff;
  text-transform: uppercase; }

.paragraph {
  font-size: 18px;
  color: #9e9e9e;
  line-height: 1.6em;
  margin: 0 auto;
  text-align: center; }
  .paragraph b {
    font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
    color: #ffffff; }
  .paragraph a, .paragraph a:visited {
    color: #9e9e9e;
    text-decoration: underline; }
  .paragraph--short {
    max-width: 350px; }
  .paragraph--medium {
    max-width: 430px; }
  .paragraph--large {
    max-width: 710px; }
  .paragraph--big {
    color: #ffffff;
    font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif; }

.main-cta {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
  text-transform: uppercase; }
  .main-cta .hover-background {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background: #fff;
    transition: height 0.2s ease-out; }
  .main-cta .link-wrapper a {
    display: inline-block;
    padding: 24px 58px 22px;
    position: relative;
    z-index: 1;
    color: #ffffff;
    transition: color 0.1s ease-out 0.1s; }
  .main-cta .link-wrapper:before, .main-cta .link-wrapper:after {
    background-color: #fff;
    content: '';
    position: absolute;
    top: 0;
    right: 0; }
  .main-cta .link-wrapper:before {
    width: 2px;
    height: 0;
    transition: height 0.2s ease-in; }
  .main-cta .link-wrapper:after {
    width: 0;
    height: 2px;
    transition: width 0.35s ease-out 0.2s; }
  .main-cta:before, .main-cta:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff; }
  .main-cta:before {
    width: 2px;
    height: 0;
    transition: height 0.2s ease-in; }
  .main-cta:after {
    width: 0;
    height: 2px;
    transition: width 0.35s ease-out 0.2s; }
  .main-cta:hover .hover-background {
    height: 100%; }
  .main-cta:hover a {
    color: #000000; }
  .main-cta.riched .link-wrapper:before {
    height: 100%; }
  .main-cta.riched .link-wrapper:after {
    width: 100%; }
  .main-cta.riched:before {
    height: 100%; }
  .main-cta.riched:after {
    width: 100%; }

.full-visuel {
  margin: 55px 0 35px;
  width: 100%;
  height: auto; }

.grid {
  margin-top: 40px; }
  .grid__card {
    width: 314px;
    height: 400px;
    margin-bottom: 35px;
    -webkit-perspective: 800;
            perspective: 800;
    text-align: left; }
    .grid__card__visuel {
      width: 100%;
      height: auto; }
    .grid__card__title {
      color: #fff;
      font-size: 16px;
      font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
      padding: 8px 0 6px;
      text-transform: uppercase; }
    .grid__card__content {
      display: inline;
      font-size: 16px;
      color: #9e9e9e;
      line-height: 1.2em;
      word-wrap: break-word; }
      .grid__card__content b {
        font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif; }
      .grid__card__content a, .grid__card__content a:visited {
        color: #9e9e9e;
        font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
        text-decoration: underline; }
      .grid__card__content .short.hidden {
        display: none; }
      .grid__card__content .read-more.hidden {
        display: none; }
      .grid__card__content .long {
        display: none; }
        .grid__card__content .long.active {
          display: block; }
    .grid__card__read-more, .grid__card__read-more:visited {
      color: #ffffff !important;
      border-bottom: 1px solid #fff;
      font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
      text-decoration: none !important; }
  .grid--2col .col .page-subtitle {
    text-align: left;
    padding: 0;
    max-width: 340px;
    margin-bottom: 15px; }
  .grid--2col .col .paragraph {
    text-align: left;
    margin-bottom: 25px; }
    .grid--2col .col .paragraph--big {
      margin-top: 80px; }
  .grid--2col .col img {
    margin-bottom: 35px; }
    .grid--2col .col img:last-child {
      margin-bottom: 0; }
  .grid--2col .col:nth-of-type(odd) {
    border-right: 1px solid #333333; }
  .grid--2title .grid__card__date {
    color: #fff;
    font-size: 16px;
    font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
    padding: 14px 0 0;
    text-transform: uppercase; }
  .grid--2title .grid__card__title {
    padding: 4px 0; }

.contact-form {
  margin-top: 50px;
  text-align: center; }
  .contact-form .half-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .contact-form .half-wrapper .wrapper {
      width: calc(50% - 90px / 2); }
      .contact-form .half-wrapper .wrapper:first-child {
        margin-right: 90px; }
  .contact-form .wrapper {
    position: relative; }
  .contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
    font: 16px "Lucida Grande";
    background: none;
    border: 1px solid #4d4d4d;
    width: 100%;
    font-size: 16px;
    color: #fff;
    margin-bottom: 35px;
    padding: 15px 10px;
    transition: border 0.3s ease-in-out;
    text-align: left; }
    .contact-form input[type="text"]:focus, .contact-form input[type="email"]:focus, .contact-form textarea:focus {
      border: 1px solid #ffffff; }
    .contact-form input[type="text"].error, .contact-form input[type="email"].error, .contact-form textarea.error {
      color: #834646;
      border: 1px solid #834646; }
    .contact-form input[type="text"]::-moz-selection, .contact-form input[type="email"]::-moz-selection, .contact-form textarea::-moz-selection {
      background: #ffb7b7;
      /* WebKit/Blink Browsers */ }
    .contact-form input[type="text"]::selection, .contact-form input[type="email"]::selection, .contact-form textarea::selection {
      background: #ffb7b7;
      /* WebKit/Blink Browsers */ }
  .contact-form select {
    background: none;
    border: 1px solid #4d4d4d;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 0;
    width: 100%;
    padding: 15px 10px;
    outline: none;
    background: url(../images/select-dropdown-item.jpg) no-repeat;
    background-position: center right;
    text-align: left;
    color: #fff;
    font-size: 16px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .contact-form select option {
      background: #000;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      outline: 0px solid transparent;
      border: none; }
    .contact-form select::-ms-expand {
      display: none; }
    .contact-form select.error {
      border-color: #834646; }
    .contact-form select:focus {
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      outline: none; }
  .contact-form select::-ms-expand {
    /* for IE 11 */
    display: none; }
  .contact-form label {
    display: block;
    font-family: "Gotham-bold", "Times New Roman", times, serif;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    text-align: left; }
    .contact-form label.error {
      position: absolute;
      bottom: 12px;
      left: 0;
      margin: 0;
      color: #834646;
      font-size: 12px;
      text-transform: none;
      font-family: "HelveticaNeueLTStd-Cn", Arial, Helvetica, sans-serif; }
  .contact-form .info {
    margin-top: -10px;
    color: #9e9e9e;
    font-size: 12px;
    text-align: left; }
  .contact-form .success {
    margin: 50px 0 10px;
    color: #fff; }
  .contact-form .submit, .contact-form .cancel {
    margin-top: 20px;
    display: inline-block;
    text-align: center;
    position: relative; }
    .contact-form .submit .hover-background, .contact-form .cancel .hover-background {
      position: absolute;
      z-index: 0;
      bottom: 0;
      left: 0;
      height: 0;
      width: 100%;
      background-color: #4d4d4d;
      transition: height 0.2s ease-out; }
    .contact-form .submit .wrapper, .contact-form .cancel .wrapper {
      position: relative; }
      .contact-form .submit .wrapper:before, .contact-form .submit .wrapper:after, .contact-form .cancel .wrapper:before, .contact-form .cancel .wrapper:after {
        background-color: #4d4d4d;
        content: '';
        position: absolute;
        top: 0;
        right: 0; }
      .contact-form .submit .wrapper:before, .contact-form .cancel .wrapper:before {
        width: 2px;
        height: 0;
        transition: height 0.2s ease-in; }
      .contact-form .submit .wrapper:after, .contact-form .cancel .wrapper:after {
        width: 0;
        height: 2px;
        transition: width 0.35s ease-out 0.2s; }
      .contact-form .submit .wrapper input, .contact-form .cancel .wrapper input {
        padding: 24px 58px;
        font-size: 16px;
        font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        color: #4d4d4d;
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.1s ease-out 0.1s; }
        .contact-form .submit .wrapper input:hover, .contact-form .cancel .wrapper input:hover {
          color: #000000; }
    .contact-form .submit:hover .hover-background, .contact-form .cancel:hover .hover-background {
      height: 100%; }
    .contact-form .submit:before, .contact-form .submit:after, .contact-form .cancel:before, .contact-form .cancel:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: #4d4d4d; }
    .contact-form .submit:before, .contact-form .cancel:before {
      width: 2px;
      height: 0;
      transition: height 0.2s ease-in; }
    .contact-form .submit:after, .contact-form .cancel:after {
      width: 0;
      height: 2px;
      transition: width 0.35s ease-out 0.2s; }
    .contact-form .submit.riched .wrapper:before, .contact-form .cancel.riched .wrapper:before {
      height: 100%; }
    .contact-form .submit.riched .wrapper:after, .contact-form .cancel.riched .wrapper:after {
      width: 100%; }
    .contact-form .submit.riched:before, .contact-form .cancel.riched:before {
      height: 100%; }
    .contact-form .submit.riched:after, .contact-form .cancel.riched:after {
      width: 100%; }
    .contact-form .submit.valid.riched:before, .contact-form .submit.valid.riched:after, .contact-form .cancel.valid.riched:before, .contact-form .cancel.valid.riched:after {
      background-color: #ffffff; }
    .contact-form .submit.valid.riched .wrapper:before, .contact-form .submit.valid.riched .wrapper:after, .contact-form .cancel.valid.riched .wrapper:before, .contact-form .cancel.valid.riched .wrapper:after {
      background-color: #ffffff; }
    .contact-form .submit.valid .hover-background, .contact-form .cancel.valid .hover-background {
      background: #ffffff; }
    .contact-form .submit.valid .wrapper input, .contact-form .cancel.valid .wrapper input {
      color: #fff; }
      .contact-form .submit.valid .wrapper input:hover, .contact-form .cancel.valid .wrapper input:hover {
        color: #000000; }
    .contact-form .submit.invalid .hover-background, .contact-form .cancel.invalid .hover-background {
      background: #834646; }
    .contact-form .submit.invalid .wrapper input, .contact-form .cancel.invalid .wrapper input {
      color: #834646; }
    .contact-form .submit.invalid.riched:before, .contact-form .submit.invalid.riched:after, .contact-form .cancel.invalid.riched:before, .contact-form .cancel.invalid.riched:after {
      background-color: #834646; }
    .contact-form .submit.invalid.riched .wrapper:before, .contact-form .submit.invalid.riched .wrapper:after, .contact-form .cancel.invalid.riched .wrapper:before, .contact-form .cancel.invalid.riched .wrapper:after {
      background-color: #834646; }
    .contact-form .submit.invalid.riched:hover .wrapper input, .contact-form .cancel.invalid.riched:hover .wrapper input {
      color: #000; }

.videoplayer-wrapper {
  position: relative;
  margin-bottom: 5px; }
  .videoplayer-wrapper * {
    box-shadow: none !important; }
  .videoplayer-wrapper .videoplayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .videoplayer-wrapper .videoplayer .video-js {
      width: 100% !important;
      height: 100% !important; }
    .videoplayer-wrapper .videoplayer .vjs-default-skin:hover .vjs-big-play-button {
      color: #000000;
      background: #FFFFFF;
      box-shadow: none; }

.vjs-default-skin .vjs-big-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  color: #fff; }
  .vjs-default-skin .vjs-big-play-button:before {
    font-family: 'icomoon';
    content: "\e601";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
    font-size: 18px;
    line-height: 65px;
    text-shadow: none;
    margin-left: 1px;
    margin-top: 1px; }

.embed-player {
  position: relative; }
  .embed-player .video-poster {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    .embed-player .video-poster.hidden {
      visibility: hidden; }
  .embed-player .video-iframe {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
  .embed-player .btn-play-video {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    color: #fff; }
    .embed-player .btn-play-video:before {
      font-family: 'icomoon';
      content: "\e601";
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(180deg);
              transform: translate(-50%, -50%) rotate(180deg);
      font-size: 14px;
      line-height: 65px;
      text-shadow: none;
      margin-left: 1px;
      margin-top: -1px; }
    .embed-player .btn-play-video:hover {
      background: rgba(0, 0, 0, 0.5); }
    .embed-player .btn-play-video.hidden {
      opacity: 0; }
    .embed-player .btn-play-video.invisible {
      visibility: hidden; }
  .embed-player .vjs-poster {
    background-size: cover; }

.bx-wrapper {
  width: 700px;
  max-width: 100%; }
  .bx-wrapper .bx-viewport {
    box-shadow: none;
    border: none;
    background: none;
    left: 0; }
  .bx-wrapper .bx-loading {
    background: url(../images/bx_loader.gif) center center no-repeat #fff; }
  .bx-wrapper .bx-controls-direction a {
    background: none;
    width: 65px;
    height: 65px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin-top: -43px;
    text-indent: 0; }
    .bx-wrapper .bx-controls-direction a:before {
      position: absolute;
      display: block;
      font-family: "icomoon";
      content: "\e601";
      color: #ffffff;
      top: 2px;
      left: 0;
      width: 100%;
      height: 100%;
      text-indent: initial;
      line-height: 65px;
      margin-top: -1px;
      font-size: 9px; }
    .bx-wrapper .bx-controls-direction a:hover {
      background: #ffffff; }
      .bx-wrapper .bx-controls-direction a:hover:before {
        color: #000000; }
  .bx-wrapper .paragraph {
    margin-top: 20px; }
  .bx-wrapper .bx-prev {
    background: url(../images/controls.png) no-repeat 0 -32px;
    left: -137px; }
    .bx-wrapper .bx-prev:before {
      top: 0px !important; }
  .bx-wrapper .bx-next {
    background: url(../images/controls.png) no-repeat -43px -32px;
    right: -125px; }
    .bx-wrapper .bx-next:before {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
      margin-left: 1px !important;
      margin-top: 1px !important; }
  .bx-wrapper .bx-pager {
    display: none; }

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 90px auto; }
  .social-links__item {
    margin-right: 17px; }
    .social-links__item:last-child {
      margin-right: 0; }
    .social-links__item__wrapper {
      border: 2px solid #ffffff;
      border-radius: 50%;
      overflow: hidden;
      transition: background 0.1s ease-out 0.1s;
      /* this fixes the overflow:hidden in Chrome */
      -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC); }
      .social-links__item__wrapper__link, .social-links__item__wrapper__link:visited {
        display: block;
        position: relative;
        color: #ffffff;
        padding: 20px;
        transition: color 0.10s ease-out 0.10s;
        border-radius: 50%; }
        .social-links__item__wrapper__link:before, .social-links__item__wrapper__link:visited:before {
          position: relative;
          z-index: 2; }
        .social-links__item__wrapper__link:after, .social-links__item__wrapper__link:visited:after {
          content: '';
          position: absolute;
          z-index: 1;
          background-color: #fff;
          bottom: 0;
          left: 0;
          right: 0;
          width: 100%;
          height: 0;
          transition: height 0.20s ease-out; }
    .social-links__item:first-child {
      margin-left: 0px; }
    .social-links__item:hover .social-links__item__wrapper {
      background: #ffffff; }
      .social-links__item:hover .social-links__item__wrapper .social-links__item__wrapper__link, .social-links__item:hover .social-links__item__wrapper .social-links__item__wrapper__link:visited {
        color: #000000; }
        .social-links__item:hover .social-links__item__wrapper .social-links__item__wrapper__link:after, .social-links__item:hover .social-links__item__wrapper .social-links__item__wrapper__link:visited:after {
          height: 100%; }

table {
  text-align: center;
  margin: 15px 0 30px; }
  table td {
    padding: 10px;
    min-width: 150px;
    border-right: 1px solid #000000; }
    table td:last-of-type {
      border-right: 0; }
  table tr:first-child td {
    background-color: #333333;
    color: #9a9a9a;
    text-transform: uppercase;
    vertical-align: middle;
    font-weight: 600; }
  table tr td {
    background-color: #525252;
    color: #ffffff; }

.popup {
  display: none;
  opacity: 0;
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  overflow-y: scroll;
  overflow-x: hidden; }
  .popup.active {
    display: block; }
  .popup .page-title {
    margin-top: 100px;
    color: #000;
    margin-bottom: 50px; }
  .popup .btn-close {
    display: block;
    position: fixed;
    z-index: 10000;
    width: 20px;
    height: 20px;
    top: 80px;
    right: 80px;
    background: url(../images/popup-close.jpg) no-repeat;
    background-size: cover;
    background-position: center center; }
  .popup .container {
    height: 100%; }

html, body {
  overflow-x: hidden; }

body {
  font-family: "HelveticaNeueLTStd-Cn", Arial, Helvetica, sans-serif;
  background: #000000; }

.main {
  position: relative;
  z-index: 1;
  margin-bottom: -200px; }
  .main .page-header {
    position: relative;
    width: 100%;
    min-height: 100vh; }
    .main .page-header__background {
      position: absolute;
      z-index: 0;
      opacity: 0.2;
      width: 100%;
      height: auto; }
    .main .page-header__wrapper {
      position: absolute;
      bottom: 10%;
      left: 50%;
      width: 100%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: 5;
      text-align: center;
      margin: 0; }
  .main .page-content {
    text-align: center; }
    .main .page-content .section-container {
      position: relative; }
      .main .page-content .section-container__background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: -1; }
      .main .page-content .section-container.white .container {
        background: #000000; }
        .main .page-content .section-container.white .container .page-title {
          padding-top: 110px;
          color: #ffffff; }
          .main .page-content .section-container.white .container .page-title:after {
            background: #ffffff; }
        .main .page-content .section-container.white .container .paragraph {
          font-weight: normal;
          margin-bottom: 20px;
          color: #666666; }
          .main .page-content .section-container.white .container .paragraph b, .main .page-content .section-container.white .container .paragraph a, .main .page-content .section-container.white .container .paragraph a:visited {
            color: #ffffff; }
          .main .page-content .section-container.white .container .paragraph:last-child {
            margin-bottom: 0px; }
        .main .page-content .section-container.white .container .main-cta .hover-background, .main .page-content .section-container.white .container .submit .hover-background {
          background: #ffffff; }
        .main .page-content .section-container.white .container .main-cta .link-wrapper a, .main .page-content .section-container.white .container .submit .link-wrapper a {
          color: #ffffff; }
        .main .page-content .section-container.white .container .main-cta .link-wrapper:before, .main .page-content .section-container.white .container .main-cta .link-wrapper:after, .main .page-content .section-container.white .container .submit .link-wrapper:before, .main .page-content .section-container.white .container .submit .link-wrapper:after {
          background-color: #ffffff; }
        .main .page-content .section-container.white .container .main-cta:before, .main .page-content .section-container.white .container .main-cta:after, .main .page-content .section-container.white .container .submit:before, .main .page-content .section-container.white .container .submit:after {
          background-color: #ffffff; }
        .main .page-content .section-container.white .container .main-cta:hover .hover-background, .main .page-content .section-container.white .container .submit:hover .hover-background {
          background: #ffffff; }
        .main .page-content .section-container.white .container .main-cta:hover .link-wrapper a, .main .page-content .section-container.white .container .submit:hover .link-wrapper a {
          color: #000000; }

.no-scroll {
  overflow: hidden; }

.only-mobile {
  display: none; }

.hidden {
  visibility: hidden; }

.table {
  display: table;
  height: 100%;
  vertical-align: middle;
  width: 100%; }

.table-cell {
  display: table-cell;
  vertical-align: middle; }

.p-r {
  position: relative; }

.cf::after {
  clear: both;
  content: "";
  display: table; }

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

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

.ie .page-news .dates__cursor:before {
  margin-left: 52px; }
.ie .page-news .dates__cursor:after {
  margin-left: 52px; }

.breadcrumb {
  z-index: 11;
  position: absolute;
  top: 60px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .breadcrumb__back-button, .breadcrumb__back-button:visited {
    display: block;
    width: 36px;
    height: 36px;
    text-align: center;
    background: #ffffff;
    color: #000000; }
    .breadcrumb__back-button i, .breadcrumb__back-button:visited i {
      font-size: 10px;
      line-height: 36px; }
  .breadcrumb__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #000000;
    padding: 0 30px; }
    .breadcrumb__list__item a, .breadcrumb__list__item a:visited {
      font-size: 12px;
      text-transform: uppercase;
      color: #ffffff;
      font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
      line-height: 36px;
      font-weight: bold; }
      .breadcrumb__list__item a:hover, .breadcrumb__list__item a:visited:hover {
        color: #9e9e9e; }
    .breadcrumb__list__item:before {
      content: '>';
      font-size: 12px;
      color: #ffffff;
      font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
      line-height: 36px;
      margin: 0 5px; }
    .breadcrumb__list__item:first-child:before {
      display: none; }

.logo {
  position: fixed;
  z-index: 11;
  top: 70px;
  right: 70px;
  margin: 0; }
  .logo img {
    width: 135px;
    height: 42px; }

.menu-prompt {
  display: block;
  position: fixed;
  z-index: 11;
  top: 50%;
  right: 66px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  /* css instead of TweenLite.set to avoid flash */
  opacity: 0; }
  .menu-prompt svg {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    overflow: visible; }
  .menu-prompt .stroke {
    fill: #FFF; }

.menu-share {
  position: fixed;
  z-index: 11;
  bottom: 50px;
  right: 70px; }
  .menu-share__link {
    font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase; }
    .menu-share__link__icon {
      font-size: 18px;
      display: block;
      margin-left: 6px;
      margin-bottom: 6px; }
  .menu-share__social-list {
    margin-left: 9px;
    margin-bottom: -30px; }
    .menu-share__social-list li {
      text-align: center;
      margin-bottom: 10px;
      opacity: 0; }
      .menu-share__social-list li a {
        font-size: 16px;
        color: #ffffff; }
        .menu-share__social-list li a:hover {
          color: #9e9e9e; }
  .menu-share:hover .menu-share__link {
    color: #9e9e9e; }
    .menu-share:hover .menu-share__link .menu-share__link__icon {
      color: #ffffff; }

.home_7114a .logo, .home_7114a .breadcrumb {
  display: none; }

.cookies-alert {
  background: black;
  display: none;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100; }
  .cookies-alert.active {
    display: block; }
  .cookies-alert .container {
    padding: 20px 20px 15px 20px; }
  .cookies-alert .title {
    color: white;
    font-size: 14px;
    font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    width: 100%; }
  .cookies-alert .description {
    color: #9e9e9e;
    font-size: 12px;
    line-height: 14px;
    margin: 5px 0;
    font-family: "HelveticaNeueLTStd-Cn", Arial, Helvetica, sans-serif;
    padding-right: 100px; }
  .cookies-alert .close {
    border: 1px solid white;
    color: white;
    cursor: pointer;
    font-size: 11px;
    line-height: 27px;
    padding: 0 20px;
    position: absolute;
    right: 0px;
    top: 28px;
    text-transform: uppercase;
    font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
    transition: color 0.1s ease-out 0.1s; }
    .cookies-alert .close:before {
      background-color: white;
      bottom: -1px;
      content: '';
      height: 0px;
      left: 0;
      position: absolute;
      width: 101%;
      z-index: -1;
      transition: all .2s ease-out; }
    .cookies-alert .close:hover {
      color: black; }
      .cookies-alert .close:hover:before {
        height: 102% !important; }
  .cookies-alert a {
    color: white; }

.nav-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0; }

.nav-main {
  z-index: 9; }
  .nav-main__main-list {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    .nav-main__main-list__item {
      text-align: center;
      margin-bottom: 4vh; }
      .nav-main__main-list__item a, .nav-main__main-list__item a:visited {
        font-family: "Gotham-bold", "Times New Roman", times, serif;
        color: #ffffff;
        font-size: 3.2vh;
        text-transform: uppercase; }
      .nav-main__main-list__item:last-child {
        margin-bottom: 0; }
      .nav-main__main-list__item:hover {
        opacity: 0.6; }
  .nav-main__secondary-list {
    position: absolute;
    bottom: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .nav-main__secondary-list__item {
      margin-right: 25px; }
      .nav-main__secondary-list__item a {
        font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
        font-size: 12px;
        text-transform: uppercase;
        color: #fff; }
        .nav-main__secondary-list__item a:hover {
          color: #9e9e9e; }
      .nav-main__secondary-list__item:last-child {
        margin-right: 0; }

.nav-companies {
  z-index: 10;
  text-align: center; }
  .nav-companies nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: 100%; }
  .nav-companies__title {
    font-family: "Gotham-bold", "Times New Roman", times, serif;
    font-size: 24px;
    color: #ffffff;
    text-transform: uppercase; }
  .nav-companies__list {
    width: 950px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .nav-companies__list__item {
      transition: -webkit-transform 0.2s ease-in-out;
      transition: transform 0.2s ease-in-out; }
      .nav-companies__list__item a {
        text-indent: -9000px; }
        .nav-companies__list__item a img {
          width: 200px;
          height: auto; }
      .nav-companies__list__item:hover {
        -webkit-transform: translateY(-5px);
                transform: translateY(-5px); }
  .nav-companies__back {
    position: relative;
    font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase; }
    .nav-companies__back:before {
      position: absolute;
      top: 4px;
      left: -15px;
      font-family: 'icomoon';
      content: "\e601";
      font-size: 10px;
      margin-top: -2px;
      transition: -webkit-transform 0.2s ease-in-out;
      transition: transform 0.2s ease-in-out; }
    .nav-companies__back:hover:before {
      -webkit-transform: translateX(-4px);
              transform: translateX(-4px); }

.footer {
  background: url("../images/footer-background.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 510px 0 100px; }
  .staff-international_16fcf .footer {
    padding: 300px 0 100px; }
  .footer-cta:first-child {
    margin-bottom: 60px; }
  .footer .footer-container {
    margin: 0 auto;
    text-align: center; }
    .footer .footer-container .footer-menu {
      margin-top: 90px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .footer .footer-container .footer-menu__item {
        margin-right: 25px;
        transition: -webkit-transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out; }
        .footer .footer-container .footer-menu__item a {
          font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
          font-size: 12px;
          text-transform: uppercase;
          color: #fff;
          transition: color 0.2s ease-in-out; }
        .footer .footer-container .footer-menu__item:hover {
          -webkit-transform: translateY(-4px);
                  transform: translateY(-4px); }
          .footer .footer-container .footer-menu__item:hover a {
            color: #9e9e9e; }
        .footer .footer-container .footer-menu__item:last-child {
          margin-right: 0; }
    .footer .footer-container .footer-social-links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 60px auto; }
      .footer .footer-container .footer-social-links__item {
        margin-right: 30px;
        transition: -webkit-transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out; }
        .footer .footer-container .footer-social-links__item__link, .footer .footer-container .footer-social-links__item__link:visited {
          font-size: 18px;
          color: #ffffff;
          transition: color 0.2s ease-in-out; }
        .footer .footer-container .footer-social-links__item:hover {
          -webkit-transform: translateY(-4px);
                  transform: translateY(-4px); }
          .footer .footer-container .footer-social-links__item:hover .footer-social-links__item__link {
            color: #9e9e9e; }
        .footer .footer-container .footer-social-links__item:last-child {
          margin-right: 0; }
    .footer .footer-container .copyright {
      font-size: 11px;
      color: #fff; }

.container {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  padding: 20px; }

.grid {
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify; }
  .grid .wrapper {
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    flex-pack: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify; }
  .grid--sixplus {
    margin-top: 250px; }
    .grid--sixplus .wrapper {
      width: 100%; }
    .grid--sixplus .grid__card {
      margin-bottom: 0; }
      .grid--sixplus .grid__card:nth-of-type(3n + 2) {
        margin-top: -200px;
        -ms-flex-item-align: start;
            align-self: flex-start; }
      .grid--sixplus .grid__card.lastRowSingle {
        margin-left: 50%;
        margin-top: -200px;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); }
      .grid--sixplus .grid__card.lastRowTwo {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
        margin-right: 20px; }
    .grid--sixplus .grid__card__link-wrapper {
      display: block;
      margin-bottom: 0; }
      .grid--sixplus .grid__card__link-wrapper:nth-of-type(3n + 2) {
        margin-top: -200px;
        -ms-flex-item-align: start;
            align-self: flex-start; }
      .grid--sixplus .grid__card__link-wrapper.lastRowSingle {
        margin-left: 50%;
        margin-top: -200px;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); }
      .grid--sixplus .grid__card__link-wrapper.lastRowTwo {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
        margin-right: 20px; }
      .grid--sixplus .grid__card__link-wrapper .grid__card:nth-of-type(3n + 2) {
        margin-top: 0; }
      .grid--sixplus .grid__card__link-wrapper .grid__card.lastRowSingle {
        margin-left: 0;
        margin-top: 0;
        -webkit-transform: none;
                transform: none; }
      .grid--sixplus .grid__card__link-wrapper .grid__card.lastRowTwo {
        -webkit-transform: none;
                transform: none;
        margin-right: 0; }
    .grid--sixplus.reversed .grid__card:nth-of-type(3n), .grid--sixplus.reversed .grid__card:nth-of-type(3n + 1) {
      margin-top: -200px;
      -ms-flex-item-align: start;
          align-self: flex-start; }
    .grid--sixplus.reversed .grid__card:nth-of-type(3n + 2) {
      -ms-flex-item-align: initial;
          align-self: initial;
      margin-top: 0; }
    .grid--sixplus.reversed .grid__card.lastRowSingle {
      margin-left: 0;
      margin-top: 0;
      -webkit-transform: none;
              transform: none; }
    .grid--sixplus.reversed .grid__card.lastRowSingle {
      margin-left: 0;
      margin-top: -200px;
      -webkit-transform: none;
              transform: none; }
    .grid--sixplus.reversed .grid__card.lastRowTwo {
      margin-top: -200px;
      -webkit-transform: none;
              transform: none;
      margin-right: 0; }
  .grid--five .wrapper .grid__card:nth-of-type(5n + 2) {
    -ms-flex-item-align: center;
        align-self: center;
    margin-top: 200px; }
  .grid--five .wrapper .grid__card:nth-of-type(5n + 4), .grid--five .wrapper .grid__card:nth-of-type(5n + 5) {
    margin-top: -200px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-bottom: 0; }
  .grid--three--up, .grid--three--down {
    display: block; }
  .grid--three--up {
    margin-top: 200px; }
    .grid--three--up .grid__card:nth-of-type(2n) {
      margin-top: -150px; }
  .grid--three--down {
    margin-top: 200px; }
    .grid--three--down .grid__card:nth-of-type(2n + 1) {
      margin-top: -150px; }
  .grid--2col .col {
    width: 50%; }
    .grid--2col .col:nth-of-type(odd) {
      padding-right: 65px; }
    .grid--2col .col:nth-of-type(even) {
      padding-left: 65px; }
    .grid--2col .col:nth-of-type(2) {
      padding-top: 120px; }
  .grid--3col .col .grid__card {
    width: 100%;
    height: 375px;
    margin-bottom: 215px; }
  .grid--3col .col:nth-child(2) {
    min-width: 350px; }
  .grid--3col .col:first-of-type, .grid--3col .col:last-of-type {
    width: 304px; }
  .grid--3col .col:last-of-type {
    margin-top: 300px; }
  .grid--3col--simple {
    margin-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .grid--3col--simple .wrapper {
      width: 100%; }
    .grid--3col--simple .grid__card {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0 0 20px 20px;
      height: auto; }
      .grid--3col--simple .grid__card:nth-child(3n +1) {
        margin-left: 0; }
      .grid--3col--simple .grid__card__visuel {
        border: 1px solid #333333;
        display: block; }
        .grid--3col--simple .grid__card__visuel img {
          display: block; }

.page-gen .paragraph--short {
  max-width: 90%; }

.page-home .page-header__wrapper {
  bottom: 0; }
.page-home .page-header__home-logo {
  position: relative;
  width: 380px;
  max-width: 100%;
  height: auto;
  padding-top: 35vh;
  margin: 0 auto 50px; }
  .page-home .page-header__home-logo a {
    width: 100%; }
    .page-home .page-header__home-logo a img {
      width: 100%;
      height: auto;
      margin: 0 auto; }
.page-home .page-header__subtitle {
  position: relative;
  font-family: "Gotham-bold", "Times New Roman", times, serif;
  font-size: 26px;
  color: #ffffff;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  max-width: 430px;
  line-height: 1.1em;
  margin-bottom: 32vh; }
.page-home .page-header__scroll-down {
  position: absolute;
  width: 75px;
  height: 75px;
  left: 50%;
  bottom: 20px;
  line-height: 18px;
  padding-top: 21px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  font-weight: bold;
  font-family: "HelveticaRoundedLTStd-BdCn", Arial, Helvetica, sans-serif;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out; }
  .page-home .page-header__scroll-down:hover {
    color: #000000;
    background: #FFFFFF; }
.page-home .page-content .news-container .news-title {
  margin-top: 180px; }
.page-home .page-content .news-container .all-news {
  margin-top: 40px; }
.page-home .page-content .group-container .section-container__background {
  top: -250px; }
.page-home .page-content .group-container .group-title {
  margin-top: 450px; }
.page-home .page-content .group-container .learn-more-group {
  margin-top: 60px; }
.page-home .page-content .group-container .stats {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .page-home .page-content .group-container .stats__item {
    display: inline-block;
    font-family: "Gotham-bold", "Times New Roman", times, serif;
    font-size: 21px;
    color: #fff;
    text-transform: uppercase;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2; }
    .page-home .page-content .group-container .stats__item b {
      display: none; }
    .page-home .page-content .group-container .stats__item__wrapper__number {
      font-family: "Gotham-bold", "Times New Roman", times, serif;
      font-size: 70px; }
      .page-home .page-content .group-container .stats__item__wrapper__number:before {
        content: "";
        text-transform: lowercase; }
      .page-home .page-content .group-container .stats__item__wrapper__number--more:before {
        content: "+"; }
      .page-home .page-content .group-container .stats__item__wrapper__number--less:before {
        content: "-"; }
      .page-home .page-content .group-container .stats__item__wrapper__number--multi:before {
        content: "x"; }
      .page-home .page-content .group-container .stats__item__wrapper__number.euro:after {
        content: "€"; }
      .page-home .page-content .group-container .stats__item__wrapper__number.percent:after {
        content: "%"; }
    .page-home .page-content .group-container .stats__item__wrapper:after {
      content: "";
      width: 4px;
      height: 4px;
      display: block;
      background: #ffffff;
      border-radius: 50%;
      margin: 30px auto 20px; }
    .page-home .page-content .group-container .stats__item:nth-of-type(2) {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      border-right: 1px solid #6e6e6e;
      border-left: 1px solid #6e6e6e;
      padding: 0 70px; }
    .page-home .page-content .group-container .stats__item:last-of-type {
      border-right: 0; }
.page-home .page-content .companies-container .section-container__background {
  top: -340px; }
.page-home .page-content .companies-container .companies-title {
  margin-top: 120px; }
.page-home .page-content .companies-container .companies-grid {
  margin-top: 280px; }
  .page-home .page-content .companies-container .companies-grid .grid__card {
    height: 370px; }
    .page-home .page-content .companies-container .companies-grid .grid__card__title {
      font-family: "Gotham-bold", "Times New Roman", times, serif;
      font-size: 18px;
      padding: 14px 0 0px; }
.page-home .page-content .careers-container .careers-title {
  margin-top: 530px; }
.page-home .page-content .careers-container .learn-more-careers {
  margin-top: 60px; }
.page-home .page-content .social-container .social-title {
  margin-top: 140px; }
.page-home .page-content .social-container .illustration {
  display: block;
  width: 700px;
  max-width: 80%;
  height: auto;
  margin: 45px auto 60px; }

.page-home .page-content .section-container .grid--sixplus .grid__card {
  height: 430px; }

.page-company .page-header, .page-gen .page-header {
  height: auto; }
  .page-company .page-header__wrapper, .page-gen .page-header__wrapper {
    position: relative;
    bottom: inherit; }
  .page-company .page-header__background, .page-gen .page-header__background {
    position: absolute;
    width: 100%;
    height: auto; }
  .page-company .page-header .page-title, .page-gen .page-header .page-title {
    padding-top: 28vw;
    line-height: 180px; }
    .page-company .page-header .page-title b, .page-gen .page-header .page-title b {
      line-height: 100px;
      display: block; }
.page-company .bx-wrapper, .page-gen .bx-wrapper {
  margin-top: 90px; }
.page-company .website, .page-gen .website, .page-company .website:visited, .page-gen .website:visited {
  margin-top: 70px; }
.page-company .grid-gallery .section-container__background, .page-gen .grid-gallery .section-container__background {
  top: -650px; }
.page-company .grid-gallery .page-title, .page-gen .grid-gallery .page-title {
  margin-top: 120px; }
.page-company .grid--companies-instagram .grid__card, .page-gen .grid--companies-instagram .grid__card {
  height: 430px; }
  .page-company .grid--companies-instagram .grid__card .img-wrapper, .page-gen .grid--companies-instagram .grid__card .img-wrapper {
    overflow: hidden;
    width: 314px;
    height: 314px; }
  .page-company .grid--companies-instagram .grid__card img, .page-gen .grid--companies-instagram .grid__card img {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

.page-group .our-values .grid {
  margin-top: 130px; }
.page-group .headquarters .section-container__background {
  top: -60px; }
.page-group .headquarters .page-title {
  margin-top: 480px; }
.page-group .headquarters .bx-wrapper {
  margin-top: 60px; }
.page-group .milestones .section-container__background {
  top: 290px; }
.page-group .milestones .page-title {
  margin-top: 70px; }
.page-group .milestones .dates {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .page-group .milestones .dates__list {
    position: relative;
    margin-top: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #878787; }
    .page-group .milestones .dates__list__item {
      position: relative;
      font-family: "Gotham-bold", "Times New Roman", times, serif;
      font-size: 14px;
      color: #878787;
      line-height: 40px;
      width: 70px;
      max-width: 70px;
      cursor: pointer;
      transition: color 0.4s ease-in-out, padding-left 0.2s ease-in-out, padding-right 0.2s ease-in-out; }
      .page-group .milestones .dates__list__item__elipse {
        position: relative;
        z-index: 2000;
        top: 48px;
        left: 50%;
        display: block;
        width: 15px;
        height: 15px;
        border: 1px solid #878787;
        border-radius: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        background: #000000;
        transition: border 0.4s ease-in-out; }
        .page-group .milestones .dates__list__item__elipse:before {
          position: absolute;
          top: 4px;
          left: 4px;
          content: "";
          width: 5px;
          height: 5px;
          display: block;
          background: #878787;
          border-radius: 50%;
          transition: background 0.4s ease-in-out; }
      .page-group .milestones .dates__list__item__date {
        position: relative;
        z-index: 2000; }
      .page-group .milestones .dates__list__item.active {
        border-radius: 50%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: initial; }
        .page-group .milestones .dates__list__item.active .dates__list__item__elipse {
          display: none; }
        .page-group .milestones .dates__list__item.active .dates__list__item__date {
          color: #ffffff;
          font-size: 20px;
          top: 34px;
          left: 0;
          z-index: 2000;
          padding: 0 10px;
          pointer-events: none; }
      .page-group .milestones .dates__list__item.active:first-child {
        margin-left: 0; }
      .page-group .milestones .dates__list__item.active:last-child {
        margin-right: 0; }
      .page-group .milestones .dates__list__item:hover {
        color: #ffffff; }
        .page-group .milestones .dates__list__item:hover .dates__list__item__elipse {
          border: 1px solid #ffffff; }
          .page-group .milestones .dates__list__item:hover .dates__list__item__elipse:before {
            background: #ffffff; }
  .page-group .milestones .dates__cursor {
    position: absolute;
    top: 7px;
    line-height: 92px;
    width: 92px;
    height: 92px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    background: #000000;
    margin-left: -20px; }
    .page-group .milestones .dates__cursor:before {
      position: absolute;
      font-family: "icomoon";
      content: "\e601";
      font-size: 14px;
      left: -30px; }
    .page-group .milestones .dates__cursor:after {
      position: absolute;
      font-family: "icomoon";
      content: "\e601";
      font-size: 14px;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
      right: -30px; }
.page-group .milestones .only-mobile .dates {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  padding-bottom: 50px; }
  .page-group .milestones .only-mobile .dates__cursor {
    left: 50%;
    margin-left: -41px;
    background: #000000;
    z-index: 10; }
  .page-group .milestones .only-mobile .dates__list {
    display: block;
    position: relative;
    z-index: 1000;
    margin-top: 0;
    top: 0;
    white-space: nowrap;
    border: none; }
    .page-group .milestones .only-mobile .dates__list__item {
      width: 33%;
      max-width: none;
      display: inline-block; }
      .page-group .milestones .only-mobile .dates__list__item__date {
        top: -18px;
        z-index: 3000; }
      .page-group .milestones .only-mobile .dates__list__item__elipse {
        top: 43px;
        width: 28px;
        height: 28px; }
        .page-group .milestones .only-mobile .dates__list__item__elipse:before {
          top: 8px;
          left: 8px;
          width: 10px;
          height: 10px; }
      .page-group .milestones .only-mobile .dates__list__item.active {
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box; }
        .page-group .milestones .only-mobile .dates__list__item.active .dates__list__item__date {
          z-index: 3000;
          top: 10px;
          margin-left: 18px; }
.page-group .milestones .only-mobile .line {
  height: 1px;
  width: 100%;
  background: #878787;
  position: absolute;
  top: 55px; }
.page-group .milestones .contents-by-dates {
  min-height: 500px;
  position: relative;
  margin-top: 70px; }
  .page-group .milestones .contents-by-dates__item {
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    top: 0;
    left: 0; }
    .page-group .milestones .contents-by-dates__item .wrapper {
      width: calc(33% - 50px);
      margin-bottom: 30px; }
      .page-group .milestones .contents-by-dates__item .wrapper .visuel {
        width: 100%;
        height: auto; }
      .page-group .milestones .contents-by-dates__item .wrapper .paragraph {
        margin-top: 10px;
        text-align: left; }
      .page-group .milestones .contents-by-dates__item .wrapper:nth-of-type(2), .page-group .milestones .contents-by-dates__item .wrapper:nth-of-type(3) {
        margin-left: 70px; }
    .page-group .milestones .contents-by-dates__item.active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
.page-group .governance .section-container__background {
  top: 60px; }
.page-group .governance .page-title {
  margin-top: 390px; }
.page-group .governance .cta-wrapper {
  margin: 40px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around; }
  .page-group .governance .cta-wrapper .box-content {
    padding: 10px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .page-group .governance .cta-wrapper .box-content .description {
      margin-bottom: 20px; }

.page-responsability .foundation {
  margin-top: 60px; }
  .page-responsability .foundation .grid {
    margin-top: 60px; }
    .page-responsability .foundation .grid .col {
      padding: 0 40px;
      margin-bottom: 40px; }
      .page-responsability .foundation .grid .col img {
        margin-top: 0;
        margin-bottom: 20px; }
      .page-responsability .foundation .grid .col:nth-of-type(odd) {
        padding-right: 60px;
        border-right: 1px solid #d8d8d8; }
      .page-responsability .foundation .grid .col:nth-of-type(even) {
        padding-left: 60px; }
      .page-responsability .foundation .grid .col:nth-of-type(2) {
        padding-top: 40px; }
  .page-responsability .foundation .foundation-social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 60px auto; }
    .page-responsability .foundation .foundation-social-links__item {
      margin-right: 30px;
      transition: -webkit-transform 0.2s ease-in-out;
      transition: transform 0.2s ease-in-out; }
      .page-responsability .foundation .foundation-social-links__item__link, .page-responsability .foundation .foundation-social-links__item__link:visited {
        font-size: 18px;
        color: #ffffff;
        transition: color 0.2s ease-in-out; }
      .page-responsability .foundation .foundation-social-links__item:hover {
        -webkit-transform: translateY(-4px);
                transform: translateY(-4px); }
        .page-responsability .foundation .foundation-social-links__item:hover .footer-social-links__item__link {
          color: #444444; }
      .page-responsability .foundation .foundation-social-links__item:last-child {
        margin-right: 0; }
.page-responsability .restoration .section-container__background {
  top: -450px; }
.page-responsability .restoration .page-title {
  margin-top: 140px; }

.page-responsability .restoration .container {
  padding: 0 20px; }
  .page-responsability .restoration .container .anim-wrapper {
    margin: 160px 0 100px; }
  .page-responsability .restoration .container .grid {
    margin-top: 0; }
    .page-responsability .restoration .container .grid .col {
      padding-bottom: 100px; }
      .page-responsability .restoration .container .grid .col .paragraph {
        margin: 0; }
      .page-responsability .restoration .container .grid .col img {
        margin: 25px 0 35px; }

.page-responsability .restoration:last-child .container .grid .col {
  padding-bottom: 0; }

.page-responsability .project-cash {
  margin-top: 200px; }

.page-press .in-press .page-title {
  margin-top: 120px; }
.page-press .in-press .grid__card {
  height: 500px; }
.page-press .in-press .main-cta {
  margin-top: -40px; }
.page-press .releases .page-title {
  margin-top: 110px; }
.page-press .contact .page-title {
  margin-top: 110px; }

.page-careers .our-people .section-container__background {
  top: -50px; }
.page-careers .our-people .grid {
  margin-top: 220px; }
  .page-careers .our-people .grid .grid__card .videoplayer-wrapper {
    height: auto; }
  .page-careers .our-people .grid .grid__card video {
    width: 314px;
    height: 314px; }
.page-careers .our-people .people-video {
  margin-top: 100px;
  margin-bottom: 50px; }
  .page-careers .our-people .people-video video {
    min-height: 400px; }
  .page-careers .our-people .people-video .bx-viewport {
    height: 450px !important; }
  .page-careers .our-people .people-video .videoplayer-wrapper .videoplayer {
    position: relative; }
    .page-careers .our-people .people-video .videoplayer-wrapper .videoplayer .video-js {
      height: auto !important;
      width: auto !important; }
      .page-careers .our-people .people-video .videoplayer-wrapper .videoplayer .video-js .vjs-tech {
        position: relative; }
.page-careers .join {
  margin-top: 90px; }
  .page-careers .join .container {
    padding-bottom: 100px; }
    .page-careers .join .container .main-cta {
      margin-top: 40px; }
  .page-careers .join .iframe-wrapper {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out, padding-top 0.5s ease-in-out; }
    .page-careers .join .iframe-wrapper iframe {
      height: 100%; }
    .page-careers .join .iframe-wrapper.active {
      height: 1000px;
      padding-top: 100px; }
      .page-careers .join .iframe-wrapper.active #ptifrmcontent, .page-careers .join .iframe-wrapper.active #ptifrmtarget {
        height: 100%; }
.page-careers .news .section-container__background {
  top: -590px; }
.page-careers .news .page-title {
  margin-top: 155px; }

.popup .wrap {
  width: 100%;
  height: 600px;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  margin-bottom: 100px; }
  .popup .wrap .career-iframe {
    width: 100%;
    height: 1000px;
    border: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    overflow-y: scroll; }

.page-contact .gallery-companies .grid__card {
  background: #000000;
  height: 320px; }
  .page-contact .gallery-companies .grid__card__visuel {
    display: block;
    height: 300px;
    position: relative;
    border: 1px solid #333333;
    margin-bottom: 15px; }
    .page-contact .gallery-companies .grid__card__visuel img {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .page-contact .gallery-companies .grid__card:nth-of-type(3n + 2) {
    margin-top: -160px; }
  .page-contact .gallery-companies .grid__card.lastRowSingle {
    margin-top: -160px; }
.page-contact .group .section-container__background {
  top: -300px; }
.page-contact .group .page-title {
  margin-top: 200px; }

.page-news .all-news .news-list {
  position: relative;
  z-index: 1; }
  .page-news .all-news .news-list .news-list__item .news-list__item__background {
    background-color: #000000; }
  .page-news .all-news .news-list .news-list__item .date {
    display: none;
    text-align: center; }
    .page-news .all-news .news-list .news-list__item .date .year {
      display: inline-block;
      margin: 60px auto 0;
      font-family: "Gotham-bold", "Times New Roman", times, serif;
      font-size: 14px;
      color: #878787;
      line-height: 40px;
      margin-left: -52px; }
      .page-news .all-news .news-list .news-list__item .date .year__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .page-news .all-news .news-list .news-list__item .date .year__wrapper__value {
          position: relative;
          z-index: 2000;
          line-height: 0;
          margin-top: 12px;
          font-size: 20px;
          margin-right: 30px; }
        .page-news .all-news .news-list .news-list__item .date .year__wrapper__elipse {
          position: relative;
          display: block;
          width: 24px;
          height: 24px;
          border: 1px solid #878787;
          border-radius: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          background: #000000; }
          .page-news .all-news .news-list .news-list__item .date .year__wrapper__elipse:before {
            position: absolute;
            top: 7px;
            left: 7px;
            content: "";
            width: 8px;
            height: 8px;
            display: block;
            background: #878787;
            border-radius: 50%; }
    .page-news .all-news .news-list .news-list__item .date .short {
      line-height: 92px;
      width: 105px;
      height: 105px;
      border: 2px solid #ffffff;
      border-radius: 50%;
      color: #ffffff;
      font-size: 24px;
      background: #000000;
      margin: 60px auto; }
      .page-news .all-news .news-list .news-list__item .date .short .wrapper {
        display: inline-block;
        font-family: "Gotham-bold", "Times New Roman", times, serif;
        font-size: 24px;
        color: #fff;
        text-transform: uppercase;
        line-height: 1.2em;
        margin-bottom: 50px;
        height: 50px;
        margin-top: 26px; }
  .page-news .all-news .news-list .news-list__item:first-child .date .year {
    margin-top: 0; }
.page-news .all-news .dates {
  position: relative; }
  .page-news .all-news .dates__line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #4d4d4d; }
  .page-news .all-news .dates__cursor {
    position: relative;
    z-index: 10;
    top: 188px;
    left: 50%;
    margin-top: -39px;
    line-height: 92px;
    width: 105px;
    height: 105px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    background: #000000;
    margin-left: -53px; }
    .page-news .all-news .dates__cursor .left-line, .page-news .all-news .dates__cursor .right-line {
      position: absolute;
      top: 50%;
      margin-top: -1px;
      background-color: #ffffff;
      height: 2px;
      width: 70px; }
      .page-news .all-news .dates__cursor .left-line .elipse, .page-news .all-news .dates__cursor .right-line .elipse {
        position: absolute;
        top: 2px;
        display: block;
        width: 15px;
        height: 15px;
        border: 1px solid #ffffff;
        border-radius: 50%;
        background: #000000; }
        .page-news .all-news .dates__cursor .left-line .elipse:before, .page-news .all-news .dates__cursor .right-line .elipse:before {
          position: absolute;
          top: 4px;
          left: 4px;
          content: "";
          width: 5px;
          height: 5px;
          display: block;
          background: #ffffff;
          border-radius: 50%; }
    .page-news .all-news .dates__cursor .left-line {
      right: 100%; }
      .page-news .all-news .dates__cursor .left-line .elipse {
        left: 0;
        -webkit-transform: translate(-100%, -50%);
                transform: translate(-100%, -50%); }
    .page-news .all-news .dates__cursor .right-line {
      left: 100%; }
      .page-news .all-news .dates__cursor .right-line .elipse {
        right: 0;
        -webkit-transform: translate(100%, -50%);
                transform: translate(100%, -50%); }
    .page-news .all-news .dates__cursor .wrapper {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      overflow: hidden; }
    .page-news .all-news .dates__cursor .cursor__dates-list {
      width: 100%; }
      .page-news .all-news .dates__cursor .cursor__dates-list .cursor__dates-list__item {
        display: block;
        text-align: center;
        font-family: "Gotham-bold", "Times New Roman", times, serif;
        font-size: 24px;
        color: #fff;
        text-transform: uppercase;
        line-height: 1.2em;
        margin-bottom: 50px;
        width: 100%;
        height: 50px;
        margin-top: 26px; }
        .page-news .all-news .dates__cursor .cursor__dates-list .cursor__dates-list__item.active {
          display: block; }
    .page-news .all-news .dates__cursor.fixed {
      position: fixed; }
    .page-news .all-news .dates__cursor:before {
      position: absolute;
      font-family: "icomoon";
      content: "\e601";
      font-size: 14px;
      top: -66px;
      -webkit-transform: translateX(-50%) rotate(90deg);
              transform: translateX(-50%) rotate(90deg); }
    .page-news .all-news .dates__cursor:after {
      position: absolute;
      font-family: "icomoon";
      content: "\e601";
      font-size: 14px;
      -webkit-transform: translateX(-50%) rotate(-90deg);
              transform: translateX(-50%) rotate(-90deg);
      top: 76px; }
  .page-news .all-news .dates__list {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    margin-left: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 188px; }
    .page-news .all-news .dates__list__item {
      position: relative;
      left: 50%;
      top: 0;
      height: 0;
      margin-left: -1px;
      margin-bottom: 300px;
      font-family: "Gotham-bold", "Times New Roman", times, serif;
      font-size: 14px;
      color: #878787;
      line-height: 40px;
      transition: color 0.4s ease-in-out, padding-left 0.2s ease-in-out, padding-right 0.2s ease-in-out; }
      .page-news .all-news .dates__list__item__elipse {
        position: relative;
        display: block;
        width: 6px;
        height: 6px;
        background-color: #878787;
        border-radius: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); }
      .page-news .all-news .dates__list__item--year {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .page-news .all-news .dates__list__item--year .dates__list__item__elipse {
          position: relative;
          display: block;
          width: 15px;
          height: 15px;
          border: 1px solid #878787;
          border-radius: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          background: #000000; }
          .page-news .all-news .dates__list__item--year .dates__list__item__elipse:before {
            position: absolute;
            top: 4px;
            left: 4px;
            content: "";
            width: 5px;
            height: 5px;
            display: block;
            background: #878787;
            border-radius: 50%; }
        .page-news .all-news .dates__list__item--year .dates__list__item__year {
          position: relative;
          z-index: 2000;
          line-height: 0;
          margin-top: 8px; }
.page-news .all-news .vertical-line {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #878787; }
.page-news .all-news--mobile {
  display: none;
  position: relative; }

.staff-international_16fcf .page-title {
  line-height: inherit !important; }

.staff-international--gen .gallerie-company .container .bx-wrapper {
  margin-top: 0; }
@media screen and (max-width: 740px) {
  .staff-international--gen .page-header {
    min-height: 80vh !important; } }
.staff-international--home .page-title b {
  margin-top: 100px; }
.staff-international--home + footer .footer-cta:first-child {
  display: none; }
.staff-international--home .grid__card__visuel {
  top: 0 !important;
  left: 0 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important; }
@media screen and (max-width: 480px) {
  .staff-international--home .grid-gallery .page-title {
    margin-top: 30px; } }
.staff-international--brands .page-main-visual {
  display: block;
  margin: 0 auto 55px auto;
  width: 240px; }
.staff-international--brands .website-container {
  margin-bottom: -45px; }
.staff-international--brands .gallerie-company {
  margin-bottom: 95px; }
.staff-international--corporate .page-header .paragraph--large {
  max-width: 90%; }
.staff-international--corporate .milestones .page-title {
  margin-top: 0; }
.staff-international--corporate .milestones .contents-by-dates {
  min-height: 400px; }
@media screen and (max-width: 480px) {
  .staff-international--corporate .page-header .page-header__wrapper {
    position: relative;
    bottom: inherit; }
    .staff-international--corporate .page-header .page-header__wrapper .page-title {
      padding-top: 28vw; }
  .staff-international--corporate .milestones .contents-by-dates {
    min-height: 0px !important; } }
.staff-international--contact-list {
  position: relative; }
  .staff-international--contact-list_country {
    padding-top: 90px; }
    .staff-international--contact-list_country--title {
      color: white;
      font-size: 40px;
      margin-bottom: 75px;
      text-transform: uppercase;
      font-family: "Gotham-bold", "Times New Roman", times, serif; }
    .staff-international--contact-list_country--entity {
      padding: 10px; }
      .staff-international--contact-list_country--entity.active .container {
        padding: 20px; }
      .staff-international--contact-list_country--entity.active .staff-international--contact-list_country--entity-form {
        max-height: 1050px; }
      .staff-international--contact-list_country--entity.active .main-cta {
        max-height: 0px; }
      .staff-international--contact-list_country--entity-type {
        color: white;
        font-size: 30px;
        margin-bottom: 60px;
        text-transform: uppercase;
        font-family: "Gotham-bold", "Times New Roman", times, serif; }
      .staff-international--contact-list_country--entity-title, .staff-international--contact-list_country--entity-address, .staff-international--contact-list_country--entity-address2, .staff-international--contact-list_country--entity-address3, .staff-international--contact-list_country--entity-state, .staff-international--contact-list_country--entity-tel, .staff-international--contact-list_country--entity-fax, .staff-international--contact-list_country--entity-gmapLink {
        color: #9e9e9e;
        font-size: 18px;
        line-height: 22px;
        font-family: "HelveticaNeueLTStd-Cn", Arial, Helvetica, sans-serif; }
      .staff-international--contact-list_country--entity-gmapLink {
        text-decoration: underline;
        transition: all .2s; }
        .staff-international--contact-list_country--entity-gmapLink:hover {
          color: white; }
      .staff-international--contact-list_country--entity-form {
        max-height: 0px;
        overflow: hidden;
        padding: 0;
        transition: all 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955); }
        .staff-international--contact-list_country--entity-form .submit, .staff-international--contact-list_country--entity-form .cancel {
          margin: 20px 25px 0 25px; }
    .staff-international--contact-list_country .main-cta {
      margin: 30px 0 60px 0;
      max-height: 65px;
      overflow: hidden;
      transition: all 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955); }
    .staff-international--contact-list_country:first-child {
      padding-top: 0; }
@media screen and (max-width: 740px) {
  .staff-international--contact .page-header {
    min-height: 80vh !important; } }

@media screen and (min-width: 1700px) {
  .page-company .page-header .page-title, .page-gen .page-header .page-title {
    padding-top: 27vw; }

  .footer {
    padding: 965px 0 100px; } }
@media screen and (max-width: 1420px) {
  .logo img {
    width: 80px; }

  .page-group .milestones .container {
    max-width: 900px; } }
@media screen and (max-width: 1300px) {
  .logo {
    right: 30px; }
    .logo img {
      width: 65px; }

  .menu-prompt {
    right: 30px; }

  .menu-share {
    right: 30px; } }
@media screen and (max-width: 1023px) {
  .main {
    margin-top: 55px; }
    .main .page-header {
      min-height: 750px; }
      .main .page-header__background {
        width: 200%;
        -webkit-transform: translateX(-25%);
                transform: translateX(-25%); }
      .main .page-header__wrapper {
        margin: 0;
        padding: 20px 10px; }
        .main .page-header__wrapper .container {
          padding: 0;
          padding-bottom: 40px;
          min-height: 430px; }
      .main .page-header .paragraph--short {
        max-width: 80%; }
    .main .page-content .section-container {
      position: relative; }
      .main .page-content .section-container__background {
        width: 200%;
        -webkit-transform: translateX(-25%);
                transform: translateX(-25%); }
      .main .page-content .section-container.white .container .page-title {
        padding-top: 80px; }

  .only-desktop {
    display: none; }

  .only-mobile {
    display: block; }

  .container {
    width: 90%;
    margin: 0 auto; }

  .grid .grid__card {
    width: 100%;
    margin: 0;
    height: auto;
    margin-bottom: 20px; }
    .grid .grid__card__link-wrapper {
      display: block;
      width: 100%; }
  .grid--sixplus {
    margin-top: 50px; }
    .grid--sixplus .grid__card:nth-of-type(3n + 2) {
      margin-top: 0px; }
    .grid--sixplus .grid__card.lastRowSingle {
      margin-top: 0; }
    .grid--sixplus .grid__card.lastRowTwo {
      margin-top: 0; }
    .grid--sixplus .grid__card__link-wrapper:nth-of-type(3n + 2) {
      margin-top: 0px; }
    .grid--sixplus .grid__card__link-wrapper.lastRowSingle {
      margin-top: 0; }
    .grid--sixplus .grid__card__link-wrapper.lastRowTwo {
      margin-top: 0; }
    .grid--sixplus .wrapper.mobile-slider.lastRowSingle {
      margin-left: 0;
      margin-top: 0; }
    .grid--sixplus .wrapper.mobile-slider.lastRowTwo {
      margin-right: 0; }
    .grid--sixplus .wrapper.mobile-slider .grid__card__visuel {
      margin-bottom: 10px; }
    .grid--sixplus .wrapper.mobile-slider .grid__card:nth-of-type(3n + 2) {
      margin-top: 0; }
    .grid--sixplus.reversed .grid__card:nth-of-type(3n), .grid--sixplus.reversed .grid__card:nth-of-type(3n + 1) {
      margin-top: 0; }
  .grid--five {
    display: block;
    width: 100%;
    position: relative;
    margin-top: 40px; }
    .grid--five .wrapper .grid__card {
      height: auto; }
      .grid--five .wrapper .grid__card:nth-of-type(5n + 2) {
        margin-top: 0; }
      .grid--five .wrapper .grid__card:nth-of-type(5n + 4), .grid--five .wrapper .grid__card:nth-of-type(5n + 5) {
        margin-top: 0; }
    .grid--five .wrapper.mobile-slider .grid__card__visuel {
      margin-bottom: 10px; }
  .grid--three--up, .grid--three--down {
    display: block;
    width: 100%;
    position: relative;
    margin-top: 40px; }
    .grid--three--up .wrapper, .grid--three--down .wrapper {
      display: block; }
      .grid--three--up .wrapper .grid__card, .grid--three--down .wrapper .grid__card {
        height: auto; }
        .grid--three--up .wrapper .grid__card:nth-of-type(2n), .grid--three--down .wrapper .grid__card:nth-of-type(2n) {
          margin: 0;
          margin-bottom: 20px; }
        .grid--three--up .wrapper .grid__card:nth-of-type(2n + 1), .grid--three--down .wrapper .grid__card:nth-of-type(2n + 1) {
          margin: 0;
          margin-bottom: 20px; }
    .grid--three--up .wrapper.mobile-slider .grid__card__visuel, .grid--three--down .wrapper.mobile-slider .grid__card__visuel {
      margin-bottom: 10px; }
  .grid--2col {
    display: block; }
    .grid--2col .col {
      width: 100%;
      padding: 0;
      border-right: none;
      border-bottom: 1px solid #333333;
      padding-top: 20px;
      padding-bottom: 10px; }
      .grid--2col .col .page-subtitle {
        margin-right: 0;
        text-align: center;
        width: 100%;
        max-width: 100%; }
      .grid--2col .col:nth-of-type(even) {
        padding-left: 0; }
      .grid--2col .col:nth-of-type(odd) {
        padding-right: 0;
        border-right: none; }
      .grid--2col .col:nth-of-type(2) {
        padding-top: 40px; }
      .grid--2col .col:last-of-type {
        border-bottom: none; }

  .page-title {
    font-size: 40px; }
    .page-title b {
      font-size: 56px; }
    .page-title:after {
      margin: 25px auto 20px; }

  .page-subtitle {
    font-size: 30px;
    margin-right: 0;
    text-align: center;
    width: 100%;
    max-width: 100%; }

  .paragraph--short {
    max-width: 100%; }
  .paragraph--medium {
    max-width: 100%; }
  .paragraph--large {
    max-width: 100%; }

  .main-cta .link-wrapper a {
    padding: 24px 35px 22px; }

  .videoplayer-wrapper {
    height: 300px; }

  .bx-wrapper .bx-controls-direction a {
    border: none;
    border-radius: 0; }
    .bx-wrapper .bx-controls-direction a:before {
      font-size: 20px; }
    .bx-wrapper .bx-controls-direction a:hover {
      background: none; }
      .bx-wrapper .bx-controls-direction a:hover:before {
        color: #fff; }

  .bx-wrapper .bx-prev {
    left: -65px; }

  .bx-wrapper .bx-next {
    right: -53px; }

  .contact-form .half-wrapper {
    display: block; }
    .contact-form .half-wrapper .wrapper {
      width: 100%; }
      .contact-form .half-wrapper .wrapper:first-child {
        margin-right: 0; }
      .contact-form .half-wrapper .wrapper select {
        margin-bottom: 40px; }

  header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 55px;
    background: #000000;
    opacity: 0.9;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    header .breadcrumb {
      display: none; }
    header .logo {
      display: block;
      position: relative;
      top: 0;
      right: 0;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      z-index: 21;
      margin-top: 2px; }
      header .logo img {
        width: 85px;
        height: auto; }
    header .menu-prompt {
      display: block;
      position: initial;
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
      padding-right: 30px; }
      header .menu-prompt svg {
        zoom: 1; }
    header .menu-share {
      z-index: 25;
      display: block;
      position: initial;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      margin-left: 22px; }
      header .menu-share__social-list {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        z-index: 22;
        margin: 0;
        top: 0;
        left: 0;
        background-color: #ffffff;
        width: 0;
        height: 100%;
        transition: width 0.3s ease-in-out; }
        header .menu-share__social-list li {
          margin-top: 10px;
          opacity: 1; }
          header .menu-share__social-list li a {
            margin-left: -10px;
            font-size: 30px;
            color: #000000; }
          header .menu-share__social-list li:first-child {
            margin-left: 70px; }
        header .menu-share__social-list.active {
          width: calc(100% - 90px); }
      header .menu-share__link {
        color: #000000;
        opacity: 0; }
        header .menu-share__link__icon {
          position: relative;
          z-index: 50;
          color: #ffffff;
          font-size: 28px;
          opacity: 1;
          margin-top: 17px;
          margin-bottom: 0;
          margin-left: 0; }

  .nav-main__main-list {
    top: 50px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
    .nav-main__main-list__item {
      margin-bottom: 20px; }
      .nav-main__main-list__item a, .nav-main__main-list__item a:visited {
        font-size: 18px; }
  .nav-main__secondary-list {
    width: 100%;
    bottom: 60px; }
    .nav-main__secondary-list__item a {
      font-size: 10px; }
    .nav-main__secondary-list__item:first-child {
      margin-left: 10px; }
    .nav-main__secondary-list__item:last-child {
      margin-right: 10px; }

  .nav-companies__title {
    margin-top: 30px; }
  .nav-companies__list {
    margin: 50px auto !important;
    width: 95%; }
    .nav-companies__list__item {
      width: 33.33%;
      float: left; }
      .nav-companies__list__item a img {
        display: block;
        width: 90%;
        margin: 0 auto; }
      .nav-companies__list__item:nth-child(4) {
        clear: both; }

  .page-home .page-header {
    height: 100vh;
    min-height: 480px; }
    .page-home .page-header__wrapper {
      position: initial;
      bottom: initial;
      -webkit-transform: none;
              transform: none;
      z-index: 5;
      text-align: center; }
    .page-home .page-header__scroll-down {
      display: none; }
    .page-home .page-header .container {
      width: 100%;
      height: calc(100%);
      margin-top: -20px; }
  .page-home .page-header__subtitle {
    width: auto;
    margin-bottom: 70px;
    font-size: 16px; }
  .page-home .page-header__home-logo {
    padding-top: 0;
    width: 180px;
    margin-top: 40%; }
    .page-home .page-header__home-logo:after {
      margin: 18px auto; }
  .page-home .page-content .news-container .news-title {
    margin-top: 0; }
  .page-home .page-content .group-container .section-container__background {
    top: -60px; }
  .page-home .page-content .group-container .group-title {
    margin-top: 180px; }
  .page-home .page-content .group-container .stats {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .page-home .page-content .group-container .stats__item {
      border-left: none;
      border-right: none;
      border-bottom: 1px solid #6c6c6c;
      padding: 45px 0;
      width: 100%;
      margin: 0 auto; }
      .page-home .page-content .group-container .stats__item__number {
        font-size: 50px; }
        .page-home .page-content .group-container .stats__item__number:after {
          margin: 20px auto 0px; }
      .page-home .page-content .group-container .stats__item:nth-of-type(2) {
        border-left: 0;
        border-right: 0;
        padding: 45px 0; }
      .page-home .page-content .group-container .stats__item:last-of-type {
        border-bottom: none; }
  .page-home .page-content .companies-container .page-title {
    margin-top: 70px; }
  .page-home .page-content .companies-container .companies-grid {
    margin-top: 60px; }
    .page-home .page-content .companies-container .companies-grid .grid__card {
      height: auto;
      margin-bottom: 30px; }
      .page-home .page-content .companies-container .companies-grid .grid__card:nth-of-type(3n + 2) {
        margin-top: 0; }
  .page-home .page-content .careers-container .section-container__background {
    top: 10px; }
  .page-home .page-content .careers-container .page-title {
    margin-top: 190px; }

  .home_7114a .logo {
    display: block; }

  .page-group .our-values .grid {
    margin-top: 20px; }
  .page-group .milestones .contents-by-dates {
    min-height: 500px;
    margin-top: 60px;
    padding: 0 140px; }
    .page-group .milestones .contents-by-dates__item {
      padding: 0; }
      .page-group .milestones .contents-by-dates__item .wrapper {
        width: 100%; }
        .page-group .milestones .contents-by-dates__item .wrapper:nth-of-type(odd) {
          margin-right: 0; }
        .page-group .milestones .contents-by-dates__item .wrapper:nth-of-type(2), .page-group .milestones .contents-by-dates__item .wrapper:nth-of-type(3) {
          margin-left: 0px; }
  .page-group .governance .cta-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0; }
    .page-group .governance .cta-wrapper .box-content .description {
      margin-top: 30px;
      margin-bottom: 10px; }
    .page-group .governance .cta-wrapper .main-cta {
      margin-top: 20px;
      max-width: 400px; }

  .page-responsability .foundation .foundation-slider {
    position: relative;
    height: 350px;
    top: -400px;
    width: 90%;
    -webkit-transform: none;
            transform: none;
    left: 0;
    margin: 0 auto; }
    .page-responsability .foundation .foundation-slider .bx-viewport {
      left: 0; }
    .page-responsability .foundation .foundation-slider .videoplayer-wrapper {
      border: none; }
  .page-responsability .foundation .page-title {
    padding-top: 0;
    margin-top: -350px; }
  .page-responsability .foundation .grid .col {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border: none !important; }

  .page-press .in-press .page-title {
    margin-top: -60px; }
  .page-press .in-press .grid__card {
    height: auto; }

  .page-news .all-news .news-list .news-list__item .date {
    display: block; }
  .page-news .all-news--mobile {
    display: block; }
  .page-news .all-news--desktop {
    display: none; }

  .page-careers .our-people .grid .grid__card video {
    width: 100%;
    height: 314px; }

  .popup .wrap .career-iframe {
    width: 150%;
    height: 1000px;
    border: 0;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    overflow-y: scroll; }

  .page-contact .gallery-companies .grid__card:nth-of-type(3n + 2) {
    margin-top: 0; }

  .page-company .page-header .page-title b, .page-gen .page-header .page-title b, .page-gen .page-header .page-title b {
    line-height: 40px; }
  .page-company .grid--companies-instagram .grid__card, .page-gen .grid--companies-instagram .grid__card, .page-gen .grid--companies-instagram .grid__card {
    height: auto; }
  .page-company .website .link-wrapper a, .page-gen .website .link-wrapper a, .page-gen .website .link-wrapper a {
    padding: 24px 15px 22px; }

  .footer .footer-container .footer-menu__item {
    margin-right: 10px; }
    .footer .footer-container .footer-menu__item a {
      font-size: 10px; }
    .footer .footer-container .footer-menu__item:first-child {
      margin-left: 10px; }
    .footer .footer-container .footer-menu__item:last-child {
      margin-right: 10px; } }
@media screen and (max-width: 740px) {
  .page-title {
    font-size: 28px; }
    .page-title b {
      font-size: 34px; }

  .page-company .bx-wrapper, .page-gen .bx-wrapper, .page-gen .bx-wrapper {
    margin-top: 0; }

  .page-subtitle {
    font-size: 20px; }

  .page-group .milestones .contents-by-dates {
    padding: 0 50px; }

  .page-header .paragraph--short {
    max-width: 80%; }

  .popup .wrap {
    width: 100%;
    height: 400px;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll; }

  .iframe-wrapper {
    max-height: 600px; }
    .iframe-wrapper.active {
      overflow: inherit !important; }

  .career-iframe.resized {
    width: 300%;
    height: 1500px !important;
    border: 0;
    -webkit-transform: scale(0.33);
            transform: scale(0.33);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    overflow-y: scroll; }

  .staff-international--brands .website-container {
    margin-bottom: 5px; }
  .staff-international--brands .gallerie-company {
    margin-bottom: 50px; } }
@media screen and (max-width: 480px) {
  .page-title {
    font-size: 20px; }
    .page-title b {
      font-size: 26px; }

  .page-news .all-news {
    margin-top: -300px; }

  .page-subtitle {
    font-size: 18px; }

  .page-group .milestones .contents-by-dates {
    padding: 0 20px; }

  .page-press .in-press {
    margin-top: -220px; }

  .nav-companies__list__item {
    width: 43%; } }
@media screen and (max-height: 700px) {
  .nav-companies__title {
    margin-top: 30px; }

  .nav-companies__list {
    margin: 0px auto 20px !important; } }
@media screen and (max-height: 580px) {
  .nav-main__main-list__item {
    margin-bottom: 10px; }
    .nav-main__main-list__item a, .nav-main__main-list__item a:visited {
      font-size: 15px; }

  .nav-companies__title {
    margin-top: 30px; }

  .nav-companies__list__item {
    width: 33.33%; } }



/*# sourceMappingURL=main.css.map */
