@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.hinge {
  animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
/* flex grid */
.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-left: -20px;
}
.grid--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.grid--items-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.grid--items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.grid--items-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.grid__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  padding-left: 20px;
}
.grid__item--v-center {
  -ms-flex-item-align: center;
  align-self: center;
}
@media (max-width: 767px) {
  .grid__item--break-xs-5 {
    padding-top: 5px;
  }
}
@media (max-width: 767px) {
  .grid__item--break-xs-10 {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .grid__item--break-xs-15 {
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .grid__item--break-xs-20 {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .grid__item--break-xs-25 {
    padding-top: 25px;
  }
}
@media (max-width: 767px) {
  .grid__item--break-xs-30 {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .grid__item--break-xs-35 {
    padding-top: 35px;
  }
}
@media (max-width: 767px) {
  .grid__item--break-xs-40 {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .grid__item--break-xs-45 {
    padding-top: 45px;
  }
}
@media (max-width: 767px) {
  .grid__item--break-xs-50 {
    padding-top: 50px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-5 {
    padding-top: 5px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-10 {
    padding-top: 10px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-15 {
    padding-top: 15px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-20 {
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-25 {
    padding-top: 25px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-30 {
    padding-top: 30px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-35 {
    padding-top: 35px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-40 {
    padding-top: 40px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-45 {
    padding-top: 45px;
  }
}
@media (max-width: 1024px) {
  .grid__item--break-sm-50 {
    padding-top: 50px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-5 {
    padding-top: 5px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-10 {
    padding-top: 10px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-15 {
    padding-top: 15px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-20 {
    padding-top: 20px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-25 {
    padding-top: 25px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-30 {
    padding-top: 30px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-35 {
    padding-top: 35px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-40 {
    padding-top: 40px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-45 {
    padding-top: 45px;
  }
}
@media (max-width: 1200px) {
  .grid__item--break-md-50 {
    padding-top: 50px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-5 {
    padding-top: 5px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-10 {
    padding-top: 10px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-15 {
    padding-top: 15px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-20 {
    padding-top: 20px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-25 {
    padding-top: 25px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-30 {
    padding-top: 30px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-35 {
    padding-top: 35px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-40 {
    padding-top: 40px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-45 {
    padding-top: 45px;
  }
}
@media (max-width: 1600px) {
  .grid__item--break-lg-50 {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .grid__item--order-xs-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 767px) {
  .grid__item--order-xs-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 767px) {
  .grid__item--order-xs-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (max-width: 767px) {
  .grid__item--order-xs-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
@media (max-width: 767px) {
  .grid__item--order-xs-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
}
@media (max-width: 1024px) {
  .grid__item--order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 1024px) {
  .grid__item--order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 1024px) {
  .grid__item--order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (max-width: 1024px) {
  .grid__item--order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
@media (max-width: 1024px) {
  .grid__item--order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
}
@media (max-width: 1200px) {
  .grid__item--order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 1200px) {
  .grid__item--order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 1200px) {
  .grid__item--order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (max-width: 1200px) {
  .grid__item--order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
@media (max-width: 1200px) {
  .grid__item--order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
}
@media (max-width: 1600px) {
  .grid__item--order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 1600px) {
  .grid__item--order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 1600px) {
  .grid__item--order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (max-width: 1600px) {
  .grid__item--order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
@media (max-width: 1600px) {
  .grid__item--order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
}
.grid__item--xs-span-1 {
  width: 8.33333%;
}
.grid__item--xs-span-1,
.grid__item--xs-span-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid__item--xs-span-2 {
  width: 16.66667%;
}
.grid__item--xs-span-3 {
  width: 25%;
}
.grid__item--xs-span-3,
.grid__item--xs-span-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid__item--xs-span-4 {
  width: 33.33333%;
}
.grid__item--xs-span-5 {
  width: 41.66667%;
}
.grid__item--xs-span-5,
.grid__item--xs-span-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid__item--xs-span-6 {
  width: 50%;
}
.grid__item--xs-span-7 {
  width: 58.33333%;
}
.grid__item--xs-span-7,
.grid__item--xs-span-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid__item--xs-span-8 {
  width: 66.66667%;
}
.grid__item--xs-span-9 {
  width: 75%;
}
.grid__item--xs-span-9,
.grid__item--xs-span-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid__item--xs-span-10 {
  width: 83.33333%;
}
.grid__item--xs-span-11 {
  width: 91.66667%;
}
.grid__item--xs-span-11,
.grid__item--xs-span-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid__item--xs-span-12 {
  width: 100%;
}
@media (min-width: 768px) {
  .grid__item--sm-span-1 {
    width: 8.33333%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-1,
  .grid__item--sm-span-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--sm-span-2 {
    width: 16.66667%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-3 {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-3,
  .grid__item--sm-span-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--sm-span-4 {
    width: 33.33333%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-5 {
    width: 41.66667%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-5,
  .grid__item--sm-span-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--sm-span-6 {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-7 {
    width: 58.33333%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-7,
  .grid__item--sm-span-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--sm-span-8 {
    width: 66.66667%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-9 {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-9,
  .grid__item--sm-span-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--sm-span-10 {
    width: 83.33333%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-11 {
    width: 91.66667%;
  }
}
@media (min-width: 768px) {
  .grid__item--sm-span-11,
  .grid__item--sm-span-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--sm-span-12 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-1 {
    width: 8.33333%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-1,
  .grid__item--md-span-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--md-span-2 {
    width: 16.66667%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-3 {
    width: 25%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-3,
  .grid__item--md-span-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--md-span-4 {
    width: 33.33333%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-5 {
    width: 41.66667%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-5,
  .grid__item--md-span-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--md-span-6 {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-7 {
    width: 58.33333%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-7,
  .grid__item--md-span-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--md-span-8 {
    width: 66.66667%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-9 {
    width: 75%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-9,
  .grid__item--md-span-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--md-span-10 {
    width: 83.33333%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-11 {
    width: 91.66667%;
  }
}
@media (min-width: 1025px) {
  .grid__item--md-span-11,
  .grid__item--md-span-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--md-span-12 {
    width: 100%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-1 {
    width: 8.33333%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-1,
  .grid__item--lg-span-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--lg-span-2 {
    width: 16.66667%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-3 {
    width: 25%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-3,
  .grid__item--lg-span-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--lg-span-4 {
    width: 33.33333%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-5 {
    width: 41.66667%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-5,
  .grid__item--lg-span-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--lg-span-6 {
    width: 50%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-7 {
    width: 58.33333%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-7,
  .grid__item--lg-span-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--lg-span-8 {
    width: 66.66667%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-9 {
    width: 75%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-9,
  .grid__item--lg-span-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--lg-span-10 {
    width: 83.33333%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-11 {
    width: 91.66667%;
  }
}
@media (min-width: 1201px) {
  .grid__item--lg-span-11,
  .grid__item--lg-span-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid__item--lg-span-12 {
    width: 100%;
  }
}
.grid--small {
  margin-left: -20px;
}
.grid--small > .grid__item {
  padding-left: 20px;
}
.application-item {
  overflow: hidden;
  text-align: left;
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .application-item {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .application-item {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
}
.application-item__content {
  overflow: hidden;
}
.application-item__content p {
  margin-bottom: 20px;
}
.application-item__img {
  float: left;
  margin-right: 60px;
}
@media (max-width: 767px) {
  .application-item__img {
    float: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
  }
}
.articles-detail1__header {
  text-align: center;
  margin-bottom: 55px;
}
.articles-detail1__header h1 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 59px;
  font-weight: normal;
  color: #aa7e66;
  text-transform: uppercase;
}
.articles-detail1__content {
  margin-bottom: 50px;
}
.articles-detail1__content__inner {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #24251e;
}
.articles-detail1__content__inner p {
  margin-bottom: 30px;
}
.articles-detail1__content__images {
  text-align: center;
}
.articles-detail1__content__images .title {
  margin-top: 30px;
  display: block;
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.articles-detail1__actions {
  text-align: center;
}
.articles-layout1__item {
  display: block;
  border: 14px solid #818488;
  text-align: center;
  padding: 50px 25px;
  height: 100%;
  position: relative;
}
.articles-layout1__item h2 {
  font-family: 'Lyon Text', serif;
  font-size: 56px;
  font-weight: normal;
  color: #5a6066;
  margin: 0px;
  padding: 0px;
}
.articles-layout1__item p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #5a6066;
  margin: 50px 0px;
}
.articles-layout1__item:hover {
  text-decoration: none;
}
.articles-layout1__item__actions {
  height: 50px;
}
.articles-layout1__item__actions__inner {
  position: absolute;
  bottom: 50px;
  left: 0px;
  width: 100%;
}
@media (max-width: 767px) {
  .articles-layout1__item {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .articles-layout1__item {
    margin-bottom: 15px;
  }
}
.articles-layout2--nopadding .row--nopadding > div {
  padding: 0px;
  margin: 0px;
}
.articles-layout2 .h1x {
  height: 300px;
}
.articles-layout2 .h2x {
  height: 600px;
}
.articles-layout2 .w1x {
  width: 100%;
}
@media (max-width: 991px) {
  .articles-layout2 .a1posX,
  .articles-layout2 .a2posX,
  .articles-layout2 .a1posY,
  .articles-layout2 .a2posY {
    top: inherit;
    left: inherit;
  }
}
.articles-layout2__item {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.articles-layout2__item a {
  display: block;
  width: 100%;
}
.articles-layout2__item a:hover {
  text-decoration: none;
}
.articles-layout2__item--overlayed .articles-layout2__item__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 90;
}
.articles-layout2__item--overlayed .articles-layout2__item__overlay {
  display: block;
  pointer-events: none;
}
@media (max-width: 991px) {
  .articles-layout2__item--overlayed .articles-layout2__item__content {
    background-color: #fff;
    position: relative;
    top: inherit;
  }
}
.articles-layout2__item--separeted .articles-layout2__item__image {
  position: absolute;
  top: 0;
  left: 0;
}
.articles-layout2__item--separeted .articles-layout2__item__content {
  width: 100%;
  background-color: #fff;
}
@media (max-width: 991px) {
  .articles-layout2__item--separeted .articles-layout2__item__image {
    position: relative;
  }
  .articles-layout2__item--separeted .articles-layout2__item__content {
    position: relative;
  }
}
.articles-layout2__item__overlay {
  display: none;
}
.articles-layout2__item__overlay:after {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #24251e;
  opacity: .5;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  content: "";
}
.articles-layout2__item__overlay--light:after {
  opacity: .2;
}
@media (max-width: 991px) {
  .articles-layout2__item {
    align-items: flex-start;
  }
  .articles-layout2__item.h1x,
  .articles-layout2__item.h2x {
    height: auto;
  }
  .articles-layout2__item.w1x,
  .articles-layout2__item.w2x {
    width: 100%;
  }
  .articles-layout2__item__overlay:after {
    display: none;
  }
}
.articles-layout2__item__image {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.articles-layout2__item__image--transition {
  -webkit-transition: transform 2s;
  -o-transition: transform 2s;
  transition: transform 2s;
}
@media (max-width: 991px) {
  .articles-layout2__item__image.h1x-res,
  .articles-layout2__item__image.h2x {
    height: 250px;
  }
  .articles-layout2__item__image.h2x.videoL {
    height: 500px;
  }
  .articles-layout2__item__image.w2x {
    width: 100%;
  }
}
.articles-layout2__item__image__video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  padding-bottom: 56.25%;
}
.articles-layout2__item__content {
  padding: 20px 20px 35px 20px;
  position: relative;
  pointer-events: none;
  /*&__inner {
        a {
          &:visited h2, &.more:visited {
            color: @brand-primary;
            text-decoration: underline;
          }
        }
      }*/
}
.articles-layout2__item__content--limit {
  max-width: 470px;
}
@media (max-width: 991px) {
  .articles-layout2__item__content--limit {
    max-width: none;
  }
}
.articles-layout2__item__content.pointer {
  pointer-events: auto;
}
.articles-layout2__item__content .arrow {
  width: 21px;
  height: 21px;
  display: block;
  z-index: 909;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('../img/icons/article-arrow.svg');
}
.articles-layout2__item__content .arrow--top {
  top: -10px;
  left: 45%;
}
.articles-layout2__item__content .arrow--bottom {
  bottom: -10px;
  left: 45%;
}
.articles-layout2__item__content .arrow--left {
  top: 45%;
  left: -10px;
}
.articles-layout2__item__content .arrow--right {
  top: 45%;
  right: -10px;
}
.articles-layout2__item__content .category {
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  color: #24251e;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.articles-layout2__item__content h2 {
  font-family: 'Lyon Display', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0;
  margin: 0 0 15px;
  line-height: 1.15;
  color: #24251e;
}
.articles-layout2__item__content p {
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  color: #24251e;
  margin-bottom: 25px;
}
.articles-layout2__item__content p.text-big {
  font-family: 'Sharp Sans Display No1', sans-serif;
  letter-spacing: 1px;
}
.articles-layout2__item__content .more {
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #24251e;
  letter-spacing: 3px;
  text-transform: uppercase;
  pointer-events: auto;
}
.articles-layout2__item__content .more:hover .fa {
  transform: translateX(3px) scale(1.6);
}
.articles-layout2__item__content .more .fa {
  color: #aa7e66;
  transition: all 0.2s ease-out;
}
.articles-layout2__item__content--light .category {
  color: #fff;
}
.articles-layout2__item__content--light h2 {
  color: #fff;
}
.articles-layout2__item__content--light p {
  color: #fff;
}
.articles-layout2__item__content--light .more {
  color: #fff;
}
.articles-layout2__item__content--light .more .fa {
  color: #aa7e66;
}
.articles-layout2__item__content--lighter .category {
  color: #fff;
}
.articles-layout2__item__content--lighter h2 {
  color: #fff;
}
.articles-layout2__item__content--lighter p {
  color: #fff;
}
.articles-layout2__item__content--lighter .more {
  color: #fff;
}
.articles-layout2__item__content--lighter .more .fa {
  color: #aa7e66;
}
.articles-layout2__item__content__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}
.articles-layout2__item__content__inner--top {
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .articles-layout2__item__content {
    background-color: #fff;
    pointer-events: auto;
  }
  .articles-layout2__item__content.h2x,
  .articles-layout2__item__content.h1x {
    height: auto;
  }
  .articles-layout2__item__content.w1x,
  .articles-layout2__item__content.w2x {
    width: 100%;
  }
  .articles-layout2__item__content__inner {
    display: block;
  }
  .articles-layout2__item__content--light .category,
  .articles-layout2__item__content--lighter .category {
    color: #24251e;
  }
  .articles-layout2__item__content--light h2,
  .articles-layout2__item__content--lighter h2 {
    color: #24251e;
  }
  .articles-layout2__item__content--light p,
  .articles-layout2__item__content--lighter p {
    color: #24251e;
  }
  .articles-layout2__item__content--light .more,
  .articles-layout2__item__content--lighter .more {
    color: #24251e;
  }
  .articles-layout2__item__content--light .more .fa,
  .articles-layout2__item__content--lighter .more .fa {
    color: #aa7e66;
  }
}
@media (max-width: 767px) {
  .articles-layout2__item__content {
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.articles-layout2__item:hover > a > .articles-layout2__item__image {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.articles-layout2__item:hover .articles-layout2__item__overlay:after {
  opacity: .7;
}
.articles-layout2__item:hover .articles-layout2__item__overlay--light:after {
  opacity: .4;
}
.articles-layout3 {
  font-size: 16px;
}
.articles-layout3__item--nopadding .articles-layout3__item__image {
  padding: 0px;
}
.articles-layout3__item--nopadding .articles-layout3__item__content {
  padding: 0px;
}
.articles-layout3__item__image {
  position: relative;
}
@media (max-width: 991px) {
  .articles-layout3__item__image {
    order: 1;
  }
}
.articles-layout3__item__image a,
.articles-layout3__item__image img {
  display: block;
  width: 100%;
}
.articles-layout3__item__image__arrows {
  position: absolute;
  z-index: 5;
  top: 45%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url('../img/icons/arrows.svg');
  width: 40px;
  height: 40px;
}
.articles-layout3__item__image__arrows--left {
  left: -20px;
}
.articles-layout3__item__image__arrows--right {
  right: -20px;
}
@media (max-width: 991px) {
  .articles-layout3__item__content {
    order: 2;
    margin-bottom: 25px;
  }
}
.articles-layout3__item__content__inner {
  padding: 40px 65px;
}
@media (max-width: 991px) {
  .articles-layout3__item__content__inner {
    padding-top: 30px;
  }
}
.articles-layout3__item__content__inner h1,
.articles-layout3__item__content__inner h2,
.articles-layout3__item__content__inner h3,
.articles-layout3__item__content__inner h4 {
  padding: 0px;
  margin: 0px;
  font-size: 32px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .articles-layout3__item__content__inner h1,
  .articles-layout3__item__content__inner h2,
  .articles-layout3__item__content__inner h3,
  .articles-layout3__item__content__inner h4 {
    margin-bottom: 25px;
  }
}
.articles-layout3__item__content__inner p {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .articles-layout3__inner {
    padding: 0px 0px;
  }
  .articles-layout3__item {
    margin-bottom: 30px;
    text-align: center;
  }
  .articles-layout3__item__image__arrows {
    display: none;
  }
  .articles-layout3__item__content__inner {
    padding: 20px 0px;
  }
}
.articles-layout4 .row {
  margin-left: -10px;
  margin-right: -10px;
}
.articles-layout4 .row > div {
  padding-left: 10px;
  padding-right: 10px;
}
.articles-layout4__list > div:nth-child(4n+0) .articles-layout4__item {
  margin-left: 0px;
}
.articles-layout4__list > div:first-child .articles-layout4__item {
  margin-left: 0px;
}
.articles-layout4__list > div:last-child .articles-layout4__item {
  margin-bottom: 0px !important;
}
.articles-layout4__item {
  position: relative;
  border: 1px solid #fff;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  min-height: 100%;
}
.articles-layout4__item__content {
  flex: 1;
}
.articles-layout4__item__image {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.articles-layout4__item__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 50px 30px;
  width: 100%;
  text-align: center;
  -webkit-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
  -webkit-transition-delay: 250ms;
  transition-delay: 250ms;
}
.articles-layout4__item__inner span.slogan {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  -webkit-transition-delay: 250mx;
  transition-delay: 250mx;
}
.articles-layout4__item__inner h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 69px;
  font-weight: normal;
  color: #fff;
  margin: 20px 0px 30px 0px;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  -webkit-transition-delay: 250mx;
  transition-delay: 250mx;
}
.articles-layout4__item__inner p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #fff;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  -webkit-transition-delay: 250mx;
  transition-delay: 250mx;
}
.articles-layout4__item__inner a {
  margin-top: 40px;
}
.articles-layout4__item__inner:before,
.articles-layout4__item__inner:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.articles-layout4__item__inner:after {
  top: 0px;
}
.articles-layout4__item__inner:before {
  bottom: 0px;
}
.articles-layout4__item__inner__border:before,
.articles-layout4__item__inner__border:after {
  content: "";
  position: absolute;
  top: 0px;
  display: block;
  width: 1px;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.articles-layout4__item__inner__border:before {
  right: 0;
}
.articles-layout4__item__inner__border:after {
  left: 0;
}
.articles-layout4__item:hover {
  text-decoration: none;
  z-index: 5;
}
.articles-layout4__item:hover .articles-layout4__item__inner__border:before,
.articles-layout4__item:hover .articles-layout4__item__inner__border:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.articles-layout4__item:hover .articles-layout4__item__inner {
  background: rgba(255, 255, 255, 0.95);
}
.articles-layout4__item:hover .articles-layout4__item__inner:before,
.articles-layout4__item:hover .articles-layout4__item__inner:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.articles-layout4__item:hover .articles-layout4__item__inner span.slogan {
  color: #24251e;
}
.articles-layout4__item:hover .articles-layout4__item__inner h2 {
  color: #aa7e66;
}
.articles-layout4__item:hover .articles-layout4__item__inner p {
  color: #24251e;
}
.articles-layout4__item:hover .articles-layout4__item__inner .button {
  color: #aa7e66;
}
.articles-layout4__item:hover .articles-layout4__item__inner .button__inner {
  border-bottom: 1px solid #aa7e66;
}
.articles-layout4__item:hover .articles-layout4__item__inner .button__inner:after,
.articles-layout4__item:hover .articles-layout4__item__inner .button__inner:before {
  background-color: #aa7e66;
}
.articles-layout4__item:hover .articles-layout4__item__inner .button:after,
.articles-layout4__item:hover .articles-layout4__item__inner .button:before {
  border-left: 1px solid #aa7e66;
  border-right: 1px solid #aa7e66;
}
@media (max-width: 767px) {
  .articles-layout4__item {
    height: auto;
    min-height: auto;
    margin-bottom: 10px;
  }
  .articles-layout4__item__inner {
    padding: 20px 10px;
  }
  .articles-layout4__item__inner h2 {
    font-size: 52px;
  }
  .articles-layout4__item__inner a {
    margin-top: 20px;
  }
}
.articles-layout5__overlay {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 615px;
}
.articles-layout5__content {
  margin-top: 280px;
  margin-bottom: 60px;
}
.articles-layout5__content p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #aa7e66;
}
.articles-layout5__content--light p {
  color: #24251e;
}
.articles-layout5__content--lighter p {
  color: #d9dde2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .articles-layout5__content {
    margin-top: 120px;
  }
}
@media (max-width: 767px) {
  .articles-layout5__content {
    text-align: center;
    margin-top: 60px;
  }
  .articles-layout5__action {
    text-align: center;
  }
}
.articles-layout6 .row {
  margin-left: -10px;
  margin-right: -10px;
}
.articles-layout6 .row > div {
  padding-left: 10px;
  padding-right: 10px;
}
.articles-layout6__item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid #fff;
  height: 650px;
  position: relative;
  margin-bottom: 20px;
}
.articles-layout6__item--one {
  height: calc(80vh) !important;
}
.articles-layout6__item__inner {
  padding: 50px 70px 50px 70px;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0px;
  text-align: center;
}
.articles-layout6__item__inner span.position {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 20px 0px;
  display: block;
}
.articles-layout6__item__inner h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 69px;
  font-weight: normal;
  color: #fff;
}
.articles-layout6__item__inner p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #fff;
}
.articles-layout6__item__inner a {
  margin-top: 30px;
}
.articles-layout6__item__inner--inverse span.position {
  color: #24251e;
}
.articles-layout6__item__inner--inverse h2 {
  color: #aa7e66;
}
.articles-layout6__item__inner--inverse p {
  color: #24251e;
}
@media (max-width: 767px) {
  .articles-layout6__item {
    margin-bottom: 10px;
  }
  .articles-layout6__item__inner {
    padding: 80px 15px 20px 15px;
  }
}
.articles-layout7__item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 14px;
  overflow: hidden;
  display: block;
}
.articles-layout7__item__inner {
  background: rgba(72, 77, 86, 0.94);
  text-align: center;
  padding: 50px 25px;
  height: 100%;
  position: relative;
  -webkit-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
  -webkit-transition-delay: 250ms;
  transition-delay: 250ms;
}
.articles-layout7__item__inner h2 {
  font-family: 'Lyon Text', serif;
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  margin: 0px;
  padding: 0px;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  -webkit-transition-delay: 250mx;
  transition-delay: 250mx;
}
.articles-layout7__item__inner p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin: 50px 0px;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  -webkit-transition-delay: 250mx;
  transition-delay: 250mx;
}
.articles-layout7__item__inner__actions {
  height: 60px;
}
.articles-layout7__item__inner__actions__inner {
  position: absolute;
  bottom: 60px;
  left: 0px;
  width: 100%;
}
.articles-layout7__item__inner:before,
.articles-layout7__item__inner:after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.articles-layout7__item__inner:before {
  top: 0;
}
.articles-layout7__item__inner:after {
  bottom: 0;
}
.articles-layout7__item__inner__border:before,
.articles-layout7__item__inner__border:after {
  content: "";
  position: absolute;
  top: 0px;
  display: block;
  width: 1px;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.articles-layout7__item__inner__border:before {
  right: 0;
}
.articles-layout7__item__inner__border:after {
  left: 0;
}
.articles-layout7__item:hover {
  text-decoration: none;
}
.articles-layout7__item:hover .articles-layout7__item__inner__border:before,
.articles-layout7__item:hover .articles-layout7__item__inner__border:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.articles-layout7__item:hover .articles-layout7__item__inner {
  background: rgba(255, 255, 255, 0.95);
}
.articles-layout7__item:hover .articles-layout7__item__inner:before,
.articles-layout7__item:hover .articles-layout7__item__inner:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.articles-layout7__item:hover .articles-layout7__item__inner h2 {
  color: #aa7e66;
}
.articles-layout7__item:hover .articles-layout7__item__inner p {
  color: #24251e;
}
.articles-layout7__item:hover .button-light {
  color: #24251e;
}
.articles-layout7__item:hover .button-light:after,
.articles-layout7__item:hover .button-light:before,
.articles-layout7__item:hover .button-light .button__inner {
  border-color: #24251e;
}
.articles-layout8__item {
  position: relative;
}
.articles-layout8__item__image {
  text-align: right;
}
.articles-layout8__item__image img {
  display: inline-block;
}
.articles-layout8__item__content h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: 500;
  color: #aa7e66;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.articles-layout8__item__content p {
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  color: #24251e;
  line-height: 24px;
  text-transform: uppercase;
}
.articles-layout8__item__actions {
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}
.articles-layout8__item__actions__item {
  text-align: center;
  display: block;
  margin-bottom: 20px;
}
.articles-layout9 {
  padding-bottom: 500px;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.articles-layout9__inner {
  padding: 0px 90px;
}
.articles-layout9__inner--nopadding {
  padding: 0px 0px;
}
.articles-layout9__item {
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  margin-top: -30px;
}
.articles-layout9__item--nopadding .articles-layout9__item__image {
  padding: 0px;
}
.articles-layout9__item--nopadding .articles-layout9__item__content {
  padding: 0px;
}
.articles-layout9__item--promotion {
  margin-top: -210px;
}
.articles-layout9__item__image {
  position: absolute;
  top: 0;
  display: block;
  width: 2700px;
  height: 100%;
  margin: 0 auto;
  pointer-events: none;
  transform: translateX(-40px);
}
.articles-layout9__item__image__brush {
  position: absolute;
  width: 747px;
  height: 557px;
  left: auto;
  right: 340px;
  overflow: hidden;
}
.articles-layout9__item__image--left .articles-layout9__item__image__brush {
  left: 340px;
  right: auto;
}
.articles-layout9__item__image__brush:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('../img/images/brush.png');
}
.articles-layout9__item__image__content {
  left: -180px;
  top: -100px;
  width: 975px;
  height: 730px;
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate3d(0px, -15.1946px, 0px);
}
.articles-layout9__item__image--left .articles-layout9__item__image__content {
  left: 0px;
}
.articles-layout9__item__image--left {
  text-align: left;
}
.articles-layout9__item__image--right {
  text-align: right;
}
.articles-layout9__item__image img {
  display: inline-block;
}
.articles-layout9__item__content {
  position: relative;
  z-index: 1;
}
.articles-layout9__item__content__inner {
  padding: 50px 55px;
}
.articles-layout9__item__content__inner h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 69px;
  font-weight: 500;
  color: #aa7e66;
  margin-bottom: 40px;
}
.articles-layout9__item__content__inner p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #24251e;
}
.articles-layout9__item__content__inner a {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .articles-layout9__inner {
    padding: 0px 0px;
  }
  .articles-layout9__item {
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 560px;
    padding-top: 30px;
  }
  .articles-layout9__item__image {
    margin-bottom: 30px;
    height: 600px;
    top: auto;
    bottom: -100px;
  }
  .articles-layout9__item__image__arrows {
    display: none;
  }
  .articles-layout9__item__content__inner {
    padding: 20px 0px;
  }
  .articles-layout9__item__content__inner a {
    margin-top: 15px;
  }
  .articles-layout9__item--promotion {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}
.articles-layout10__header {
  margin-bottom: 20px;
  text-align: center;
}
.articles-layout10__header h1,
.articles-layout10__header h2,
.articles-layout10__header h3 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: 500;
  color: #24251e;
  margin-bottom: 20px;
}
.articles-layout10__header p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #24251e;
}
.articles-layout10__item {
  margin-bottom: 20px;
}
.articles-layout10__item fieldset {
  border: 1px solid #b0b2b3;
  text-align: center;
}
.articles-layout10__item fieldset legend {
  font-family: 'Lyon Text', serif;
  font-size: 69px;
  font-weight: 500;
  color: #24251e;
  width: auto;
  display: inline-block;
  padding: 0px 10px;
  margin-bottom: 0px;
  border-bottom: 0px;
}
.articles-layout10__item fieldset p {
  font-family: 'Lyon Text', serif;
  font-size: 16px;
  font-weight: 500;
  color: #24251e;
  margin: 20px 10px 45px 10px;
  padding: 0px 30px;
}
.box-big {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}
.box-big__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: all 1s ease-in-out;
}
.box-big:hover .box-big__bg {
  transform: scale(1.05);
}
.box-big__content {
  display: flex;
  width: 33.333333%;
  text-align: center;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .box-big__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    background: linear-gradient(transparent, #010202);
    z-index: 1;
  }
}
.box-big__content--suppress-events {
  pointer-events: none;
}
.box-big__content--suppress-events .button {
  pointer-events: auto;
}
.box-big__img {
  position: relative;
  width: 66.666666%;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .box-big__img {
    width: 100%;
  }
}
.box-big__img-inner {
  position: relative;
  overflow: hidden;
  min-height: 506px;
}
.box-big__inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f1eded;
  padding: 25px 30px;
}
.box-big__inner h1,
.box-big__inner h2,
.box-big__inner h3,
.box-big__inner h4 {
  color: #aa7e66;
  text-transform: none;
}
@media (max-width: 767px) {
  .box-big__inner h1,
  .box-big__inner h2,
  .box-big__inner h3,
  .box-big__inner h4 {
    color: #fff;
  }
}
.box-big__inner p {
  font-size: 11px;
  font-weight: bold;
  font-family: 'Sharp Sans Display No1', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .box-big__inner {
    padding-bottom: 50px;
    color: #aa7e66;
    background-color: transparent;
  }
}
.box-big__video {
  position: relative;
  min-height: 506px;
}
.box-big-container {
  overflow: hidden;
}
.box-circle {
  text-align: center;
  font-size: 16px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 40px;
}
.box-circle__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #aa7e66;
  color: #aa7e66;
  padding-top: 5px;
  font-size: 35px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.box-img {
  position: relative;
  display: flex;
  height: 506px;
  margin: 0 auto 20px;
  align-items: flex-end;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
  overflow: hidden;
}
.box-img h1,
.box-img h2,
.box-img h3,
.box-img h4 {
  width: 100%;
  text-align: center;
  margin-top: 0;
}
.box-img p {
  width: 100%;
}
.box-img--big {
  height: 650px;
}
@media (max-width: 991px) {
  .box-img--big {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .box-img--big {
    height: auto;
    min-height: calc(50vh - 68px);
  }
}
.box-img--cover {
  position: relative;
}
.box-img--cover::after {
  position: absolute;
  left: 0;
  width: 100%;
  top: 40%;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), #010202);
  content: '';
}
.box-img--v1 {
  color: #aa7e66;
}
.box-img--v1 h1,
.box-img--v1 h2,
.box-img--v1 h3,
.box-img--v1 h4 {
  color: #fff;
  margin-bottom: 10px;
}
.box-img--v1 p {
  font-size: 12px;
  font-weight: bold;
  font-family: 'Sharp Sans Display No1', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.box-img--v1--dark h1,
.box-img--v1--dark h2,
.box-img--v1--dark h3,
.box-img--v1--dark h4 {
  color: #24251e;
}
.box-img--v2 {
  color: #fff;
}
.box-img--v2 h1,
.box-img--v2 h2,
.box-img--v2 h3,
.box-img--v2 h4 {
  color: #aa7e66;
  font-size: 40px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .box-img--v2 h1,
  .box-img--v2 h2,
  .box-img--v2 h3,
  .box-img--v2 h4 {
    font-size: 32px;
  }
}
.box-img--v2 p {
  font-family: 'Lyon Text', serif;
  font-size: 16px;
}
@media (max-width: 991px) {
  .box-img--v2 {
    display: flex;
    align-items: center;
  }
}
.box-img__hover {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0.1s;
  color: #24251e;
}
.box-img:hover .box-img__hover {
  opacity: 1;
  visibility: visible;
}
.box-img__hover .button {
  margin-top: 25px;
}
.box-img__hover .box-img__inner {
  padding-bottom: 0;
}
.box-img__hover h1,
.box-img__hover h2,
.box-img__hover h3,
.box-img__hover h4 {
  color: #aa7e66;
}
.box-img__hover p {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .box-img--v1 .box-img__hover {
    display: none;
  }
}
.box-img__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  z-index: -1;
}
.box-img:hover .box-img__img {
  transform: scale(1.1);
}
.box-img__inner {
  position: relative;
  padding: 0 25px 50px;
  width: 100%;
  max-width: 280px;
  z-index: 1;
}
.box-img--v2 .box-img__inner {
  padding: 35px;
  margin-bottom: 55px;
  width: 100%;
  max-width: 300px;
  background-color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 991px) {
  .box-img--v2 .box-img__inner {
    margin-bottom: 0;
  }
}
.box-img-over {
  background-position: center center;
  background-size: cover;
  min-height: 75vh;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}
.box-img-over h1,
.box-img-over h2,
.box-img-over h3,
.box-img-over h4 {
  color: #aa7e66;
  margin: 0 0 28px;
}
.box-img-over p {
  margin-bottom: 25px;
}
.box-img-over p.box-img-over__sub {
  font-family: 'Sharp Sans Display No1', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11px;
  margin-bottom: 0;
  letter-spacing: 1.5px;
}
.box-img-over__content {
  width: 50%;
  max-width: 470px;
  padding: 50px 45px;
  background-color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-align: center;
  line-height: 1.72;
}
@media (max-width: 767px) {
  .box-img-over__content {
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .box-img-over__content {
    padding: 35px 20px;
  }
}
.box-img-over__inner {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .box-img-over__inner {
    max-width: none;
  }
}
.box-img-over__wrapper {
  display: flex;
  flex-direction: column;
}
.catalogue__inner {
  text-align: center;
}
.catalogue__inner h2 {
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #24251e;
}
.catalogue__inner p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #24251e;
}
.catalogue__content {
  padding: 20px 120px;
}
.catalogue__content--inline {
  padding: 10px 120px;
}
.catalogue__content--inline h2 {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .catalogue__content {
    padding: 20px 10px;
  }
  .catalogue__content--inline {
    padding: 10px 10px;
  }
}
.catalogue__form {
  margin-bottom: 50px;
  font-size: 0px;
}
.catalogue__form input[type="text"] {
  outline: none;
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #aaacad;
  padding: 13px;
  color: #24251e;
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
}
.catalogue__form input[type="submit"],
.catalogue__form button {
  outline: none;
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #aaacad;
  padding: 12px 13px;
  color: #24251e;
  position: relative;
  font-size: 14px;
}
.catalogue__form input[type="submit"]:before,
.catalogue__form button:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 10px;
  background: #aaacad;
}
.catalogue__form--longer input[type="text"] {
  min-width: 500px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .catalogue__form--longer input[type="text"] {
    min-width: 250px;
  }
}
@media (max-width: 767px) {
  .catalogue__form--longer input[type="text"] {
    min-width: 80px;
    width: 180px;
  }
}
.collections__flyObject {
  position: absolute;
  z-index: 100;
}
@media (min-width: 768px) and (max-width: 991px) {
  .collections__flyObject {
    display: none;
  }
}
@media (max-width: 767px) {
  .collections__flyObject {
    display: none;
  }
}
.collections__item {
  position: relative;
  overflow: hidden;
}
.collections__item__header {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: calc(100vh);
  border-bottom: 20px solid #FFFFFF;
}
.collections__item__header__image {
  padding-top: 30vh;
}
.collections__item__header__image img {
  max-height: 230px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .collections__item__header__image {
    padding-top: 20vh;
  }
}
.collections__item__header__content {
  text-align: center;
  display: block;
}
.collections__item__header__content .new {
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.collections__item__header__content h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin: 10px 0px 20px 0px;
}
.collections__item__header__actions {
  margin-top: 60px;
  text-align: center;
}
.collections__item__header__actions .scrollBottom {
  width: 80px;
  display: inline-block;
  -webkit-transition: margin 0.5s ease-in-out;
  -o-transition: margin 0.5s ease-in-out;
  transition: margin 0.5s ease-in-out;
}
.collections__item__header__actions .scrollBottom span {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
}
.collections__item__header__actions .scrollBottom img {
  margin: 0px auto;
}
.collections__item__header__actions .scrollBottom:hover {
  position: relative;
  margin-top: 10px;
  text-decoration: none;
}
.collections__item__content__overlay {
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top left;
  text-align: center;
  position: relative;
}
.collections__item__content__overlay--left {
  background-position: top left;
}
.collections__item__content__overlay--right {
  background-position: top right;
}
.collections__item__content__overlay__inner {
  padding-top: 230px;
  position: relative;
  z-index: 101;
}
.collections__item__content__overlay .button + .button {
  margin-left: 10px;
  margin-right: 10px;
}
.collections__item__content__overlay h3 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: 500;
  color: #aa7e66;
  margin-bottom: 40px;
  padding: 0px 140px;
}
.collections__item__content__overlay p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #24251e;
  line-height: 23px;
  margin-bottom: 50px;
  padding: 0px 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .collections__item__content__overlay {
    background-image: none !important;
    height: auto;
  }
  .collections__item__content__overlay__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .collections__item__content__overlay {
    background-image: none !important;
    height: auto;
  }
  .collections__item__content__overlay h3 {
    padding: 0px 15px;
  }
  .collections__item__content__overlay__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.contact-item {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.contact-item a {
  color: #aa7e66;
  text-decoration: underline;
  word-break: break-all;
}
.contact-item h1,
.contact-item h2,
.contact-item h3,
.contact-item h4 {
  margin-bottom: 3px;
}
.contact-profile {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 25px;
  font-size: 18px;
}
.contact-profile a:not(.button) {
  color: #aa7e66;
  text-decoration: underline;
  word-break: break-all;
}
.contact-profile h1,
.contact-profile h2,
.contact-profile h3,
.contact-profile h4 {
  margin-bottom: 5px;
}
.contact-profile img {
  display: block;
  margin: 0 auto 30px;
  border-radius: 50%;
}
.contact-profile p {
  margin-bottom: 3px;
}
.contact-profile p.contact-profile--sub-heading {
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.contact-profile .button {
  margin-top: 40px;
}
.designer__images {
  margin-bottom: 70px;
}
.designer__images .row--nopadding {
  margin: 0px;
}
.designer__images .row--nopadding > div {
  padding: 0px;
}
.designer__content {
  text-align: center;
}
.designer__content__name {
  margin-bottom: 55px;
}
.designer__content__name h1 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: 500;
  color: #aa7e66;
}
.designer__content__name p {
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  color: #24251e;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.designer__content__header {
  margin-bottom: 50px;
}
.designer__content__header h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 59px;
  font-weight: normal;
  color: #aa7e66;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.designer__content__header p {
  font-family: 'Lyon Text', serif;
  font-size: 18px;
  font-weight: normal;
  color: #24251e;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.designer__content__interview h3 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 700;
  color: #24251e;
  margin-bottom: 15px;
}
.designer__content__interview p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #24251e;
  margin-bottom: 30px;
}
.distribution__filter {
  margin-bottom: 30px;
}
.distribution__filter__form {
  font-size: 0px;
}
.distribution__filter__form input[type="text"] {
  outline: none;
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #aaacad;
  padding: 13px;
  color: #aa7e66;
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
}
.distribution__filter__form input[type="submit"],
.distribution__filter__form button {
  outline: none;
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #aaacad;
  padding: 12px 13px;
  color: #24251e;
  position: relative;
  font-size: 14px;
}
.distribution__filter__form input[type="submit"]:before,
.distribution__filter__form button:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 10px;
  background: #aaacad;
}
.distribution__filter__items li a {
  padding: 12px 15px;
  cursor: pointer !important;
}
.distribution__map {
  margin-bottom: 35px;
}
.distribution__map #map_distributions {
  height: 540px;
  width: 100%;
  display: block;
}
.downloads-grid__item {
  width: 20%;
}
@media (max-width: 1199px) {
  .downloads-grid__item {
    width: 33.333333%;
  }
}
@media (max-width: 767px) {
  .downloads-grid__item {
    width: 50%;
  }
}
@media (max-width: 580px) {
  .downloads-grid__item {
    width: 100%;
  }
}
.download-preview {
  background-color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.download-preview h1,
.download-preview h2,
.download-preview h3,
.download-preview h4 {
  margin: 0;
  font-size: 24px;
}
.download-preview img {
  width: 100%;
}
.download-preview p {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #aa7e66;
  font-weight: 500;
  font-family: 'Sharp Sans Display No1', sans-serif;
  letter-spacing: 3px;
}
.download-preview__content {
  padding: 40px 20px 50px;
}
.events__item {
  text-align: center;
  color: #aa7e66;
}
.events__item__overlay {
  padding: 72px 0px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.events__item__header {
  margin-bottom: 50px;
}
.events__item__header h1 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 59px;
  font-weight: normal;
  color: #aa7e66;
  text-transform: uppercase;
}
.events__item__content__name {
  margin-bottom: 10px;
  text-align: center;
}
.events__item__content__name h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 61px;
  font-weight: normal;
  color: #aa7e66;
  text-transform: uppercase;
}
.events__item__content__name h2 img {
  margin: 0px auto;
}
.events__item__content__date {
  margin-bottom: 20px;
}
.events__item__content__date h3 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 28px;
  font-weight: normal;
  color: #aa7e66;
  text-transform: uppercase;
}
.events__item__content__date h3 span {
  color: #aa7e66;
}
.events__item__content__description {
  margin: 0px auto;
  margin-bottom: 60px;
  width: 100%;
  max-width: 280px;
  font-family: 'Lyon Text', serif;
  font-size: 12px;
  font-weight: 500;
  color: #aa7e66;
}
.events__item__content__description__label {
  text-align: right;
  font-weight: 500;
}
.events__item__content__description__value {
  text-align: left;
  font-weight: 500;
}
@media (max-width: 767px) {
  .events__item__content__description__label {
    text-align: center;
  }
  .events__item__content__description__value {
    text-align: center;
    margin-bottom: 15px;
  }
}
.events__item__content__actions a {
  margin: 0px 18px;
}
.events__item--light .events__item__header h1 {
  color: #24251e;
}
.events__item--light .events__item__content__name h2 {
  color: #24251e;
}
.events__item--light .events__item__content__date h3 {
  color: #24251e;
}
.events__item--light .events__item__content__date h3 span {
  color: #24251e;
}
.events__item--light .events__item__content__description {
  color: #24251e;
}
.events__item--light .events__item__description {
  color: #24251e;
}
.events__item--lighter .events__item__header h1 {
  color: #d9dde2;
}
.events__item--lighter .events__item__content__name h2 {
  color: #24251e;
}
.events__item--lighter .events__item__content__date h3 {
  color: #d9dde2;
}
.events__item--lighter .events__item__content__date h3 span {
  color: #d9dde2;
}
.events__item--lighter .events__item__content__description {
  color: #d9dde2;
}
.events__item--lighter .events__item__content__description a {
  color: #d9dde2;
}
.events-detail__content {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.events-detail__map {
  margin-bottom: 90px;
}
.events-detail__map #event-map {
  height: 500px;
}
.events-detail__images {
  margin-bottom: 90px;
  padding: 0px 15px;
}
.events-detail__actions {
  text-align: center;
}
@font-face {
  font-family: 'Lyon Display';
  src: url('../fonts/Lyon_Display/LyonDisplay-Light.eot');
  src: url('../fonts/Lyon_Display/LyonDisplay-Light.eot') format('embedded-opentype'), url('../fonts/Lyon_Display/LyonDisplay-Light.woff') format('woff'), url('../fonts/Lyon_Display/LyonDisplay-Light.ttf') format('truetype'), url('../fonts/Lyon_Display/LyonDisplay-Light.svg') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Lyon Display';
  src: url('../fonts/Lyon_Display/LyonDisplay-Medium-Web.eot');
  src: url('../fonts/Lyon_Display/LyonDisplay-Medium-Web.eot') format('embedded-opentype'), url('../fonts/Lyon_Display/LyonDisplay-Medium-Web.woff') format('woff'), url('../fonts/Lyon_Display/LyonDisplay-Medium-Web.ttf') format('truetype'), url('../fonts/Lyon_Display/LyonDisplay-Medium-Web.svg') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Lyon Display';
  src: url('../fonts/Lyon_Display/LyonDisplay-MediumItalic-Web.eot');
  src: url('../fonts/Lyon_Display/LyonDisplay-MediumItalic-Web.eot') format('embedded-opentype'), url('../fonts/Lyon_Display/LyonDisplay-MediumItalic-Web.woff') format('woff'), url('../fonts/Lyon_Display/LyonDisplay-MediumItalic-Web.ttf') format('truetype'), url('../fonts/Lyon_Display/LyonDisplay-MediumItalic-Web.svg') format('svg');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Lyon Text';
  src: url('../fonts/Lyon_Text/LyonText-Regular-Web.eot');
  src: url('../fonts/Lyon_Text/LyonText-Regular-Web.eot') format('embedded-opentype'), url('../fonts/Lyon_Text/LyonText-Regular-Web.woff') format('woff'), url('../fonts/Lyon_Text/LyonText-Regular-Web.ttf') format('truetype'), url('../fonts/Lyon_Text/LyonText-Regular-Web.svg') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Lyon Text';
  src: url('../fonts/Lyon_Text/LyonText-Semibold.eot');
  src: url('../fonts/Lyon_Text/LyonText-Semibold.eot') format('embedded-opentype'), url('../fonts/Lyon_Text/LyonText-Semibold.woff') format('woff'), url('../fonts/Lyon_Text/LyonText-Semibold.ttf') format('truetype'), url('../fonts/Lyon_Text/LyonText-Semibold.svg') format('svg');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Sharp Sans Display No1';
  src: url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Book.eot');
  src: url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Book.eot') format('embedded-opentype'), url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Book.woff') format('woff'), url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Book.ttf') format('truetype'), url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Book.svg') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Sharp Sans Display No1';
  src: url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Medium.eot');
  src: url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Medium.eot') format('embedded-opentype'), url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Medium.woff') format('woff'), url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Medium.ttf') format('truetype'), url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Medium.svg') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Sharp Sans Display No1';
  src: url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Bold.eot');
  src: url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Bold.eot') format('embedded-opentype'), url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Bold.woff') format('woff'), url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Bold.ttf') format('truetype'), url('../fonts/Sharp_Sans_Display_No1/SharpSansDispNo1-Bold.svg') format('svg');
  font-weight: 700;
  font-style: normal;
}
footer .footer {
  background-color: #f1eded;
  font-size: 12px;
}
footer .footer--share {
  padding-bottom: 40px;
}
footer .footer__top {
  padding: 45px 0 35px 0px;
  letter-spacing: 0.15em;
}
footer .footer__top h2,
footer .footer__top h3 {
  font-weight: bold;
  font-size: 14px;
  color: #aa7e66;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Sharp Sans Display No1', sans-serif;
}
footer .footer__top ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
footer .footer__top ul li {
  overflow: hidden;
}
footer .footer__top ul li a {
  display: inline-block;
  color: #24251e;
  font-size: 12px;
  font-family: 'Sharp Sans Display No1', sans-serif;
  text-transform: uppercase;
  padding-left: 8px;
  margin-bottom: 2px;
  transform: translateX(-8px);
  transition: transform 0.3s ease-out;
}
footer .footer__top ul li a::after {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 0;
  height: 1px;
  background-color: #24251e;
  content: '';
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
footer .footer__top ul li a:hover {
  transform: translateX(0);
  text-decoration: none;
}
footer .footer__top ul li a:hover::after {
  opacity: 1;
}
footer .footer__bottom {
  text-align: center;
  padding: 30px 0px;
}
footer .footer__bottom h2 {
  font-family: 'Lyon Text', serif;
  font-size: 59px;
  font-weight: normal;
  color: #aa7e66;
  margin-bottom: 60px;
  margin-top: 40px;
  text-transform: uppercase;
}
footer .footer__bottom a {
  position: relative;
  display: inline-block;
  margin: 0px 8px;
  padding: 0 5px;
  overflow: hidden;
}
footer .footer__bottom a img {
  display: block;
  transition: all 0.2s ease-out;
}
footer .footer__bottom a img:last-of-type {
  position: absolute;
  top: 0;
  left: 5px;
  transform: translateY(100%);
}
footer .footer__bottom a:hover img:first-of-type {
  transform: translateY(-100%);
}
footer .footer__bottom a:hover img:last-of-type {
  transform: translateY(0);
}
footer .footer__copyright {
  padding-bottom: 35px;
  text-align: center;
  font-size: 9px;
  color: #fff;
}
@media (max-width: 767px) {
  footer .footer__top {
    text-align: center;
  }
  footer .footer__top ul {
    margin-bottom: 30px;
    display: inline-block;
  }
  footer .footer__bottom h2 {
    font-size: 54px;
  }
  footer .footer__bottom a {
    margin: 0px 7px;
  }
}
.form-group {
  margin-bottom: 0;
}
.form-inline {
  display: flex;
  max-width: 350px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.form-inline:focus-within button[type=submit],
.form-inline:focus-within input[type=submit] {
  border-color: #aa7e66;
}
.form-inline:focus-within button[type=submit]::before,
.form-inline:focus-within input[type=submit]::before {
  background-color: #aa7e66;
}
@media (max-width: 767px) {
  .form-inline {
    margin-left: auto;
    margin-right: auto;
  }
}
.form-inline--big {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .form-inline--sm-center {
    margin-left: auto;
    margin-right: auto;
  }
}
.form-inline__text {
  flex: 1;
}
/* form labes Material design */
.mdl {
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 15px 0 0 0;
}
.mdl--ta {
  margin-bottom: 20px;
}
.mdl .mdl--floating-label .mdl__label {
  /* transition-duration: .2s; */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.mdl .mdl__label {
  bottom: 0;
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #818488;
  top: 28px;
  left: 13px;
  right: 0;
  pointer-events: none;
  position: absolute;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
.mdl.is-focused .mdl__label,
.mdl.is-dirty .mdl__label {
  font-size: 12px;
  top: 13px;
}
.foundation {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-position: bottom center;
}
.foundation__header {
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}
.foundation__header h1 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 69px;
  font-weight: 500;
  color: #aa7e66;
  margin-bottom: 20px;
}
.foundation__header span {
  font-family: 'Lyon Text', serif;
  font-size: 18px;
  font-weight: 500;
  color: #24251e;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.foundation__description {
  text-align: center;
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #24251e;
  line-height: 23px;
  margin-bottom: 25px;
}
.foundation__content {
  text-align: center;
  font-family: 'Lyon Text', serif;
  font-size: 12px;
  font-weight: 500;
  color: #24251e;
  line-height: 18px;
}
.foundation__content p {
  margin-bottom: 25px;
}
.foundation__list {
  max-width: 768px;
  width: 100%;
  margin: 0px auto;
  margin-top: 40px;
}
.foundation__list__inner {
  padding: 30px;
}
.foundation__list__item {
  display: block;
  margin: 0px auto;
  margin-bottom: 20px;
}
.foundation__list__item__value {
  text-align: right;
}
.foundation__list__item__value > span {
  display: block;
  margin-top: -45px;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
}
.foundation__list__item__value > span .number {
  font-size: 80px;
}
.foundation__list__item__content h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.foundation__list__item__content p {
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 24px;
}
.gallery__content img {
  display: block;
  width: 100%;
  transition: all 0.5s ease-out;
}
.gallery__content__images {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  justify-content: center;
}
.gallery__content__images__item {
  width: 20%;
  padding-left: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .gallery__content__images__item {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .gallery__content__images__item {
    width: 50%;
  }
}
.gallery__content__link {
  display: block;
  overflow: hidden;
}
.gallery__content__link:hover img {
  transform: scale(1.2);
}
.gallery__content__trailing {
  background-color: #aa7e66;
  color: #fff;
  display: flex;
  height: 100%;
  min-height: 140px;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  line-height: 1;
}
.gallery__content__trailing span {
  display: inline-block;
  transition: all 0.3s ease-out;
}
.gallery__content__trailing:hover {
  text-decoration: none;
}
.gallery__content__trailing:hover span {
  transform: scale(1.2);
}
.gallery__content__trailing.v2 {
  background-color: transparent;
}
.gallery-layout-1 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}
.gallery-layout-1 .gallery__img {
  height: 280px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1199px) {
  .gallery-layout-1 .gallery__img {
    height: 200px;
  }
}
.gallery-layout-1 .gallery__item {
  padding-left: 20px;
  width: 25%;
}
@media (max-width: 767px) {
  .gallery-layout-1 .gallery__item {
    width: 50%;
  }
}
.gallery-layout-1 .gallery__item:nth-child(1) {
  width: 50%;
}
@media (max-width: 767px) {
  .gallery-layout-1 .gallery__item:nth-child(1) {
    width: 100%;
  }
}
.gallery-layout-1 .gallery__item:nth-child(1) .gallery__img,
.gallery-layout-1 .gallery__item:nth-child(2) .gallery__img,
.gallery-layout-1 .gallery__item:nth-child(5) .gallery__img {
  height: 580px;
}
@media (max-width: 1199px) {
  .gallery-layout-1 .gallery__item:nth-child(1) .gallery__img,
  .gallery-layout-1 .gallery__item:nth-child(2) .gallery__img,
  .gallery-layout-1 .gallery__item:nth-child(5) .gallery__img {
    height: 420px;
  }
}
.gallery-layout-1 .gallery__item:nth-child(6) {
  width: 50%;
}
@media (max-width: 767px) {
  .gallery-layout-1 .gallery__item:nth-child(6) {
    width: 100%;
  }
}
header {
  height: auto;
  padding-bottom: 15px;
  font-family: 'Sharp Sans Display No1', sans-serif;
}
header a {
  cursor: pointer !important;
}
header .container-menu {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1700px;
  font-size: 16px;
  width: 100%;
  position: relative;
  z-index: 250;
  background-color: #fff;
}
header .navbar-affixed {
  background-color: #fff;
}
header .navbar-affixed.affix {
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: 999;
}
header .navbar-affixed.affix .navbar-affixed-logo {
  opacity: 1;
  visibility: visible;
}
header .navbar-affixed.affix .navbar-toggle--show + .navbar-affixed-logo {
  left: 50%;
  top: auto;
  bottom: 12px;
  transform: translate(-50%, 0);
}
header .navbar-affixed-logo {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -3px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  z-index: 10;
}
@media (max-width: 767px) {
  header .navbar-affixed-logo {
    left: 50%;
    top: auto;
    bottom: 12px;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 479px) {
  header .navbar-affixed-logo {
    display: none;
  }
}
header #logo {
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
}
header #logo img {
  max-height: 25px;
}
header .navbar-toggle {
  padding: 12px 10px;
  position: absolute;
  left: 0;
  bottom: 0px;
}
header .navbar-toggle span {
  background-color: #24251e;
}
@media (max-width: 991px) {
  header .navbar-toggle {
    left: 0;
  }
}
header .buttons {
  text-align: left;
}
header .menu nav #mainMenu ul li {
  display: block;
  float: none;
}
header .menu nav > div {
  text-align: center;
}
header .menu nav > div ul {
  display: inline-block;
  float: none;
}
header .menu nav > div ul li a {
  display: block;
  padding: 18px 17px 12px !important;
  margin-bottom: 4px !important;
  color: inherit;
  line-height: 16px;
  text-transform: uppercase;
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: color 0.5s linear;
  -o-transition: color 0.5s linear;
  transition: color 0.5s linear;
}
header .menu nav > div ul li a:hover {
  background-color: transparent;
  color: #aa7e66;
}
header .menu nav > div ul li.active a {
  color: #aa7e66;
  border-bottom: 1px solid #aa7e66;
}
header .other {
  text-align: right;
}
header .other nav ul {
  list-style: none;
}
header .other nav ul li {
  display: inline-block;
}
header .other nav ul li a {
  color: inherit;
  text-transform: uppercase;
  padding: 12px 5px;
  -webkit-transition: color 0.5s linear;
  -o-transition: color 0.5s linear;
  transition: color 0.5s linear;
}
header .other nav ul li a:hover {
  background-color: transparent;
  color: #aa7e66;
}
header .other nav ul li ul li {
  display: block;
}
header .other nav ul li ul li a {
  padding: 5px 5px;
}
header .other nav ul li.langs {
  padding-left: 0;
}
header .other nav ul li.langs ul li {
  padding-right: 15px;
}
header .other nav ul li.langs ul li a {
  padding: 5px 15px 5px 15px;
}
header .other nav ul li.wishlist a {
  position: relative;
}
header .other nav ul li.wishlist a .count {
  background-color: red;
  color: #f1f2f2;
  display: block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-size: 10px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: -3px;
  top: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  header .menu nav > div ul li a {
    padding: 18px 10px;
  }
}
@media (max-width: 767px) {
  header {
    text-align: center;
    height: inherit;
    min-height: 100px;
  }
  header #logo {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
header .navbar-affixed.affix .navbar-toggle {
  left: 10px;
}
.navbar-affixed.affix .navbar-other-container:not(.navbar-other--full) nav {
  margin-top: 3px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-family: 'Lyon Display', serif;
  font-weight: 500;
  line-height: 1.3;
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 45px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 26px;
}
.heading-slider {
  position: relative;
}
.heading-x-large {
  font-size: 70px !important;
}
@media (max-width: 991px) {
  .heading-x-large {
    font-size: 54px !important;
  }
}
@media (max-width: 767px) {
  .heading-x-large {
    font-size: 50px !important;
  }
}
@media (max-width: 500px) {
  .heading-x-large {
    font-size: 32px !important;
  }
}
.heading {
  height: calc(100vh - 190px);
  position: relative;
  overflow: hidden;
  line-height: 1.72;
}
.heading--h500 {
  height: 500px;
}
@media (max-width: 767px) {
  .heading--h500 {
    height: auto;
    padding-bottom: 30px;
  }
}
.heading__slider__images {
  position: absolute !important;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  overflow: hidden;
}
.heading__slider__images__item .heading__image {
  position: relative;
  height: calc(100vh - 190px);
}
@media (max-width: 767px) {
  .heading__slider__images__item .heading__image {
    height: 100vh;
  }
}
.heading__image {
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.heading__image__video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  padding-bottom: 56.25%;
}
.heading__image__video__overlay {
  position: absolute;
  z-index: 100;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.heading__image--overlay:after {
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  content: "";
  background: #24251e;
  opacity: .5;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
.heading:hover .heading__image--overlay {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.heading:hover .heading__image--overlay:after {
  opacity: .7;
}
.heading__inner {
  width: 100%;
  text-align: center;
  margin: 0px auto;
  position: relative;
  top: -30px;
  padding: 0px 15px;
  z-index: 110;
}
.heading__content {
  text-align: center;
  max-width: 540px;
  width: 100%;
  margin: 0px auto;
}
.heading__content h1 {
  color: #24251e;
  font-family: 'Lyon Text', serif;
  font-size: 59px;
  font-weight: normal;
  padding: 0px;
  margin: 0px;
  text-transform: uppercase;
  padding-top: 90px;
  padding-bottom: 30px;
}
.heading__content p {
  color: #24251e;
  margin-bottom: 15px;
}
.heading__content--notoppadding h1 {
  padding-top: 0px;
}
.heading__content--light {
  color: #24251e;
}
.heading__content--light h1 {
  color: #24251e;
}
.heading__content--light p {
  color: #24251e;
}
.heading__content--lighter {
  color: #d9dde2;
}
.heading__content--lighter h1 {
  color: #d9dde2;
}
.heading__content--lighter p {
  color: #d9dde2;
}
.heading__content--fullwidth {
  max-width: inherit;
  width: 100%;
}
.heading__content--left {
  text-align: left;
}
.heading__actions {
  width: 100%;
  text-align: center;
  margin: 0px auto;
}
.heading__actions--left {
  text-align: left;
}
.heading__additionals {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.heading__additionals__content {
  margin: 0px auto;
  padding: 30px;
  background-color: #24251e;
}
.heading__additionals__content h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #d9dde2;
}
.heading__additionals__content p {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  color: #d9dde2;
}
.heading__overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
@media (max-width: 767px) {
  .heading {
    height: 100vh;
  }
}
.heading-box {
  background-color: #f1eded;
  text-align: center;
  margin: 0 0 20px;
  padding: 55px 25px;
  font-size: 50px;
}
.heading-sub {
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Myriad Pro', sans-serif;
  letter-spacing: 2px;
  font-weight: 400;
}
.heading-responsive h2,
.heading-responsive .section__header h2,
.heading-responsive h3,
.heading-responsive .section__header h3 {
  font-size: 45px;
}
@media (max-width: 991px) {
  .heading-responsive h1,
  .heading-responsive .section__header h1 {
    font-size: 50px;
  }
  .heading-responsive h2,
  .heading-responsive .section__header h2,
  .heading-responsive h3,
  .heading-responsive .section__header h3 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .heading-responsive h1,
  .heading-responsive .section__header h1 {
    font-size: 45px;
  }
  .heading-responsive h2,
  .heading-responsive .section__header h2,
  .heading-responsive h3,
  .heading-responsive .section__header h3 {
    font-size: 32px;
  }
}
.historySlider {
  height: 500px;
}
.historySlider__inner {
  overflow-y: hidden;
  position: relative;
  height: 100%;
}
.historySlider__header {
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 50px;
}
.historySlider__header h1 {
  color: #aa7e66;
  font-family: 'Lyon Text', serif;
  font-size: 59px;
  font-weight: normal;
  padding: 0px;
  margin: 0px;
  text-transform: uppercase;
}
.historySlider__item__inner {
  height: 500px;
}
.historySlider__item__image {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}
.historySlider__item__content {
  width: 100%;
  position: relative;
  top: -30px;
}
.historySlider__item__content h2 {
  color: #24251e;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: bold;
  padding: 0px;
  margin: 0px;
  padding-top: 90px;
  padding-bottom: 30px;
  position: relative;
  z-index: 30;
}
.historySlider__item__content p {
  z-index: 30;
  position: relative;
  color: #24251e;
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
}
.historySlider__item__background {
  z-index: 28;
  position: absolute;
  top: 15px;
  left: -50px;
  color: #d9dde2;
  font-family: 'Lyon Text', serif;
  font-size: 180px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .historySlider__item__background {
    left: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .historySlider__item__background {
    left: 0px;
  }
}
.historySlider__dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.historySlider__dots__inner {
  text-align: center;
}
.historySlider__dots__items {
  display: inline-block;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.historySlider__dots__items li {
  position: relative;
  display: inline-block;
  margin: 0px 7px;
}
.historySlider__dots__items li a {
  cursor: pointer !important;
  position: relative;
  z-index: 20;
  line-height: 53px;
  display: block;
  width: 51px;
  height: 51px;
  background: url('../img/icons/history-normal.svg') center center no-repeat;
  color: #a0a0a0;
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: bold;
}
.historySlider__dots__items li a:hover {
  text-decoration: none;
  color: #fff;
  background: url('../img/icons/history-hovered.svg') center center no-repeat;
}
.historySlider__dots__items li.active a {
  color: #fff;
  background: url('../img/icons/history-actived.svg') center center no-repeat;
}
.historySlider__dots__items li.active:before {
  border-bottom: 1px solid #24251e;
}
.historySlider__dots__items li:before {
  z-index: 18;
  content: "";
  position: absolute;
  top: 25px;
  width: 35px;
  right: -27px;
  display: block;
  border-bottom: 1px solid #aaacad;
}
.historySlider__dots__items li:last-child:before {
  display: none;
}
@media (max-width: 767px) {
  .historySlider__dots__items li {
    margin: 0px -10px;
  }
}
.img-hover {
  overflow: hidden;
}
.img-hover img {
  display: block;
  width: 100%;
  transition: transform 0.5s ease-out;
}
.img-hover img:hover {
  transform: scale(1.1);
}
.input-submit {
  outline: none;
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #d9dde2;
  padding: 13px 20px 8px 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #aa7e66;
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease-out;
  position: relative;
}
.input-submit::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 10px;
  background: #d9dde2;
}
.input-submit:hover {
  background-color: #aa7e66;
  color: #fff;
  border-color: #aa7e66;
}
.input-submit:hover::before {
  background-color: #aa7e66;
}
.input-text {
  display: block;
  width: 100%;
  outline: none;
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #d9dde2;
  padding: 13px 13px 8px 13px;
  transition: all 0.3s ease-out;
  color: #24251e;
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-size: 14px;
  font-weight: 400;
  /* do not group these rules */
}
.input-text *::-webkit-input-placeholder {
  color: #7a797a;
}
.input-text *:-moz-placeholder {
  /* FF 4-18 */
  color: #7a797a;
}
.input-text *::-moz-placeholder {
  /* FF 19+ */
  color: #7a797a;
}
.input-text *:-ms-input-placeholder {
  /* IE 10+ */
  color: #7a797a;
}
.input-text::-moz-placeholder {
  color: #7a797a;
  opacity: 1;
}
.input-text:-ms-input-placeholder {
  color: #7a797a;
}
.input-text::-webkit-input-placeholder {
  color: #7a797a;
}
.input-text:focus {
  border-bottom-color: #aa7e66;
}
.input-textarea {
  height: 150px !important;
}
.list-numbers {
  display: inline-block;
  position: relative;
  margin: 0 0 25px;
  padding: 0 18px;
  font-style: italic;
  color: #7a797a;
}
.list-numbers::after,
.list-numbers::before {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  margin-top: -2px;
  background-color: #aa7e66;
  content: '';
}
.list-numbers::after {
  left: 0;
}
.list-numbers::before {
  right: 0;
}
.list-numbers li {
  display: inline-block;
  list-style: none;
  margin-left: 7px;
  margin-right: 7px;
}
.list-numbers li.active a {
  color: #aa7e66;
}
.list-tabs {
  text-align: center;
  font-family: 'Sharp Sans Display No1', sans-serif;
  margin: 0 0 45px;
  padding: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.list-tabs a {
  display: block;
  letter-spacing: 0.15em;
  padding: 13px 20px;
  border-bottom: 1px solid transparent;
}
.list-tabs a:hover {
  text-decoration: none;
  color: #aa7e66;
}
.list-tabs li {
  display: inline-block;
}
.list-tabs li.active a {
  color: #aa7e66;
  border-bottom-color: #aa7e66;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #24251e;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.masonry {
  margin-left: -20px;
  margin-bottom: 20px;
}
.masonry img {
  display: block;
  width: 100%;
}
.masonry__item,
.masonry__sizer {
  width: 25%;
}
@media (max-width: 767px) {
  .masonry__item,
  .masonry__sizer {
    width: 50%;
  }
}
.masonry__item {
  margin-bottom: 20px;
  padding-left: 20px;
}
.masonry__item--width2 {
  width: 50%;
}
@media (max-width: 767px) {
  .masonry__item--width2 {
    width: 100%;
  }
}
.newsletter {
  background-color: #f1eded;
  color: #d9dde2;
}
.newsletter__inner {
  padding: 45px 0px 0 0px;
}
@media (max-width: 767px) {
  .newsletter__inner {
    padding-top: 25px;
  }
}
.newsletter__inner__content {
  padding: 13px 0px;
}
.newsletter__inner__content h2,
.newsletter__inner__content h3,
.newsletter__inner__content h1,
.newsletter__inner__content h4 {
  font-family: 'Lyon Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: #24251e;
  margin: 0px;
  padding: 0px;
}
.newsletter__inner__form {
  font-size: 0px;
}
.newsletter__inner__form input[type="email"],
.newsletter__inner__form input[type="text"] {
  outline: none;
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #d9dde2;
  padding: 13px 13px 8px 13px;
  color: #24251e;
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-size: 14px;
  font-weight: 400;
  /* do not group these rules */
  transition: all 0.3s ease-out;
}
.newsletter__inner__form input[type="email"] *::-webkit-input-placeholder,
.newsletter__inner__form input[type="text"] *::-webkit-input-placeholder {
  color: #7a797a;
}
.newsletter__inner__form input[type="email"] *:-moz-placeholder,
.newsletter__inner__form input[type="text"] *:-moz-placeholder {
  /* FF 4-18 */
  color: #7a797a;
}
.newsletter__inner__form input[type="email"] *::-moz-placeholder,
.newsletter__inner__form input[type="text"] *::-moz-placeholder {
  /* FF 19+ */
  color: #7a797a;
}
.newsletter__inner__form input[type="email"] *:-ms-input-placeholder,
.newsletter__inner__form input[type="text"] *:-ms-input-placeholder {
  /* IE 10+ */
  color: #7a797a;
}
.newsletter__inner__form input[type="email"]::-moz-placeholder,
.newsletter__inner__form input[type="text"]::-moz-placeholder {
  color: #7a797a;
  opacity: 1;
}
.newsletter__inner__form input[type="email"]:-ms-input-placeholder,
.newsletter__inner__form input[type="text"]:-ms-input-placeholder {
  color: #7a797a;
}
.newsletter__inner__form input[type="email"]::-webkit-input-placeholder,
.newsletter__inner__form input[type="text"]::-webkit-input-placeholder {
  color: #7a797a;
}
.newsletter__inner__form input[type="email"]:focus,
.newsletter__inner__form input[type="text"]:focus {
  border-bottom-color: #aa7e66;
}
.newsletter__inner__form input[type="submit"],
.newsletter__inner__form button[type="submit"] {
  outline: none;
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #d9dde2;
  padding: 13px 20px 8px 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #aa7e66;
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease-out;
}
.newsletter__inner__form input[type="submit"]:hover,
.newsletter__inner__form button[type="submit"]:hover {
  background-color: #aa7e66;
  color: #fff;
  border-color: #aa7e66;
}
.newsletter__inner__form input[type="submit"]:hover::before,
.newsletter__inner__form button[type="submit"]:hover::before {
  background-color: #aa7e66;
}
.newsletter__inner__form input[type="submit"]:before,
.newsletter__inner__form button[type="submit"]:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 10px;
  transition: all 0.3s ease-out;
  background-color: #d9dde2;
}
@media (max-width: 991px) {
  .newsletter__inner {
    text-align: center;
  }
}
.share {
  background-color: #f1eded;
  color: #24251e;
}
.share__inner {
  padding: 60px 0px 57px 0px;
}
.share__inner h1,
.share__inner h2,
.share__inner h3,
.share__inner h4,
.share__inner h5 {
  font-family: 'Lyon Display', serif;
  font-size: 32px;
  font-weight: normal;
  color: #24251e;
  text-transform: uppercase;
  margin: 0px;
  padding: 0px;
  line-height: 30px;
}
.share__inner__socials {
  text-align: right;
}
.share__inner__socials a {
  display: inline-block;
  margin: 0px 13px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .share__inner {
    text-align: center;
  }
  .share__inner__socials {
    margin-top: 15px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .share__inner {
    text-align: center;
  }
  .share__inner__socials {
    margin-top: 15px;
    text-align: center;
  }
}
.offices__item {
  text-align: center;
}
.offices__item a:not(.button):not(.tel) {
  color: #aa7e66;
  text-decoration: underline;
  font-size: 16px;
}
.offices__item a.tel {
  color: #aa7e66;
  text-decoration: none;
}
.offices__item .button {
  margin-top: 20px;
}
.offices__item p {
  margin-bottom: 0;
}
.offices__item__inner {
  margin: 35px 0 30px 0px;
}
.offices__item h2,
.offices__item h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
.offices__item__address {
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-bottom: 15px;
}
.offices__item__description {
  margin-bottom: 15px;
  line-height: 1.15;
}
.offices__item__numbers {
  font-size: 18px;
  margin-bottom: 5px;
}
.offices__item__call {
  margin-bottom: 5px;
  font-family: 'Lyon Display', serif;
  font-weight: 300;
  font-size: 18px;
}
.offices__item--big {
  margin-bottom: 20px;
}
.offices__item--big a:not(.button) {
  font-size: 18px;
}
.offices__item--big .button {
  margin-top: 45px;
}
.offices__item--big h2,
.offices__item--big h3 {
  font-size: 32px;
  margin-bottom: 35px;
}
.offices__item--big .offices__item__address {
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.72;
}
.offices__item--big .offices__item__call,
.offices__item--big a.tel {
  font-size: 32px;
}
body {
  font-size: 14px;
  font-family: 'Lyon Text', serif;
  color: #24251e;
}
.button {
  font-size: 14px;
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  padding: 20px 20px 15px 20px;
  position: relative;
  background-color: transparent;
  box-shadow: none;
  border: 0;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  outline: none;
}
.button-fixed-right {
  position: fixed;
  top: 112px;
  right: 20px;
  z-index: 200;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
  .button-fixed-right {
    top: 107px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .button-fixed-right {
    top: 78px;
  }
}
.button-primary {
  color: #aa7e66;
}
.button-primary:active {
  background-color: #aa7e66;
  color: #fff;
}
.button-primary:after,
.button-primary:before {
  border-right: 1px solid #aa7e66;
  border-left: 1px solid #aa7e66;
}
.button-primary .button__inner {
  border-bottom: 1px solid #aa7e66;
}
.button-primary .button__inner:before,
.button-primary .button__inner:after {
  background-color: #aa7e66;
}
.button-second {
  color: #24251e;
}
.button-second:active {
  background-color: #24251e;
  color: #fff;
}
.button-second:after,
.button-second:before {
  border-right: 1px solid #24251e;
  border-left: 1px solid #24251e;
}
.button-second .button__inner {
  border-bottom: 1px solid #24251e;
}
.button-second .button__inner:before,
.button-second .button__inner:after {
  background-color: #24251e;
}
.button-light {
  color: #fff;
  transition: color 0.3s ease-out;
}
.button-light:active {
  background-color: #24251e;
  color: #fff;
}
.button-light:after,
.button-light:before {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}
.button-light .button__inner {
  border-bottom: 1px solid #fff;
  transition: border 0.3s ease-out;
}
.button-light .button__inner:before,
.button-light .button__inner:after {
  background-color: #24251e;
}
.button-white {
  color: #fff;
}
.button-white:active {
  background-color: #fff;
  color: #63666a;
}
.button-white:after,
.button-white:before {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}
.button-white .button__inner {
  border-bottom: 1px solid #fff;
}
.button-white .button__inner:before,
.button-white .button__inner:after {
  background-color: #fff;
}
.button:active .button__icon--play {
  background-image: url('../img/icons/play-white.svg');
}
.button:active .button__icon--pdf {
  background-image: url('../img/icons/pdf-white.svg');
}
.button:hover {
  text-decoration: none !important;
}
.button:hover:before {
  transform: scaleY(1);
  transform-origin: 100% 100%;
  transition-delay: 0s;
}
.button:hover .button__inner:before {
  transform: scaleX(1);
  transition-delay: 290ms;
}
.button:hover:after {
  border-color: transparent !important;
  transform: scaleY(1);
  transition: none;
}
.button:hover .button__inner:after {
  transform: scaleX(1);
  transition-delay: 290ms;
}
.button:after,
.button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transition: transform .4s;
  transition-delay: .4s;
  transform-origin: 0 100%;
}
.button__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.button__inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 1px;
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: 0 0;
}
.button__inner:after {
  content: '';
  position: absolute;
  top: 0;
  width: 55%;
  height: 1px;
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: 0 0;
  left: auto;
  right: 0;
  transform-origin: 100% 100%;
}
.button__icon {
  width: 18px;
  height: 18px;
  vertical-align: top;
  display: inline-block;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
.button-primary .button__icon--play {
  background-image: url('../img/icons/play-dark.svg');
}
.button-second .button__icon--play {
  background-image: url('../img/icons/play.svg');
}
.button-white .button__icon--play {
  background-image: url('../img/icons/play-white.svg');
}
.button-light .button__icon--play {
  background-image: url('../img/icons/play-white.svg');
}
.button-primary .button__icon--pdf {
  background-image: url('../img/icons/pdf-dark.svg');
}
.button-second .button__icon--pdf {
  background-image: url('../img/icons/pdf.svg');
}
.button-white .button__icon--pdf {
  background-image: url('../img/icons/pdf-white.svg');
}
.button-light .button__icon--pdf {
  background-image: url('../img/icons/pdf-white.svg');
}
.button--big {
  font-size: 16px;
  padding: 22px 25px;
}
.button-small {
  font-size: 11px;
  padding: 8px 13px;
}
.margin-bottom-90 {
  margin-bottom: 90px;
}
.margin-bottom-60 {
  margin-bottom: 60px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}
.margin-bottom-40 {
  margin-bottom: 40px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-top-90 {
  margin-top: 90px;
}
.margin-top-60 {
  margin-top: 60px;
}
.margin-top-50 {
  margin-top: 50px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-10 {
  margin-top: 10px;
}
.m5 {
  height: 5px;
}
.m10 {
  height: 10px;
}
.m20 {
  height: 20px;
}
.m30 {
  height: 30px;
}
.m40 {
  height: 40px;
}
.m50 {
  height: 50px;
}
.m60 {
  height: 60px;
}
.m70 {
  height: 70px;
}
.mr7 {
  margin-right: 7px;
}
.mt0 {
  margin-top: 0;
}
.mt-3 {
  margin-top: -3px;
}
.padding-h15 {
  padding-left: 15px;
  padding-right: 15px;
}
.glyph {
  vertical-align: bottom;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}
.glyph.glyph-dropdown {
  background-image: url('../img/icons/dropdown_grey.svg');
}
select.styled {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* remove default arrow */
  cursor: pointer;
}
.select-container {
  position: relative;
  max-width: 330px;
}
.select-container::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 6px;
  transform: translate(0, -50%);
  content: '';
  background-image: url('../img/icons/dropdown_sand.svg');
  pointer-events: none;
}
@media (max-width: 767px) {
  .select-container--xs-center {
    margin-left: auto;
    margin-right: auto;
  }
}
.form-control {
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-weight: 500;
}
.form-control:focus {
  color: #aa7e66;
  border-bottom: 1px solid #aa7e66;
}
.form-control:focus::placeholder {
  color: #aa7e66;
}
.checkboxStyled {
  position: relative;
  margin-right: 25px;
  text-align: left;
}
.checkboxStyled input {
  position: absolute;
  visibility: hidden;
  top: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  width: 0px;
  height: 0px;
}
.checkboxStyled input:checked + .checkboxInput {
  background: transparent url('../img/icons/checkbox_checked.svg') no-repeat center center;
}
.checkboxStyled .checkboxInput {
  background: transparent url('../img/icons/checkbox.svg') no-repeat center center;
  border: 0px;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  vertical-align: middle;
  float: left;
}
.checkboxStyled .checkboxLabel {
  padding-left: 40px;
  font-size: 12px;
  line-height: 20px;
  font-family: 'Lyon Text', serif;
  font-weight: normal;
  color: #aa7e66;
}
.checkboxStyled--big .checkboxLabel {
  padding-top: 4px;
  font-size: 14px;
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 45px;
  height: 50px;
  z-index: 90;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
}
.slick-next {
  right: 50px;
  background-image: url('../img/icons/slider-right.svg');
}
.slick-prev {
  left: 50px;
  background-image: url('../img/icons/slider-left.svg');
}
@media (max-width: 991px) {
  .slick-prev,
  .slick-next {
    display: none !important;
  }
}
.row--nopadding {
  margin: 0px;
  padding: 0px;
}
.row {
  margin-left: -10px;
  margin-right: -10px;
}
.row > [class^="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}
.button-base {
  font-family: 'Lyon Text', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aa7e66;
}
.button-base .fa {
  color: #24251e;
}
.vertical-center:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -6px;
}
.vertical-center__content {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .text-left--mobile-center {
    text-align: center !important;
  }
}
.text-big {
  font-size: 20px;
}
.text-black {
  color: #24251e;
}
.text-white {
  color: #fff;
}
.popup-trigger--has-icon {
  position: relative;
}
.popup-trigger--has-icon:focus,
.popup-trigger--has-icon:hover {
  text-decoration: none;
}
.popup-trigger--has-icon:hover {
  text-decoration: none;
}
.popup-trigger--has-icon:hover::after,
.popup-trigger--has-icon:hover::before,
.popup-trigger--has-icon:hover .icon-plus {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.popup-trigger--has-icon::after,
.popup-trigger--has-icon::before,
.popup-trigger--has-icon .icon-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.popup-trigger--has-icon::after {
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
  content: '';
}
.popup-trigger--has-icon::before {
  width: 46px;
  height: 46px;
  background-color: #aa7e66;
  border-radius: 50%;
  content: '';
}
.icon-plus {
  position: relative;
  width: 12px;
  height: 12px;
}
.icon-plus::after,
.icon-plus::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin-top: -1px;
  content: '';
}
.icon-plus::before {
  transform: rotate(90deg);
}
.video {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overflow-hidden {
  overflow: hidden;
}
.suppress-events {
  pointer-events: none;
}
.suppress-events a,
.suppress-events button {
  pointer-events: auto;
}
.embed-responsive-16by9 {
  position: relative;
}
.affix-special {
  top: 85px;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
}
@media (max-width: 991px) {
  .affix-special {
    position: inherit;
    top: inherit;
    left: inherit;
    right: inherit;
    z-index: auto;
    background-color: none;
  }
}
.el-center {
  margin-left: auto;
  margin-right: auto;
}
.container-fluid--bigger {
  padding-left: 20px;
  padding-right: 20px;
}
.navbar-other--full {
  width: 100%;
}
.dropdown-toggle .glyph {
  transform: translateY(-3px);
}
.wrapper {
  border: 20px solid #ffffff;
  display: block;
  overflow: hidden;
}
@media (max-width: 991px) {
  .wrapper {
    border: 10px solid #ffffff;
  }
}
.icon-arrow-long {
  position: relative;
  display: block;
  width: 100%;
  max-width: 140px;
  height: 1px;
  background-color: #aa7e66;
}
.icon-arrow-long::after,
.icon-arrow-long::before {
  position: absolute;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1px solid #aa7e66;
  border-top: 1px solid #aa7e66;
  content: '';
}
.icon-arrow-long::after {
  left: 0;
  transform: rotate(225deg);
}
.icon-arrow-long::before {
  right: 0;
  transform: rotate(45deg);
}
.text-alt {
  font-family: 'Sharp Sans Display No1', sans-serif;
}
.text-alt2 {
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-weight: 500;
}
.text-color-primary {
  color: #aa7e66;
}
.text-large {
  font-size: 25px;
}
.text-ln-big {
  line-height: 1.72;
}
.text-ln-bigger {
  line-height: 1.85;
}
.text-ln-tiny {
  line-height: 0.7;
}
.text-number {
  font-family: 'Lyon Display', serif;
  font-weight: 300;
  font-size: 32px;
}
.text-semibold {
  font-weight: 600;
}
.text-size-big {
  font-size: 20px;
}
.text-size-bigger {
  font-size: 16px;
}
.text-small {
  font-size: 12px;
}
.text-super {
  font-size: 32px;
  font-family: 'Lyon Display', serif;
  font-weight: 500;
}
.text-super strong {
  color: #aa7e66;
  font-size: 60px;
  font-weight: inherit;
  line-height: 1;
}
.text-weight-light {
  font-weight: 300 !important;
}
.text-xlarge {
  font-size: 32px;
}
@media (max-width: 991px) {
  .text-sm-big {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .text-xs-bigger {
    font-size: 16px;
  }
}
.text-responsive p {
  font-size: 20px;
}
@media (max-width: 991px) {
  .text-responsive p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .text-responsive p {
    font-size: 16px;
  }
}
.grid--right {
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .grid--sm-center {
    justify-content: center;
  }
}
.grid--clean {
  margin-left: 0;
}
.grid--clean .grid__item {
  padding-left: 0;
}
@media (min-width: 1350px) {
  .container--big {
    width: 1330px;
  }
}
.container--offset-big {
  padding-left: 30px;
  padding-right: 30px;
}
.el-relative {
  position: relative;
}
.el-full {
  display: block;
  width: 100%;
}
.el-center-abs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.btn-arrow-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 34px;
  height: 17px;
  margin-left: -17px;
  z-index: 100;
  cursor: pointer;
  overflow: hidden;
  animation: pulse 5s infinite;
}
.btn-arrow-down::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-top: -9px;
  border-right: 1px solid #aa7e66;
  border-bottom: 1px solid #aa7e66;
  transform: translate(-50%, -50%) rotate(45deg);
  content: '';
}
@media (max-width: 700px) {
  .btn-arrow-down {
    display: none;
  }
}
.btn-arrow-down--black::after {
  border-color: #24251e;
}
.btn-arrow-down--primary::after {
  border-color: #aa7e66;
}
.bg-fixed,
.parallax-window {
  height: 70vh;
}
.bg-fixed {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}
.video-over {
  display: flex;
  min-height: 90vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  align-items: center;
}
.video-over--bottom {
  align-items: flex-end;
}
.video-over--right {
  justify-content: flex-end;
  text-align: right;
  padding-right: 100px;
}
@media (max-width: 991px) {
  .video-over--right {
    justify-content: center;
    padding-right: 0;
  }
}
.video-over__content {
  width: 100%;
  padding: 30px 20px 40px;
  max-width: 500px;
}
@media (max-width: 991px) {
  .video-over__content {
    text-align: center;
  }
}
.video-over__content--big {
  max-width: 700px;
}
.video-over__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .video-over__video {
    opacity: 0.3;
  }
}
@media (max-width: 991px) {
  .video-over__video--no-opac {
    opacity: 1;
  }
}
.container-w500 {
  max-width: 500px;
}
@media (max-width: 991px) {
  .text-sm-center {
    text-align: center;
  }
}
.content-opener {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .content-opener {
    flex-wrap: wrap;
  }
}
.content-opener__left {
  width: 350px;
  text-align: right;
  padding-right: 75px;
}
@media (max-width: 767px) {
  .content-opener__left {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}
.content-opener__right {
  width: calc(100% - 350px);
}
@media (max-width: 767px) {
  .content-opener__right {
    text-align: center;
    width: 100%;
  }
}
.list-tabs-images {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  margin: 20px 0 60px;
  text-transform: uppercase;
  font-family: 'Sharp Sans Display No1', sans-serif;
  letter-spacing: 1px;
  font-size: 12px;
}
.list-tabs-images a {
  display: block;
  color: #aa7e66;
  padding-left: 5px;
  padding-right: 5px;
}
.list-tabs-images a:focus,
.list-tabs-images a:hover {
  text-decoration: none;
}
.list-tabs-images a:not(:first-of-type) {
  padding-left: 5;
}
.list-tabs-images a:not(:last-of-type) {
  padding-right: 5;
}
.list-tabs-images img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 15px;
}
.list-tabs-images li {
  list-style: none;
  flex: 1;
  transition: all 0.35s ease-out;
  opacity: 0.5;
}
.list-tabs-images li:hover,
.list-tabs-images li.active {
  opacity: 1;
}
.onscroll-animate {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.onscroll-animate.fadeIn {
  animation-name: fadeIn;
}
.onscroll-animate.fadeInLeft {
  animation-name: fadeInLeft;
}
.onscroll-animate.fadeInRight {
  animation-name: fadeInRight;
}
.onscroll-animate.fadeInUp {
  animation-name: fadeInUp;
}
.onscroll-animate--visible {
  opacity: 1;
}
.content-box-img {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 190px);
  z-index: 1;
  padding-top: 35px;
  padding-bottom: 35px;
}
.content-box-img--bottom {
  align-items: flex-end;
}
.content-box-img--offset-button {
  padding-top: 100px;
  padding-bottom: 140px;
}
@media (max-width: 1199px) {
  .content-box-img--offset-button {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.content-box-img--top {
  align-items: flex-start;
}
.content-box-img__bottom {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .content-box-img__bottom {
    bottom: 40px;
  }
}
.content-box-img__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center center;
  content: '';
}
.content-box-img__image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  content: '';
  pointer-events: none;
}
.content-box-img__image--cover-black::after {
  background-color: #24251e;
}
@media (max-width: 991px) {
  .content-box-img__image--cover-sm::after {
    opacity: 0.35;
  }
}
@media (max-width: 991px) {
  .content-box-img__image--cover-sm2::after {
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .content-box-img__image--cover-xs::after {
    opacity: 0.35;
  }
}
@media (max-width: 991px) {
  .content-box-img__image--left {
    background-position: right center;
  }
}
@media (max-width: 767px) {
  .content-box-img__image--left {
    background-position: center center;
  }
}
@media (max-width: 991px) {
  .content-box-img__image--right {
    background-position: left center;
  }
}
@media (max-width: 767px) {
  .content-box-img__image--right {
    background-position: center center;
  }
}
.content-box-img__wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .text-sm-center {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .text-xs-center {
    text-align: center;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-35px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(35px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.2);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.35);
  }
  20% {
    transform: scale(1);
  }
}
.m20vh {
  height: 10vh;
}
.section-full-screen {
  min-height: calc(100vh - 174px);
}
.section-full-screen--compact-menu {
  min-height: calc(100vh - 66px);
}
.logo-opening {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .logo-opening {
    flex-wrap: wrap;
  }
}
.logo-opening__content {
  flex-grow: 1;
  text-align: left;
}
@media (max-width: 991px) {
  .logo-opening__content {
    text-align: center;
  }
}
.logo-opening__logo {
  flex: none;
  width: 190px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .logo-opening__logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-right: 0;
    padding-bottom: 15px;
  }
}
.section-images-out {
  position: relative;
  z-index: 1;
}
.section-images-out__top {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .section-images-out__top {
    margin-bottom: 50px;
  }
}
.img-out-1,
.img-out-2,
.img-out-3 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .img-out-1,
  .img-out-2,
  .img-out-3 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .img-out-1,
  .img-out-2,
  .img-out-3 {
    font-size: 22px;
  }
}
.img-out-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .img-out-1 {
    max-width: 30%;
  }
}
@media (max-width: 1199px) {
  .img-out-1 {
    max-width: 25%;
  }
}
@media (max-width: 991px) {
  .img-out-1 {
    position: static;
    max-width: 47%;
    text-align: center;
  }
}
.img-out-1__inner {
  position: absolute;
  top: 0;
  min-height: 70px;
  right: -5%;
  width: 50%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .img-out-1__inner {
    display: block;
    position: static;
    width: 100%;
    min-height: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.img-out-2 {
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1600px) {
  .img-out-2 {
    max-width: 30%;
  }
}
@media (max-width: 1199px) {
  .img-out-2 {
    max-width: 25%;
  }
}
@media (max-width: 991px) {
  .img-out-2 {
    position: static;
    max-width: 47%;
    transform: none;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.img-out-3 {
  position: relative;
}
.img-out-3__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  display: flex;
  align-items: flex-end;
  min-height: 105px;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .img-out-3__inner {
    display: block;
    position: static;
    width: 100%;
    min-height: 0;
    text-align: center;
  }
}
.img-out-3-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .img-out-3-wrapper {
    justify-content: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
#skrollr-body {
  overflow: hidden;
}
.ui-datepicker {
  background-color: #fff;
  border: 1px solid #7a7b7a;
  font-family: 'Sharp Sans Display No1', sans-serif;
  padding: 5px;
}
.ui-datepicker td {
  padding: 0;
}
.ui-datepicker td.ui-state-disabled {
  padding-top: 6px;
}
.ui-datepicker td.ui-datepicker-today a {
  border-color: #aa7e66;
}
.ui-datepicker td.ui-datepicker-current-day a {
  background-color: #aa7e66;
  color: #fff;
}
.ui-datepicker td a {
  transition: all 0.3s ease-out;
  padding: 6px 7px 0;
  border: 1px solid transparent;
}
.ui-datepicker td a:hover {
  background-color: #aa7e66;
  color: #fff;
}
.ui-datepicker th {
  font-weight: 400;
}
.ui-datepicker thead {
  border-bottom: 1px solid #d9dde2;
}
.ui-datepicker .ui-datepicker-calendar {
  margin: 0;
}
.ui-datepicker .ui-datepicker-title {
  font-weight: 700;
  font-size: 15px;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  top: 2px !important;
  background-color: #f1eded;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  display: none;
}
.ui-datepicker .ui-datepicker-next:after,
.ui-datepicker .ui-datepicker-prev:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url('../img/icons/icon_arrow_white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  content: "";
}
.ui-datepicker .ui-datepicker-next {
  right: 2px !important;
}
.ui-datepicker .ui-datepicker-next:after {
  margin-left: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}
.partners__items {
  margin-bottom: 20px;
}
.partners__item {
  margin-bottom: 50px;
}
.partners__content {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}
.partners__actions {
  text-align: center;
}
.cover-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 900;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
}
.cover-screen.active {
  opacity: 1;
  visibility: visible;
}
.popup-window-trigger {
  cursor: pointer;
}
.popup-window {
  position: absolute;
  top: 0;
  left: 50%;
  width: 85%;
  max-width: 800px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  padding: 5px 20px 20px 20px;
  transform: translate(-50%, 20px);
  transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
  z-index: 1000;
}
.popup-window.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .popup-window {
    width: 90%;
  }
}
.popup-window__close {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
}
.popup-window__content {
  position: relative;
  padding: 25px 35px 20px;
}
.product-preview {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto 20px;
  padding-bottom: 15px;
}
.product-preview:hover {
  text-decoration: none;
}
.product-preview h1,
.product-preview h2,
.product-preview h3,
.product-preview h4 {
  font-size: 24px;
  color: #aa7e66;
  margin-top: 0;
  margin-bottom: 3px;
}
.product-preview img {
  margin-bottom: 10px;
}
.product-preview p {
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
}
.product-preview__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: rgba(241, 237, 237, 0.96);
  opacity: 0;
  padding: 0 15px 50px;
  transition: all 0.4s ease-out;
}
.product-preview:hover .product-preview__hover {
  opacity: 1;
}
.product-preview__img {
  display: flex;
  align-items: center;
}
.products-detail1__name {
  margin: 40px 0px;
  text-align: center;
}
.products-detail1__name h1 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 69px;
  font-weight: 500;
  color: #aa7e66;
}
.products-detail1__breadcrumbs {
  margin-bottom: 50px;
  text-align: center;
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  color: #24251e;
}
.products-detail1__breadcrumbs .fa {
  margin: 0px 10px;
}
.products-detail1__images img {
  margin: 0px auto;
  margin-bottom: 20px;
}
.products-detail1__info__name {
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 700;
  color: #aa7e66;
}
.products-detail1__info__value {
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  color: #24251e;
}
.products-detail1__info .favorite {
  font-size: 11px;
  padding: 20px 0px;
  display: inline-block;
}
.products-detail1__section {
  text-align: center;
}
.products-detail1__section__header {
  margin-bottom: 30px;
}
.products-detail1__section__header h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 25px;
  font-weight: 500;
  color: #aa7e66;
}
.products-detail1__section__content {
  margin-bottom: 30px;
  font-family: 'Lyon Text', serif;
  font-size: 14px;
  font-weight: 500;
  color: #24251e;
}
.products-detail1__section__links {
  margin-bottom: 30px;
}
.products-detail1__section__links a {
  margin: 0px 30px;
}
@media (max-width: 767px) {
  .products-detail1__links {
    text-align: center;
  }
  .products-detail1__content {
    text-align: center;
  }
  .products-detail1__section {
    margin-bottom: 15px;
  }
  .products-detail1__section__links a {
    display: block;
    margin-bottom: 15px;
  }
}
.products-layout1__inner .row > div {
  padding-left: 5px;
  padding-right: 5px;
}
.products-layout1__item {
  margin-bottom: 20px;
  padding: 40px 10px;
  background-color: #fff;
  text-align: center;
}
.products-layout1__item__image img {
  margin: 0px auto;
}
.products-layout1__item__content h2,
.products-layout1__item__content h3,
.products-layout1__item__content h1 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 18px;
  font-weight: 500;
  color: #24251e;
}
.products-layout2__inner {
  text-align: center;
}
.products-layout2__items {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: inline-block;
  margin-bottom: 50px;
}
.products-layout2__items--nomargin {
  margin-bottom: 0px;
}
.products-layout2__item {
  display: inline-block;
  padding: 5px 5px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  vertical-align: top;
  margin-bottom: 4px;
}
.products-layout2__item a {
  display: block;
}
.products-layout2__item a .number {
  display: block;
  text-align: center;
  max-width: 40px;
  width: 100%;
  height: 40px;
}
.products-layout2__item a .number span {
  display: block;
}
.products-layout2__item a .number img {
  display: block;
  margin: 0px auto;
}
.products-layout2__item__label {
  display: block;
  font-size: 12px;
}
.products-layout2__item--hide {
  display: none;
}
.products-layout2__item--show {
  display: inline-block;
}
.products-layout2__item--big {
  width: 95px;
  height: 120px;
  padding: 10px 10px;
}
.products-layout2__item--big a > img {
  width: 80px;
  height: auto;
}
@media (max-width: 767px) {
  .products-layout2__item {
    margin-bottom: 2px;
  }
}
.products-layout3__inner {
  text-align: center;
}
.products-layout3__item {
  position: relative;
  padding: 20px 25px 15px 25px;
  margin-bottom: 20px;
  background-color: #fff;
}
.products-layout3__item__top {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  z-index: 1;
  text-align: right;
  padding-left: 10px;
  padding-right: 17px;
}
.products-layout3__item__middle {
  margin-bottom: 20px;
}
.products-layout3__item__name {
  margin-bottom: 30px;
}
.products-layout3__item__name h2 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.products-layout3__item__name span.no {
  display: block;
  font-family: 'Lyon Text', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
}
.products-layout3__item__bottom .quick-view {
  margin-bottom: 15px;
}
.products-layout3__item__bottom .detail {
  font-family: 'Lyon Text', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.products-layout3__item__bottom .detail .fa {
  color: #24251e;
}
.state {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  text-transform: uppercase;
}
.state--new {
  border-bottom-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: #24251e;
  color: #fff;
}
.products-layout4__inner .grid > .grid__item {
  margin-bottom: 20px;
}
.products-layout4__item {
  padding: 50px 10px;
  background-color: #fff;
  text-align: center;
  height: 100%;
  position: relative;
}
.products-layout4__item__image {
  margin-bottom: 30px;
}
.products-layout4__item__image img {
  margin: 0px auto;
  max-height: 150px;
}
.products-layout4__item__content {
  margin-bottom: 30px;
}
.products-layout4__item__content h2,
.products-layout4__item__content h3,
.products-layout4__item__content h1 {
  padding: 0px;
  margin: 0px;
  font-family: 'Lyon Text', serif;
  font-size: 18px;
  font-weight: 500;
  color: #aa7e66;
  margin-bottom: 15px;
}
.products-layout4__item__content p {
  font-family: 'Lyon Text', serif;
  font-size: 12px;
  font-weight: 500;
  color: #24251e;
}
.products-layout4__item__actions {
  height: 50px;
}
.products-layout4__item__actions__inner {
  position: absolute;
  bottom: 50px;
  left: 0px;
  width: 100%;
}
.row-btns {
  text-align: center;
  margin-left: -40px;
}
.row-btns .button {
  margin-left: 40px;
  margin-bottom: 5px;
}
.row-checks {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.row-checks__item {
  margin-right: 10px;
}
#search {
  background-color: #f1eded;
  padding-top: 35px;
  padding-bottom: 5px;
}
.section {
  padding-top: 40px;
  padding-bottom: 30px;
}
.section--bordered {
  border-bottom: 20px solid #fff;
}
.section--bottom-big {
  padding-bottom: 60px;
}
.section--nopadding {
  padding-top: 0px;
  padding-bottom: 0px;
}
.section--nobottomborder {
  border-bottom: 0 !important;
}
.section--nobottompadding {
  padding-bottom: 0px;
}
.section--notoppadding {
  padding-top: 0px;
}
.section--silver {
  background-color: #f1eded;
}
.section--top-big {
  padding-top: 60px;
}
.section__header {
  text-align: center;
  margin-bottom: 25px;
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.section__header h1,
.section__header h2,
.section__header h3 {
  font-family: 'Lyon Display', serif;
  font-size: 50px;
  font-weight: 500;
  padding: 0px;
  margin: 0px;
}
.section__header .sub {
  font-family: 'Lyon Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: #24251e;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 5px 0px;
  display: inline-block;
}
.section__header--bottom-big {
  margin-bottom: 40px;
}
.section__header--w540 {
  width: 100%;
  max-width: 540px;
  margin: 0px auto;
  margin-bottom: 50px;
}
.section__content--centered {
  text-align: center;
}
.section__actions {
  margin-top: 40px;
  text-align: center;
}
.section--w540 {
  width: 100%;
  max-width: 540px;
  margin: 0px auto;
}
@media (max-width: 767px) {
  .section__header h1,
  .section__header h2,
  .section__header h3 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .section--bordered {
    border-bottom: 10px solid #fff;
  }
}
.slider {
  position: relative;
  overflow: hidden;
  max-height: 1000px;
}
.slider__inner {
  text-align: center;
  height: 100%;
}
.slider__inner--h500 {
  height: 500px;
}
.slider__items .slick-track {
  display: flex;
}
.slider__wrap {
  display: flex;
  flex-direction: column;
}
.slider__wrap__item {
  display: flex !important;
  height: auto;
  min-height: calc(100vh - 127px);
  align-items: center;
  justify-content: center;
}
.slider__wrap__item--video .slider__wrap__item__content {
  pointer-events: none;
}
.slider__wrap__item--video .slider__wrap__item__content .button {
  pointer-events: auto;
}
@media (max-width: 991px) {
  .slider__wrap__item--sm-bottom {
    align-items: flex-end;
  }
}
.slider__wrap__item__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  color: #aa7e66;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease-out;
  font-size: 25px;
  padding-left: 6px;
}
.slider__wrap__item__icon.active i:first-of-type {
  display: none;
}
.slider__wrap__item__icon.active i:last-of-type {
  display: inline;
}
.slider__wrap__item__icon i {
  line-height: 34px;
}
.slider__wrap__item__icon i:first-of-type {
  display: inline;
}
.slider__wrap__item__icon i:last-of-type {
  display: none;
}
.slider__wrap__item__image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center top;
}
.slider__wrap__item__image--bottom {
  background-position: center bottom;
}
.slider__wrap__item__image--fixed {
  background-size: auto auto;
}
@media (min-width: 1500px) {
  .slider__wrap__item__image--fixed {
    background-size: cover;
  }
}
.slider__wrap__item__image__video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  padding-bottom: 56.25%;
}
.slider__wrap__item__image__video__overlay {
  position: absolute;
  z-index: 100;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.slider__wrap__item:first-child .slider__wrap__item__image {
  z-index: 2;
}
.slider__wrap__item__content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}
.slider__wrap__item__content__overlay {
  padding: 100px 0 50px;
  display: inline-block;
  max-width: 870px;
  width: 100%;
}
.slider__wrap__item__content__overlay--big {
  max-width: 1200px;
}
.slider__wrap__item__content__overlay--full {
  max-width: none;
}
.slider__wrap__item__content__overlay--large {
  padding: 140px 0 120px;
}
@media (max-width: 991px) {
  .slider__wrap__item__content__overlay--large {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .slider__wrap__item__content__overlay--large {
    padding-top: 40px;
  }
}
.slider__wrap__item__content__overlay .top {
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 30px;
}
.slider__wrap__item__content__overlay .top > img,
.slider__wrap__item__content__overlay .top h1,
.slider__wrap__item__content__overlay .top h2 {
  display: block;
  margin: 0px auto;
}
.slider__wrap__item__content__overlay .top > img {
  height: 100px;
}
.slider__wrap__item__content__overlay .top h1,
.slider__wrap__item__content__overlay .top h2 {
  color: #aa7e66;
  font-family: 'Lyon Display', serif;
  font-size: 54px;
  font-weight: 500;
  margin-bottom: 10px;
}
.slider__wrap__item__content__overlay .top p {
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 4px;
}
.slider__wrap__item__content__overlay .sub-top {
  margin-bottom: 30px;
}
.slider__wrap__item__content__overlay .sub-top p {
  font-family: 'Sharp Sans Display No1', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
.slider__wrap__item__content__overlay .content {
  font-family: 'Lyon Text', serif;
  font-weight: 400;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .slider__wrap__item__content__overlay .content {
    margin-bottom: 25px;
  }
}
.slider__wrap__item__content__overlay .content p {
  margin: 0px;
  padding: 0px;
}
.slider__wrap__item__content__overlay .actions {
  margin-left: -35px;
}
.slider__wrap__item__content__overlay .actions .button {
  margin-bottom: 5px;
  margin-left: 35px;
}
.slider__wrap__item__content--lighter .slider__wrap__item__content__overlay .top {
  color: #fff;
}
.slider__wrap__item__content--lighter .slider__wrap__item__content__overlay .top h1,
.slider__wrap__item__content--lighter .slider__wrap__item__content__overlay .top h2 {
  color: #aa7e66;
}
.slider__wrap__item__content--lighter .slider__wrap__item__content__overlay .sub-top,
.slider__wrap__item__content--lighter .slider__wrap__item__content__overlay .content {
  color: #fff;
}
.slider__wrap__item__content--light .slider__wrap__item__content__overlay .top h1,
.slider__wrap__item__content--light .slider__wrap__item__content__overlay .top h2 {
  color: #aa7e66;
}
.slider__wrap__item__content--light .slider__wrap__item__content__overlay .content {
  color: #fff;
}
.slider__dots {
  position: absolute;
  bottom: 70px;
  text-align: center;
  width: 100%;
  z-index: 15;
}
.slider__dots .slick-dots {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.slider__dots .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}
.slider__dots .slick-dots li button {
  position: relative;
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: none;
}
.slider__dots .slick-dots li button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  content: '';
  transition: all 0.2s ease-out;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.slider__dots .slick-dots li.slick-active button::after {
  background-color: #aa7e66;
}
@media (max-width: 700px) {
  .slider__dots {
    bottom: 50px;
  }
  .slider__dots .slick-dots li {
    width: 50px;
    height: 50px;
    padding: 15px;
  }
  .slider__dots .slick-dots li button::after {
    width: 20px;
    height: 20px;
  }
}
.sliding-couple {
  position: relative;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}
.sliding-couple img {
  display: block;
  width: 100%;
}
.sliding-couple .slick-slide {
  padding-left: 2px;
  padding-right: 2px;
}
.sliding-couple .slick-next {
  transform: translate(-50%, 50%);
}
.sliding-couple .slick-prev {
  transform: translate(-50%, -50%) rotate(180deg);
}
.sliding-couple__handle {
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 75px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  user-select: none;
}
.sliding-couple__handle::after,
.sliding-couple__handle::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 42px;
  background-image: url('../img/icons/btn-arrow.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px auto;
  content: '';
}
.sliding-couple__handle::after {
  top: 0;
}
.sliding-couple__handle::before {
  bottom: 0;
  transform: rotate(180deg);
}
.sliding-couple__over {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  transition: width 0.3s ease-out;
}
.sliding-couple__over::after {
  position: absolute;
  left: -2px;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #fff;
  content: '';
  z-index: 1;
}
.sliding-couple__over-img {
  width: 100%;
  overflow: hidden;
}
.sliding-couple__over-img img {
  float: right;
}
.slick-slider {
  width: 100%;
}
.slider-has-dots > .slick-dots {
  list-style: none;
  margin: 0px;
  padding: 0px;
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
  z-index: 15;
}
.slider-has-dots > .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}
.slider-has-dots > .slick-dots li button {
  position: relative;
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: none;
}
.slider-has-dots > .slick-dots li button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  content: '';
  transition: all 0.2s ease-out;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.slider-has-dots > .slick-dots li.slick-active button::after {
  background-color: #aa7e66;
}
@media (max-width: 700px) {
  .slider-has-dots > .slick-dots {
    bottom: 50px;
  }
  .slider-has-dots > .slick-dots li {
    width: 50px;
    height: 50px;
    padding: 15px;
  }
  .slider-has-dots > .slick-dots li button::after {
    width: 20px;
    height: 20px;
  }
}
.slider-arrows-white .slick-prev {
  background-image: url('../img/icons/slider-left-white.svg');
}
.slider-arrows-white .slick-next {
  background-image: url('../img/icons/slider-right-white.svg');
}
@media (max-width: 767px) {
  .slider-arrows-xs-hidden .slick-prev,
  .slider-arrows-xs-hidden .slick-next {
    display: none !important;
  }
}
.slider-special {
  transition: background-color 0.5s ease-out;
}
.slider-special .slide-special-content,
.slider-special .slide-special-image {
  transition: all 0.5s ease-out;
}
.slider-special .anim-out .slide-special-content {
  opacity: 0;
}
.slider-special .anim-out .slide-special-image {
  opacity: 0;
}
.slider-special-abs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider-special-abs .slick-list {
  width: 100%;
  height: 100%;
}
.slider-special-abs .slick-slide {
  position: relative;
}
.slider-special-abs .slick-track {
  height: 100%;
}
.slider-special-2-wrapper {
  position: relative;
  color: transparent;
  transition: color 1s ease-out 1s;
}
.slider-special-2-wrapper .slide-special-image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease-out 0.6s;
  content: '';
}
.slider-special-2-wrapper.active {
  color: #fff;
}
.slider-special-2-wrapper.active .slide-special-image::after {
  opacity: 1;
}
.slider-blocks-wrapper {
  margin-left: -5px;
  margin-right: -5px;
}
.slider-blocks {
  text-align: center;
  padding-bottom: 25px;
}
.slider-blocks .slick-arrow {
  margin-top: -33px;
  transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
}
.slider-blocks .slick-arrow.slick-disabled {
  visibility: hidden;
  opacity: 0;
}
.slider-blocks .slick-list {
  overflow: visible;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}
.slider-blocks .slide {
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
}
.slider-blocks .slide:focus {
  outline: none;
}
.slider-blocks .slide:hover {
  z-index: 1;
  text-decoration: none;
}
.slider-blocks .slide:hover img {
  transform: scale(1.2);
}
.slider-blocks .slide:hover .slide__content {
  transform: translateY(25px);
}
@media (max-width: 440px) {
  .slider-blocks .slide:hover .slide__content {
    transform: translateY(35px);
  }
}
.slider-blocks .slide img {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  transition: transform 0.2s ease-out;
}
.slider-blocks .slide .slide__content {
  transition: transform 0.2s ease-out;
}
.text-layout1__inner__image {
  margin-bottom: 20px;
}
.text-layout1__inner__heading {
  text-align: center;
}
.text-layout1__inner__heading h1,
.text-layout1__inner__heading h2,
.text-layout1__inner__heading h3,
.text-layout1__inner__heading h4,
.text-layout1__inner__heading h5 {
  padding: 0px;
  margin: 0px;
  margin: 10px 0px 20px 0px;
}
.text-layout1__inner__content {
  font-family: 'Lyon Text', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}
.text-layout1__inner__actions {
  margin-top: 10px;
  text-align: center;
}
.text-layout1__inner h1,
.text-layout1__inner h2,
.text-layout1__inner h3,
.text-layout1__inner h4,
.text-layout1__inner h5 {
  padding: 0px;
  margin: 0px;
  margin: 20px 0px 25px 0px;
}
.text-layout1--size15 {
  font-size: 15px;
}
.text-layout1--w560 {
  width: 100%;
  max-width: 560px;
  margin: 0px auto;
}
.text-layout1--w768 {
  width: 100%;
  max-width: 768px;
  margin: 0px auto;
}
.text-layout2 {
  line-height: 1.55;
  font-size: 16px;
}
.text-layout3 {
  line-height: 1.72;
}

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