@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;1,300&display=swap);
@charset "UTF-8";
/* Mixins */
/**
 * Computes a topShadow for a card effect.
 *
 * @param {Number} $depth - depth level
 *
 * @return {List}
 */
/**
 * Computes a bottomShadow for a card effect.
 *
 * @param {Number} $depth - depth level
 *
 * @return {List}
 */
/**
 * Font Face
 *
 * @param {string} $fontName - Name of the font
 * @param {string} $folderName - Subfolder inside the fonts folder
 * @param {string} $fileName - Name of the font-file
 * @param {string} $fontWeight (normal) - Font weight value
 * @param {string} $fontStyle (normal) - Font style value
 */
/**
 * Font Responsive
 *
 * @param {number} $minFontSize - Min font size
 * @param {number} $maxFontSize - Max font size
 * @param {number} $minViewport - Min viewport size
 * @param {number} $maxViewport - Max viewport size
 */
/**
 * Transition
 *
 * @param {string} $prop
 * @param {duration} $duration (0.75s)
 * @param {duration} $delay (0s)
 * @param {ease} $ease ($easeInOutCubic)
 */
/**
 * Cross Browser Placeholder styles
 *
 * Uses the @content styles within the mixin as stytes
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 */
/* App styles */
/**
 * Variables
*/
:root {
  --body-bg: #f9f5ef;
  /* #15151d */
  --nav-fill-color: #fff;
  /* #9A8A68 */
}

/* Typography */
/* Breakpoints */
/* Paths */
/* Grid setup */
/* Colour palette */
/* Components */
/**
 * Fonts
*/
@font-face {
  font-family: "SaolDisplay-Regular";
  src: url(../fonts/SaolDisplay-Regular.woff) format("woff"), url(../fonts/SaolDisplay-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SaolDisplay-LightItalic";
  src: url(../fonts/SaolDisplay-LightItalic.woff) format("woff"), url(../fonts/SaolDisplay-LightItalic.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SaolDisplay-Light";
  src: url(../fonts/SaolDisplay-Light.woff) format("woff"), url(../fonts/SaolDisplay-Light.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FontAwesome";
  src: url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}
/* Core styles */
* {
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a,
a:hover {
  text-decoration: none;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

ul li {
  display: block;
}

blockquote,
q {
  quotes: none;
}

input[type=submit] {
  -webkit-appearance: none;
}

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

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

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

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

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

/*
::selection{ color:inherit; background-color: transparent; }
::-moz-selection{ color:inherit; background-color: transparent; }
*/
.breadcrumb {
  background-color: transparent;
  border-radius: 0px;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

body {
  background: var(--body-bg);
  color: #fff;
  transition: background-color 0.55s ease-out;
}
body.light-mode {
  background-color: #f9f5ef;
}
body::-webkit-scrollbar {
  display: none;
}

@-webkit-keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  20% {
    transform: translate(-15%, 5%);
  }
  30% {
    transform: translate(7%, -25%);
  }
  40% {
    transform: translate(-5%, 25%);
  }
  50% {
    transform: translate(-15%, 10%);
  }
  60% {
    transform: translate(15%, 0%);
  }
  70% {
    transform: translate(0%, 15%);
  }
  80% {
    transform: translate(3%, 25%);
  }
  90% {
    transform: translate(-10%, 10%);
  }
}

@keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  20% {
    transform: translate(-15%, 5%);
  }
  30% {
    transform: translate(7%, -25%);
  }
  40% {
    transform: translate(-5%, 25%);
  }
  50% {
    transform: translate(-15%, 10%);
  }
  60% {
    transform: translate(15%, 0%);
  }
  70% {
    transform: translate(0%, 15%);
  }
  80% {
    transform: translate(3%, 25%);
  }
  90% {
    transform: translate(-10%, 10%);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marqueeInverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes marqueeInverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes rotateInfinite {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateInfinite {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.table {
  height: 100%;
  width: 100%;
  display: table;
  z-index: 10;
  margin-bottom: 0px;
}
.table .cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.row.no-padding {
  margin-left: 0px;
  margin-right: 0px;
}
.row.no-padding [class*=col-] {
  padding: 0px;
}

.full-height {
  height: 100%;
}

.w_iframe {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.w_iframe .h_iframe {
  position: relative;
}
.w_iframe .h_iframe img.ratio {
  display: block;
  width: 100%;
  height: auto;
}
.w_iframe .h_iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parallax {
  background-attachment: fixed;
  background-position: 50% 0;
  width: 100%;
}
@media (max-width: 767px) {
  .parallax {
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .parallax {
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
  }
}

body.lock {
  *overflow: hidden;
}

#pointer {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 100;
  top: 50%;
  left: 50%;
  opacity: 0;
}
#pointer .main-circle {
  position: absolute;
  top: 50%;
  transform: scale(1) translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  background: #666666;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.37, 0.01, 0, 0.98);
}
#pointer .arrows {
  position: absolute;
  top: 50%;
  transform: scale(1) translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 39px;
  color: #666;
  transition: all 0.5s cubic-bezier(0.37, 0.01, 0, 0.98);
  display: flex;
  opacity: 0;
  justify-content: space-between;
}
#pointer .arrows i {
  font-size: 25px;
}
#pointer .draggable {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translatey(-50%);
}
#pointer .draggable .drag-circle {
  fill: transparent;
  stroke: #666;
  stroke-width: 2px;
  stroke-dasharray: 60;
  transition: all 1s cubic-bezier(0.37, 0.01, 0, 0.98), stroke-dasharray 1.5s 0.1s cubic-bezier(0.37, 0.01, 0, 0.98);
  stroke-dashoffset: 0;
  opacity: 0;
  transform: scale(0) rotate(0);
  transform-origin: center;
}
#pointer .wrapper-play {
  position: relative;
  width: 100%;
  height: 100%;
}
#pointer .wrapper-play .circle-dashed {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.5);
  transform-origin: center;
  transition: all 0.3s ease;
}
#pointer .wrapper-play .circle-dashed circle {
  transform-origin: center;
  -webkit-animation: rotating 6s linear infinite;
  animation: rotating 6s linear infinite;
}
#pointer .wrapper-play .ic-play {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  color: #666;
  transition: all 0.3s ease;
  transform: translate3d(-38%, -50%, 0) scale(0);
}
#pointer .wrapper-plus {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#pointer .wrapper-plus .ic-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  color: #666;
  transition: all 0.3s ease;
  transform: translate3d(-50%, -50%, 0) scale(0);
}
#pointer .text {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200px;
  color: #fff;
  font-size: 10px;
  text-align: center;
  font-weight: 100;
  letter-spacing: 0;
  transition: all 0.3s;
  transform: translateX(-50%);
  opacity: 0;
}
#pointer .text span {
  position: relative;
  background: #111;
  padding: 5px 8px;
  white-space: nowrap;
}
#pointer.active-line .main-circle {
  transition: all 0.3s;
  opacity: 0.5;
  width: 45px;
  height: 45px;
  background: rgba(102, 102, 102, 0);
  border: 1px solid #666;
}
#pointer.on-image-plus .main-circle {
  transition: all 0.3s;
  opacity: 1;
  width: 60px;
  height: 60px;
  background: rgba(102, 102, 102, 0);
  border: 2px solid #666;
}
#pointer.on-image-plus .wrapper-plus .ic-plus {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}
#pointer.on-play-video {
  /*.circle-dashed {
      opacity: 1;
      transform: translate3d(-50%, -50%, 0) scale(1);
    } */
}
#pointer.on-play-video .main-circle {
  transition: all 0.3s;
  opacity: 0.4;
  width: 60px;
  height: 60px;
  background: rgba(102, 102, 102, 0.4);
  *border: 2px solid #666;
}
#pointer.on-play-video .wrapper-play .ic-play {
  opacity: 1;
  transform: translate3d(-42%, -50%, 0) scale(0.5);
}
#pointer.on-play-video .text {
  bottom: -10px !important;
}
#pointer.active .main-circle {
  transition: all 0.3s;
  opacity: 0.25;
  width: 45px;
  height: 45px;
}
#pointer.drag .main-circle {
  width: 0;
  height: 0;
}
#pointer.drag .arrows {
  width: 80px;
  opacity: 1;
  transition-delay: 0.2s;
}
#pointer.drag .draggable .drag-circle {
  stroke-dasharray: 200;
  opacity: 1;
  transform: scale(1) rotate(280deg);
}
#pointer.display-text .text {
  opacity: 1;
  bottom: 20px;
}
#pointer.display-text.on-hover .text {
  bottom: 0;
}
#pointer.hide:not(.on-hover) .text, #pointer.drag .text {
  opacity: 0;
  bottom: 10px;
  transition-delay: 0s;
}

#pointer .loading {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.5s;
  opacity: 0;
  text-align: center;
}
#pointer .loading .loader {
  text-align: center;
}
#pointer .loading svg {
  width: 25px;
  height: 35px;
  margin-top: 2px;
}

body.loading #pointer .main-circle {
  opacity: 0;
}

body.loading #pointer .loading {
  opacity: 1;
}

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.mouse_hint {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 8;
  width: 2px;
  height: 8vh;
  min-height: 52px;
  overflow: hidden;
  transform: translateX(-50%);
}
.mouse_hint .line {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

@-webkit-keyframes hintAnimation {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  50% {
    transform: translateY(100%);
    opacity: 1;
  }
  98% {
    transform: translateY(100%);
    opacity: 0;
  }
  99% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-100%);
    opacity: 1;
  }
}

@keyframes hintAnimation {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  50% {
    transform: translateY(100%);
    opacity: 1;
  }
  98% {
    transform: translateY(100%);
    opacity: 0;
  }
  99% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-100%);
    opacity: 1;
  }
}
.hintAnimation {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-name: hintAnimation;
  animation-name: hintAnimation;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

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

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

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

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

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

.swal-modal {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

/* Browser specific styles */
/**
 * Dirty hacks, yes internet explorer, we are looking at you
*/
/* Libs styles */
/* App Pages, Sections & Components styles */
header {
  position: fixed;
  z-index: 102;
  padding: 6vh 3vw;
  width: 100%;
}
header .navbar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 6vw;
}
@media (min-width: 992px) {
  header .navbar {
    padding: 0;
  }
}
header .navbar .s-logo {
  display: block;
  width: 15%;
}
@media (min-width: 992px) {
  header .navbar .s-logo {
    display: none;
  }
}
header .navbar .s-logo .letter {
  fill: var(--nav-fill-color);
  transition: fill 0.3s ease-out;
}
header .navbar .s-logo .icon-world path {
  stroke: var(--nav-fill-color);
  transition: stroke 0.3s ease-out;
}
header .navbar .burguer {
  width: 15%;
  cursor: pointer;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  transition: all 0.4s ease 0s;
}
@media (min-width: 992px) {
  header .navbar .burguer {
    justify-content: flex-start;
  }
}
header .navbar .burguer.open > div > div {
  background-color: #fff !important;
}
header .navbar .burguer > div {
  display: inline-block;
  height: auto;
  width: 30px;
}
header .navbar .burguer > div > div {
  width: 100%;
  height: 1px;
  margin: 0 0 8px 0;
  background-color: var(--nav-fill-color);
  transition-duration: 0.3s;
  transition-delay: 0s, 0s, 0s, 0s;
  clear: both;
}
header .navbar .burguer:hover > div > div {
  background-color: #9a8a68;
}
header .navbar .burguer > div > div:nth-child(2) {
  width: 65%;
  float: right;
}
@media (min-width: 992px) {
  header .navbar .burguer > div > div:nth-child(2) {
    float: left;
  }
}
header .navbar .burguer:hover > div > div:nth-child(2) {
  width: 100%;
}
header .navbar .burguer.open > div > div:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
header .navbar .burguer.open > div > div:nth-child(2) {
  opacity: 0;
}
header .navbar .burguer.open > div > div:nth-child(3) {
  width: 100%;
  transform: translateY(-9px) rotate(-45deg);
}
header .navbar .logo {
  width: 70%;
  text-align: center;
  display: none;
}
@media (min-width: 992px) {
  header .navbar .logo {
    display: block;
  }
}
header .navbar .logo svg path {
  fill: var(--nav-fill-color);
}
header .navbar .logo img {
  height: 20px;
}
header .navbar .lang-selector {
  width: 16%;
  text-align: right;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--nav-fill-color);
  display: none;
}
@media (min-width: 992px) {
  header .navbar .lang-selector {
    display: block;
  }
}
header .navbar .lang-selector a {
  display: inline-block;
  color: inherit;
  padding: 0 10px;
  opacity: 0.6;
  cursor: pointer;
}
header .navbar .lang-selector a.active {
  opacity: 1;
}

.btn-primary {
  display: inline-flex;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary span {
  display: block;
  overflow: hidden;
  position: relative;
  *height: 16px;
}
.btn-primary span .f-line-2 {
  position: absolute;
  *top: 0;
  height: 100%;
}
.btn-primary span .f-line-1 {
  height: 100%;
}
.btn-primary .icon {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-52%);
  transition: right 0.2s ease-out;
  pointer-events: none;
}
.btn-primary:after {
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out, background 0.4s ease-out;
}
.btn-primary:hover, .btn-primary.is-active {
  color: #fff;
}
.btn-primary:hover:after, .btn-primary.is-active:after {
  transform: scaleX(1);
  transform-origin: left;
  background: #fff;
}
.btn-primary:hover .icon, .btn-primary.is-active .icon {
  right: -26px;
}

.btn-secondary {
  position: relative;
  display: inline-block;
  padding: 3px 0;
  line-height: normal;
  border: 0;
  border-radius: 0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-style: normal;
  background-color: transparent;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  -webkit-tap-highlight-color: initial;
  cursor: pointer;
}
@media (min-width: 992px) {
  .btn-secondary {
    font-size: 15px;
  }
}
.btn-secondary:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: right center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.2s;
}
.btn-secondary:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scale(1, 1);
  transform-origin: left center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn-secondary:hover {
  outline: 0;
  color: #fff;
  background-color: transparent;
}
.btn-secondary:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
.btn-secondary:hover:after {
  transform-origin: right center;
  transform: scale(0, 1);
}
.btn-secondary.gold {
  color: #9a8a68;
}
.btn-secondary.gold:after, .btn-secondary.gold:before {
  background-color: #9a8a68;
}
.btn-secondary.gold:hover {
  color: #9a8a68;
}
.btn-secondary.dark-gold {
  color: #9a8a68;
}
.btn-secondary.dark-gold:after, .btn-secondary.dark-gold:before {
  background-color: #9a8a68;
}
.btn-secondary.dark-gold:hover {
  color: #9a8a68;
}
.btn-secondary.dark-gray {
  color: #5d5d5d;
}
.btn-secondary.dark-gray:after, .btn-secondary.dark-gray:before {
  background-color: #5d5d5d;
}
.btn-secondary.dark-gray:hover {
  color: #5d5d5d;
}

.btn-primary-ecommerce {
  position: relative;
  display: inline-block;
  min-width: 180px;
  padding: 20px 35px;
  line-height: normal;
  border: 1px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #9a8a68;
  border-color: #9a8a68;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-style: normal;
  background-color: transparent;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  -webkit-tap-highlight-color: initial;
  cursor: pointer;
}
.btn-primary-ecommerce:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #9a8a68;
  transform: scale(0, 1);
  transform-origin: right center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn-primary-ecommerce:hover {
  outline: 0;
  color: #fff;
  background-color: transparent;
}
.btn-primary-ecommerce:hover .fill {
  fill: #fff;
}
.btn-primary-ecommerce:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
@media (max-width: 767px) {
  .btn-primary-ecommerce {
    font-size: 12px;
  }
}

footer {
  border-top: 1px solid rgba(154, 138, 104, 0.1);
  width: 90%;
  max-width: 1295px;
  margin: 0 auto;
  padding: 12vh 0;
  *background-color: #15151d;
  text-align: center;
}
footer .wrapper-content .logo .seren {
  margin-top: 3vh;
  font-family: "SaolDisplay-Regular";
  color: #9a8a68;
  font-size: 25px;
  font-weight: 400;
}
footer .wrapper-content .text {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  margin-top: 3vh;
  padding: 8px 0;
  font-family: "Open Sans", sans-serif;
  line-height: 1.8;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  footer .wrapper-content .text {
    font-size: 20px;
  }
}
footer .wrapper-content .text .r {
  font-size: 12px;
  vertical-align: text-top;
}
footer .wrapper-content .powered-by .title {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8vh;
  margin-bottom: 3vh;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}
footer .wrapper-content .powered-by .brands {
  display: flex;
  justify-content: center;
}
footer .wrapper-content .powered-by .brands span {
  margin: 0 1vw;
  font-size: 22px;
  color: #9a8a68;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .wrapper-content .powered-by .brands .polytech {
  padding-left: 4px;
}
@media (max-width: 767px) {
  footer .wrapper-content .powered-by .brands .mentor {
    height: 3vh;
  }
  footer .wrapper-content .powered-by .brands .polytech {
    height: 3vh;
  }
  footer .wrapper-content .powered-by .brands span {
    margin: 0 2vw;
    font-size: 13px;
  }
}
@media (max-width: 767px) and (min-width: 768px) {
  footer .wrapper-content .powered-by .brands span {
    font-size: 11px;
  }
}
footer .wrapper-content .site-by {
  width: 100%;
  text-align: center;
  margin-top: 9vh;
  font-family: "Open Sans", sans-serif;
  line-height: 1.8;
  font-weight: 400;
  font-size: 16px;
  color: #9a8a68;
}
footer .wrapper-content .site-by a {
  color: rgba(255, 255, 255, 0.7);
  vertical-align: baseline;
}

.nav-menu {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  pointer-events: none;
}
.nav-menu.open {
  pointer-events: all;
}
.nav-menu .n-head {
  left: calc(100vw / 20 * 9);
  right: calc(100vw / 20 * 1);
  top: 3.75vw;
  z-index: 3;
  height: 1.25vw;
  position: absolute;
}
.nav-menu .n-image {
  display: none;
  width: calc(100vw / 20 * 7);
  height: 0;
  z-index: 2;
  overflow: hidden;
  position: relative;
  transform: translateY(-260px);
}
@media (min-width: 1200px) {
  .nav-menu .n-image {
    display: block;
  }
}
.nav-menu .n-image img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.nav-menu .n-menu {
  z-index: 2;
  width: 100vw;
  height: 0;
  display: flex;
  overflow: hidden;
  transform: translateY(-260px);
  background-color: #15151d;
}
@media (max-width: 767px) {
  html[data-device=mobile] .nav-menu .n-menu, html[data-device=tablet] .nav-menu .n-menu {
    overflow: auto;
  }
}
@media (min-width: 1200px) {
  .nav-menu .n-menu {
    width: calc(100vw / 20 * 13);
  }
}
.nav-menu .n-menu .n-menu-column {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  padding: 150px 0;
  align-items: center;
  height: 100%;
}
@media (min-width: 768px) {
  .nav-menu .n-menu .n-menu-column {
    align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .nav-menu .n-menu .n-menu-column {
    padding: 7.188vw 0;
  }
}
.nav-menu .n-menu .n-menu-column .n-menu-main {
  width: 100%;
  position: relative;
  margin-bottom: 7vh;
}
@media (min-width: 992px) {
  .nav-menu .n-menu .n-menu-column .n-menu-main {
    width: calc(100vw / 20 * 7);
    margin-bottom: 12vh;
  }
}
.nav-menu .n-menu .n-menu-column .n-menu-main .lang-selector {
  width: 40%;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  margin-bottom: 4vh;
  font-family: "Open Sans", sans-serif;
}
@media (min-width: 992px) {
  .nav-menu .n-menu .n-menu-column .n-menu-main .lang-selector {
    display: none;
  }
}
.nav-menu .n-menu .n-menu-column .n-menu-main .lang-selector a {
  display: inline-block;
  color: inherit;
  padding: 0px 9px;
  opacity: 0.6;
  cursor: pointer;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Open Sans", sans-serif;
}
.nav-menu .n-menu .n-menu-column .n-menu-main .lang-selector a:first-child {
  padding-left: 0;
}
.nav-menu .n-menu .n-menu-column .n-menu-main .lang-selector a.active {
  opacity: 1;
}
.nav-menu .n-menu .n-menu-column .n-menu-main a {
  width: 100%;
  color: #9a8a68;
  font-weight: 300;
  font-size: 43px;
  font-family: "SaolDisplay-Light", sans-serif;
  align-items: center;
  display: inline-flex;
  line-height: 1.2;
  *letter-spacing: -0.168vw;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .nav-menu .n-menu .n-menu-column .n-menu-main a {
    font-size: 6.5vw;
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  .nav-menu .n-menu .n-menu-column .n-menu-main a {
    font-size: 3.5vw;
    line-height: 1.2;
  }
}
.nav-menu .n-menu .n-menu-column .n-menu-main a.is-active {
  pointer-events: none;
}
.nav-menu .n-menu .n-menu-column .n-menu-main a.is-active, .nav-menu .n-menu .n-menu-column .n-menu-main a:hover {
  color: #fff;
}
.nav-menu .n-menu .n-menu-column .n-menu-links {
  margin-top: 1.875vw;
}
.nav-menu .n-menu .n-menu-column .n-menu-links,
.nav-menu .n-menu .n-menu-column .n-menu-sub {
  width: 100%;
  position: relative;
  margin-right: calc(100vw / 20 * 5);
}
.nav-menu .n-menu .n-menu-column .n-menu-links li,
.nav-menu .n-menu .n-menu-column .n-menu-sub li {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #8d8d8d;
}
@media (min-width: 992px) {
  .nav-menu .n-menu .n-menu-column .n-menu-links li,
.nav-menu .n-menu .n-menu-column .n-menu-sub li {
    font-size: 0.838vw;
    line-height: 1.938vw;
    letter-spacing: 0.034vw;
  }
}
.nav-menu .n-menu .n-menu-column .n-menu-links li strong,
.nav-menu .n-menu .n-menu-column .n-menu-sub li strong {
  color: #9a8a68;
}
.nav-menu .n-menu .n-menu-column .n-menu-links li a,
.nav-menu .n-menu .n-menu-column .n-menu-sub li a {
  color: inherit;
  transition: all 0.3s ease;
}
.nav-menu .n-menu .n-menu-column .n-menu-links li a:hover,
.nav-menu .n-menu .n-menu-column .n-menu-sub li a:hover {
  color: #fff;
}
.nav-menu .n-menu .n-menu-column:nth-child(1) {
  width: 100vw;
  margin-left: calc(100vw / 20 * 2);
}
@media (min-width: 992px) {
  .nav-menu .n-menu .n-menu-column:nth-child(1) {
    width: calc(100vw / 20 * 27);
  }
}
.nav-menu .n-menu .n-menu-column.n-menu-column:nth-child(2) {
  display: none;
  width: calc(100vw / 20 * 2);
  margin-right: calc(100vw / 20 * 2);
}
@media (min-width: 992px) {
  .nav-menu .n-menu .n-menu-column.n-menu-column:nth-child(2) {
    display: flex;
  }
}
.nav-menu .n-background-blue {
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  z-index: 1;
  position: absolute;
  background: #15151d;
  pointer-events: none;
}
.nav-menu .n-background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  background: #1f1f1f;
  opacity: 0;
  pointer-events: none;
}

.g-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100vw;
  background-color: #15151d;
}

.g-video-scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
}
.g-video-scene.active {
  pointer-events: all;
}
.g-video-scene .cc-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #161616;
  z-index: 10;
}
.g-video-scene .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 9;
}
@media (min-width: 992px) {
  .g-video-scene .video {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.g-video-scene .btn-close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 11;
  border: 2px solid rgba(154, 138, 104, 0.5);
  border-radius: 100%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.4s ease-in-out, border 0.4s ease-in-out;
}
.g-video-scene .btn-close .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  z-index: 2;
  background-color: #fff;
}
.g-video-scene .btn-close .line:nth-child(1) {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.g-video-scene .btn-close .line:nth-child(2) {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.g-video-scene .btn-close .fill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #9a8a68;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.g-video-scene .btn-close:hover {
  transform: scale(1.1);
  border: 2px solid #9a8a68;
}
.g-video-scene .btn-close:hover .fill {
  opacity: 1;
  transform: scale(1.01);
}

.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.accordion-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 15px 0;
  color: var(--nav-fill-color);
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .accordion-toggle {
    padding: 35px 0;
  }
}
.accordion-toggle h5 {
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--nav-fill-color);
  opacity: 0.5;
  line-height: 1.4;
  max-width: calc(100% - 60px);
  transition: opacity 0.3s ease;
}
@media (min-width: 1200px) {
  .accordion-toggle h5 {
    font-size: 22px;
  }
}
.accordion-toggle h5:hover {
  opacity: 1;
}
.accordion-toggle .circle {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  position: relative;
  border-radius: 32px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.accordion-toggle .circle .line {
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-toggle .circle .line.horizontal {
  width: 13px;
  height: 2px;
}
.accordion-toggle .circle .line.vertical {
  height: 13px;
  width: 2px;
  transition: transform 0.2s ease-in;
}

.accordion-toggle.open h5 {
  opacity: 1;
}
.accordion-toggle.open .vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-toggle.open .circle,
.accordion-toggle:hover .circle {
  opacity: 1;
}

.accordion-content {
  display: none;
  padding-bottom: 30px;
  overflow: auto;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .accordion-content {
    padding-bottom: 70px;
  }
}

.wrapper-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100%;
  width: 100%;
  overflow: hidden;
  *border: 1px solid red;
}
.wrapper-loading .wrapper-preloader {
  position: absolute;
  z-index: 998;
  height: 100%;
  width: 100%;
  background-color: #15151d;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.wrapper-loading .wrapper-preloader .box-preloader {
  display: inline-block;
  transition: padding-bottom 0.4s ease-out;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container {
  width: 100%;
  margin: 3vh auto;
  margin-bottom: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .bar {
  width: 0%;
  height: 100%;
  background-color: #9a8a68;
  margin: 0 auto;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress__counter {
  text-align: center;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 3vh auto;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress__counter span {
  vertical-align: baseline;
}
.wrapper-loading .wrapper-curtain {
  position: absolute;
  top: 40%;
  z-index: 997;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f9f5ef;
}
.wrapper-loading .wrapper-curtain .s {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate3d(-50%, -50%, 0);
}
.wrapper-loading .wrapper-curtain .s img {
  height: 30vh;
}
@media (min-width: 768px) {
  .wrapper-loading .wrapper-curtain .s img {
    height: 40vh;
  }
}
.wrapper-loading .wrapper-curtain .box-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.wrapper-loading .wrapper-curtain .box-title .title {
  text-align: center;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-size: 13vw;
  font-weight: 400;
  color: #9a8a68;
}
@media (min-width: 992px) {
  .wrapper-loading .wrapper-curtain .box-title .title {
    font-size: 8.5vw;
  }
}
.wrapper-loading .wrapper-curtain .box-title .title span {
  font-size: 6vw;
  vertical-align: super;
}
@media (min-width: 992px) {
  .wrapper-loading .wrapper-curtain .box-title .title span {
    font-size: 4vw;
  }
}
.wrapper-loading .wrapper-curtain video {
  position: absolute;
  top: 0px;
  right: 0px;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  /* 4000% */
  max-width: 100%;
  /* 100% */
  width: auto;
  height: auto;
  z-index: 1;
  overflow: hidden;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

main {
  *transform: translate(0, 40vh);
}

.prevent-landscape {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100%;
  width: 100%;
  background-color: #f9f5ef;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820px) and (max-height: 600px) and (orientation: landscape) {
  .prevent-landscape {
    display: flex;
    pointer-events: all;
  }
}
.prevent-landscape .icon img {
  height: 80px;
}

.s-instagram {
  padding-top: 20vh;
  padding-bottom: 8vh;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .s-instagram {
    padding-bottom: 0;
  }
}
.s-instagram .wrapper-content {
  position: relative;
}
.s-instagram .box-title {
  width: 100%;
  max-width: 1295px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .s-instagram .box-title {
    margin-bottom: 8vh;
  }
}
.s-instagram .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #9a8a68;
}
.s-instagram .box-title h1 {
  display: inline-block;
  font-family: "SaolDisplay-Light", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #fff;
  margin: 4vh 0;
}
@media (min-width: 768px) {
  .s-instagram .box-title h1 {
    font-size: 78px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .s-instagram .box-title h1 {
    font-size: calc( 36px + (78 - 36) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.s-instagram .box-title h1 em {
  font-family: "SaolDisplay-LightItalic", sans-serif;
  vertical-align: baseline;
  color: #9a8a68;
}
.s-instagram .instagram__dragger {
  display: flex;
  touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 8vh 0;
}
.s-instagram .instagram__dragger .instagram_group {
  display: flex;
  flex-shrink: 0;
  will-change: transform;
  white-space: nowrap;
}
.s-instagram .instagram__dragger .instagram__image {
  display: flex;
  flex-shrink: 0;
  position: relative;
  margin-right: 5.556vw;
}
.s-instagram .instagram__dragger .instagram__image .image__src {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  border: none;
  display: block;
  pointer-events: none;
}
.s-instagram .instagram__dragger .instagram__image:nth-child(4n+1) {
  width: 66.666vw;
  height: 66.666vw;
}
.s-instagram .instagram__dragger .instagram__image:nth-child(4n+2) {
  width: 44.444vw;
  height: 44.444vw;
  margin-top: 38.75vw;
}
.s-instagram .instagram__dragger .instagram__image:nth-child(4n+3) {
  width: 33.334vw;
  height: 33.334vw;
  margin-top: 11.112vw;
}
.s-instagram .instagram__dragger .instagram__image:nth-child(4n+4) {
  width: 55.556vw;
  height: 55.556vw;
  margin-top: 27.5vw;
}
@media (min-width: 992px) {
  .s-instagram .instagram__dragger .instagram__image:nth-child(4n+1) {
    width: 33.333vw;
    height: 33.333vw;
  }
  .s-instagram .instagram__dragger .instagram__image:nth-child(4n+2) {
    width: 22.222vw;
    height: 22.222vw;
    margin-top: 19.375vw;
  }
  .s-instagram .instagram__dragger .instagram__image:nth-child(4n+3) {
    width: 16.667vw;
    height: 16.667vw;
    margin-top: 5.556vw;
  }
  .s-instagram .instagram__dragger .instagram__image:nth-child(4n+4) {
    width: 27.778vw;
    height: 27.778vw;
    margin-top: 13.75vw;
  }
}

.s-sendy {
  margin-top: 20vh;
  padding-bottom: 16.25vw;
}
@media (min-width: 1200px) {
  .s-sendy {
    display: block;
  }
}
.s-sendy .s-sendy-figure {
  width: 100vw;
  height: 500vh;
  position: relative;
}
.s-sendy .s-sendy-figure .wrapper-button {
  position: absolute;
  bottom: 5vh;
  left: 0;
  z-index: 0;
  width: 100%;
  text-align: center;
}
.s-sendy .s-sendy-figure .s-sendy-grid {
  display: flex;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  position: absolute;
  white-space: nowrap;
}
.s-sendy .s-sendy-figure .s-sendy-grid article {
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.cover {
  width: 100vw;
  position: relative;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.cover .context {
  width: 100vw;
  height: 100vh;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .bg-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/design/grid_sendy_cover_mobile.ca5752.webp);
}
html[data-os=macOS] .s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .bg-image {
  background-image: url(../images/design/grid_sendy_cover_mobile.5ad57f.jpg);
}
@media (min-width: 992px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .bg-image {
    background-image: url(../images/design/grid_sendy_cover.1a0bb4.webp);
  }
  html[data-os=macOS] .s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .bg-image {
    background-image: url(../images/design/grid_sendy_cover.560942.jpg);
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .box-title {
  position: absolute;
  left: 0;
  bottom: 20vh;
  width: 100%;
  text-align: center;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .box-title h1 {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  line-height: 0.85;
  font-size: 70px;
  color: #fff;
}
@media (min-width: 768px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .box-title h1 {
    font-size: 170px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .box-title h1 {
    font-size: calc( 70px + (170 - 70) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .box-title .copy {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.83);
  margin-top: 3vh;
}
@media (min-width: 992px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.cover .context .box-title .copy {
    font-size: 22px;
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: var(--body-bg);
  transition: background-color 0.55s ease-out;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure {
  padding: 20vh 12vw;
  margin: 0;
  display: flex;
  height: 100%;
  align-items: flex-start;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure:first-child {
  padding-left: 24vw;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure:last-child {
  padding-left: 24vw;
  padding-right: 24vw;
}
@media (min-width: 992px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure {
    padding: 12vh 6vw;
  }
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure:first-child {
    padding-left: 12vw;
  }
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure:last-child {
    padding-left: 12vw;
    padding-right: 12vw;
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure .marquee {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  overflow: hidden;
  transform-origin: left;
  transform: rotate(-90deg);
  top: 100%;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure .marquee span {
  display: inline-flex;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 0;
  font-size: 18vw;
  color: #9a8a68;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure .marquee span {
    font-size: 9vw;
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure .marquee span .line {
  height: 2px;
  width: 90px;
  background-color: #9a8a68;
  margin: auto 0;
}
@media (min-width: 992px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure .marquee span .line {
    width: 250px;
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure picture,
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure img {
  max-height: 100%;
  height: 100%;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.top .box {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 70%;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.top .box img {
  height: 100%;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.top .box .box-text {
  margin-top: 4vh;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.top .box .box-text p {
  color: #5d5d5d;
  line-height: 1.5;
  font-weight: 400;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  white-space: normal;
  width: 100vw;
}
@media (min-width: 768px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.top .box .box-text p {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.top .box .box-text p {
    font-size: calc( 15px + (18 - 15) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 768px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.top .box .box-text p {
    width: 100%;
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.top .box .box-text p br {
  display: none;
}
@media (min-width: 768px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.top .box .box-text p br {
    display: block;
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom {
  align-items: flex-end;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom .box {
  display: flex;
  flex-direction: column-reverse;
  height: 70%;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom .box img {
  height: 100%;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom .box .box-text {
  margin-bottom: 4vh;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom .box .box-text p {
  color: #5d5d5d;
  line-height: 1.5;
  font-weight: 400;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  white-space: normal;
  width: 90vw;
}
@media (min-width: 768px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom .box .box-text p {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom .box .box-text p {
    font-size: calc( 15px + (18 - 15) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 768px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom .box .box-text p {
    width: 100%;
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom .box .box-text p br {
  display: none;
}
@media (min-width: 768px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.bottom .box .box-text p br {
    display: block;
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.center .video-container {
  margin: auto 0;
  height: 70%;
  position: relative;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.center .video-container video {
  height: 100%;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.center .video-container .wrapper-button-play {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.center .video-container .wrapper-button-play .box-play-button {
  position: relative;
  width: 100px;
  height: 100px;
}
@media (min-width: 768px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.center .video-container .wrapper-button-play .box-play-button {
    width: 125px;
    height: 125px;
  }
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.center .video-container .wrapper-button-play .box-play-button .rotating-text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transform-origin: center;
  -webkit-animation: rotating 12s linear infinite;
  animation: rotating 12s linear infinite;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.center .video-container .wrapper-button-play .box-play-button .triangle {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.center .scroll-down {
  position: absolute;
  top: 50%;
  right: 1.8vw;
  color: #9a8a68;
  text-transform: uppercase;
  font-size: 10px;
  z-index: 3;
  font-family: "Open Sans", sans-serif;
  transform: translate3d(0, -50%, 0) rotate(-90deg);
  transform-origin: 80% 0%;
  letter-spacing: 4px;
  width: 240px;
  text-align: right;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.center .scroll-down .box-arrow {
  display: inline-block;
  overflow: hidden;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.block-images div {
  position: relative;
  margin: 0;
  display: flex;
  height: 100%;
  align-items: flex-start;
}
.s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.block-images div .child {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 40vw;
  height: auto;
  display: none;
}
@media (min-width: 768px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.block-images div .child {
    width: 20vw;
    display: block;
  }
}
@media (min-width: 992px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.block-images div .child {
    width: 18vw;
  }
}
@media (min-width: 1600px) {
  .s-sendy .s-sendy-figure .s-sendy-grid article.gallery figure.block-images div .child {
    width: 15vw;
  }
}

@-webkit-keyframes custom-arrow {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  49% {
    transform: translate3d(-110%, 0, 0);
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 0;
    transform: translate3d(110%, 0, 0);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes custom-arrow {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  49% {
    transform: translate3d(-110%, 0, 0);
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 0;
    transform: translate3d(110%, 0, 0);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animated.custom-arrow {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: normal;
          animation-fill-mode: normal;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-name: custom-arrow;
  animation-name: custom-arrow;
}

.home-portrait {
  position: relative;
  padding: 0;
  background-color: #15151d;
  text-align: center;
  margin-top: -1px;
  /* hack */
  height: calc(100vh + 250px);
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-portrait {
    height: calc(100vh + 400px);
  }
}
.home-portrait .wrapper-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  width: 100%;
  padding: 0 9vw 9vw 9vw;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .home-portrait .wrapper-content {
    width: 68vw;
    align-items: center;
    padding: 0;
  }
}
.home-portrait .wrapper-content .box-title {
  padding-top: 24vh;
  padding-bottom: 12vh;
  text-align: center;
}
@media (min-width: 992px) {
  .home-portrait .wrapper-content .box-title {
    padding-bottom: 0;
    padding-top: 24vh;
  }
}
.home-portrait .wrapper-content .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 992px) {
  .home-portrait .wrapper-content .box-title .tagname {
    font-size: 24px;
  }
}
.home-portrait .wrapper-content .box-title #home-title-animation {
  line-height: 0.9;
  margin: 4vh 0;
  margin-bottom: 4vh;
  text-align: center;
  pointer-events: none;
}
.home-portrait .wrapper-content .box-title h1 {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 46px;
  color: #fff;
  line-height: 0.75;
  margin: 4vh 0;
  margin-bottom: 4vh;
  text-align: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  .home-portrait .wrapper-content .box-title h1 {
    font-size: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .home-portrait .wrapper-content .box-title h1 {
    font-size: calc( 46px + (150 - 46) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
@media (min-width: 992px) {
  .home-portrait .wrapper-content .box-title h1 {
    margin: 2vh 0;
  }
}
.home-portrait .wrapper-content .box-title h1 span {
  display: inline-block;
  padding-right: 3vw;
  font-family: "SaolDisplay-LightItalic", sans-serif;
  font-size: 28px;
}
@media (min-width: 768px) {
  .home-portrait .wrapper-content .box-title h1 span {
    font-size: 84px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .home-portrait .wrapper-content .box-title h1 span {
    font-size: calc( 28px + (84 - 28) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
@media (min-width: 992px) {
  .home-portrait .wrapper-content .box-title h1 span {
    padding-right: 15px;
  }
}
.home-portrait .wrapper-content .box-title .copy {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  width: 75%;
  max-width: 590px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-portrait .wrapper-content .box-title .copy {
    width: 90%;
    font-size: 20px;
    line-height: 1.8;
  }
}
.home-portrait .wrapper-content .box-title .wrapper-button {
  margin-top: 12vh;
}
.home-portrait .wrapper-s {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  width: 100%;
}
@media (min-width: 768px) {
  .home-portrait .wrapper-s {
    height: 400px;
  }
}
.home-portrait .wrapper-s .s-logo {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: 120px;
  width: 120px;
}
@media (min-width: 768px) {
  .home-portrait .wrapper-s .s-logo {
    height: 150px;
    width: 150px;
  }
}
.home-portrait .wrapper-s .s-logo .s-center {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.home-portrait .wrapper-s .s-logo .s-curved-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform-origin: center;
  will-change: transform;
  -webkit-animation: rotateInfinite 14s linear infinite;
          animation: rotateInfinite 14s linear infinite;
}
.home-portrait .bg-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100vh + 250px);
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-portrait .bg-video {
    height: calc(100vh + 400px);
  }
}
.home-portrait .bg-video video {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-portrait .bg-video .desktop {
  display: none;
}
@media (min-width: 768px) {
  .home-portrait .bg-video .desktop {
    display: block;
  }
}
.home-portrait .bg-video .mobile {
  display: block;
}
@media (min-width: 768px) {
  .home-portrait .bg-video .mobile {
    display: none;
  }
}
.home-portrait .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: calc(100vh + 250px);
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .home-portrait .bg-image {
    height: calc(100vh + 400px);
  }
}
.home-portrait .bg-image:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
@media (min-width: 992px) {
  .home-portrait .bg-image:after {
    opacity: 0;
  }
}

.home-introduction {
  position: relative;
  padding-top: 20vh;
  padding-bottom: 20vh;
  text-align: center;
  overflow-x: hidden;
}
@media (min-width: 1200px) {
  .home-introduction {
    padding-top: 30vh;
    padding-bottom: 30vh;
  }
}
.home-introduction .wrapper-content h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #9a8a68;
}
@media (min-width: 768px) {
  .home-introduction .wrapper-content h6 {
    font-size: 20px;
  }
}
.home-introduction .wrapper-content h6 .line {
  overflow: hidden;
}
.home-introduction .wrapper-content blockquote {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 29px;
  color: #5d5d5d;
  line-height: 1.3;
  margin: 6vh auto;
  margin-top: 4vh;
  max-width: 1100px;
  width: 90%;
}
@media (min-width: 768px) {
  .home-introduction .wrapper-content blockquote {
    font-size: 65px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .home-introduction .wrapper-content blockquote {
    font-size: calc( 29px + (65 - 29) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 1600px) {
  .home-introduction .wrapper-content blockquote {
    max-width: 1260px;
  }
}
.home-introduction .wrapper-content blockquote .line {
  overflow: hidden;
}
.home-introduction .wrapper-content .sign {
  max-width: 430px;
  width: 70%;
  margin: 0 auto;
}
.home-introduction .wrapper-content .sign img {
  max-width: 430px;
  width: 50%;
  margin: 0 auto;
}

.home-aboutme {
  position: relative;
  padding-top: 30vh;
  padding-bottom: 15vh;
  text-align: center;
  margin-top: -1px;
  /* hack */
  *overflow: hidden;
}
@media (min-width: 992px) {
  .home-aboutme {
    padding: 20vh 0;
    padding-top: 40vh;
  }
}
.home-aboutme .wrapper-img {
  position: relative;
  height: 64vh;
  min-height: 500px;
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .home-aboutme .wrapper-img {
    height: 130vh;
  }
}
@media (min-width: 1600px) {
  .home-aboutme .wrapper-img {
    max-width: 1100px;
  }
}
.home-aboutme .wrapper-img .image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url(../images/design/bg-drjuanseren.4bdddb.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
html[data-os=macOS] .home-aboutme .wrapper-img .image {
  background-image: url(../images/design/bg-drjuanseren.0d2523.jpg);
}
.home-aboutme .wrapper-circle {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100%;
  max-width: 1100px;
  transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .home-aboutme .wrapper-circle {
    display: block;
  }
}
.home-aboutme .wrapper-circle .inner-circle {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(30%) translateY(-30%);
}
.home-aboutme .wrapper-circle .inner-circle img {
  transform-origin: center;
  will-change: transform;
  -webkit-animation: rotateInfinite 14s linear infinite;
          animation: rotateInfinite 14s linear infinite;
  width: 50vw;
  max-width: 650px;
}
.home-aboutme .box-title {
  position: absolute;
  top: 15%;
  left: 0;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  pointer-events: none;
  *border: 1px solid red;
  transform: translate3d(0, 50%, 0);
}
@media (min-width: 1200px) {
  .home-aboutme .box-title {
    top: 50%;
    left: 50%;
    text-align: left;
    transform: translate3d(-50%, 0, 0);
  }
}
@media (min-width: 1600px) {
  .home-aboutme .box-title {
    max-width: 1400px;
  }
}
.home-aboutme .box-title h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #9a8a68;
  overflow: hidden;
}
@media (min-width: 992px) {
  .home-aboutme .box-title h6 {
    font-size: 20px;
  }
}
.home-aboutme .box-title h1 {
  display: inline-block;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 0.9;
  color: var(--nav-fill-color);
  margin: 4vh 0;
}
@media (min-width: 992px) {
  .home-aboutme .box-title h1 {
    font-size: 4.2vw;
  }
}
.home-aboutme .box-title h1 .line {
  *overflow: hidden;
}
.home-aboutme .box-title .wrapper-button {
  display: none;
  margin: 3vh 0;
  pointer-events: all;
}
@media (min-width: 992px) {
  .home-aboutme .box-title .wrapper-button {
    display: block;
  }
}
.home-aboutme .box-buttons {
  display: block;
  padding-top: 5vh;
  text-align: left;
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .home-aboutme .box-buttons {
    display: none;
  }
}
.home-aboutme .box-buttons .wrapper-button {
  margin: 5vh 0;
  pointer-events: all;
}

.home-breastbyseren {
  width: 100%;
  padding: 8vw 0;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .home-breastbyseren {
    padding-bottom: 20vh;
  }
}
.home-breastbyseren .wrapper-content-image {
  position: relative;
  text-align: center;
  margin-top: -1px;
  /* hack */
  height: 75vh;
}
@media (min-width: 992px) {
  .home-breastbyseren .wrapper-content-image {
    height: 100vh;
  }
}
@media (min-width: 1200px) {
  .home-breastbyseren .wrapper-content-image {
    height: 130vh;
  }
}
.home-breastbyseren .wrapper-content-image .wrapper-img {
  position: relative;
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  height: 75vh;
  transform-origin: center bottom;
}
@media (min-width: 992px) {
  .home-breastbyseren .wrapper-content-image .wrapper-img {
    height: 100vh;
  }
}
@media (min-width: 1200px) {
  .home-breastbyseren .wrapper-content-image .wrapper-img {
    width: 100%;
    height: 130vh;
  }
}
@media (min-width: 1600px) {
  .home-breastbyseren .wrapper-content-image .wrapper-img {
    max-width: 1100px;
  }
}
@media (min-width: 1920px) {
  .home-breastbyseren .wrapper-content-image .wrapper-img {
    max-width: 1400px;
  }
}
.home-breastbyseren .wrapper-content-image .wrapper-img .image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url(../images/design/bg-sendy-preview.aad544.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
html[data-os=macOS] .home-breastbyseren .wrapper-content-image .wrapper-img .image {
  background-image: url(../images/design/bg-sendy-preview.0fff63.jpg);
}
@media (min-width: 768px) {
  .home-breastbyseren .wrapper-content-image .wrapper-img .image {
    background-position: inherit;
  }
}
.home-breastbyseren .wrapper-content-image .box-title {
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: 4;
  width: 90%;
  text-align: center;
  transform: translate3d(-50%, -50%, 0);
}
.home-breastbyseren .wrapper-content-image .box-title h1 {
  display: inline-block;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-size: 11.5vw;
  font-weight: 400;
  color: #fff;
  margin-bottom: 3vh;
  line-height: 0.9;
  overflow: hidden;
  pointer-events: none;
}
.home-breastbyseren .wrapper-content-image .box-title h1 span {
  font-size: 5.5vw;
  vertical-align: super;
}
.home-breastbyseren .wrapper-content-image .box-title h1 .line {
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-breastbyseren .wrapper-content-image .box-title h1 {
    font-size: 7vw;
  }
  .home-breastbyseren .wrapper-content-image .box-title h1 span {
    font-size: 3vw;
  }
}
.home-breastbyseren .wrapper-content-image .box-title h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  pointer-events: none;
}
@media (min-width: 768px) {
  .home-breastbyseren .wrapper-content-image .box-title h5 {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .home-breastbyseren .wrapper-content-image .box-title h5 {
    font-size: calc( 15px + (30 - 15) * (( 100vw - 768px ) / (1200 - 768)) );
  }
}
.home-breastbyseren .wrapper-content-image .box-title h5 .line {
  overflow: hidden;
}
.home-breastbyseren .wrapper-content-image .box-title .wrapper-button {
  margin-top: 8vh;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 4;
}
.home-breastbyseren .wrapper-content-image .marquee {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  left: 0;
  overflow: hidden;
}
.home-breastbyseren .wrapper-content-image .marquee.top {
  top: 0;
  z-index: 0;
  transform: translateY(-50%);
  text-align: left;
}
.home-breastbyseren .wrapper-content-image .marquee.bottom {
  bottom: 0;
  z-index: 1;
  transform: translateY(50%);
  text-align: right;
}
.home-breastbyseren .wrapper-content-image .marquee span {
  display: inline-flex;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 18vw;
  color: #9a8a68;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .home-breastbyseren .wrapper-content-image .marquee span {
    font-size: 14vw;
  }
}

.home-reviews {
  padding: 5vh 0 10vh 0;
}
@media (min-width: 992px) {
  .home-reviews {
    padding: 20vh 0;
  }
}
.home-reviews .container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .home-reviews .container {
    max-width: 1295px;
  }
}
.home-reviews .swiper-container {
  width: 100%;
  height: 100%;
}
.home-reviews .swiper-container .swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-reviews .swiper-container .swiper-button-next,
.home-reviews .swiper-container .swiper-button-prev {
  display: none;
  opacity: 0.35;
  transition: opacity 0.4s ease-out;
}
@media (min-width: 768px) {
  .home-reviews .swiper-container .swiper-button-next,
.home-reviews .swiper-container .swiper-button-prev {
    display: flex;
  }
}
.home-reviews .swiper-container .swiper-button-next::after, .home-reviews .swiper-container .swiper-button-next::before,
.home-reviews .swiper-container .swiper-button-prev::after,
.home-reviews .swiper-container .swiper-button-prev::before {
  display: none;
}
.home-reviews .swiper-container .swiper-button-next:hover,
.home-reviews .swiper-container .swiper-button-prev:hover {
  opacity: 1;
}
.home-reviews .swiper-container .swiper-pagination {
  display: flex;
  bottom: 0;
}
@media (min-width: 768px) {
  .home-reviews .swiper-container .swiper-pagination {
    display: none;
  }
}
.home-reviews .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.8);
}
.home-reviews .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #9a8a68;
}
.home-reviews .block-review {
  text-align: center;
  width: 86%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .home-reviews .block-review {
    width: 80%;
  }
}
.home-reviews .block-review .box-stars {
  text-align: center;
  margin-bottom: 6vh;
}
.home-reviews .block-review .box-stars img {
  margin: 0 2px;
  width: 18px;
}
@media (min-width: 992px) {
  .home-reviews .block-review .box-stars img {
    width: auto;
  }
}
.home-reviews .block-review .review-content {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 6vh;
}
@media (min-width: 780px) {
  .home-reviews .block-review .review-content {
    font-size: 32px;
  }
}
@media (min-width: 780px) and (max-width: 1600px) {
  .home-reviews .block-review .review-content {
    font-size: calc( 16px + (32 - 16) * (( 100vw - 780px ) / (1600 - 780)) );
  }
}
.home-reviews .block-review .username {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
@media (min-width: 780px) {
  .home-reviews .block-review .username {
    font-size: 18px;
  }
}
@media (min-width: 780px) and (max-width: 1600px) {
  .home-reviews .block-review .username {
    font-size: calc( 14px + (18 - 14) * (( 100vw - 780px ) / (1600 - 780)) );
  }
}
.home-reviews .block-reviews-from {
  text-align: center;
  margin-top: 12vh;
}
@media (min-width: 768px) {
  .home-reviews .block-reviews-from {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
}
.home-reviews .block-reviews-from .lbl {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #9a8a68;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .home-reviews .block-reviews-from .lbl {
    padding-right: 15px;
  }
}
.home-reviews .block-reviews-from .logos {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .home-reviews .block-reviews-from .logos {
    margin-top: 0;
  }
}
.home-reviews .block-reviews-from .logos img {
  width: 100%;
  max-width: 280px;
}
@media (min-width: 768px) {
  .home-reviews .block-reviews-from .logos img {
    max-width: 240px;
    margin-left: 15px;
  }
}
.home-reviews .block-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6vh;
}
.home-reviews .block-links .wrapper-button {
  padding: 14px 20px;
}
.home-reviews .block-links .wrapper-button a {
  font-size: 13px;
}

.about-portrait {
  position: relative;
  padding: 0;
  background-color: #15151d;
  text-align: center;
  margin-top: -1px;
  /* hack */
  height: 100vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-portrait {
    height: 120vh;
  }
}
.about-portrait .wrapper-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  width: 100%;
  padding: 0 9vw 9vw 9vw;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .about-portrait .wrapper-content {
    width: 68vw;
    align-items: center;
    padding: 0;
  }
}
.about-portrait .wrapper-content .box-title {
  width: 100%;
  text-align: left;
  *border: 1px solid yellow;
}
.about-portrait .wrapper-content .box-title h1 {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #fff;
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  .about-portrait .wrapper-content .box-title h1 {
    font-size: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .about-portrait .wrapper-content .box-title h1 {
    font-size: calc( 48px + (70 - 48) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 992px) {
  .about-portrait .wrapper-content .box-title h1 {
    margin-bottom: 4vh;
  }
}
@media (min-width: 1600px) {
  .about-portrait .wrapper-content .box-title h1 {
    font-size: 4.5vw;
  }
}
.about-portrait .wrapper-content .box-title h1 .line {
  overflow: hidden;
}
.about-portrait .wrapper-content .box-title h1 .char {
  opacity: 0;
}
.about-portrait .wrapper-content .box-title .p {
  display: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #9a8a68;
}
@media (min-width: 992px) {
  .about-portrait .wrapper-content .box-title .p {
    display: block;
  }
}
.about-portrait .wrapper-content .box-title .p .word {
  opacity: 0;
}
.about-portrait .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-image: url(../images/design/bg-drjuanseren.4bdddb.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
html[data-os=macOS] .about-portrait .bg-image {
  background-image: url(../images/design/bg-drjuanseren.0d2523.jpg);
}
@media (min-width: 768px) {
  .about-portrait .bg-image {
    height: 120vh;
  }
}
.about-portrait .bg-image:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
@media (min-width: 992px) {
  .about-portrait .bg-image:after {
    opacity: 0;
  }
}

.about-introduction {
  position: relative;
  padding-top: 20vh;
  padding-bottom: 0;
  text-align: center;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .about-introduction {
    padding-bottom: 20vh;
  }
}
@media (min-width: 1200px) {
  .about-introduction {
    padding-top: 30vh;
    padding-bottom: 30vh;
  }
}
.about-introduction .wrapper-content h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #9a8a68;
}
@media (min-width: 768px) {
  .about-introduction .wrapper-content h6 {
    font-size: 20px;
  }
}
.about-introduction .wrapper-content h6 .line {
  overflow: hidden;
}
.about-introduction .wrapper-content blockquote {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #fff;
  line-height: 1.3;
  margin: 6vh auto;
  margin-top: 4vh;
  max-width: 1260px;
  width: 94%;
}
@media (min-width: 768px) {
  .about-introduction .wrapper-content blockquote {
    font-size: 65px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-introduction .wrapper-content blockquote {
    font-size: calc( 32px + (65 - 32) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.about-introduction .wrapper-content blockquote .line {
  overflow: hidden;
  *border: 1px solid red;
}
.about-introduction .wrapper-content .sign {
  max-width: 320px;
  width: 50%;
  margin: 0 auto;
  margin-top: 8vh;
}
.about-introduction .wrapper-content .sign img {
  max-width: 320px;
  width: 50%;
  margin: 0 auto;
}

.about-me {
  padding-bottom: 14vh;
}
.about-me .wrapper-content {
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .about-me .wrapper-content {
    flex-wrap: nowrap;
  }
}
.about-me .wrapper-content .col {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .about-me .wrapper-content .col {
    width: 47%;
  }
}
.about-me .wrapper-content .wrapper-img {
  overflow: hidden;
  position: relative;
  -webkit-clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
}
.about-me .wrapper-content .wrapper-img img {
  width: 100%;
  transition: all 1.2s ease-out;
}
.about-me .wrapper-content .wrapper-img img:hover {
  transform: scale(1.1);
}
.about-me .wrapper-content .box-title {
  margin-top: 8vh;
}
@media (min-width: 768px) {
  .about-me .wrapper-content .box-title {
    margin-top: 0;
  }
}
.about-me .wrapper-content .box-title h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #9a8a68;
}
@media (min-width: 768px) {
  .about-me .wrapper-content .box-title h6 {
    font-size: 20px;
  }
}
.about-me .wrapper-content .box-title h1 {
  display: inline-block;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #fff;
  margin: 4vh 0;
}
@media (min-width: 768px) {
  .about-me .wrapper-content .box-title h1 {
    font-size: 42px;
  }
}
@media (min-width: 1200px) {
  .about-me .wrapper-content .box-title h1 {
    font-size: 62px;
  }
}
.about-me .wrapper-content .box-title h1 .line {
  overflow: hidden;
  padding-bottom: 4px;
}
.about-me .wrapper-content .box-title h1 em {
  font-family: "SaolDisplay-LightItalic", sans-serif;
  color: #9a8a68;
}
.about-me .wrapper-content .box-title .p {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
}
.about-me .wrapper-content .box-title .wrapper-button {
  margin-top: 6vh;
}

.about-cv {
  padding-top: 8vh;
  padding-bottom: 16vh;
}
.about-cv .wrapper-content {
  width: 85%;
  max-width: 1295px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-cv .box-title {
  width: 100%;
  margin-bottom: 8vh;
  text-align: left;
}
.about-cv .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  padding-bottom: 2vh;
}
.about-cv .box-title h2 {
  display: inline-block;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #9a8a68;
}
@media (min-width: 1200px) {
  .about-cv .box-title h2 {
    font-size: 62px;
  }
}
.about-cv .box-title h2 em {
  font-family: "SaolDisplay-LightItalic", sans-serif;
  color: #9a8a68;
}
.about-cv .accordion-content .title {
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
.about-cv .accordion-content .wrapper-cv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 3vh;
}
.about-cv .accordion-content .wrapper-cv .cv-item {
  width: 100%;
  text-align: left;
  margin-bottom: 4vh;
  line-height: 1.8;
}
@media (min-width: 1200px) {
  .about-cv .accordion-content .wrapper-cv .cv-item {
    width: 47%;
  }
}
.about-cv .accordion-content .wrapper-cv .cv-item .date {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #9a8a68;
  margin-bottom: 1vh;
  transition: color 0.45s ease;
}
.about-cv .accordion-content .wrapper-cv .cv-item .data {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--nav-fill-color);
  opacity: 0.5;
  transition: opacity 0.45s ease;
}
.about-cv .accordion-content .wrapper-cv .cv-item:hover .data {
  opacity: 1;
}

.breastbyseren-portrait {
  position: relative;
  padding: 0;
  background-color: #15151d;
  text-align: center;
  margin-top: -1px;
  /* hack */
  height: 120vh;
  overflow: hidden;
}
.breastbyseren-portrait .wrapper-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  width: 100%;
  padding: 0 9vw 9vw 9vw;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .breastbyseren-portrait .wrapper-content {
    align-items: center;
    padding: 0;
  }
}
.breastbyseren-portrait .wrapper-content .box-title {
  padding-top: 24vh;
  padding-bottom: 12vh;
  text-align: center;
}
@media (min-width: 992px) {
  .breastbyseren-portrait .wrapper-content .box-title {
    padding-bottom: 0;
    padding-top: 24vh;
  }
}
.breastbyseren-portrait .wrapper-content .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 992px) {
  .breastbyseren-portrait .wrapper-content .box-title .tagname {
    font-size: 24px;
  }
}
.breastbyseren-portrait .wrapper-content .box-title h1 {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 46px;
  color: #fff;
  line-height: 0.75;
  margin: 4vh 0;
  margin-bottom: 4vh;
  text-align: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  .breastbyseren-portrait .wrapper-content .box-title h1 {
    font-size: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .breastbyseren-portrait .wrapper-content .box-title h1 {
    font-size: calc( 46px + (150 - 46) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.breastbyseren-portrait .wrapper-content .box-title h1 span {
  display: inline-block;
  padding-right: 3vw;
  font-family: "SaolDisplay-LightItalic", sans-serif;
  font-size: 28px;
}
@media (min-width: 768px) {
  .breastbyseren-portrait .wrapper-content .box-title h1 span {
    font-size: 84px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .breastbyseren-portrait .wrapper-content .box-title h1 span {
    font-size: calc( 28px + (84 - 28) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
@media (min-width: 992px) {
  .breastbyseren-portrait .wrapper-content .box-title h1 span {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .breastbyseren-portrait .wrapper-content .box-title h1 {
    margin: 2vh 0;
  }
}
.breastbyseren-portrait .wrapper-content .box-title .copy {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  width: 80%;
  max-width: 590px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .breastbyseren-portrait .wrapper-content .box-title .copy {
    width: 90%;
    font-size: 20px;
    line-height: 1.8;
  }
}
.breastbyseren-portrait .wrapper-content .box-title .s-logo {
  margin-top: 8vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 176px;
  min-width: 112px;
  width: 16vh;
}
.breastbyseren-portrait .wrapper-content .box-title .s-logo .s-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.breastbyseren-portrait .wrapper-content .box-title .s-logo .s-curved-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform-origin: center;
  will-change: transform;
  -webkit-animation: rotateInfinite 14s linear infinite;
          animation: rotateInfinite 14s linear infinite;
}
.breastbyseren-portrait .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 120vh;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-image: url(../images/design/bg-breastbyseren-sendy.e189b5.webp);
  background-position: 65%;
  background-repeat: no-repeat;
  background-size: cover;
}
html[data-os=macOS] .breastbyseren-portrait .bg-image {
  background-image: url(../images/design/bg-breastbyseren-sendy.8fda0b.jpg);
}
@media (min-width: 1200px) {
  .breastbyseren-portrait .bg-image {
    background-position: inherit;
  }
}
.breastbyseren-portrait .bg-image:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
@media (min-width: 992px) {
  .breastbyseren-portrait .bg-image:after {
    opacity: 0;
  }
}

.sbs-introduction {
  width: 100%;
  padding: 12vh 0;
  padding-top: 10vh;
}
@media (min-width: 992px) {
  .sbs-introduction {
    padding: 20vh 0;
  }
}
.sbs-introduction .wrapper-content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.sbs-introduction .wrapper-content .box-title {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .sbs-introduction .wrapper-content .box-title {
    flex-direction: column;
  }
}
.sbs-introduction .wrapper-content .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: #6d6d6d;
  margin: 0 auto;
  margin-bottom: 4vh;
  width: 90%;
}
@media (min-width: 992px) {
  .sbs-introduction .wrapper-content .box-title .tagname {
    font-size: 20px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.sbs-introduction .wrapper-content .box-title .tagname .line {
  overflow: hidden;
}
.sbs-introduction .wrapper-content .box-title h1 {
  display: inline-block;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 50px;
  color: #9a8a68;
  margin-bottom: 3vh;
  line-height: 0.8;
}
@media (min-width: 768px) {
  .sbs-introduction .wrapper-content .box-title h1 {
    font-size: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .sbs-introduction .wrapper-content .box-title h1 {
    font-size: calc( 50px + (160 - 50) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 992px) {
  .sbs-introduction .wrapper-content .box-title h1 {
    margin: 4vh 0;
  }
}
.sbs-introduction .wrapper-content .box-title h1 span {
  font-size: 25px;
  vertical-align: super;
}
@media (min-width: 768px) {
  .sbs-introduction .wrapper-content .box-title h1 span {
    font-size: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .sbs-introduction .wrapper-content .box-title h1 span {
    font-size: calc( 25px + (80 - 25) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.sbs-introduction .wrapper-content .box-title h1 .line {
  overflow: hidden;
}
.sbs-introduction .wrapper-flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  margin: 8vh auto;
  margin-bottom: 12vh;
}
@media (min-width: 1200px) {
  .sbs-introduction .wrapper-flex {
    margin: 12vh auto;
  }
}
.sbs-introduction .wrapper-flex .wrapper-images {
  width: 100%;
  margin-bottom: 8vh;
  position: relative;
}
@media (min-width: 1200px) {
  .sbs-introduction .wrapper-flex .wrapper-images {
    width: 50%;
    padding-right: 6vw;
  }
}
.sbs-introduction .wrapper-flex .wrapper-images .block-img-big-back {
  width: 80%;
  transform-origin: top left;
}
.sbs-introduction .wrapper-flex .wrapper-images .block-img-big-back img {
  width: 100%;
}
.sbs-introduction .wrapper-flex .wrapper-images .block-img-small-front {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  width: 50%;
  transform-origin: top right;
}
.sbs-introduction .wrapper-flex .wrapper-images .block-img-small-front img {
  width: 100%;
}
.sbs-introduction .wrapper-flex .wrapper-content {
  width: 100%;
  padding-left: 6vw;
  padding-right: 6vw;
}
@media (min-width: 1200px) {
  .sbs-introduction .wrapper-flex .wrapper-content {
    width: 50%;
    padding-right: 0;
  }
}
.sbs-introduction .wrapper-flex .wrapper-content .p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #5d5d5d;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .sbs-introduction .wrapper-flex .wrapper-content .p {
    font-size: 20px;
  }
}
.sbs-introduction .wrapper-flex .wrapper-content .p span {
  vertical-align: baseline;
  color: #9a8a68;
  font-weight: 600;
}
.sbs-introduction .wrapper-flex .wrapper-content .wrapper-button {
  margin-top: 8vh;
}
.sbs-introduction .wrapper-clock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .sbs-introduction .wrapper-clock {
    flex-wrap: nowrap;
  }
}
.sbs-introduction .wrapper-clock .lbl {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #646464;
  display: inline-block;
  margin: 4vh 0;
  text-align: center;
}
@media (min-width: 992px) {
  .sbs-introduction .wrapper-clock .lbl {
    width: 35%;
    display: block;
    margin: 4vh 0;
    font-size: 24px;
  }
  .sbs-introduction .wrapper-clock .lbl.left {
    text-align: right;
  }
  .sbs-introduction .wrapper-clock .lbl.right {
    text-align: left;
  }
}
.sbs-introduction .wrapper-clock .lbl span {
  color: #9a8a68;
  vertical-align: baseline;
}
.sbs-introduction .wrapper-clock .clock {
  margin: 0 3vw;
  display: block;
  width: 172px;
  height: 172px;
}

.sbs-description {
  width: 100%;
  padding: 24vh 0;
}
.sbs-description .wrapper-flex {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sbs-description .wrapper-flex .column {
  width: 100%;
  max-width: 275px;
}
.sbs-description .wrapper-flex .column:first-child {
  max-width: 360px;
}
.sbs-description .wrapper-flex .column .number {
  display: block;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 12vw;
  line-height: 0.75;
  color: #9a8a68;
  margin-bottom: 2vh;
}
.sbs-description .wrapper-flex .column h1 {
  display: inline-block;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 62px;
  color: #fff;
  margin: 4vh 0;
}
.sbs-description .wrapper-flex .column h1 em {
  font-family: "SaolDisplay-LightItalic", sans-serif;
  color: #9a8a68;
}
.sbs-description .wrapper-flex .column p {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  width: 100%;
}
.sbs-description .wrapper-flex .column .box-decription {
  margin-bottom: 10vh;
}
.sbs-description .wrapper-flex .column .box-decription h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #9a8a68;
  text-transform: uppercase;
  margin-bottom: 2vh;
  letter-spacing: 1px;
}

.sbs-video {
  width: 100%;
  *padding: 12vh 0;
  position: relative;
}
.sbs-video .wrapper-content {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.sbs-video .wrapper-content .wrapper-video {
  position: relative;
  cursor: pointer;
  margin: 0 auto;
}
.sbs-video .wrapper-content .wrapper-video .video {
  width: 100%;
  min-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sbs-video .wrapper-content .wrapper-video .wrapper-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 200px;
  height: 200px;
  transform: translate3d(-50%, -50%, 0);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.sbs-video .wrapper-content .wrapper-video .wrapper-button .box-play-button {
  position: relative;
  width: 160px;
  height: 160px;
}
.sbs-video .wrapper-content .wrapper-video .wrapper-button .box-play-button .rotating-text {
  position: absolute;
  width: 100%;
  transform-origin: center;
  -webkit-animation: rotating 12s linear infinite;
  animation: rotating 12s linear infinite;
}
.sbs-video .wrapper-content .wrapper-video .wrapper-button .box-play-button .triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.sbs-video .wrapper-content .wrapper-video .shadow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.sbs-surgeries {
  width: 100%;
  padding: 12vh 0;
}
.sbs-surgeries .wrapper-content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.sbs-surgeries .wrapper-content .box-title {
  text-align: center;
}
.sbs-surgeries .wrapper-content .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #9a8a68;
}
@media (min-width: 768px) {
  .sbs-surgeries .wrapper-content .box-title .tagname {
    font-size: 14px;
  }
}
.sbs-surgeries .wrapper-content .box-title h1 {
  display: block;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  line-height: 0.9;
  font-size: 35px;
  color: #fff;
  margin-top: 2vh;
  margin-bottom: 4vh;
}
@media (min-width: 768px) {
  .sbs-surgeries .wrapper-content .box-title h1 {
    font-size: 90px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .sbs-surgeries .wrapper-content .box-title h1 {
    font-size: calc( 35px + (90 - 35) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.sbs-surgeries .wrapper-content .box-title h1 .line {
  overflow: hidden;
}
.sbs-surgeries .wrapper-content .box-title h1 .line:nth-child(2) {
  color: #9a8a68;
}
.sbs-surgeries .wrapper-content .box-title .p {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  width: 80%;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .sbs-surgeries .wrapper-content .box-title .p {
    font-size: 16px;
  }
}
.sbs-surgeries .wrapper-content .box-title .p .line {
  overflow: hidden;
}

.sbs-surgery-type {
  width: 100%;
  padding: 10vh 0;
}
@media (min-width: 768px) {
  .sbs-surgery-type {
    padding: 20vh 0;
  }
}
.sbs-surgery-type .wrapper-content {
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.sbs-surgery-type .wrapper-content .wrapper-image {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  min-height: 500px;
  height: 65vh;
}
@media (min-width: 768px) {
  .sbs-surgery-type .wrapper-content .wrapper-image {
    min-height: 700px;
    height: 75vh;
  }
}
.sbs-surgery-type .wrapper-content .wrapper-image .image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 1.2s ease-out;
}
.sbs-surgery-type .wrapper-content .wrapper-image .image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  transition: background-color 0.45s ease-out;
  background-color: rgba(0, 0, 0, 0.7);
}
.sbs-surgery-type .wrapper-content .box-title {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 10;
  text-align: center;
  width: 100%;
  transform: translateY(-30%);
}
.sbs-surgery-type .wrapper-content .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.sbs-surgery-type .wrapper-content .box-title .tagname .line {
  overflow: hidden;
}
.sbs-surgery-type .wrapper-content .box-title h1 {
  display: block;
  font-family: "SaolDisplay-Regular", sans-serif;
  font-size: 40px;
  font-weight: normal;
  color: #fff;
  margin: 3vh auto;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.45s ease-out;
}
@media (min-width: 768px) {
  .sbs-surgery-type .wrapper-content .box-title h1 {
    font-size: 170px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .sbs-surgery-type .wrapper-content .box-title h1 {
    font-size: calc( 40px + (170 - 40) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.sbs-surgery-type .wrapper-content .box-title h1.long-title {
  font-size: 37px;
}
@media (min-width: 768px) {
  .sbs-surgery-type .wrapper-content .box-title h1.long-title {
    font-size: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .sbs-surgery-type .wrapper-content .box-title h1.long-title {
    font-size: calc( 37px + (120 - 37) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.sbs-surgery-type .wrapper-content .box-title h1 .line {
  overflow: hidden;
}
.sbs-surgery-type .wrapper-content .box-title .p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  width: 80%;
  max-width: 420px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sbs-surgery-type .wrapper-content .box-title .p {
    width: 100%;
    font-size: 16px;
  }
}
.sbs-surgery-type .wrapper-content .box-title .p .line {
  overflow: hidden;
}
.sbs-surgery-type .wrapper-content .box-title .wrapper-button {
  margin-top: 8vh;
}
html[data-device=desktop] .sbs-surgery-type .wrapper-content:hover .wrapper-image .image {
  transform: scale(1.1);
}
html[data-device=desktop] .sbs-surgery-type .wrapper-content:hover .wrapper-image .image:before {
  background-color: rgba(0, 0, 0, 0.4);
}
html[data-device=desktop] .sbs-surgery-type .wrapper-content:hover .box-title h1 {
  color: #9a8a68;
}

.surgery-slider {
  padding-bottom: 20vh;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .surgery-slider {
    padding-bottom: 12;
    padding-top: 8vh;
  }
}
.surgery-slider .wrapper-content {
  position: relative;
}
.surgery-slider .container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .surgery-slider .container {
    max-width: 1295px;
  }
}
.surgery-slider .swiper-container {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.surgery-slider .swiper-container .swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  opacity: 0.35;
  transition: opacity 0.4s ease-out;
}
@media (min-width: 992px) {
  .surgery-slider .swiper-container .swiper-slide {
    flex-direction: inherit;
  }
}
.surgery-slider .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.surgery-slider .swiper-container .swiper-button-next,
.surgery-slider .swiper-container .swiper-button-prev {
  transition: opacity 0.4s ease-out;
  position: absolute;
  top: 112%;
  right: 13vw;
  display: flex;
}
@media (min-width: 768px) {
  .surgery-slider .swiper-container .swiper-button-next,
.surgery-slider .swiper-container .swiper-button-prev {
    right: 70px;
    top: 110%;
  }
}
@media (min-width: 992px) {
  .surgery-slider .swiper-container .swiper-button-next,
.surgery-slider .swiper-container .swiper-button-prev {
    right: 40px;
  }
}
@media (min-width: 1200px) {
  .surgery-slider .swiper-container .swiper-button-next,
.surgery-slider .swiper-container .swiper-button-prev {
    right: 15px;
  }
}
.surgery-slider .swiper-container .swiper-button-next .button,
.surgery-slider .swiper-container .swiper-button-prev .button {
  height: 60px;
  width: 60px;
}
.surgery-slider .swiper-container .swiper-button-next .button .flecha,
.surgery-slider .swiper-container .swiper-button-prev .button .flecha {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.surgery-slider .swiper-container .swiper-button-next .button .flecha g path,
.surgery-slider .swiper-container .swiper-button-prev .button .flecha g path {
  transition: all 0.4s ease-out;
}
.surgery-slider .swiper-container .swiper-button-next .button .trazo,
.surgery-slider .swiper-container .swiper-button-prev .button .trazo {
  height: 60px;
  width: 60px;
}
.surgery-slider .swiper-container .swiper-button-next .button .trazo g,
.surgery-slider .swiper-container .swiper-button-prev .button .trazo g {
  transition: all 0.4s ease-out;
  fill: transparent;
}
.surgery-slider .swiper-container .swiper-button-next::after, .surgery-slider .swiper-container .swiper-button-next::before,
.surgery-slider .swiper-container .swiper-button-prev::after,
.surgery-slider .swiper-container .swiper-button-prev::before {
  display: none;
}
html[data-device=desktop] .surgery-slider .swiper-container .swiper-button-next:hover.hoverable .button .flecha g path,
html[data-device=desktop] .surgery-slider .swiper-container .swiper-button-prev:hover.hoverable .button .flecha g path {
  stroke: #15151d;
}
html[data-device=desktop] .surgery-slider .swiper-container .swiper-button-next:hover.hoverable .button .trazo g,
html[data-device=desktop] .surgery-slider .swiper-container .swiper-button-prev:hover.hoverable .button .trazo g {
  fill: #9a8a68;
}
.surgery-slider .swiper-container .swiper-button-prev {
  left: 62%;
}
.surgery-slider .swiper-container .swiper-button-prev .button {
  transform-origin: center;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .surgery-slider .swiper-container .swiper-button-prev {
    left: 77%;
  }
}
@media (min-width: 992px) {
  .surgery-slider .swiper-container .swiper-button-prev {
    left: 85%;
  }
}
@media (min-width: 1200px) {
  .surgery-slider .swiper-container .swiper-button-prev {
    left: 89%;
  }
}
@media (min-width: 1600px) {
  .surgery-slider .swiper-container .swiper-button-prev {
    left: 91%;
  }
}
.surgery-slider .swiper-container .swiper-pagination {
  top: 112%;
  width: 45%;
  left: 9vw;
  position: absolute;
  display: flex;
  bottom: 0;
  background-color: rgba(154, 138, 104, 0.25);
}
@media (min-width: 768px) {
  .surgery-slider .swiper-container .swiper-pagination {
    width: 50%;
    left: 15%;
    top: 110%;
  }
}
@media (min-width: 992px) {
  .surgery-slider .swiper-container .swiper-pagination {
    width: 60%;
    left: 15%;
  }
}
@media (min-width: 1200px) {
  .surgery-slider .swiper-container .swiper-pagination {
    width: 70%;
    left: 15%;
  }
}
.surgery-slider .swiper-container .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #9a8a68;
}
.surgery-slider .block-case {
  width: 100%;
  padding: 0 9vw;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 992px) {
  .surgery-slider .block-case {
    width: 80%;
    padding: 0;
  }
}
.surgery-slider .block-case .opacity {
  position: absolute;
  width: 105%;
  height: 105%;
  background-color: #15151d;
  opacity: 0.7;
  z-index: 0;
}
.surgery-slider .block-case .position {
  color: #9a8a68;
  display: none;
  font-family: "SaolDisplay-Regular";
  font-size: 80px;
  position: absolute;
  top: -8%;
  left: -5%;
  z-index: 1;
}
@media (min-width: 992px) {
  .surgery-slider .block-case .position {
    display: block;
  }
}
@media (min-width: 1600px) {
  .surgery-slider .block-case .position {
    top: -6%;
    left: -3%;
  }
}
.surgery-slider .block-case img {
  max-width: 100%;
  margin: 0 auto;
}
.surgery-slider .box-content {
  background-color: #fff;
  height: 50%;
  width: calc(100% - 18vw);
  position: relative;
  right: 0;
  top: 50%;
  padding: 9vw 4vh;
}
@media (min-width: 992px) {
  .surgery-slider .box-content {
    height: 75%;
    position: absolute;
    width: 35%;
    transform: translateY(-50%);
    padding: 55px 45px;
  }
}
@media (min-width: 1200px) {
  .surgery-slider .box-content {
    height: 75%;
    position: absolute;
    width: 35%;
    transform: translateY(-50%);
    padding: 60px 55px;
  }
}
@media (min-width: 1600px) {
  .surgery-slider .box-content {
    padding: 80px 55px;
  }
}
.surgery-slider .box-content .tagname {
  color: #9a8a68;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.surgery-slider .box-content .title {
  font-family: "SaolDisplay-Light";
  color: #000;
  font-weight: 300;
  margin: 10px 0;
  font-size: 38px;
}
@media (min-width: 768px) {
  .surgery-slider .box-content .title {
    font-size: 46px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .surgery-slider .box-content .title {
    font-size: calc( 38px + (46 - 38) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
@media (min-width: 768px) {
  .surgery-slider .box-content .title {
    margin: 15px 0;
  }
}
.surgery-slider .box-content .copy {
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .surgery-slider .box-content .copy {
    font-size: 15px;
  }
}
.surgery-slider .box-content .button {
  display: none;
  align-items: center;
}
@media (min-width: 768px) {
  .surgery-slider .box-content .button {
    display: flex;
  }
}
.surgery-slider .box-content .button .icons {
  position: relative;
  overflow: hidden;
  width: 80px;
  height: 80px;
}
.surgery-slider .box-content .button .icons .flecha {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-out;
  opacity: 1;
}
.surgery-slider .box-content .button .icons .flecha g path {
  transition: all 0.4s ease-out;
}
.surgery-slider .box-content .button .icons .flecha.left {
  left: 40%;
  opacity: 0;
}
.surgery-slider .box-content .button .icons .trazo {
  width: 80px;
  height: 80px;
}
.surgery-slider .box-content .button .icons .trazo path {
  fill: transparent;
  stroke: #9a8a68;
  stroke-dasharray: 172;
  stroke-dashoffset: 0;
  stroke-width: 1px;
  transform: rotate(120deg);
  transform-origin: center;
  transition: all 0.4s ease-out;
}
.surgery-slider .box-content .button .text {
  font-size: 11px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #000;
  transform: translateX(-15px);
  transition: all 0.2s ease-out;
}
html[data-device=desktop] .surgery-slider .box-content .button:hover .icons .flecha {
  left: 70%;
  transform: translate(0, -50%);
  opacity: 0;
}
html[data-device=desktop] .surgery-slider .box-content .button:hover .icons .flecha g path {
  stroke: #fff;
}
html[data-device=desktop] .surgery-slider .box-content .button:hover .icons .flecha.left {
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
html[data-device=desktop] .surgery-slider .box-content .button:hover .icons .trazo path {
  fill: #9a8a68;
  stroke-dasharray: 210;
  transform: rotate(90deg);
}
html[data-device=desktop] .surgery-slider .box-content .button:hover .text {
  transform: translateX(5px);
}
.surgery-slider .box-content .mobile {
  display: block;
}
@media (min-width: 768px) {
  .surgery-slider .box-content .mobile {
    display: none;
  }
}

.surgery-slider:before {
  background: transparent url(data:image/svg+xml;base64,DQo8c3ZnIHdpZHRoPSIxNjIwIiBoZWlnaHQ9IjEyNyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2NS45MjhDNjguNDc3IDcuNjIgMTY1LjI2NS03LjEzOSAyNTQuNDM3IDMuODcyYzg5LjE3MiAxMS4wMTEgMTczLjY2IDQ0LjgxMyAyNTguNjM0IDc0LjA2OSA4NC45NzUgMjkuMjU1IDE3My44MTkgNTQuNDc5IDI2My4zODIgNDcuMzM1IDgzLjI4My02LjY0MiAxNjEuNDg4LTQwLjc2MyAyNDEuNDU3LTY1LjAwOCAxOTQuODgtNTkuMDg0IDQwNy4xMi01OS4yNTUgNjAyLjA5LS40ODYiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI0ZGRiIgc3Ryb2tlLW9wYWNpdHk9Ii40IiBzdHJva2UtZGFzaGFycmF5PSI0IDQiLz48L3N2Zz4=) no-repeat 50%/cover;
  content: "";
  margin: auto;
  padding-bottom: 7.9%;
  top: 0;
  right: 0;
  bottom: -70px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 0;
  opacity: 0.5;
}

.contact-portrait {
  position: relative;
  padding: 0;
  *background-color: #f9f5ef;
  text-align: center;
  margin-top: -1px;
  /* hack */
  height: auto;
  display: flex;
  flex-wrap: nowrap;
}
@media (min-width: 768px) {
  .contact-portrait {
    height: calc(100vh + 400px);
  }
}
.contact-portrait .wrapper-s {
  display: none;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-s {
    display: flex;
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
    width: 60%;
    transform: translateX(-10%) translateY(20vh);
  }
}
.contact-portrait .wrapper-s .s-curved-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 55vw;
  transform-origin: center;
  will-change: transform;
}
.contact-portrait .wrapper-places {
  position: relative;
  width: 100%;
  height: auto;
  text-align: left;
  color: #666;
  line-height: 1.6;
  margin: 0 auto;
  margin-top: 140px;
  padding-right: 9vw;
  padding-left: 9vw;
  padding-bottom: 14vh;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-places {
    height: 100vh;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }
}
.contact-portrait .wrapper-places .s-logo {
  position: relative;
  height: 120px;
  width: 120px;
  margin-bottom: 2vh;
  display: none;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-places .s-logo {
    display: block;
  }
}
.contact-portrait .wrapper-places .s-logo .s-center {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.contact-portrait .wrapper-places .s-logo .s-curved-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform-origin: center;
  will-change: transform;
  -webkit-animation: rotateInfinite 14s linear infinite;
          animation: rotateInfinite 14s linear infinite;
}
.contact-portrait .wrapper-places .box-title {
  margin-bottom: 8vh;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-places .box-title {
    display: none;
  }
}
.contact-portrait .wrapper-places .box-title h2 {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-size: 48px;
  font-weight: normal;
  color: #5d5d5d;
  text-align: left;
  margin-bottom: 12px;
  line-height: 1;
}
.contact-portrait .wrapper-places .box-place {
  margin-top: 4vh;
  font-family: "Open Sans", sans-serif;
}
.contact-portrait .wrapper-places .box-place .place-name {
  font-weight: 600;
  font-size: 18px;
  color: #9a8a68;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-places .box-place .place-name {
    font-size: 20px;
  }
}
.contact-portrait .wrapper-places .box-place .place-data li {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #8d8d8d;
}
.contact-portrait .wrapper-places .box-place .place-data li a {
  vertical-align: baseline;
  color: inherit;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-places .box-place .place-data li {
    font-size: 18px;
  }
}

.contact-form-wrapper {
  padding: 8vh 9vw;
  padding-top: 1vh;
}
@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 8vh 3vw;
    width: 60%;
  }
}
@media (min-width: 1600px) {
  .contact-form-wrapper {
    padding: 16vh 3vw;
    width: 100%;
  }
}
.contact-form-wrapper .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-form-wrapper .box-title {
  margin-bottom: 4vh;
}
.contact-form-wrapper .box-title h2 {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-size: 32px;
  font-weight: normal;
  color: #5d5d5d;
  text-align: left;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .contact-form-wrapper .box-title h2 {
    font-size: 46px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .contact-form-wrapper .box-title h2 {
    font-size: calc( 32px + (46 - 32) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.contact-form-wrapper .box-title .copy {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #5d5d5d;
  text-align: left;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .contact-form-wrapper .box-title .copy {
    font-size: 18px;
  }
}
.contact-form-wrapper .contact-page-form {
  width: 100%;
  max-width: 775px;
}
.contact-form-wrapper .contact-page-form .group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact-form-wrapper .contact-page-form .group {
    flex-wrap: nowrap;
  }
}
.contact-form-wrapper .contact-page-form .group .col {
  width: 100%;
}
.contact-form-wrapper .contact-page-form .group .col:not(:last-child) {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact-form-wrapper .contact-page-form .group .col:not(:last-child) {
    margin-bottom: 0;
  }
  .contact-form-wrapper .contact-page-form .group .col:not(:first-child) {
    padding-left: 15px;
  }
}
.contact-form-wrapper .contact-page-form input[type=text],
.contact-form-wrapper .contact-page-form input[type=email],
.contact-form-wrapper .contact-page-form input[type=password],
.contact-form-wrapper .contact-page-form input[type=file],
.contact-form-wrapper .contact-page-form select {
  width: 100%;
  padding: 18px 25px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  color: #545454;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.5s ease 0s;
}
.contact-form-wrapper .contact-page-form input[type=text].placeholder,
.contact-form-wrapper .contact-page-form input[type=email].placeholder,
.contact-form-wrapper .contact-page-form input[type=password].placeholder,
.contact-form-wrapper .contact-page-form input[type=file].placeholder,
.contact-form-wrapper .contact-page-form select.placeholder {
  font-size: 14px;
}
.contact-form-wrapper .contact-page-form input[type=text]::-moz-placeholder,
.contact-form-wrapper .contact-page-form input[type=email]::-moz-placeholder,
.contact-form-wrapper .contact-page-form input[type=password]::-moz-placeholder,
.contact-form-wrapper .contact-page-form input[type=file]::-moz-placeholder,
.contact-form-wrapper .contact-page-form select::-moz-placeholder {
  font-size: 14px;
}
.contact-form-wrapper .contact-page-form input[type=text]::-webkit-input-placeholder,
.contact-form-wrapper .contact-page-form input[type=email]::-webkit-input-placeholder,
.contact-form-wrapper .contact-page-form input[type=password]::-webkit-input-placeholder,
.contact-form-wrapper .contact-page-form input[type=file]::-webkit-input-placeholder,
.contact-form-wrapper .contact-page-form select::-webkit-input-placeholder {
  font-size: 14px;
}
.contact-form-wrapper .contact-page-form input[type=text]:-moz-placeholder,
.contact-form-wrapper .contact-page-form input[type=email]:-moz-placeholder,
.contact-form-wrapper .contact-page-form input[type=password]:-moz-placeholder,
.contact-form-wrapper .contact-page-form input[type=file]:-moz-placeholder,
.contact-form-wrapper .contact-page-form select:-moz-placeholder {
  font-size: 14px;
}
.contact-form-wrapper .contact-page-form input[type=text]:-ms-input-placeholder,
.contact-form-wrapper .contact-page-form input[type=email]:-ms-input-placeholder,
.contact-form-wrapper .contact-page-form input[type=password]:-ms-input-placeholder,
.contact-form-wrapper .contact-page-form input[type=file]:-ms-input-placeholder,
.contact-form-wrapper .contact-page-form select:-ms-input-placeholder {
  font-size: 14px;
}
.contact-form-wrapper .contact-page-form select {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAYAAAB4ka1VAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAxMi8wMi8xN2iemr4AAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAASElEQVQImW2LwQnAMBDDlE5U8CIZodmoG1wWMtxI/SRwhOop2U3SC6TtSUHSA9wXkEAsUWMA2Q4x1iaAYXu2nxc7ciKpS+rVfZvoF9FSFL1pAAAAAElFTkSuQmCC);
  background-position: calc(100% - 15px) calc(50% + 1px);
  background-repeat: no-repeat;
}
.contact-form-wrapper .contact-page-form textarea {
  width: 100%;
  padding: 25px;
  background-color: transparent;
  border: 1px solid #ccc !important;
  border-radius: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  color: #545454;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.5s ease 0s;
}
.contact-form-wrapper .contact-page-form textarea.placeholder {
  font-size: 14px;
}
.contact-form-wrapper .contact-page-form textarea::-moz-placeholder {
  font-size: 14px;
}
.contact-form-wrapper .contact-page-form textarea::-webkit-input-placeholder {
  font-size: 14px;
}
.contact-form-wrapper .contact-page-form textarea:-moz-placeholder {
  font-size: 14px;
}
.contact-form-wrapper .contact-page-form textarea:-ms-input-placeholder {
  font-size: 14px;
}

.surgery-text-container {
  text-align: center;
  padding: 10vh 0;
}
@media (max-width: 767px) {
  .surgery-text-container {
    padding-top: 0;
  }
}
.surgery-text-container .box-text .title {
  font-size: 18px;
  color: #9a8a68;
  padding-top: 10vh;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 3vh;
}
@media (min-width: 768px) {
  .surgery-text-container .box-text .title {
    font-size: 24px;
  }
}
.surgery-text-container .box-text .description {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5d5d5d;
  line-height: 1.8;
  width: 86%;
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .surgery-text-container .box-text .description {
    font-size: 20px;
  }
}
.surgery-text-container .contact {
  margin-top: 10vh;
}
.surgery-text-container .contact a {
  display: inline-flex;
  padding: 20px 35px;
}
.surgery-text-container .contact a .text {
  margin: auto 0;
}
.surgery-text-container .contact a .logo {
  margin-left: 10px;
}
.surgery-text-container .contact a .logo .fill {
  transition: 0.45s;
}

@media (max-width: 767px) {
  .copy br {
    display: none;
  }
}

.surgery-portrait {
  position: relative;
  padding: 0;
  background-color: #15151d;
  text-align: center;
  margin-top: -1px;
  /* hack */
  height: 120vh;
  overflow: hidden;
}
.surgery-portrait .wrapper-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  width: 100%;
  padding: 0 9vw 9vw 9vw;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .surgery-portrait .wrapper-content {
    width: 68vw;
    align-items: center;
    padding: 0;
  }
}
.surgery-portrait .wrapper-content .box-title {
  padding-top: 24vh;
  padding-bottom: 12vh;
  text-align: center;
}
@media (min-width: 992px) {
  .surgery-portrait .wrapper-content .box-title {
    padding-bottom: 0;
    padding-top: 24vh;
  }
}
.surgery-portrait .wrapper-content .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 992px) {
  .surgery-portrait .wrapper-content .box-title .tagname {
    font-size: 24px;
  }
}
.surgery-portrait .wrapper-content .box-title .swiper-wrapper {
  height: 18vw;
}
.surgery-portrait .wrapper-content .box-title .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 992px) {
  .surgery-portrait .wrapper-content .box-title .swiper-wrapper {
    height: 11.5vw;
  }
}
.surgery-portrait .wrapper-content .box-title h1 {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 14vw;
  line-height: 0.9;
  margin: 4vh 0;
  margin-bottom: 4vh;
  text-align: center;
  pointer-events: none;
}
.surgery-portrait .wrapper-content .box-title h1.long-text {
  font-size: 11vw;
}
.surgery-portrait .wrapper-content .box-title h1 .line {
  overflow: hidden;
}
@media (min-width: 992px) {
  .surgery-portrait .wrapper-content .box-title h1 {
    font-size: 10.5vw;
    margin: 2vh 0;
  }
  .surgery-portrait .wrapper-content .box-title h1.long-text {
    font-size: 10vw;
  }
}
.surgery-portrait .wrapper-content .box-title h1 em {
  font-family: "SaolDisplay-LightItalic", sans-serif;
  vertical-align: baseline;
}
.surgery-portrait .wrapper-content .box-title .copy {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .surgery-portrait .wrapper-content .box-title .copy {
    font-size: 20px;
    line-height: 1.8;
  }
}
.surgery-portrait .wrapper-content .box-title .s-logo {
  margin-top: 8vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 176px;
  min-width: 112px;
  width: 16vh;
}
.surgery-portrait .wrapper-content .box-title .s-logo .s-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.surgery-portrait .wrapper-content .box-title .s-logo .s-curved-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform-origin: center;
  will-change: transform;
  -webkit-animation: rotateInfinite 14s linear infinite;
          animation: rotateInfinite 14s linear infinite;
}
.surgery-portrait .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 120vh;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .surgery-portrait .bg-image {
    background-position: center;
  }
}
.surgery-portrait .bg-image:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
@media (min-width: 992px) {
  .surgery-portrait .bg-image:after {
    opacity: 0;
  }
}

.before-and-after {
  padding-top: 20vh;
  padding-bottom: 20vh;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .before-and-after {
    padding-bottom: 12;
  }
}
.before-and-after .wrapper-content {
  position: relative;
}
.before-and-after .container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .before-and-after .container {
    max-width: 1295px;
  }
}
.before-and-after .box-title {
  width: 100%;
  max-width: 1295px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .before-and-after .box-title {
    margin-bottom: 8vh;
  }
}
.before-and-after .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #9a8a68;
  text-transform: capitalize;
}
.before-and-after .box-title h1 {
  display: inline-block;
  font-family: "SaolDisplay-Light", sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #9a8a68;
  margin: 4vh 0;
}
@media (min-width: 768px) {
  .before-and-after .box-title h1 {
    font-size: 78px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .before-and-after .box-title h1 {
    font-size: calc( 36px + (78 - 36) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.before-and-after .box-title h1 em {
  font-family: "SaolDisplay-LightItalic", sans-serif;
  vertical-align: baseline;
  color: #646464;
}
.before-and-after .box-title .copy {
  font-size: 14px;
  color: #646464;
  font-family: "Open Sans", sans-serif;
  width: 80%;
  max-width: 700px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 3vh;
}
@media (min-width: 768px) {
  .before-and-after .box-title .copy {
    font-size: 20px;
  }
}
.before-and-after .swiper-container {
  width: 100%;
  height: 100%;
}
.before-and-after .swiper-container .swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.before-and-after .swiper-container .swiper-button-next,
.before-and-after .swiper-container .swiper-button-prev {
  display: none;
  opacity: 0.35;
  transition: opacity 0.4s ease-out;
}
@media (min-width: 768px) {
  .before-and-after .swiper-container .swiper-button-next,
.before-and-after .swiper-container .swiper-button-prev {
    display: flex;
  }
}
.before-and-after .swiper-container .swiper-button-next::after, .before-and-after .swiper-container .swiper-button-next::before,
.before-and-after .swiper-container .swiper-button-prev::after,
.before-and-after .swiper-container .swiper-button-prev::before {
  display: none;
}
.before-and-after .swiper-container .swiper-button-next:hover,
.before-and-after .swiper-container .swiper-button-prev:hover {
  opacity: 1;
}
.before-and-after .swiper-container .swiper-pagination {
  display: flex;
  bottom: 0;
}
@media (min-width: 768px) {
  .before-and-after .swiper-container .swiper-pagination {
    display: none;
  }
}
.before-and-after .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.8);
}
.before-and-after .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #9a8a68;
}
.before-and-after .block-case {
  text-align: center;
  width: 86%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .before-and-after .block-case {
    width: 80%;
  }
}
.before-and-after .block-case img {
  max-width: 100%;
  margin: 0 auto;
}

.film-portrait {
  position: relative;
  padding: 0;
  background-color: #15151d;
  text-align: center;
  height: 100vh;
  overflow: hidden;
}
.film-portrait:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.film-portrait .wrapper-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  width: 100%;
  padding: 0 9vw 9vw 9vw;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .film-portrait .wrapper-content {
    width: 68vw;
    align-items: center;
    padding: 0;
  }
}
.film-portrait .wrapper-content .box-title {
  padding-top: 24vh;
  padding-bottom: 12vh;
  text-align: center;
}
@media (min-width: 992px) {
  .film-portrait .wrapper-content .box-title {
    padding-bottom: 0;
    padding-top: 12vh;
  }
}
.film-portrait .wrapper-content .box-title .tagname {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 992px) {
  .film-portrait .wrapper-content .box-title .tagname {
    font-size: 24px;
  }
}
.film-portrait .wrapper-content .box-title #home-title-animation {
  line-height: 0.9;
  margin: 4vh 0;
  margin-bottom: 4vh;
  text-align: center;
  pointer-events: none;
}
.film-portrait .wrapper-content .box-title h1 {
  font-family: "SaolDisplay-Regular", sans-serif;
  font-weight: 400;
  font-size: 56px;
  color: #fff;
  line-height: 0.8;
  margin: 4vh 0;
  margin-bottom: 4vh;
  text-align: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  .film-portrait .wrapper-content .box-title h1 {
    font-size: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .film-portrait .wrapper-content .box-title h1 {
    font-size: calc( 56px + (150 - 56) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.film-portrait .wrapper-content .box-title h1 span {
  display: inline-block;
  padding-right: 3vw;
  font-family: "SaolDisplay-LightItalic", sans-serif;
  font-size: 28px;
}
@media (min-width: 768px) {
  .film-portrait .wrapper-content .box-title h1 span {
    font-size: 84px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .film-portrait .wrapper-content .box-title h1 span {
    font-size: calc( 28px + (84 - 28) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
@media (min-width: 992px) {
  .film-portrait .wrapper-content .box-title h1 span {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .film-portrait .wrapper-content .box-title h1 {
    margin: 2vh 0;
  }
}
.film-portrait .wrapper-content .box-title .copy {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  width: 75%;
  max-width: 590px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .film-portrait .wrapper-content .box-title .copy {
    width: 90%;
    font-size: 20px;
    line-height: 1.8;
  }
}
.film-portrait .wrapper-button {
  width: 200px;
  height: 200px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
}
.film-portrait .wrapper-button .box-play-button {
  position: relative;
  width: 160px;
  height: 160px;
}
.film-portrait .wrapper-button .box-play-button .rotating-text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transform-origin: center;
  -webkit-animation: rotating 12s linear infinite;
  animation: rotating 12s linear infinite;
}
.film-portrait .wrapper-button .box-play-button .triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.film-portrait .bg-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100vh + 250px);
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .film-portrait .bg-video {
    height: calc(100vh + 400px);
  }
}
.film-portrait .bg-video video {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.film-portrait .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: calc(100vh + 250px);
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .film-portrait .bg-image {
    height: calc(100vh + 400px);
  }
}
.film-portrait .bg-image:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
@media (min-width: 992px) {
  .film-portrait .bg-image:after {
    opacity: 0;
  }
}
