.modal {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0s linear 0.4s;
  width: 100%;
}
.modal--open {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.modal--open .modal__close,
.modal--open .modal__content,
.modal--open .modal__overlay {
  opacity: 1;
}
.modal--open .modal__content {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.modal__overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease;
  width: 100%;
}
.modal__wrapper {
  left: 50%;
  max-width: 90%;
  padding: 0 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.modal__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  display: block;
  margin: 0 0 10px auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal__content {
  background: #fff;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease,
    -webkit-transform 0.4s ease;
}
.modal__focus-end:focus,
.modal__focus-start:focus {
  outline: 0;
}
.gallery {
  position: relative;
}
.gallery .visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.gallery__wrapper {
  transition: opacity 0.4s ease;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
.gallery.is-loading .gallery__wrapper {
  padding-bottom: 50%;
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.gallery.is-loading .gallery__overlay {
  opacity: 1;
  pointer-events: auto;
}
.gallery__item {
  transition: opacity 0.4s ease;
  transform: scale(0.9) translateY(-50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
}
.gallery__item img {
  display: block;
  max-width: 100%;
}
.gallery__item.is-transitioning {
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.gallery__item.is-transitioning--backward {
  transform: translate(-50%, -50%) rotate(-20deg);
  opacity: 0;
}
.gallery__item.is-transitioning--forward {
  transform: translate(50%, -50%) rotate(20deg);
  opacity: 0;
}
.gallery__item.is-active {
  transform: scale(1) translateY(-50%);
  opacity: 1;
}
.gallery__item [href],
.gallery__item [tabindex],
.gallery__item button {
  visibility: hidden;
}
.gallery__item.is-active [href],
.gallery__item.is-active [tabindex],
.gallery__item.is-active button {
  visibility: visible;
}
.gallery__overlay {
  transition: opacity 0.4s ease;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
@keyframes galleryPreloader {
  50% {
    background-color: gray;
    transform: scaleX(0.1);
  }
  100% {
    transform: scaleX(1) rotate(90deg);
  }
}
.gallery__overlay::after {
  content: "";
  animation: galleryPreloader 1s ease infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background-color: #000;
}
.gallery__nav {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
}
.gallery__nav:hover {
  cursor: pointer;
}
.gallery__nav-next {
  right: 10px;
}
.gallery__nav-prev {
  left: 10px;
}
body[data-env="development"]::after {
  display: block;
}
.row--nopadding {
  padding-left: 0;
  padding-right: 0;
}
.row--reverse-small {
  display: flex;
  flex-direction: column-reverse;
}
.column--deep {
  padding-left: 0;
  padding-right: 0;
}
.modal {
  z-index: 10000;
}
.modal .inset-box__decoration {
  display: none;
}
.modal__overlay {
  background-color: rgba(0, 0, 0, 0.8);
}
.modal__content {
  background: get-color("beige");
}
.modal__wrapper {
  max-height: 100%;
  max-width: 758px;
  overflow: auto;
  padding: 0;
}
.modal__close {
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 26px;
  top: 26px;
  z-index: 1;
}
.modal__close::after {
  background: url(/sites/fe16/assets/img/global/icon-close.svg);
  content: "";
  display: block;
  height: 24px;
  width: 24px;
}
.modal__close span {
  left: 100%;
  position: absolute;
}
.main-nav[data-open] .main-nav__nav {
  display:block;
}
.main-nav[data-open] .main-nav__toggler__sr-open {
  display: none;
}
.main-nav[data-open] .main-nav__toggler__sr-close {
  display: block;
}
.main-nav[data-fixed] .main-nav__bar {
  position: fixed;
  top: 0;
  z-index: 2;
}
.main-nav__toggler[aria-expanded="true"] + .main-nav__list {
  display: block;
}
.is-yellow .main-nav__anchor.is-active span::after {
  background-color: var(--color-main);
}
.is-blue .main-nav__anchor.is-active span::after {
  background-color: #8ea7d9;
}
.is-red .main-nav__anchor.is-active span::after {
  background-color: #e97b78;
}
.main-nav__switch {
  float: right;
  position: relative;
}
.main-nav__banner-wrapper {
  pointer-events: none;
}
.main-nav__banner {
  pointer-events: none;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.is-blue .main-nav__banner,
.is-red .main-nav__banner,
.is-yellow .main-nav__banner {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.divider--split {
  align-items: center;
  display: flex;
  max-width: 450px;
}
.divider--split .divider__group {
  flex: 1;
}
.divider--split .divider__group:nth-child(2) {
  flex: 0;
  margin: 0 1rem;
}
.divider--currentcolor {
  color: currentColor;
}
.skippers:focus-within {
  height: auto;
}
.skippers__item:focus,
.skippers__item:hover {
  opacity: 1;
}
.is-reduced-motion .reduce-motion__label--off {
  display: flex;
}
.is-reduced-motion .reduce-motion__label--on {
  display: none;
}
.inset-box__keyline {
  pointer-events: none;
  transition: padding 0.4s ease;
}
.inset-box--deco-triangles .inset-box__decoration::after,
.inset-box--deco-triangles .inset-box__decoration::before {
  background-image: url(/sites/fe16/assets/img/global/embelish-2.svg);
  background-position: left top;
  height: 18px;
  width: 18px;
}
.inset-box--beige .inset-box__decoration::after,
.inset-box--beige .inset-box__decoration::before,
.inset-box--white .inset-box__decoration::after,
.inset-box--white .inset-box__decoration::before {
  background-position: left top;
}
.inset-box--beige .inset-box__content,
.inset-box--white .inset-box__content {
  outline-color: var(--color-main);
}
.inset-box--beige {
  background-image: url(/sites/fe16/assets/img/patterns/x-pattern-beige.svg);
}
.inset-box--white {
  background-image: url(/sites/fe16/assets/img/patterns/x-pattern-white.svg);
}
.inset-box--solid {
  background: var(--color-main);
  color: #fff;
}
.is-yellow .inset-box--solid {
  color: #000;
}
.inset-box--grey {
  background-color: #383c43;
  background-image: url(/sites/fe16/assets/img/patterns/pattern-paper-texture.png);
}
.inset-box--grey .inset-box__content {
  outline-color: #d8d8d8;
}
.inset-box--house-blue,
.inset-box--house-red,
.inset-box--house-yellow {
  color: #fff;
}
.inset-box--house-red {
  background-image: url(/sites/fe16/assets/img/patterns/x-pattern-red.svg);
}
.inset-box--house-blue {
  background-image: url(/sites/fe16/assets/img/patterns/x-pattern-blue.svg);
}
.inset-box--house-yellow {
  background-image: url(/sites/fe16/assets/img/patterns/x-pattern-yellow.svg);
}
.vp-on-30 .vp-slide {
  opacity: 1;
  transform: translate(0, 0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.vp-slide--down {
  transform: translateY(50%);
}
.vp-on-30 .vp-delay-1 {
  transition-delay: 0.1s;
}
.vp-on-30 .vp-delay-2 {
  transition-delay: 0.2s;
}
.vp-on-30 .vp-delay-3 {
  transition-delay: 0.3s;
}
.vp-on-30 .vp-delay-4 {
  transition-delay: 0.4s;
}
.vp-on-30 .vp-delay-5 {
  transition-delay: 0.5s;
}
.is-reduced-motion .vp-slide {
  transform: translate(0, 0);
}
.vp-on-30 .is-reduced-motion .vp-slide {
  transition-property: opacity;
}
.house-modal {
  text-align: center;
}
.house-modal .inset-box__content {
  padding-top: 45px;
}
.house-modal .modal__close {
  right: 35px;
  top: 35px;
}
.video-modal .video-modal .video-container.oo-player-container {
  height: auto !important;
  width: auto !important;
}
.video-modal nclood-video .oo-player-container .innerWrapper {
  position: static !important;
}
.video-modal .oo-player-container figure {
  margin: 0;
}
.video-modal .oo-player-container .oo-video-player video {
  max-width: 100%;
}
.video-modal .innerWrapper oo-player oo-video-player .modal__wrapper {
  overflow: initial;
}
.video-modal .bitmovinplayer-container {
  min-height: 120px;
  min-width: 230px;
}
.video-modal .modal__wrapper {
  max-width: 95%;
  overflow: visible;
}
.video-modal .modal__close {
  right: 0;
  top: -44px;
}
.video-modal .modal__close::after {
  background-image: url(/sites/fe16/assets/img/global/icon-close-light.svg);
}
.video-modal .inset-box,
.video-modal .modal__content {
  background: 0 0;
}
.video-modal .inset-box {
  border: solid 2px #fff;
  padding: 0;
  z-index: 1;
}
.video-modal .inset-box__content {
  background: #f2f0e6;
  outline: 0;
  padding: 0;
}
#house-switcher {
  pointer-events: none;
}
#house-switcher.is-red {
  background-color: #b62638;
}
#house-switcher.is-blue {
  background-color: #424d98;
}
#house-switcher.is-yellow {
  background-color: #c8ac3d;
}
.is-reduced-motion #house-switcher {
  opacity: 0;
  transform: translateY(0);
}
.is-red {
  --button-inactive: #e97b78;
  --button-active-bg: #b62638;
}
.is-yellow {
  --button-inactive: #c8ac3d;
  --button-active: #c8ac3d;
  --button-active-bg: #ffffff;
}
.is-blue {
  --button-inactive: #8e97d9;
  --button-active-bg: #424d98;
}
.button {
  transition: background-color 0.2s ease;
}
.button:focus,
.button:hover {
  background-color: var(--button-active-bg);
}
.button:focus .button__content,
.button:hover .button__content {
  box-shadow: inset 0 3px 0 0 var(--button-active),
    inset 0 -3px 0 0 var(--button-active);
}
.button:focus .button__content .icon,
.button:hover .button__content .icon {
  transform: translateX(0.5em);
}
.button:focus .button__decoration,
.button:hover .button__decoration {
  color: var(--button-active);
}
.is-yellow .button:focus .button__content,
.is-yellow .button:hover .button__content {
  color: #000;
}
.button__content {
  transition: box-shadow 0.2s ease, color 0.2s ease;
}
.button__content .icon {
  transition: transform 0.2s ease;
}
.button__content span + * {
  margin-left: 0.5em;
}
.button__decoration {
  transition: color 0.2s ease;
}
.button--silver {
  --button-inactive: #aaaaaa;
  --button-active: #7d7d7d;
  --button-active-bg: #e4e4e4;
}
.button--generic {
  --button-inactive: #3a1d5b;
  --button-active: #fff;
  --button-active-bg: #3a1d5b;
}
.button--generic:focus,
.button--generic:hover {
  color: #fff;
}
.button--ornament {
  --button-inactive: #4b549b;
  --button-active: #4b549b;
  padding: 0;
}
.button--ornament:focus,
.button--ornament:hover {
  background-color: transparent;
}
.button--ornament:focus .button__content,
.button--ornament:hover .button__content {
  color: #fff;
}
.is-yellow .button--ornament:focus .button__content,
.is-yellow .button--ornament:hover .button__content {
  color: #fff;
}
.button--ornament .button__decoration {
  width: 36px;
}
.button--ornament .button__decoration::before {
  padding-bottom: 119.44444%;
}
.line-button:focus .line-button__text::after,
.line-button:hover .line-button__text::after {
  transform: scaleX(1);
}
.line-button__text::after {
  transition: transform 0.2s ease;
}
.is-reduced-motion .line-button.is-active .line-button__text::after,
.is-reduced-motion .line-button:focus .line-button__text::after,
.is-reduced-motion .line-button:hover .line-button__text::after {
  opacity: 1;
}
.is-reduced-motion .line-button__text::after {
  opacity: 0;
  transform: none;
  transition: opacity 0.2s ease;
}
.is-blue .banners__btn[data-house="blue"] span::after {
  transform: scaleX(1);
}
.is-red .banners__btn[data-house="red"] span::after {
  transform: scaleX(1);
}
.is-yellow .banners__btn[data-house="yellow"] span::after {
  transform: scaleX(1);
}
@keyframes media-button__icon {
  0%,
  100%,
  25% {
    color: #eed36b;
  }
  50%,
  75% {
    color: #c8ac3d;
  }
}
.media-button {
  border: solid 2px currentColor;
  color: var(--color-main);
  display: block;
  position: relative;
}
.media-button__wrapper {
  overflow: hidden;
  padding: 10px;
}
.media-button__inner {
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease;
}
.media-button__img {
  border: solid 1px currentColor;
  display: block;
  position: relative;
  width: 100%;
}
.media-button__icon {
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.media-button__inner-decoration {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
}
.media-button__inner-decoration::after,
.media-button__inner-decoration::before {
  background-color: currentColor;
  content: "";
  height: 25px;
  transform: rotate(45deg) translateX(-16px);
  width: 25px;
}
.media-button__inner-decoration::after {
  transform: rotate(-45deg) translateX(16px);
}
.media-button__inner-decoration--top {
  top: 0;
}
.media-button__inner-decoration--bottom {
  bottom: 0;
}
.media-button__inner-decoration--bottom::before {
  transform: rotate(-45deg) translateX(-16px);
}
.media-button__inner-decoration--bottom::after {
  transform: rotate(45deg) translateX(16px);
}
.media-button__outer-decoration {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.media-button__outer-decoration::after,
.media-button__outer-decoration::before {
  background-color: currentColor;
  content: "";
  height: 9px;
  width: 9px;
}
.media-button__outer-decoration::before {
  transform: translateX(-5px) rotate(45deg);
}
.media-button__outer-decoration::after {
  transform: translateX(5px) rotate(45deg);
}
.media-button__outer-decoration--vertical {
  flex-direction: column;
}
.media-button__outer-decoration--vertical::before {
  transform: translateY(-5px) rotate(45deg);
}
.media-button__outer-decoration--vertical::after {
  transform: translateY(5px) rotate(45deg);
}
.media-button--video {
  width: 100%;
}
.media-button--video:focus .media-button__inner,
.media-button--video:hover .media-button__inner {
  transform: scale(1.1);
}
.media-button--video:focus .media-button__icon,
.media-button--video:hover .media-button__icon {
  animation: media-button__icon 2s ease infinite;
}
.media-button--white {
  color: #fff;
}
.media-button--currentcolor {
  color: currentColor;
}
.is-reduced-motion .media-button__img {
  transition: none;
}
.gallery {
  margin-top: 2rem;
}
.gallery__item {
  left: 50%;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: auto;
}
.gallery__item.is-right {
  transform: translate(-10%, -50%) scale(0.8);
}
.gallery__item.is-left {
  transform: translate(-90%, -50%) scale(0.8);
}
.gallery__item.is-active {
  transform: translate(-50%, -50%);
}
.gallery__item.is-active {
  z-index: 1;
}
.gallery__item.is-active .gallery__description {
  opacity: 1;
  transform: translateY(0);
}
.gallery__image {
  display: inline-block;
}
.gallery__description {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(-50%);
  transition: transform 0.4s 0.2s ease, opacity 0.4s 0.2s ease;
}
.gallery__nav {
  background: 0 0;
  color: #fff;
  top: 40%;
  transition: color 0.4s ease;
  z-index: 1;
}
.gallery__nav:focus,
.gallery__nav:hover {
  color: #c8ac3d;
}
.gallery__nav:focus .icon,
.gallery__nav:hover .icon {
  transform: translateX(10px);
}
.gallery__nav .icon {
  transition: transform 0.2s ease;
}
.gallery__nav-prev {
  transform: translateY(-50%) scaleX(-1);
}
.gallery__nav-markup {
  display: none;
}
.gallery--currentcolor .gallery__nav {
  color: currentColor;
}
.gallery--curentColor .gallery__nav[disabled],
.gallery__nav[disabled] {
  color: rgba(255, 255, 255, 0.2);
  cursor: default;
}
.is-reduced-motion .gallery__description {
  transition-property: opacity;
}
.is-reduced-motion .gallery__item.is-transitioning {
  transition-property: opacity;
}
.split-section__wrapper {
  display: block;
}
.split-section__slide--image {
  overflow: hidden;
  padding-left: 0;
}
.split-section__slide--image img,
.split-section__slide--image video {
  min-height: 100%;
  object-fit: cover;
}
.split-section__slide--image img:not(.autoplay-video__fallback) {
  display: block;
}
.split-section--video .split-section__slide--image {
  cursor: pointer;
}
.split-section--video .split-section__slide--image:focus .icon,
.split-section--video .split-section__slide--image:hover .icon {
  color: #e1cc71;
}
.split-section__slide--text {
  padding-right: 0;
}
.split-section__slide--text .h1,
.split-section__slide--text .h2,
.split-section__slide--text h1,
.split-section__slide--text h2 {
  margin-bottom: 0.5em;
}
.split-section__slide--text .inset-box,
.split-section__slide--text .inset-box__content {
  height: 100%;
}
.split-section__slide--text .inset-box__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro .vp-on-10 .vp-slide--up {
  opacity: 1;
  transform: translate(0, 0);
  transition-duration: 0.4s, 0.4s;
  transition-property: transform, opacity;
  transition-timing-function: ease, ease;
}
.intro .vp-delay-1 {
  transition-delay: 0.3s;
}
.intro .vp-delay-2 {
  transition-delay: 0.4s;
}
.intro .vp-delay-3 {
  transition-delay: 0.5s;
}
.intro .vp-delay-4 {
  transition-delay: 0.6s;
}
.intro .vp-delay-5 {
  transition-delay: 0.7s;
}
.is-reduced-motion .intro .vp-on-10 .vp-slide--up {
  transition-property: opacity;
}
.main-header__switch {
  pointer-events: none;
}
.main-header__switch a {
  pointer-events: auto;
}
.main-header__content {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 35vw;
  max-height: 500px;
}
.main-header__video::after {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: url(/sites/fe16/assets/img/patterns/video-overlay.png);
  content: "";
}
.main-header__logo {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.autoplay-video {
  overflow: hidden;
  position: relative;
}
.autoplay-video.is-playing .autoplay-video__fallback,
.autoplay-video.is-playing .autoplay-video__preloader {
  display: none;
}
.autoplay-video.is-frozen .autoplay-video__video {
  display: none;
}
.autoplay-video.is-frozen .autoplay-video__preloader {
  display: none;
}
.autoplay-video.is-frozen .autoplay-video__fallback {
  display: block;
}
.autoplay-video__fallback,
.autoplay-video__preloader {
  width: 100%;
}
.autoplay-video__preloader {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.autoplay-video__fallback {
  display: none;
}
.autoplay-video__video {
  display: block;
  max-width: 100%;
}
.autoplay-video--fullscreen {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.autoplay-video--fullscreen .autoplay-video__fallback,
.autoplay-video--fullscreen .autoplay-video__video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.is-reduced-motion .autoplay-video__fallback {
  display: block;
}
.is-reduced-motion .autoplay-video__video {
  display: none;
}
.is-reduced-motion .autoplay-video.is-playing .autoplay-video__fallback {
  display: block;
}
.is-blue {
  --color-main: #424d98;
  --pat-rule-1: url("/sites/fe16/assets/img/patterns/rule-1-blue.svg");
  --pat-x: url("/sites/fe16/assets/img/patterns/x-pattern-blue.svg");
  --symbol: url("/sites/fe16/assets/img/global/symbol-blue.svg");
  --banner: url("/sites/fe16/assets/img/global/header-flag-blue.png");
}
.is-red {
  --color-main: #b62638;
  --pat-rule-1: url("/sites/fe16/assets/img/patterns/rule-1-red.svg");
  --pat-x: url("/sites/fe16/assets/img/patterns/x-pattern-red.svg");
  --symbol: url("/sites/fe16/assets/img/global/symbol-red.svg");
  --banner: url("/sites/fe16/assets/img/global/header-flag-red.png");
}
.is-yellow {
  --color-main: #c8ac3d;
  --pat-rule-1: url("/sites/fe16/assets/img/patterns/rule-1-yellow.svg");
  --pat-x: url("/sites/fe16/assets/img/patterns/x-pattern-yellow.svg");
  --symbol: url("/sites/fe16/assets/img/global/symbol-yellow.svg");
  --banner: url("/sites/fe16/assets/img/global/header-flag-yellow.png");
}
button {
  cursor: pointer;
}
.is-red .content-body__decoration {
  height: 420px;
  opacity: 0.25;
  width: 420px;
}
.is-blue .content-body__decoration {
  height: 420px;
  opacity: 0.17;
  width: 420px;
}
.is-yellow .content-body__decoration {
  height: 420px;
  opacity: 0.16;
  width: 420px;
}
.content-body__decoration--right {
  left: calc(50% + 430px);
}
.h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 0.5em 0;
}
.h2 {
  font-size: 1.55556rem;
  margin-bottom: 0;
}
h4 {
  font-family: Quattrocento, sans-serif;
  font-size: 0.83333rem;
  font-weight: 700;
  line-height: 1.5;
}
.price-list--hide-us .price-list__diamond,
.price-list--hide-us li[data-country="us"] {
  display: none;
}
.price-list--hide-ca .price-list__diamond,
.price-list--hide-ca li[data-country="ca"] {
  display: none;
}
.texture-grey {
  background-color: #383c43;
  background-image: url(/sites/fe16/assets/img/patterns/grey-bg-square.jpg);
  background-position: 50% 0;
  background-repeat: repeat;
  background-size: 1000px 1000px;
}
.inset-box--texture,
.texture-background {
  background-color: var(--color-main);
  background-image: url(/sites/fe16/assets/img/patterns/pattern-paper-texture.png);
  color: #fff;
}
.is-yellow .inset-box--texture,
.is-yellow .texture-background {
  background-color: #c8ac3d;
  color: #000;
}
.spacer {
  margin-bottom: 1.5rem;
}
.is-yellow .inset-box--texture,
.is-yellow .texture-background,
.txt-dark-on-light {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}
.inset-box--texture,
.texture-background {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.txt-nobreak {
  white-space: nowrap;
}
.txt-c-main {
  color: var(--color-main);
}
.txt-upper {
  text-transform: uppercase;
}
.txt-c-house-generic {
  color: #3a1d5b;
}
.txt-c-house-sothis {
  color: #3a1d5b;
}
.txt-c-house-blue {
  color: #424d98;
}
.txt-c-house-blue-light {
  color: #8ea7d9;
}
.txt-c-house-red {
  color: #b62638;
}
.txt-c-house-red-light {
  color: #e97b78;
}
.txt-c-house-yellow {
  color: #c8ac3d;
}
.txt-c-house-church {
  color: #696969;
}
.txt-c-house-officer {
  color: #345b42;
}
.txt-c-gold {
  color: #e1cc71;
}
.txt-c-beige {
  color: #f2f0e6;
}
.txt-c-white {
  color: #fff;
}
.txt-c-grey {
  color: #aaaaab;
}
.txt-c-lightgrey {
  color: #d8d8d8;
}
.txt-c-darkgrey {
  color: #383c43;
}
.txt-c-black {
  color: #000;
}
.txt-w-bold {
  font-weight: 700;
}
.main-footer {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #3a1d5b;
  color: #fff;
  overflow: hidden;
  padding-bottom: 40px;
  padding-top: 6px;
  position: relative;
}
.main-footer::before {
  background: url(/sites/fe16/assets/img/patterns/rule-2-generic.svg);
  content: "";
  display: block;
  height: 22px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.main-footer__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.main-footer__bg::before {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: url(/sites/fe16/assets/img/patterns/purple-bg-square.jpg);
  content: "";
  opacity: 0.48;
}
.main-footer__bg::after {
  background-image: linear-gradient(to top, #160628 0, rgba(22, 6, 40, 0) 98%);
  bottom: 0;
  content: "";
  height: 50%;
  left: 0;
  position: absolute;
  width: 100%;
}
.main-footer__content {
  position: relative;
}
.main-footer__available-anchor,
.main-footer__customer,
.main-footer__facebook,
.main-footer__share {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.main-footer__available-anchor {
  display: inline-flex;
}
.main-footer__available-anchor:focus .main-footer__available-title span::after,
.main-footer__available-anchor:hover .main-footer__available-title span::after {
  transform: scaleX(1);
}
.main-footer__available {
  margin-top: 45px;
  text-align: center;
}
.main-footer__available-title {
  margin: 0 15px 15px;
}
[lang="es"] .main-footer__available-title {
  font-size: 1.15rem;
  font-weight: 700;
}
.main-footer__available-title span {
  display: inline-block;
}
.main-footer__available-title span::after {
  top: calc(100% + 10px);
}
.main-footer__share {
  flex-direction: column;
  margin-top: 35px;
}
.main-footer__facebook {
  margin-bottom: 1rem;
}
.main-footer__facebook .fb_iframe_widget,
.main-footer__facebook nclood-social {
  display: block;
}
.main-footer__nclood {
  margin-top: 30px;
}
.main-footer__legal {
  font-family: Lato, sans-serif;
  text-align: center;
}
.main-footer__legal p {
  font-size: 12px;
}
@media only screen and (min-width: 71.5em) {
  .row-xlarge {
    display: flex;
  }
  .row-xlarge--nowrap {
    flex-wrap: nowrap;
  }
  .row-xlarge--vertical-center {
    align-items: center;
  }
  .row-xlarge--vertical-uncenter {
    align-items: baseline;
  }
  .row-xlarge--horizontal-uncenter {
    justify-content: flex-start;
  }
  .column-xlarge--1 {
    flex-basis: 4.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--2 {
    flex-basis: 8.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--3 {
    flex-basis: 12.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--4 {
    flex-basis: 16.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--5 {
    flex-basis: 20.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--6 {
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--7 {
    flex-basis: 29.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--8 {
    flex-basis: 33.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--9 {
    flex-basis: 37.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--10 {
    flex-basis: 41.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--11 {
    flex-basis: 45.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--12 {
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--13 {
    flex-basis: 54.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--14 {
    flex-basis: 58.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--15 {
    flex-basis: 62.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--16 {
    flex-basis: 66.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--17 {
    flex-basis: 70.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--18 {
    flex-basis: 75%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--19 {
    flex-basis: 79.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--20 {
    flex-basis: 83.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--21 {
    flex-basis: 87.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--22 {
    flex-basis: 91.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--23 {
    flex-basis: 95.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xlarge--24 {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  [lang="fr"] .main-nav__anchor {
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media only screen and (min-width: 40em) {
  .row--reverse-small {
    flex-direction: initial;
  }
  .row--nowrap {
    flex-wrap: nowrap;
  }
  .row--vertical-center {
    align-items: center;
  }
  .row--vertical-uncenter {
    align-items: baseline;
  }
  .row--horizontal-uncenter {
    justify-content: flex-start;
  }
  .column--2 {
    flex-basis: 8.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--3 {
    flex-basis: 12.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--4 {
    flex-basis: 16.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--5 {
    flex-basis: 20.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--6 {
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--7 {
    flex-basis: 29.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--8 {
    flex-basis: 33.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--9 {
    flex-basis: 37.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--10 {
    flex-basis: 41.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--12 {
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--13 {
    flex-basis: 54.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--14 {
    flex-basis: 58.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--15 {
    flex-basis: 62.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--16 {
    flex-basis: 66.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--17 {
    flex-basis: 70.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--19 {
    flex-basis: 79.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--20 {
    flex-basis: 83.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--21 {
    flex-basis: 87.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--22 {
    flex-basis: 91.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column--23 {
    flex-basis: 95.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .video-modal .inset-box {
    border: 30px solid #fff;
    border-image: url(/sites/fe16/assets/img/patterns/frame-trailer-modal.svg)
      30 round;
  }
  .gallery__item.is-left,
  .gallery__item.is-right {
    opacity: 0.5;
  }
  .split-section__wrapper {
    display: flex;
  }
  .split-section--reversed .split-section__wrapper {
    flex-direction: row-reverse;
  }
  .split-section--reversed .split-section__slide--text {
    padding-left: 0;
    padding-right: 2.5px;
  }
  .split-section--reversed .split-section__slide--image {
    padding-left: 2.5px;
    padding-right: 0;
  }
  h4 {
    font-size: 1rem;
  }
  .main-footer__available-anchor {
    flex-wrap: nowrap;
  }
  .main-footer__available-img {
    max-width: 60%;
  }
  .main-footer__available-title {
    margin: 0 35px 0 0;
  }
  .main-footer__share {
    flex-direction: row;
  }
  .main-footer__facebook {
    margin-bottom: 0;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 64em) {
  .column--push-2 {
    margin-right: 8.33333%;
  }
  .row-large {
    display: flex;
  }
  .row-large--nowrap {
    flex-wrap: nowrap;
  }
  .row-large--vertical-center {
    align-items: center;
  }
  .row-large--vertical-uncenter {
    align-items: baseline;
  }
  .row-large--horizontal-uncenter {
    justify-content: flex-start;
  }
  .column-large--1 {
    flex-basis: 4.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--2 {
    flex-basis: 8.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--3 {
    flex-basis: 12.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--4 {
    flex-basis: 16.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--5 {
    flex-basis: 20.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--6 {
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--7 {
    flex-basis: 29.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--8 {
    flex-basis: 33.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--10 {
    flex-basis: 41.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--11 {
    flex-basis: 45.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--12 {
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--13 {
    flex-basis: 54.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--14 {
    flex-basis: 58.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--16 {
    flex-basis: 66.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--17 {
    flex-basis: 70.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--18 {
    flex-basis: 75%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--19 {
    flex-basis: 79.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--20 {
    flex-basis: 83.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--22 {
    flex-basis: 91.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--23 {
    flex-basis: 95.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-large--24 {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .main-nav[data-fixed] .main-nav__bar {
    z-index: 3;
  }
  .main-nav[data-fixed] .main-nav__nav {
    position: fixed;
    top: 31px;
  }
  .inset-box--deco-triangles .inset-box__decoration::after,
  .inset-box--deco-triangles .inset-box__decoration::before {
    height: 36px;
    width: 36px;
  }
  .inset-box--extra-padding .inset-box__content {
    padding: 40px;
  }
  .video-modal .modal__wrapper {
    max-width: 758px;
  }
  .gallery__nav-next {
    right: calc(50% - 340px);
  }
  .gallery__nav-prev {
    left: calc(50% - 340px);
  }
  .h2 {
    font-size: 2.44444rem;
  }
  h4 {
    font-size: 1.11111rem;
  }
  .main-footer__available-title {
    margin-right: 45px;
  }
}
@media only screen and (min-width: 120em) {
  body::after {
    content: "XXL";
  }
  .row-xxlarge {
    display: flex;
  }
  .row-xxlarge--nowrap {
    flex-wrap: nowrap;
  }
  .row-xxlarge--vertical-center {
    align-items: center;
  }
  .row-xxlarge--vertical-uncenter {
    align-items: baseline;
  }
  .row-xxlarge--horizontal-uncenter {
    justify-content: flex-start;
  }
  .column-xxlarge--1 {
    flex-basis: 4.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--2 {
    flex-basis: 8.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--3 {
    flex-basis: 12.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--4 {
    flex-basis: 16.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--5 {
    flex-basis: 20.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--6 {
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--7 {
    flex-basis: 29.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--8 {
    flex-basis: 33.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--9 {
    flex-basis: 37.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--10 {
    flex-basis: 41.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--11 {
    flex-basis: 45.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--12 {
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--13 {
    flex-basis: 54.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--14 {
    flex-basis: 58.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--15 {
    flex-basis: 62.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--16 {
    flex-basis: 66.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--17 {
    flex-basis: 70.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--18 {
    flex-basis: 75%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--19 {
    flex-basis: 79.16667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--20 {
    flex-basis: 83.33333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--21 {
    flex-basis: 87.5%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--22 {
    flex-basis: 91.66667%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--23 {
    flex-basis: 95.83333%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .column-xxlarge--24 {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 39.9375em) {
  .gallery__item {
    width: 100%;
  }
  .gallery__image {
    width: 100%;
  }
  .gallery__description {
    margin-top: 60px;
  }
  .gallery__nav {
    height: 50px;
    top: 52vw;
    width: 53px;
  }
  .gallery__nav .icon {
    height: 100%;
    width: 100%;
  }
  .gallery__nav-next {
    right: calc(50% - 60px);
    transform: none;
  }
  .gallery__nav-prev {
    left: calc(50% - 60px);
    transform: scaleX(-1);
  }
  .split-section__slide--image {
    padding-right: 0;
  }
  .split-section__slide--text {
    padding-left: 0;
  }
}
@media only screen and (max-width: 24.9375em) {
  .main-footer__facebook .button {
    display: flex;
  }
}
@media only screen and (min-width: 64em) and (max-width: 71.4375em) {
  [lang="fr"] .main-nav__anchor {
    font-size: 0.83333rem;
    padding: 17px 11px 15px;
  }
}
@media only screen and (min-width: 40em) and (max-width: 39.9375em) {
  .split-section--reversed .split-section__slide--text {
    padding-right: 0;
  }
  .split-section--reversed .split-section__slide--image {
    padding-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vp-on-30 .vp-slide {
    transition-property: opacity;
  }
  .line-button:focus .line-button__text::after,
  .line-button:hover .line-button__text::after {
    opacity: 1;
  }
  .line-button__text::after {
    transition: opacity 0.2s ease;
  }
  .media-button__img {
    transition: none;
  }
  .gallery__description {
    transition-property: opacity;
  }
  .gallery__item.is-transitioning {
    transition-property: opacity;
  }
  .intro .vp-on-10 .vp-slide--up {
    transition-property: opacity;
  }
  .autoplay-video__fallback {
    display: block;
  }
  .autoplay-video__video {
    display: none;
  }
  .autoplay-video.is-playing .autoplay-video__fallback {
    display: block;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .is-blue {
    --banner: url("/sites/fe16/assets/img/global/header-flag-blue-2x.png");
  }
  .is-red {
    --banner: url("/sites/fe16/assets/img/global/header-flag-red-2x.png");
  }
  .is-yellow {
    --banner: url("/sites/fe16/assets/img/global/header-flag-yellow-2x.png");
  }
  .texture-grey {
    background-image: url(/sites/fe16/assets/img/patterns/grey-bg-square-2x.jpg);
  }
}
